mirror of
https://github.com/modrinth/code.git
synced 2026-08-26 17:44:50 +00:00
* feat: base of instances v2 * feat: use old profiles with compat layer * prototype: instances v2 * fix: install_from using profile * fix: skins migration fix * fix: frontend still using profile path * fix: add update proj multiselect guard * fix: cargo fmt * fix: content missing fields * feat: break up app-lib/api/instance.rs * fix: check_content_updates mismatch * fix: updater modal cleanup w/new structure * feat: better update all handling * fix: remove preview_update_all * fix: feedback on bulk update + lint * fix: rem transitions * fix: change to jsonb * feat: app db backup after update * fix: lint * fix: sqlx prepare + use sqlx macros * fix: lint * fix: bugs * feat: defuck the installing process up * fix: bug of hell * fix: shear * fix: fmt * fix: install progress spacing + change mc/content/overrides to bytes * fix: lint * fix: prepr * fix: navtabs anim not working in app * fix: worlds.vue improvements + browse page fixes * feat: optimise queries + adapter fns * fix: lint * fix: lint * feat: shared modrinth-content-management crate (#6469) * feat: disable warnings setting * feat: add instances shortcuts (#6329) * Add modrinth://launch deep link to start a profile Support external profile launching via modrinth://launch/{profile_path} for integrations such as Stream Deck. * Change route to /launch/profile/{id} for future extensibility * fix: ensure profile path is url decoded * fix: URL-decode profile path from deep link * fix: use urlencoding crate for URL decoding * feat: implement app instance shortcuts * feat: change windows shortcut creation to use windows api instead * feat: implement creating a shortcut launching world/server * format * fmt * fix multiline inline tables * pnpm prepr * feat: move create shortcut to last item * refactor: split up shortcuts.rs for individual platforms * refactor: turn profile launch url into url type * use string literal and add safety comment * pt2 * refactor: rename anything that's profile into instance * update mac shortcut --------- Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com> --------- Co-authored-by: Truman Gao <106889354+tdgao@users.noreply.github.com> Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com>
84 lines
2.1 KiB
TypeScript
84 lines
2.1 KiB
TypeScript
import { defineStore } from 'pinia'
|
|
|
|
let systemThemeMq: MediaQueryList | null = null
|
|
|
|
export const DEFAULT_FEATURE_FLAGS = {
|
|
project_background: false,
|
|
page_path: false,
|
|
worlds_tab: false,
|
|
worlds_in_home: true,
|
|
server_project_qa: false,
|
|
server_ram_as_bytes_always_on: false,
|
|
always_show_app_controls: false,
|
|
skip_non_essential_warnings: false,
|
|
skip_unknown_pack_warning: false,
|
|
pride_fundraiser: true,
|
|
i18n_debug: false,
|
|
show_instance_play_time: true,
|
|
}
|
|
|
|
export const THEME_OPTIONS = ['dark', 'light', 'oled', 'system'] as const
|
|
|
|
export type FeatureFlag = keyof typeof DEFAULT_FEATURE_FLAGS
|
|
export type FeatureFlags = Record<FeatureFlag, boolean>
|
|
export type ColorTheme = (typeof THEME_OPTIONS)[number]
|
|
|
|
export type ThemeStore = {
|
|
selectedTheme: ColorTheme
|
|
advancedRendering: boolean
|
|
hideNametagSkinsPage: boolean
|
|
toggleSidebar: boolean
|
|
|
|
devMode: boolean
|
|
featureFlags: FeatureFlags
|
|
}
|
|
|
|
export const DEFAULT_THEME_STORE: ThemeStore = {
|
|
selectedTheme: 'dark',
|
|
advancedRendering: true,
|
|
hideNametagSkinsPage: false,
|
|
toggleSidebar: false,
|
|
|
|
devMode: false,
|
|
featureFlags: DEFAULT_FEATURE_FLAGS,
|
|
}
|
|
|
|
export const useTheming = defineStore('themeStore', {
|
|
state: () => DEFAULT_THEME_STORE,
|
|
actions: {
|
|
setThemeState(newTheme: ColorTheme) {
|
|
if (THEME_OPTIONS.includes(newTheme)) {
|
|
this.selectedTheme = newTheme
|
|
} else {
|
|
console.warn('Selected theme is not present. Check themeOptions.')
|
|
}
|
|
|
|
this.setThemeClass()
|
|
},
|
|
setThemeClass() {
|
|
const html = document.getElementsByTagName('html')[0]
|
|
for (const theme of THEME_OPTIONS) {
|
|
html.classList.remove(`${theme}-mode`)
|
|
}
|
|
|
|
systemThemeMq?.removeEventListener('change', this.setThemeClass)
|
|
systemThemeMq = null
|
|
|
|
let theme = this.selectedTheme
|
|
if (this.selectedTheme === 'system') {
|
|
systemThemeMq = window.matchMedia('(prefers-color-scheme: dark)')
|
|
systemThemeMq.addEventListener('change', this.setThemeClass)
|
|
theme = systemThemeMq.matches ? 'dark' : 'light'
|
|
}
|
|
|
|
html.classList.add(`${theme}-mode`)
|
|
},
|
|
getFeatureFlag(key: FeatureFlag) {
|
|
return this.featureFlags[key] ?? DEFAULT_FEATURE_FLAGS[key]
|
|
},
|
|
getThemeOptions() {
|
|
return THEME_OPTIONS
|
|
},
|
|
},
|
|
})
|