summaryrefslogtreecommitdiff
path: root/src/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/popdownwindow.tsx51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/widgets/popdownwindow.tsx b/src/widgets/popdownwindow.tsx
deleted file mode 100644
index ea2814f..0000000
--- a/src/widgets/popdownwindow.tsx
+++ /dev/null
@@ -1,51 +0,0 @@
-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>
-);