|
@@ -1,19 +1,82 @@
|
|
|
use std::hash::Hash;
|
|
|
|
|
|
use dioxus_core::prelude::*;
|
|
|
+use generational_box::{Storage, UnsyncStorage};
|
|
|
|
|
|
-use crate::{CopyValue, Effect, ReadOnlySignal, Signal};
|
|
|
+use crate::{CopyValue, Effect, ReadOnlySignal, Signal, SignalData};
|
|
|
use rustc_hash::FxHashMap;
|
|
|
|
|
|
/// An object that can efficiently compare a value to a set of values.
|
|
|
#[derive(Debug)]
|
|
|
-pub struct Comparer<R: 'static> {
|
|
|
- subscribers: CopyValue<FxHashMap<R, Signal<bool>>>,
|
|
|
+pub struct Comparer<R: 'static, S: Storage<SignalData<bool>> = UnsyncStorage> {
|
|
|
+ subscribers: CopyValue<FxHashMap<R, Signal<bool, S>>>,
|
|
|
}
|
|
|
|
|
|
impl<R: Eq + Hash> Comparer<R> {
|
|
|
+ /// Creates a new Comparer which efficiently tracks when a value changes to check if it is equal to a set of values.
|
|
|
+ ///
|
|
|
+ /// Generally, you shouldn't need to use this hook. Instead you can use [`crate::use_selector`]. If you have many values that you need to compare to a single value, this hook will change updates from O(n) to O(1) where n is the number of values you are comparing to.
|
|
|
+ pub fn new(mut f: impl FnMut() -> R + 'static) -> Comparer<R> {
|
|
|
+ let subscribers: CopyValue<FxHashMap<R, Signal<bool>>> =
|
|
|
+ CopyValue::new(FxHashMap::default());
|
|
|
+ let previous = CopyValue::new(None);
|
|
|
+
|
|
|
+ Effect::new(move || {
|
|
|
+ let subscribers = subscribers.read();
|
|
|
+ let mut previous = previous.write();
|
|
|
+
|
|
|
+ if let Some(previous) = previous.take() {
|
|
|
+ if let Some(value) = subscribers.get(&previous) {
|
|
|
+ value.set(false);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ let current = f();
|
|
|
+
|
|
|
+ if let Some(value) = subscribers.get(¤t) {
|
|
|
+ value.set(true);
|
|
|
+ }
|
|
|
+
|
|
|
+ *previous = Some(current);
|
|
|
+ });
|
|
|
+
|
|
|
+ Comparer { subscribers }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl<R: Eq + Hash, S: Storage<SignalData<bool>>> Comparer<R, S> {
|
|
|
+ /// Creates a new Comparer that may be `Sync + Send` which efficiently tracks when a value changes to check if it is equal to a set of values.
|
|
|
+ ///
|
|
|
+ /// Generally, you shouldn't need to use this hook. Instead you can use [`crate::use_selector`]. If you have many values that you need to compare to a single value, this hook will change updates from O(n) to O(1) where n is the number of values you are comparing to.
|
|
|
+ pub fn new_maybe_sync(mut f: impl FnMut() -> R + 'static) -> Comparer<R> {
|
|
|
+ let subscribers: CopyValue<FxHashMap<R, Signal<bool>>> =
|
|
|
+ CopyValue::new(FxHashMap::default());
|
|
|
+ let previous = CopyValue::new(None);
|
|
|
+
|
|
|
+ Effect::new(move || {
|
|
|
+ let subscribers = subscribers.read();
|
|
|
+ let mut previous = previous.write();
|
|
|
+
|
|
|
+ if let Some(previous) = previous.take() {
|
|
|
+ if let Some(value) = subscribers.get(&previous) {
|
|
|
+ value.set(false);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ let current = f();
|
|
|
+
|
|
|
+ if let Some(value) = subscribers.get(¤t) {
|
|
|
+ value.set(true);
|
|
|
+ }
|
|
|
+
|
|
|
+ *previous = Some(current);
|
|
|
+ });
|
|
|
+
|
|
|
+ Comparer { subscribers }
|
|
|
+ }
|
|
|
+
|
|
|
/// Returns a signal which is true when the value is equal to the value passed to this function.
|
|
|
- pub fn equal(&self, value: R) -> ReadOnlySignal<bool> {
|
|
|
+ pub fn equal(&self, value: R) -> ReadOnlySignal<bool, S> {
|
|
|
let subscribers = self.subscribers.read();
|
|
|
|
|
|
match subscribers.get(&value) {
|
|
@@ -21,7 +84,7 @@ impl<R: Eq + Hash> Comparer<R> {
|
|
|
None => {
|
|
|
drop(subscribers);
|
|
|
let mut subscribers = self.subscribers.write();
|
|
|
- let signal = Signal::new(false);
|
|
|
+ let signal = Signal::new_maybe_sync(false);
|
|
|
subscribers.insert(value, signal);
|
|
|
signal.into()
|
|
|
}
|
|
@@ -29,13 +92,13 @@ impl<R: Eq + Hash> Comparer<R> {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<R> Clone for Comparer<R> {
|
|
|
+impl<R, S: Storage<SignalData<bool>>> Clone for Comparer<R, S> {
|
|
|
fn clone(&self) -> Self {
|
|
|
*self
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<R> Copy for Comparer<R> {}
|
|
|
+impl<R, S: Storage<SignalData<bool>>> Copy for Comparer<R, S> {}
|
|
|
|
|
|
/// Creates a new Comparer which efficiently tracks when a value changes to check if it is equal to a set of values.
|
|
|
///
|
|
@@ -74,34 +137,5 @@ impl<R> Copy for Comparer<R> {}
|
|
|
/// ```
|
|
|
#[must_use]
|
|
|
pub fn use_comparer<R: Eq + Hash>(cx: &ScopeState, f: impl FnMut() -> R + 'static) -> Comparer<R> {
|
|
|
- *cx.use_hook(move || comparer(f))
|
|
|
-}
|
|
|
-
|
|
|
-/// Creates a new Comparer which efficiently tracks when a value changes to check if it is equal to a set of values.
|
|
|
-///
|
|
|
-/// Generally, you shouldn't need to use this hook. Instead you can use [`crate::use_selector`]. If you have many values that you need to compare to a single value, this hook will change updates from O(n) to O(1) where n is the number of values you are comparing to.
|
|
|
-pub fn comparer<R: Eq + Hash>(mut f: impl FnMut() -> R + 'static) -> Comparer<R> {
|
|
|
- let subscribers: CopyValue<FxHashMap<R, Signal<bool>>> = CopyValue::new(FxHashMap::default());
|
|
|
- let previous = CopyValue::new(None);
|
|
|
-
|
|
|
- Effect::new(move || {
|
|
|
- let subscribers = subscribers.read();
|
|
|
- let mut previous = previous.write();
|
|
|
-
|
|
|
- if let Some(previous) = previous.take() {
|
|
|
- if let Some(value) = subscribers.get(&previous) {
|
|
|
- value.set(false);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- let current = f();
|
|
|
-
|
|
|
- if let Some(value) = subscribers.get(¤t) {
|
|
|
- value.set(true);
|
|
|
- }
|
|
|
-
|
|
|
- *previous = Some(current);
|
|
|
- });
|
|
|
-
|
|
|
- Comparer { subscribers }
|
|
|
+ *cx.use_hook(move || Comparer::new(f))
|
|
|
}
|