-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a string comparison on the output of the
derived
store (#1186)
- Loading branch information
Showing
3 changed files
with
56 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { derived, type Readable, type Stores, type StoresValues } from 'svelte/store'; | ||
|
||
export function derivedDeeply<S extends Stores, T>( | ||
stores: S, | ||
fn: (values: StoresValues<S>) => T, | ||
initialValue?: T, | ||
): Readable<T> { | ||
return derived( | ||
stores, | ||
($stores, _set, update) => { | ||
const nextValue = fn($stores); | ||
|
||
update(prevValue => { | ||
let prevValueString: string; | ||
let nextValueString: string; | ||
|
||
if (typeof prevValue === 'object') { | ||
prevValueString = JSON.stringify(prevValue); | ||
} else { | ||
prevValueString = `${prevValue}`; | ||
} | ||
|
||
if (typeof nextValue === 'object') { | ||
nextValueString = JSON.stringify(nextValue); | ||
} else { | ||
nextValueString = `${nextValue}`; | ||
} | ||
|
||
if (prevValueString === nextValueString) { | ||
return prevValue; | ||
} | ||
|
||
return nextValue; | ||
}); | ||
}, | ||
initialValue, | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters