2020-03-30 23:19:00 +02:00
|
|
|
use seed::fetch::{FetchObject, ResponseWithDataResult};
|
2020-03-30 14:26:25 +02:00
|
|
|
use seed::{prelude::*, *};
|
|
|
|
|
2020-03-30 14:56:22 +02:00
|
|
|
use jirs_data::FullProjectResponse;
|
|
|
|
|
2020-03-31 08:56:46 +02:00
|
|
|
use crate::model::{Icon, Model};
|
2020-03-30 14:56:22 +02:00
|
|
|
use crate::Msg;
|
|
|
|
|
2020-03-31 08:56:46 +02:00
|
|
|
pub mod aside;
|
|
|
|
pub mod navbar_left;
|
2020-03-30 23:19:00 +02:00
|
|
|
pub mod styled_button;
|
2020-03-31 08:56:46 +02:00
|
|
|
pub mod styled_input;
|
2020-03-30 23:19:00 +02:00
|
|
|
pub mod styled_tooltip;
|
2020-03-30 16:26:24 +02:00
|
|
|
|
2020-03-30 23:19:00 +02:00
|
|
|
pub fn styled_icon(icon: Icon) -> Node<Msg> {
|
|
|
|
i![attrs![At::Class => format!("styledIcon {}", icon)], ""]
|
|
|
|
}
|
|
|
|
|
2020-03-30 14:26:25 +02:00
|
|
|
pub fn divider() -> Node<Msg> {
|
|
|
|
div![attrs![At::Class => "divider"], ""]
|
|
|
|
}
|
|
|
|
|
2020-03-31 08:56:46 +02:00
|
|
|
pub fn inner_layout(model: &Model, page_name: &str, children: Vec<Node<Msg>>) -> Node<Msg> {
|
2020-03-30 16:26:24 +02:00
|
|
|
article![
|
2020-03-31 08:56:46 +02:00
|
|
|
attrs![At::Class => "inner-layout"],
|
|
|
|
id![page_name],
|
|
|
|
navbar_left::render(model),
|
|
|
|
aside::render(model),
|
2020-03-30 16:26:24 +02:00
|
|
|
children,
|
|
|
|
]
|
2020-03-30 14:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn host_client(host_url: String, path: &str) -> Result<Request, String> {
|
|
|
|
let url = format!("{}{}", host_url, path);
|
|
|
|
let w = window();
|
|
|
|
let store = match w.local_storage() {
|
|
|
|
Ok(Some(store)) => store,
|
|
|
|
_ => return Err("Local storage is not available".to_string()),
|
|
|
|
};
|
|
|
|
let token = match store.get_item("authToken") {
|
|
|
|
Ok(Some(s)) => s,
|
|
|
|
_ => "".to_string(),
|
|
|
|
};
|
|
|
|
Ok(Request::new(url).header("Authorization", format!("Bearer {}", token).as_str()))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update(msg: &Msg, model: &mut crate::model::Model, _orders: &mut impl Orders<Msg>) {
|
|
|
|
match msg {
|
|
|
|
Msg::CurrentProjectResult(FetchObject {
|
|
|
|
result:
|
|
|
|
Ok(ResponseWithDataResult {
|
|
|
|
data: Ok(body),
|
|
|
|
status,
|
|
|
|
..
|
|
|
|
}),
|
|
|
|
..
|
|
|
|
}) if status.is_ok() => match serde_json::from_str::<'_, FullProjectResponse>(body) {
|
|
|
|
Ok(project_response) => {
|
|
|
|
model.project = Some(project_response.project);
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
},
|
|
|
|
Msg::CurrentUserResult(FetchObject {
|
|
|
|
result:
|
|
|
|
Ok(ResponseWithDataResult {
|
|
|
|
data: Ok(body),
|
|
|
|
status,
|
|
|
|
..
|
|
|
|
}),
|
|
|
|
..
|
|
|
|
}) if status.is_ok() => match serde_json::from_str::<'_, jirs_data::User>(body) {
|
|
|
|
Ok(user) => {
|
|
|
|
model.user = Some(user);
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|