2023-06-26 10:10:08 +00:00
|
|
|
import {createValue, type Value} from "@holllo/webextension-storage";
|
2023-06-23 10:52:03 +00:00
|
|
|
import browser from "webextension-polyfill";
|
2023-06-27 11:51:04 +00:00
|
|
|
import {collectUserLabels} from "./user-label.js";
|
|
|
|
import {Data, Feature} from "./enums.js";
|
2023-06-23 10:52:03 +00:00
|
|
|
|
2023-06-27 11:51:04 +00:00
|
|
|
export * from "./user-label.js";
|
|
|
|
export * from "./enums.js";
|
2023-06-23 10:52:03 +00:00
|
|
|
|
|
|
|
export type HideVotesData = {
|
|
|
|
otherComments: boolean;
|
|
|
|
otherTopics: boolean;
|
|
|
|
ownComments: boolean;
|
|
|
|
ownTopics: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type UsernameColor = {
|
|
|
|
color: string;
|
|
|
|
id: number;
|
|
|
|
username: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type UsernameColorsData = UsernameColor[];
|
|
|
|
|
|
|
|
export const storageValues = {
|
|
|
|
[Data.EnabledFeatures]: createValue({
|
|
|
|
deserialize: (input) => new Set(JSON.parse(input) as Feature[]),
|
|
|
|
serialize: (input) => JSON.stringify(Array.from(input)),
|
|
|
|
key: Data.EnabledFeatures,
|
|
|
|
value: new Set([]),
|
|
|
|
storage: browser.storage.sync,
|
|
|
|
}),
|
|
|
|
[Data.KnownGroups]: createValue({
|
|
|
|
deserialize: (input) => new Set(JSON.parse(input) as string[]),
|
|
|
|
serialize: (input) => JSON.stringify(Array.from(input)),
|
|
|
|
key: Data.KnownGroups,
|
|
|
|
value: new Set([]),
|
|
|
|
storage: browser.storage.sync,
|
|
|
|
}),
|
|
|
|
[Data.LatestActiveFeatureTab]: createValue({
|
|
|
|
deserialize: (input) => JSON.parse(input) as Feature,
|
|
|
|
serialize: (input) => JSON.stringify(input),
|
|
|
|
key: Data.LatestActiveFeatureTab,
|
|
|
|
value: Feature.Debug,
|
|
|
|
storage: browser.storage.sync,
|
|
|
|
}),
|
2023-06-24 14:32:47 +00:00
|
|
|
[Data.Version]: createValue({
|
|
|
|
deserialize: (input) => JSON.parse(input) as string,
|
|
|
|
serialize: (input) => JSON.stringify(input),
|
|
|
|
key: Data.Version,
|
|
|
|
value: "2.0.0",
|
|
|
|
storage: browser.storage.sync,
|
|
|
|
}),
|
2023-06-23 10:52:03 +00:00
|
|
|
[Feature.HideVotes]: createValue({
|
|
|
|
deserialize: (input) => JSON.parse(input) as HideVotesData,
|
|
|
|
serialize: (input) => JSON.stringify(input),
|
|
|
|
key: Feature.HideVotes,
|
|
|
|
value: {
|
|
|
|
otherComments: false,
|
|
|
|
otherTopics: false,
|
|
|
|
ownComments: true,
|
|
|
|
ownTopics: true,
|
|
|
|
},
|
|
|
|
storage: browser.storage.sync,
|
|
|
|
}),
|
2023-06-24 12:00:27 +00:00
|
|
|
[Feature.UserLabels]: collectUserLabels(),
|
2023-06-23 10:52:03 +00:00
|
|
|
[Feature.UsernameColors]: createValue({
|
|
|
|
deserialize: (input) => JSON.parse(input) as UsernameColorsData,
|
|
|
|
serialize: (input) => JSON.stringify(Array.from(input)),
|
|
|
|
key: Feature.UsernameColors,
|
|
|
|
value: [],
|
|
|
|
storage: browser.storage.sync,
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
|
|
|
|
type StorageValues = typeof storageValues;
|
|
|
|
|
|
|
|
export async function fromStorage<K extends keyof StorageValues>(
|
|
|
|
key: K,
|
|
|
|
): Promise<StorageValues[K]> {
|
|
|
|
return storageValues[key];
|
|
|
|
}
|