use dioxus::prelude::*; use crate::util::model::{session::Session, user::User}; #[component] pub fn Settings() -> Element { rsx! { div { class: "w-full max-w-2xl space-y-3", Account {}, Password {}, } } } fn Account() -> Element { let user_state = use_context::>>(); let user = user_state().unwrap(); let mut is_open = use_signal(|| false); let mut input_email = use_signal(|| user.email); let submit = move |_| async move { if let Ok(_) = change_email(input_email()).await { tracing::info!("User email changed"); }; }; rsx! { div { class: "collapse collapse-arrow bg-base-200", class: if is_open() { "collapse-open" }, div { class: "collapse-title text-lg font-medium hover:cursor-pointer select-none", onclick: move |_| is_open.toggle(), "Account", }, div { class: "collapse-content", div { class: "pl-2 flex flex-col gap-3", label { class: "form-control w-full", div { class: "label", span { class: "label-text", "Account ID" } } b { "{user.id}" }, } label { class: "form-control w-full", div { class: "label", span { class: "label-text", "Email" } } input { r#type: "text", class: "input input-bordered w-full", oninput: move |event| input_email.set(event.value()), value: "{input_email}", } } div { class: "w-full flex mt-5", button { class: "btn btn-outline btn-error", onclick: move |_| async move { if let Ok(_) = logout().await { let window = web_sys::window().expect("Could not find window"); window.location().reload().expect("Could not reload window"); } }, "Uitloggen", } button { class: "ml-auto btn btn-primary", onclick: submit, "Opslaan", } } } }, }, } } #[server] async fn logout() -> Result<(), ServerFnError> { let session_token = Session::get_token_from_cookie().await?; Session::delete_session(session_token).await?; Session::delete_cookie().await?; Ok(()) } #[server] async fn change_email(new_email: String) -> Result<(), ServerFnError> { let user = Session::fetch_current_user().await?; user.change_email(new_email).await?; Ok(()) } fn Password() -> Element { let mut is_open = use_signal(|| false); let mut input_old_password = use_signal(|| "".to_string()); let mut input_new_password = use_signal(|| "".to_string()); let mut input_new_password_repeat = use_signal(|| "".to_string()); let submit = move |_| async move { if let Ok(_) = change_password(input_old_password(), input_new_password()).await { tracing::info!("User password changed"); }; }; rsx! { div { class: "collapse collapse-arrow bg-base-200", class: if is_open() { "collapse-open" }, div { class: "collapse-title text-lg font-medium hover:cursor-pointer select-none", onclick: move |_| is_open.toggle(), "Wachtwoord", }, div { class: "collapse-content", div { class: "pl-2 flex flex-col gap-3", label { class: "form-control w-full", div { class: "label", span { class: "label-text", "Huidig wachtwoord" } } input { r#type: "password", class: "input input-bordered w-full", oninput: move |event| input_old_password.set(event.value()), value: "{input_old_password}", } } label { class: "form-control w-full", div { class: "label", span { class: "label-text", "Nieuw wachtwoord" } } input { r#type: "password", class: "input input-bordered w-full", oninput: move |event| input_new_password.set(event.value()), value: "{input_new_password}", } } label { class: "form-control w-full", div { class: "label", span { class: "label-text", "Herhaal nieuw wachtwoord" } } input { r#type: "password", class: "input input-bordered w-full", oninput: move |event| input_new_password_repeat.set(event.value()), value: "{input_new_password_repeat}", } } div { class: "w-full flex mt-5", button { class: "ml-auto btn btn-primary", onclick: submit, "Opslaan", } } } }, }, } } #[server] async fn change_password(old_password: String, new_password: String) -> Result<(), ServerFnError> { let user = Session::fetch_current_user().await?; user.change_password(old_password, new_password).await?; Ok(()) }