summaryrefslogtreecommitdiff
path: root/src/widgets/popdownwindow.tsx
blob: ea2814face6ed18a86f7a2a6a3d53e333457402e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { Binding } from "astal";
import { Gtk } from "astal/gtk3";
import PopupWindow from "./popupwindow";

export default ({
    name,
    count,
    countLabel = count.as(c => `${c} ${name.slice(0, -1)}${c === 1 ? "" : "s"}`),
    headerButtons,
    emptyIcon,
    emptyLabel,
    list,
}: {
    name: string;
    count: Binding<number>;
    countLabel?: Binding<string>;
    headerButtons: { label: string | Binding<string>; onClicked: () => void; enabled?: Binding<boolean> }[];
    emptyIcon: string;
    emptyLabel: string | Binding<string>;
    list: JSX.Element;
}) => (
    <PopupWindow name={name}>
        <box vertical className={name}>
            <box className="header">
                <label label={countLabel} />
                <box hexpand />
                {headerButtons.map(({ label, onClicked, enabled }) => (
                    <button
                        cursor="pointer"
                        onClicked={onClicked}
                        label={label}
                        className={enabled?.as(d => (d ? "enabled" : ""))}
                    />
                ))}
            </box>
            <stack
                transitionType={Gtk.StackTransitionType.CROSSFADE}
                transitionDuration={150}
                shown={count.as(c => (c > 0 ? "list" : "empty"))}
            >
                <box vertical valign={Gtk.Align.CENTER} name="empty">
                    <label className="icon" label={emptyIcon} />
                    <label label={emptyLabel} />
                </box>
                <scrollable expand hscroll={Gtk.PolicyType.NEVER} name="list">
                    {list}
                </scrollable>
            </stack>
        </box>
    </PopupWindow>
);