91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
import { interactive, toggleable } from "../element"
|
|
import {
|
|
TextProperties,
|
|
background,
|
|
foreground,
|
|
text,
|
|
} from "../style_tree/components"
|
|
import { ColorScheme } from "../theme/color_scheme"
|
|
import { Margin } from "./icon_button"
|
|
|
|
interface TextButtonOptions {
|
|
layer?:
|
|
| ColorScheme["lowest"]
|
|
| ColorScheme["middle"]
|
|
| ColorScheme["highest"]
|
|
color?: keyof ColorScheme["lowest"]
|
|
margin?: Partial<Margin>
|
|
text_properties?: TextProperties
|
|
}
|
|
|
|
type ToggleableTextButtonOptions = TextButtonOptions & {
|
|
active_color?: keyof ColorScheme["lowest"]
|
|
}
|
|
|
|
export function text_button(
|
|
theme: ColorScheme,
|
|
{ color, layer, margin, text_properties }: TextButtonOptions
|
|
) {
|
|
if (!color) color = "base"
|
|
|
|
const text_options: TextProperties = {
|
|
size: "xs",
|
|
weight: "normal",
|
|
...text_properties,
|
|
}
|
|
|
|
const m = {
|
|
top: margin?.top ?? 0,
|
|
bottom: margin?.bottom ?? 0,
|
|
left: margin?.left ?? 0,
|
|
right: margin?.right ?? 0,
|
|
}
|
|
|
|
return interactive({
|
|
base: {
|
|
corner_radius: 6,
|
|
padding: {
|
|
top: 1,
|
|
bottom: 1,
|
|
left: 6,
|
|
right: 6,
|
|
},
|
|
margin: m,
|
|
button_height: 22,
|
|
...text(layer ?? theme.lowest, "sans", color, text_options),
|
|
},
|
|
state: {
|
|
default: {
|
|
background: background(layer ?? theme.lowest, color),
|
|
color: foreground(layer ?? theme.lowest, color),
|
|
},
|
|
hovered: {
|
|
background: background(layer ?? theme.lowest, color, "hovered"),
|
|
color: foreground(layer ?? theme.lowest, color, "hovered"),
|
|
},
|
|
clicked: {
|
|
background: background(layer ?? theme.lowest, color, "pressed"),
|
|
color: foreground(layer ?? theme.lowest, color, "pressed"),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
export function toggleable_text_button(
|
|
theme: ColorScheme,
|
|
{ color, active_color, margin }: ToggleableTextButtonOptions
|
|
) {
|
|
if (!color) color = "base"
|
|
|
|
return toggleable({
|
|
state: {
|
|
inactive: text_button(theme, { color, margin }),
|
|
active: text_button(theme, {
|
|
color: active_color ? active_color : color,
|
|
margin,
|
|
layer: theme.middle,
|
|
}),
|
|
},
|
|
})
|
|
}
|