* First version of the cava module * Update cava stuff * Update themes for cava * Update themes * Handle cava visibility when null * Add bar characters in options --------- Co-authored-by: Ed Bennett <ed@dodimead.com> Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>
94 lines
2.7 KiB
TypeScript
94 lines
2.7 KiB
TypeScript
import { bind, Variable } from 'astal';
|
|
import { BarBoxChild, BarModule } from 'src/lib/types/bar';
|
|
import { BarButtonStyles } from 'src/lib/types/options';
|
|
import options from 'src/options';
|
|
|
|
const { style } = options.theme.bar.buttons;
|
|
|
|
export const Module = ({
|
|
icon,
|
|
textIcon,
|
|
useTextIcon = bind(Variable(false)),
|
|
label,
|
|
tooltipText,
|
|
boxClass,
|
|
isVis,
|
|
props = {},
|
|
showLabelBinding = bind(Variable(true)),
|
|
showIconBinding = bind(Variable(true)),
|
|
showLabel,
|
|
labelHook,
|
|
hook,
|
|
}: BarModule): BarBoxChild => {
|
|
const getIconWidget = (useTxtIcn: boolean): JSX.Element | undefined => {
|
|
let iconWidget: JSX.Element | undefined;
|
|
|
|
if (icon !== undefined && !useTxtIcn) {
|
|
iconWidget = <icon className={`txt-icon bar-button-icon module-icon ${boxClass}`} icon={icon} />;
|
|
} else if (textIcon !== undefined) {
|
|
iconWidget = <label className={`txt-icon bar-button-icon module-icon ${boxClass}`} label={textIcon} />;
|
|
}
|
|
|
|
return iconWidget;
|
|
};
|
|
|
|
const componentClass = Variable.derive(
|
|
[bind(style), showLabelBinding],
|
|
(style: BarButtonStyles, shwLabel: boolean) => {
|
|
const shouldShowLabel = shwLabel || showLabel;
|
|
const styleMap = {
|
|
default: 'style1',
|
|
split: 'style2',
|
|
wave: 'style3',
|
|
wave2: 'style3',
|
|
};
|
|
return `${boxClass} ${styleMap[style]} ${!shouldShowLabel ? 'no-label' : ''}`;
|
|
},
|
|
);
|
|
|
|
const componentChildren = Variable.derive(
|
|
[showLabelBinding, showIconBinding, useTextIcon],
|
|
(showLabel: boolean, showIcon: boolean, forceTextIcon: boolean): JSX.Element[] => {
|
|
const childrenArray = [];
|
|
const iconWidget = getIconWidget(forceTextIcon);
|
|
|
|
if (showIcon && iconWidget !== undefined) {
|
|
childrenArray.push(iconWidget);
|
|
}
|
|
|
|
if (showLabel) {
|
|
childrenArray.push(
|
|
<label
|
|
className={`bar-button-label module-label ${boxClass}`}
|
|
label={label ?? ''}
|
|
setup={labelHook}
|
|
/>,
|
|
);
|
|
}
|
|
return childrenArray;
|
|
},
|
|
);
|
|
|
|
const component: JSX.Element = (
|
|
<box
|
|
tooltipText={tooltipText}
|
|
className={componentClass()}
|
|
setup={hook}
|
|
onDestroy={() => {
|
|
componentChildren.drop();
|
|
componentClass.drop();
|
|
}}
|
|
>
|
|
{componentChildren()}
|
|
</box>
|
|
);
|
|
|
|
return {
|
|
component,
|
|
tooltip_text: tooltipText,
|
|
isVis: isVis,
|
|
boxClass,
|
|
props,
|
|
};
|
|
};
|