use gpui::{AppContext, Global, Subscription, ViewContext}; #[derive(Default)] struct FeatureFlags { flags: Vec, staff: bool, } impl FeatureFlags { fn has_flag(&self, flag: &str) -> bool { self.staff || self.flags.iter().any(|f| f.as_str() == flag) } } impl Global for FeatureFlags {} pub trait FeatureFlag { const NAME: &'static str; } pub trait FeatureFlagViewExt { fn observe_flag(&mut self, callback: F) -> Subscription where F: Fn(bool, &mut V, &mut ViewContext) + Send + Sync + 'static; } impl FeatureFlagViewExt for ViewContext<'_, V> where V: 'static, { fn observe_flag(&mut self, callback: F) -> Subscription where F: Fn(bool, &mut V, &mut ViewContext) + 'static, { self.observe_global::(move |v, cx| { let feature_flags = cx.global::(); callback(feature_flags.has_flag(::NAME), v, cx); }) } } pub trait FeatureFlagAppExt { fn update_flags(&mut self, staff: bool, flags: Vec); fn set_staff(&mut self, staff: bool); fn has_flag(&self) -> bool; fn is_staff(&self) -> bool; } impl FeatureFlagAppExt for AppContext { fn update_flags(&mut self, staff: bool, flags: Vec) { let feature_flags = self.default_global::(); feature_flags.staff = staff; feature_flags.flags = flags; } fn set_staff(&mut self, staff: bool) { let feature_flags = self.default_global::(); feature_flags.staff = staff; } fn has_flag(&self) -> bool { self.try_global::() .map(|flags| flags.has_flag(T::NAME)) .unwrap_or(false) } fn is_staff(&self) -> bool { self.try_global::() .map(|flags| flags.staff) .unwrap_or(false) } }