import { runAsyncCommand, throttledScrollHandler } from 'src/components/bar/utils/helpers'; import { BarBoxChild } from 'src/lib/types/bar'; import options from 'src/options'; import { hyprlandService } from 'src/lib/constants/services'; import AstalHyprland from 'gi://AstalHyprland?version=0.1'; import { useHook } from 'src/lib/shared/hookHandler'; import { onMiddleClick, onPrimaryClick, onScroll, onSecondaryClick } from 'src/lib/shared/eventHandlers'; import { bind, Variable } from 'astal'; import { getTitle, getWindowMatch, truncateTitle } from './helpers/title'; import { Astal } from 'astal/gtk3'; const { leftClick, rightClick, middleClick, scrollDown, scrollUp } = options.bar.windowtitle; const ClientTitle = (): BarBoxChild => { const { custom_title, class_name, label, icon, truncation, truncation_size } = options.bar.windowtitle; const componentClassName = Variable.derive( [bind(options.theme.bar.buttons.style), bind(label)], (style: string, showLabel: boolean) => { const styleMap: Record = { default: 'style1', split: 'style2', wave: 'style3', wave2: 'style3', }; return `windowtitle-container ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`; }, ); const componentChildren = Variable.derive( [ bind(hyprlandService, 'focusedClient'), bind(custom_title), bind(class_name), bind(label), bind(icon), bind(truncation), bind(truncation_size), ], ( client: AstalHyprland.Client, useCustomTitle: boolean, useClassName: boolean, showLabel: boolean, showIcon: boolean, truncate: boolean, truncationSize: number, ) => { const children: JSX.Element[] = []; if (showIcon) { children.push(