mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-04-20 11:54:23 +02:00
161 lines
4.3 KiB
Rust
161 lines
4.3 KiB
Rust
use std::env;
|
|
|
|
use chrono::{DateTime, Local, Locale};
|
|
use color_eyre::Result;
|
|
use glib::Continue;
|
|
use gtk::prelude::*;
|
|
use gtk::{Align, Button, Calendar, Label, Orientation};
|
|
use serde::Deserialize;
|
|
use tokio::spawn;
|
|
use tokio::sync::mpsc;
|
|
use tokio::time::sleep;
|
|
|
|
use crate::config::CommonConfig;
|
|
use crate::gtk_helpers::IronbarGtkExt;
|
|
use crate::modules::{
|
|
Module, ModuleInfo, ModuleParts, ModulePopup, ModuleUpdateEvent, PopupButton, WidgetContext,
|
|
};
|
|
use crate::{send_async, try_send};
|
|
|
|
#[derive(Debug, Deserialize, Clone)]
|
|
pub struct ClockModule {
|
|
/// Date/time format string.
|
|
/// Default: `%d/%m/%Y %H:%M`
|
|
///
|
|
/// Detail on available tokens can be found here:
|
|
/// <https://docs.rs/chrono/latest/chrono/format/strftime/index.html>
|
|
#[serde(default = "default_format")]
|
|
format: String,
|
|
|
|
#[serde(default = "default_popup_format")]
|
|
format_popup: String,
|
|
|
|
#[serde(default = "default_locale")]
|
|
locale: String,
|
|
|
|
#[serde(flatten)]
|
|
pub common: Option<CommonConfig>,
|
|
}
|
|
|
|
impl Default for ClockModule {
|
|
fn default() -> Self {
|
|
ClockModule {
|
|
format: default_format(),
|
|
format_popup: default_popup_format(),
|
|
locale: default_locale(),
|
|
common: Some(CommonConfig::default()),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn default_format() -> String {
|
|
String::from("%d/%m/%Y %H:%M")
|
|
}
|
|
|
|
fn default_popup_format() -> String {
|
|
String::from("%H:%M:%S")
|
|
}
|
|
|
|
fn default_locale() -> String {
|
|
env::var("LC_TIME")
|
|
.or_else(|_| env::var("LANG"))
|
|
.map(strip_tail)
|
|
.unwrap_or_else(|_| "POSIX".to_string())
|
|
}
|
|
|
|
fn strip_tail(string: String) -> String {
|
|
string
|
|
.split_once('.')
|
|
.map(|(head, _)| head.to_string())
|
|
.unwrap_or(string)
|
|
}
|
|
|
|
impl Module<Button> for ClockModule {
|
|
type SendMessage = DateTime<Local>;
|
|
type ReceiveMessage = ();
|
|
|
|
fn name() -> &'static str {
|
|
"clock"
|
|
}
|
|
|
|
fn spawn_controller(
|
|
&self,
|
|
_info: &ModuleInfo,
|
|
tx: mpsc::Sender<ModuleUpdateEvent<Self::SendMessage>>,
|
|
_rx: mpsc::Receiver<Self::ReceiveMessage>,
|
|
) -> Result<()> {
|
|
spawn(async move {
|
|
loop {
|
|
let date = Local::now();
|
|
send_async!(tx, ModuleUpdateEvent::Update(date));
|
|
sleep(tokio::time::Duration::from_millis(500)).await;
|
|
}
|
|
});
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn into_widget(
|
|
self,
|
|
context: WidgetContext<Self::SendMessage, Self::ReceiveMessage>,
|
|
info: &ModuleInfo,
|
|
) -> Result<ModuleParts<Button>> {
|
|
let button = Button::new();
|
|
let label = Label::new(None);
|
|
label.set_angle(info.bar_position.get_angle());
|
|
button.add(&label);
|
|
|
|
button.connect_clicked(move |button| {
|
|
try_send!(
|
|
context.tx,
|
|
ModuleUpdateEvent::TogglePopup(button.popup_id())
|
|
);
|
|
});
|
|
|
|
let format = self.format.clone();
|
|
let locale = Locale::try_from(self.locale.as_str()).unwrap_or(Locale::POSIX);
|
|
|
|
context.widget_rx.attach(None, move |date| {
|
|
let date_string = format!("{}", date.format_localized(&format, locale));
|
|
label.set_label(&date_string);
|
|
Continue(true)
|
|
});
|
|
|
|
let popup = self
|
|
.into_popup(context.controller_tx, context.popup_rx, info)
|
|
.into_popup_parts(vec![&button]);
|
|
|
|
Ok(ModuleParts::new(button, popup))
|
|
}
|
|
|
|
fn into_popup(
|
|
self,
|
|
_tx: mpsc::Sender<Self::ReceiveMessage>,
|
|
rx: glib::Receiver<Self::SendMessage>,
|
|
_info: &ModuleInfo,
|
|
) -> Option<gtk::Box> {
|
|
let container = gtk::Box::new(Orientation::Vertical, 0);
|
|
|
|
let clock = Label::builder().halign(Align::Center).build();
|
|
clock.add_class("calendar-clock");
|
|
|
|
container.add(&clock);
|
|
|
|
let calendar = Calendar::new();
|
|
calendar.add_class("calendar");
|
|
container.add(&calendar);
|
|
|
|
let format = self.format_popup;
|
|
let locale = Locale::try_from(self.locale.as_str()).unwrap_or(Locale::POSIX);
|
|
|
|
rx.attach(None, move |date| {
|
|
let date_string = format!("{}", date.format_localized(&format, locale));
|
|
clock.set_label(&date_string);
|
|
Continue(true)
|
|
});
|
|
|
|
container.show_all();
|
|
|
|
Some(container)
|
|
}
|
|
}
|