summaryrefslogtreecommitdiff
path: root/examples/js/simple-bar/widget/Bar.tsx
diff options
context:
space:
mode:
authorAylur <[email protected]>2025-01-16 17:37:00 +0100
committerAylur <[email protected]>2025-01-16 17:37:04 +0100
commit9e8634d892c559c5b44565a68bf35b13cbcb5572 (patch)
tree36a8b911e919959cdf64d3c64646f5066c6a2523 /examples/js/simple-bar/widget/Bar.tsx
parentbc796ac226800c43e724e27f53f410c157acaffe (diff)
add: gtk3 ts popover example
closes #224 closes #157
Diffstat (limited to 'examples/js/simple-bar/widget/Bar.tsx')
-rw-r--r--examples/js/simple-bar/widget/Bar.tsx161
1 files changed, 0 insertions, 161 deletions
diff --git a/examples/js/simple-bar/widget/Bar.tsx b/examples/js/simple-bar/widget/Bar.tsx
deleted file mode 100644
index 6592f6a..0000000
--- a/examples/js/simple-bar/widget/Bar.tsx
+++ /dev/null
@@ -1,161 +0,0 @@
-import { App } from "astal/gtk3"
-import { Variable, GLib, bind } from "astal"
-import { Astal, Gtk, Gdk } from "astal/gtk3"
-import Hyprland from "gi://AstalHyprland"
-import Mpris from "gi://AstalMpris"
-import Battery from "gi://AstalBattery"
-import Wp from "gi://AstalWp"
-import Network from "gi://AstalNetwork"
-import Tray from "gi://AstalTray"
-
-function SysTray() {
- const tray = Tray.get_default()
-
- return <box className="SysTray">
- {bind(tray, "items").as(items => items.map(item => (
- <menubutton
- tooltipMarkup={bind(item, "tooltipMarkup")}
- usePopover={false}
- actionGroup={bind(item, "actionGroup").as(ag => ["dbusmenu", ag])}
- menuModel={bind(item, "menuModel")}>
- <icon gicon={bind(item, "gicon")} />
- </menubutton>
- )))}
- </box>
-}
-
-function Wifi() {
- const network = Network.get_default()
- const wifi = bind(network, "wifi")
-
- return <box visible={wifi.as(Boolean)}>
- {wifi.as(wifi => wifi && (
- <icon
- tooltipText={bind(wifi, "ssid").as(String)}
- className="Wifi"
- icon={bind(wifi, "iconName")}
- />
- ))}
- </box>
-
-}
-
-function AudioSlider() {
- const speaker = Wp.get_default()?.audio.defaultSpeaker!
-
- return <box className="AudioSlider" css="min-width: 140px">
- <icon icon={bind(speaker, "volumeIcon")} />
- <slider
- hexpand
- onDragged={({ value }) => speaker.volume = value}
- value={bind(speaker, "volume")}
- />
- </box>
-}
-
-function BatteryLevel() {
- const bat = Battery.get_default()
-
- return <box className="Battery"
- visible={bind(bat, "isPresent")}>
- <icon icon={bind(bat, "batteryIconName")} />
- <label label={bind(bat, "percentage").as(p =>
- `${Math.floor(p * 100)} %`
- )} />
- </box>
-}
-
-function Media() {
- const mpris = Mpris.get_default()
-
- return <box className="Media">
- {bind(mpris, "players").as(ps => ps[0] ? (
- <box>
- <box
- className="Cover"
- valign={Gtk.Align.CENTER}
- css={bind(ps[0], "coverArt").as(cover =>
- `background-image: url('${cover}');`
- )}
- />
- <label
- label={bind(ps[0], "title").as(() =>
- `${ps[0].title} - ${ps[0].artist}`
- )}
- />
- </box>
- ) : (
- "Nothing Playing"
- ))}
- </box>
-}
-
-function Workspaces() {
- const hypr = Hyprland.get_default()
-
- return <box className="Workspaces">
- {bind(hypr, "workspaces").as(wss => wss
- .filter(ws => !(ws.id >= -99 && ws.id <= -2)) // filter out special workspaces
- .sort((a, b) => a.id - b.id)
- .map(ws => (
- <button
- className={bind(hypr, "focusedWorkspace").as(fw =>
- ws === fw ? "focused" : "")}
- onClicked={() => ws.focus()}>
- {ws.id}
- </button>
- ))
- )}
- </box>
-}
-
-function FocusedClient() {
- const hypr = Hyprland.get_default()
- const focused = bind(hypr, "focusedClient")
-
- return <box
- className="Focused"
- visible={focused.as(Boolean)}>
- {focused.as(client => (
- client && <label label={bind(client, "title").as(String)} />
- ))}
- </box>
-}
-
-function Time({ format = "%H:%M - %A %e." }) {
- const time = Variable<string>("").poll(1000, () =>
- GLib.DateTime.new_now_local().format(format)!)
-
- return <label
- className="Time"
- onDestroy={() => time.drop()}
- label={time()}
- />
-}
-
-export default function Bar(monitor: Gdk.Monitor) {
- const { TOP, LEFT, RIGHT } = Astal.WindowAnchor
-
- return <window
- className="Bar"
- gdkmonitor={monitor}
- exclusivity={Astal.Exclusivity.EXCLUSIVE}
- anchor={TOP | LEFT | RIGHT}>
- <centerbox>
- <box hexpand halign={Gtk.Align.START}>
- <Workspaces />
- <FocusedClient />
- </box>
- <box>
- <Media />
- </box>
- <box hexpand halign={Gtk.Align.END} >
- <SysTray />
- <Wifi />
- <AudioSlider />
- <BatteryLevel />
- <Time />
- </box>
- </centerbox>
- </window>
-}