You've already forked AstralRinth
forked from didirus/AstralRinth
Rewrite cosmetics and theme preferences (#1292)
- Cosmetics and theme preferences are now only stored in cookies instead of a combination of both cookies and state. - The theme plugin now supports client hints. This allows the server to render a page using the client-preferred theme provided it supplies this information (any browser other than Firefox), helping to avoid an annoying flash while the page is hydrating. - The previous workaround using the Nitro plugin has been removed. Its functionality is now handled by the Nuxt theme plugin with cleaner code. - All pages and components now use the new plugins.
This commit is contained in:
57
apps/frontend/src/plugins/cosmetics.ts
Normal file
57
apps/frontend/src/plugins/cosmetics.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import type { Theme } from "./theme.ts";
|
||||
|
||||
export type DisplayMode = "list" | "gallery" | "grid";
|
||||
|
||||
export type DisplayLocation =
|
||||
| "mod"
|
||||
| "plugin"
|
||||
| "resourcepack"
|
||||
| "modpack"
|
||||
| "shader"
|
||||
| "datapack"
|
||||
| "user"
|
||||
| "collection";
|
||||
|
||||
export interface Cosmetics {
|
||||
searchLayout: boolean;
|
||||
projectLayout: boolean;
|
||||
advancedRendering: boolean;
|
||||
externalLinksNewTab: boolean;
|
||||
notUsingBlockers: boolean;
|
||||
hideModrinthAppPromos: boolean;
|
||||
preferredDarkTheme: Theme;
|
||||
searchDisplayMode: Record<DisplayLocation, DisplayMode>;
|
||||
hideStagingBanner: boolean;
|
||||
}
|
||||
|
||||
export default defineNuxtPlugin(() => {
|
||||
const cosmetics = useCookie<Cosmetics>("cosmetics", {
|
||||
maxAge: 60 * 60 * 24 * 365 * 10,
|
||||
sameSite: "lax",
|
||||
secure: true,
|
||||
httpOnly: false,
|
||||
path: "/",
|
||||
default: () => ({
|
||||
searchLayout: false,
|
||||
projectLayout: false,
|
||||
advancedRendering: true,
|
||||
externalLinksNewTab: true,
|
||||
notUsingBlockers: false,
|
||||
hideModrinthAppPromos: false,
|
||||
preferredDarkTheme: "dark",
|
||||
searchDisplayMode: {
|
||||
mod: "list",
|
||||
plugin: "list",
|
||||
resourcepack: "gallery",
|
||||
modpack: "list",
|
||||
shader: "gallery",
|
||||
datapack: "list",
|
||||
user: "list",
|
||||
collection: "list",
|
||||
},
|
||||
hideStagingBanner: false,
|
||||
}),
|
||||
});
|
||||
|
||||
return { provide: { cosmetics } };
|
||||
});
|
||||
Reference in New Issue
Block a user