Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow open detection #27

Merged
merged 2 commits into from
May 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub const COMMAND_MESSAGE_NAME: &str = "console_command";
pub const COMMAND_RESULT_NAME: &str = "console_result";

#[derive(Default, Resource)]
pub(crate) struct ConsoleUiState {
pub struct ConsoleUiState {
/// Wherever the console is open or not.
pub(crate) open: bool,
/// Whether we have set focus this open or not.
Expand All @@ -36,6 +36,13 @@ pub(crate) struct ConsoleUiState {
pub(crate) command: String,
}

impl ConsoleUiState {
/// Whether the console is currently open or not
pub fn open(&self) -> bool {
self.open
}
}

fn system_time_to_chrono_utc(t: SystemTime) -> chrono::DateTime<chrono::Utc> {
let dur = t.duration_since(web_time::SystemTime::UNIX_EPOCH).unwrap();
let (sec, nsec) = (dur.as_secs() as i64, dur.subsec_nanos());
Expand Down