use crate::infra::{ api::HostService, common_component::{CommonComponent, CommonComponentParts}, cookies::delete_cookie, }; use anyhow::Result; use yew::prelude::*; pub struct LogoutButton { common: CommonComponentParts, } #[derive(Clone, PartialEq, Properties)] pub struct Props { pub on_logged_out: Callback<()>, } pub enum Msg { LogoutRequested, LogoutCompleted(Result<()>), } impl CommonComponent for LogoutButton { fn handle_msg( &mut self, ctx: &Context, msg: ::Message, ) -> Result { match msg { Msg::LogoutRequested => { self.common .call_backend(ctx, HostService::logout(), Msg::LogoutCompleted); } Msg::LogoutCompleted(res) => { res?; delete_cookie("user_id")?; ctx.props().on_logged_out.emit(()); } } Ok(false) } fn mut_common(&mut self) -> &mut CommonComponentParts { &mut self.common } } impl Component for LogoutButton { type Message = Msg; type Properties = Props; fn create(_: &Context) -> Self { LogoutButton { common: CommonComponentParts::::create(), } } fn update(&mut self, ctx: &Context, msg: Self::Message) -> bool { CommonComponentParts::::update(self, ctx, msg) } fn view(&self, ctx: &Context) -> Html { let link = &ctx.link(); html! { } } }