Skip to content

Commit

Permalink
feat(theme): add support for night theme in Element Plus and streamli…
Browse files Browse the repository at this point in the history
…ne settings UI
  • Loading branch information
Red-Asuka committed Nov 25, 2024
1 parent b0b445e commit 39e7ab0
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 51 deletions.
10 changes: 10 additions & 0 deletions apps/desktop/electron.vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@ export default defineConfig({
custom: FileSystemIconLoader('../../packages/ui/src/assets/icons'),
},
}),
{
name: 'element-plus-night-theme',
transform(code, id) {
if (id.endsWith('packages/ui/src/styles/index.scss')) {
const nightThemeCode = code.replace(/html\.dark/g, 'html.night')
return `${code}\n${nightThemeCode}`
}
return code
},
},
],
css: {
preprocessorOptions: {
Expand Down
2 changes: 0 additions & 2 deletions apps/web/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ declare module 'vue' {
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
ElContainer: typeof import('element-plus/es')['ElContainer']
ElDivider: typeof import('element-plus/es')['ElDivider']
ElIcon: typeof import('element-plus/es')['ElIcon']
ElIconDelete: typeof import('@element-plus/icons-vue')['Delete']
ElIconPrinter: typeof import('@element-plus/icons-vue')['Printer']
ElIconUpload: typeof import('@element-plus/icons-vue')['Upload']
Expand All @@ -34,7 +33,6 @@ declare module 'vue' {
ElSelect: typeof import('element-plus/es')['ElSelect']
ElSwitch: typeof import('element-plus/es')['ElSwitch']
ElTooltip: typeof import('element-plus/es')['ElTooltip']
Help: typeof import('./../../packages/ui/src/components/Help.vue')['default']
HelpView: typeof import('./../../packages/ui/src/components/HelpView.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
Expand Down
10 changes: 10 additions & 0 deletions apps/web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ export default defineConfig({
custom: FileSystemIconLoader('../../packages/ui/src/assets/icons'),
},
}),
{
name: 'element-plus-night-theme',
transform(code, id) {
if (id.endsWith('packages/ui/src/styles/index.scss')) {
const nightThemeCode = code.replace(/html\.dark/g, 'html.night')
return `${code}\n${nightThemeCode}`
}
return code
},
},
],
resolve: {
alias: {
Expand Down
49 changes: 8 additions & 41 deletions packages/ui/src/components/SettingsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,7 @@ const AImodelsOptions = [
<label>{{ $t('settings.automatically') }}</label>
</ElCol>
<ElCol :span="8">
<ElSwitch
v-model="settings.autoCheck"
active-color="#13ce66"
inactive-color="#A2A9B0"
/>
<ElSwitch v-model="settings.autoCheck" />
</ElCol>
</ElRow>

Expand All @@ -117,7 +113,6 @@ const AImodelsOptions = [
<label>{{ $t('settings.autoResub') }}</label>
<ElTooltip
placement="top"
:effect="settings.currentTheme !== 'light' ? 'light' : 'dark'"
:open-delay="500"
:content="$t('settings.autoResubDesc')"
>
Expand All @@ -127,11 +122,7 @@ const AImodelsOptions = [
</ElTooltip>
</ElCol>
<ElCol :span="8">
<ElSwitch
v-model="settings.autoResub"
active-color="#13ce66"
inactive-color="#A2A9B0"
/>
<ElSwitch v-model="settings.autoResub" />
</ElCol>
</ElRow>

Expand All @@ -142,7 +133,7 @@ const AImodelsOptions = [
<label>{{ $t('settings.multiTopics') }}</label>
<ElTooltip
placement="top"
:effect="settings.currentTheme !== 'light' ? 'light' : 'dark'"

:open-delay="500"
:content="$t('settings.multiTopicsDesc')"
>
Expand All @@ -152,11 +143,7 @@ const AImodelsOptions = [
</ElTooltip>
</ElCol>
<ElCol :span="8">
<ElSwitch
v-model="settings.multiTopics"
active-color="#13ce66"
inactive-color="#A2A9B0"
/>
<ElSwitch v-model="settings.multiTopics" />
</ElCol>
</ElRow>

Expand Down Expand Up @@ -189,7 +176,6 @@ const AImodelsOptions = [
<label>{{ $t('settings.syncOsTheme') }}</label>
<ElTooltip
placement="top"
:effect="settings.currentTheme !== 'light' ? 'light' : 'dark'"
:open-delay="500"
:content="$t('settings.syncOsThemeDesc')"
>
Expand All @@ -199,11 +185,7 @@ const AImodelsOptions = [
</ElTooltip>
</ElCol>
<ElCol :span="8">
<ElSwitch
v-model="settings.syncOsTheme"
active-color="#13ce66"
inactive-color="#A2A9B0"
/>
<ElSwitch v-model="settings.syncOsTheme" />
</ElCol>
</ElRow>

Expand Down Expand Up @@ -235,7 +217,6 @@ const AImodelsOptions = [
<label>{{ $t('settings.jsonHighlight') }}</label>
<ElTooltip
placement="top"
:effect="settings.currentTheme !== 'light' ? 'light' : 'dark'"
:open-delay="500"
>
<template #content>
Expand All @@ -247,11 +228,7 @@ const AImodelsOptions = [
</ElTooltip>
</ElCol>
<ElCol :span="8">
<ElSwitch
v-model="settings.jsonHighlight"
active-color="#13ce66"
inactive-color="#A2A9B0"
/>
<ElSwitch v-model="settings.jsonHighlight" />
</ElCol>
</ElRow>

Expand All @@ -270,7 +247,6 @@ const AImodelsOptions = [
<label>{{ $t('log.logLevel') }}</label>
<ElTooltip
placement="top"
:effect="settings.currentTheme !== 'light' ? 'light' : 'dark'"
:open-delay="500"
:content="$t('log.logLevelDesc')"
>
Expand Down Expand Up @@ -347,7 +323,6 @@ const AImodelsOptions = [
<label>{{ $t('settings.ignoreQoS0Message') }}</label>
<ElTooltip
placement="top"
:effect="settings.currentTheme !== 'light' ? 'light' : 'dark'"
:open-delay="500"
:content="$t('settings.ignoreQoS0MessageDesc')"
>
Expand All @@ -357,11 +332,7 @@ const AImodelsOptions = [
</ElTooltip>
</ElCol>
<ElCol :span="8">
<ElSwitch
v-model="settings.ignoreQoS0Message"
active-color="#13ce66"
inactive-color="#A2A9B0"
/>
<ElSwitch v-model="settings.ignoreQoS0Message" />
</ElCol>
</ElRow>

Expand All @@ -380,11 +351,7 @@ const AImodelsOptions = [
<label>{{ $t('settings.enableCopilot') }}</label>
</ElCol>
<ElCol :span="8">
<ElSwitch
v-model="settings.enableCopilot"
active-color="#13ce66"
inactive-color="#A2A9B0"
/>
<ElSwitch v-model="settings.enableCopilot" />
</ElCol>
</ElRow>

Expand Down
19 changes: 11 additions & 8 deletions packages/ui/src/styles/variable.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
@forward './themes/light.scss';
@forward './themes/dark.scss';
@forward './themes/night.scss';
@use 'element-plus/theme-chalk/dark/css-vars.css' as *;
@use './themes/light.scss' as *;
@use './themes/dark.scss' as *;
@use './themes/night.scss' as *;

/* Element UI CSS Vars Colors */
:root {
html.light,
html.dark,
html.night {
--el-color-primary: var(--color-main-green);
--el-color-primary-light-3: #34c387e0;
--el-color-primary-light-5: #34c387b6;
Expand All @@ -16,10 +19,10 @@
--el-color-danger: var(--color-minor-red);
--el-color-error: var(--color-minor-red);
}
/* Uncomment and add this code to change Element UI color for different themes. */
// html.dark {
// --el-color-primary: black;
// }

html.night {
color-scheme: night;
}

/* Common Scss Vars */
$font-family:
Expand Down

0 comments on commit 39e7ab0

Please sign in to comment.