1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Lint and improve comments

This commit is contained in:
Andrew Kingston 2022-10-21 16:59:26 +01:00
parent 9d10e938a4
commit e124a70def
2 changed files with 24 additions and 12 deletions

View file

@ -1,4 +1,4 @@
import { writable, derived } from "svelte/store"
import { writable } from "svelte/store"
import { computed } from "../utils/computed.js"
const createDndStore = () => {

View file

@ -1,20 +1,22 @@
import { writable } from "svelte/store"
const getKey = value => {
if (value == null || typeof value !== "object") {
return value
} else {
return JSON.stringify(value)
}
}
export const computed = (store, getValue) => {
const initialValue = getValue(store)
/**
* Extension of Svelte's built in "derived" stores, which the addition of deep
* comparison of non-primitives. Falls back to using shallow comparison for
* primitive types to avoid performance penalties.
* Useful for instances where a deep comparison is cheaper than an additional
* store invalidation.
* @param store the store to observer
* @param deriveValue the derivation function
* @returns {Writable<*>} a derived svelte store containing just the derived value
*/
export const computed = (store, deriveValue) => {
const initialValue = deriveValue(store)
const computedStore = writable(initialValue)
let lastKey = getKey(initialValue)
store.subscribe(state => {
const value = getValue(state)
const value = deriveValue(state)
const key = getKey(value)
if (key !== lastKey) {
lastKey = key
@ -24,3 +26,13 @@ export const computed = (store, getValue) => {
return computedStore
}
// Helper function to serialise any value into a primitive which can be cheaply
// and shallowly compared
const getKey = value => {
if (value == null || typeof value !== "object") {
return value
} else {
return JSON.stringify(value)
}
}