allowing plugins to clear their local storage
hey everyone :3
i am trying to write a plugin that kinda has an eye out for one with how much time one spends on fedi.
anyways part of that is writing some stuff to local storage with Mk:save
as i think provided by packages/frontend/src/scripts/aiscript/api.ts
. now it would be great to be able to clear them because from my understanding they would just kinda acrew given i'd use a date for the key. avoiding setting too many of those keys would mean doing something like setting the key to anything constant really instead of the date, then setting the value to something like the string interpolated (idk gitlab markdown parsing not following the spec here?) {date}:{actual_value}
in the value, splitting that and then doing the thingies. which would be slightly evil.
so i'd like to propose adding something like:
'Mk:remove': values.FN_NATIVE(([key]) => {
utils.assertString(key);
miLocalStorage.removeItem(`aiscript:${opts.storageKey}:${key.value}`);
return values.NULL;
}),
i think this works like i havent tested it or anything though. uhnm and i hope this is fine to propose kinda outta the loop with where everything is at, yes uhnm would be nice.
edit: and if anyone has a good way with which i could check if the window is in focus that would be
great as well, the other ideas i had for checking the activity were a bit cursed.
edit edit (for the case anyone finds this when looking it up umhn doing stuff with the Plugin:register_*_interruptor
things works great :>