@syncedstore/svelte
Version:
Svelte helper for SyncedStore.
50 lines (45 loc) • 1.27 kB
text/typescript
import { readable } from "svelte/store";
import { Observer, reactive } from "@reactivedata/reactive";
/**
* Svelte helper to enable smart Reactive rerendering of your component.
*
* The usage of the return value is automatically tracked.
* The component where you use this store is then rerendered automatically if any of the
* used values change.
*
* e.g.:
*
* // Store setup:
* const globalStore = SyncedStore({ people: [] });
* globalStore.items.push({ name: "Alice" });
* globalStore.items.push({ name: "Bob" });
*
* // In your component:
* const store = svelteSyncedStore(globalStore);
* <div>{$store.items[1].name}</div>
*
* Now, your component only rerenders when Bob's name changes
* (or if the second element of the array changes)
*
* Binding values works also.
* <input type="text" bind:value={$store.items[1].name} />
*/
export function svelteSyncedStore<T>(syncedObject: T) {
let set: any;
const observer = new Observer(() => {
if (set) {
set(store);
}
});
const store = reactive(syncedObject, observer);
const readableStore = readable(store, (newSet) => {
set = newSet;
return () => {
set = undefined;
};
});
return {
subscribe: readableStore.subscribe,
set: () => {}
}
}