2022-09-09 22:46:53 +00:00
|
|
|
import { Ref } from "vue";
|
2022-10-15 20:15:55 +00:00
|
|
|
import { DaisyTheme } from "~~/lib/data/themes";
|
2022-10-07 02:54:09 +00:00
|
|
|
|
2023-01-28 20:53:00 +00:00
|
|
|
export type ViewType = "table" | "card" | "tree";
|
|
|
|
|
2022-09-01 22:32:03 +00:00
|
|
|
export type LocationViewPreferences = {
|
|
|
|
showDetails: boolean;
|
2022-09-06 18:32:13 +00:00
|
|
|
showEmpty: boolean;
|
2023-01-22 06:15:23 +00:00
|
|
|
editorAdvancedView: boolean;
|
2023-01-28 20:53:00 +00:00
|
|
|
itemDisplayView: ViewType;
|
2022-10-07 02:54:09 +00:00
|
|
|
theme: DaisyTheme;
|
2022-09-01 22:32:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2022-09-02 17:46:20 +00:00
|
|
|
* useViewPreferences loads the view preferences from local storage and hydrates
|
2022-09-01 22:32:03 +00:00
|
|
|
* them. These are reactive and will update the local storage when changed.
|
|
|
|
*/
|
2022-09-02 17:46:20 +00:00
|
|
|
export function useViewPreferences(): Ref<LocationViewPreferences> {
|
2022-09-01 22:32:03 +00:00
|
|
|
const results = useLocalStorage(
|
2022-09-09 22:46:53 +00:00
|
|
|
"homebox/preferences/location",
|
2022-09-01 22:32:03 +00:00
|
|
|
{
|
|
|
|
showDetails: true,
|
2022-09-06 18:32:13 +00:00
|
|
|
showEmpty: true,
|
2023-01-22 06:15:23 +00:00
|
|
|
editorAdvancedView: false,
|
2023-01-28 20:53:00 +00:00
|
|
|
itemDisplayView: "card",
|
2023-01-22 06:15:23 +00:00
|
|
|
theme: "homebox",
|
2022-09-01 22:32:03 +00:00
|
|
|
},
|
|
|
|
{ mergeDefaults: true }
|
|
|
|
);
|
|
|
|
|
|
|
|
// casting is required because the type returned is removable, however since we
|
|
|
|
// use `mergeDefaults` the result _should_ always be present.
|
|
|
|
return results as unknown as Ref<LocationViewPreferences>;
|
|
|
|
}
|