2021-05-18 17:04:06 +00:00
|
|
|
use crate::cookies::get_cookie;
|
2021-05-13 17:33:57 +00:00
|
|
|
use crate::login::LoginForm;
|
2021-05-18 17:04:06 +00:00
|
|
|
use crate::logout::LogoutButton;
|
2021-05-11 07:54:54 +00:00
|
|
|
use crate::user_table::UserTable;
|
2021-05-08 09:34:55 +00:00
|
|
|
use yew::prelude::*;
|
2021-05-18 17:04:06 +00:00
|
|
|
use yew::services::ConsoleService;
|
2021-05-08 09:34:55 +00:00
|
|
|
|
2021-05-13 17:33:57 +00:00
|
|
|
pub struct App {
|
|
|
|
link: ComponentLink<Self>,
|
|
|
|
user_name: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Msg {
|
|
|
|
Login(String),
|
2021-05-18 17:04:06 +00:00
|
|
|
Logout,
|
2021-05-13 17:33:57 +00:00
|
|
|
}
|
2021-05-08 09:34:55 +00:00
|
|
|
|
|
|
|
impl Component for App {
|
|
|
|
type Message = Msg;
|
|
|
|
type Properties = ();
|
|
|
|
|
2021-05-13 17:33:57 +00:00
|
|
|
fn create(_: Self::Properties, link: ComponentLink<Self>) -> Self {
|
|
|
|
App {
|
|
|
|
link: link.clone(),
|
2021-05-18 17:04:06 +00:00
|
|
|
user_name: get_cookie("user_id").unwrap_or_else(|e| {
|
|
|
|
ConsoleService::error(&e.to_string());
|
|
|
|
None
|
|
|
|
}),
|
2021-05-13 17:33:57 +00:00
|
|
|
}
|
2021-05-08 09:34:55 +00:00
|
|
|
}
|
|
|
|
|
2021-05-13 17:33:57 +00:00
|
|
|
fn update(&mut self, msg: Self::Message) -> ShouldRender {
|
|
|
|
match msg {
|
|
|
|
Msg::Login(user_name) => {
|
|
|
|
self.user_name = Some(user_name);
|
|
|
|
}
|
2021-05-18 17:04:06 +00:00
|
|
|
Msg::Logout => {
|
|
|
|
self.user_name = None;
|
|
|
|
}
|
2021-05-13 17:33:57 +00:00
|
|
|
}
|
|
|
|
true
|
2021-05-08 09:34:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn change(&mut self, _: Self::Properties) -> ShouldRender {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
fn view(&self) -> Html {
|
|
|
|
html! {
|
2021-05-09 11:26:50 +00:00
|
|
|
<div>
|
|
|
|
<h1>{ "LLDAP" }</h1>
|
2021-05-13 17:33:57 +00:00
|
|
|
{if self.user_name.is_some() {
|
2021-05-18 17:04:06 +00:00
|
|
|
html! {
|
|
|
|
<div>
|
|
|
|
<LogoutButton on_logged_out=self.link.callback(|_| Msg::Logout) />
|
|
|
|
<UserTable />
|
|
|
|
</div>
|
|
|
|
}
|
2021-05-13 17:33:57 +00:00
|
|
|
} else {
|
2021-05-18 17:04:06 +00:00
|
|
|
html! {<LoginForm on_logged_in=self.link.callback(|u| Msg::Login(u))/>}
|
2021-05-13 17:33:57 +00:00
|
|
|
}}
|
2021-05-09 11:26:50 +00:00
|
|
|
</div>
|
2021-05-08 09:34:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|