Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Cai <github@jimmycai.com>2022-06-12 14:31:41 +0300
committerGitHub <noreply@github.com>2022-06-12 14:31:41 +0300
commitb63e6a9c6299975d08a88324303af7111438d73d (patch)
tree240c7bec32a8072c1a9f7492ced07c293fbfcfb2
parentde08e29b003f0422c17441ebaa6aee66f53313af (diff)
refactor: delete color.ts
-rw-r--r--assets/ts/color.ts63
1 files changed, 0 insertions, 63 deletions
diff --git a/assets/ts/color.ts b/assets/ts/color.ts
deleted file mode 100644
index 50581d1..0000000
--- a/assets/ts/color.ts
+++ /dev/null
@@ -1,63 +0,0 @@
-interface colorScheme {
- hash: string, /// Regenerate color scheme when the image hash is changed
- DarkMuted: {
- hex: string,
- rgb: Number[],
- bodyTextColor: string
- },
- Vibrant: {
- hex: string,
- rgb: Number[],
- bodyTextColor: string
- }
-}
-
-let colorsCache: { [key: string]: colorScheme } = {};
-
-if (localStorage.hasOwnProperty('StackColorsCache')) {
- try {
- colorsCache = JSON.parse(localStorage.getItem('StackColorsCache'));
- }
- catch (e) {
- colorsCache = {};
- }
-}
-
-async function getColor(key: string, hash: string, imageURL: string) {
- if (!key) {
- /**
- * If no key is provided, do not cache the result
- */
- return await Vibrant.from(imageURL).getPalette();
- }
-
- if (!colorsCache.hasOwnProperty(key) || colorsCache[key].hash !== hash) {
- /**
- * If key is provided, but not found in cache, or the hash mismatches => Regenerate color scheme
- */
- const palette = await Vibrant.from(imageURL).getPalette();
-
- colorsCache[key] = {
- hash: hash,
- Vibrant: {
- hex: palette.Vibrant.hex,
- rgb: palette.Vibrant.rgb,
- bodyTextColor: palette.Vibrant.bodyTextColor
- },
- DarkMuted: {
- hex: palette.DarkMuted.hex,
- rgb: palette.DarkMuted.rgb,
- bodyTextColor: palette.DarkMuted.bodyTextColor
- }
- }
-
- /* Save the result in localStorage */
- localStorage.setItem('StackColorsCache', JSON.stringify(colorsCache));
- }
-
- return colorsCache[key];
-}
-
-export {
- getColor
-} \ No newline at end of file