|
|
@ -1,6 +1,5 @@ |
|
|
|
<script setup lang="ts"> |
|
|
|
<script setup lang="ts"> |
|
|
|
import { message } from 'ant-design-vue' |
|
|
|
import { message } from 'ant-design-vue' |
|
|
|
import { Chrome } from '@ckpack/vue-color' |
|
|
|
|
|
|
|
import tinycolor from 'tinycolor2' |
|
|
|
import tinycolor from 'tinycolor2' |
|
|
|
import { useI18n } from 'vue-i18n' |
|
|
|
import { useI18n } from 'vue-i18n' |
|
|
|
import { |
|
|
|
import { |
|
|
@ -20,7 +19,6 @@ import { |
|
|
|
useTabs, |
|
|
|
useTabs, |
|
|
|
useTheme, |
|
|
|
useTheme, |
|
|
|
useUIPermission, |
|
|
|
useUIPermission, |
|
|
|
watch, |
|
|
|
|
|
|
|
} from '#imports' |
|
|
|
} from '#imports' |
|
|
|
import { TabType } from '~/composables' |
|
|
|
import { TabType } from '~/composables' |
|
|
|
|
|
|
|
|
|
|
@ -58,8 +56,6 @@ const sidebar = ref() |
|
|
|
|
|
|
|
|
|
|
|
const email = computed(() => user.value?.email ?? '---') |
|
|
|
const email = computed(() => user.value?.email ?? '---') |
|
|
|
|
|
|
|
|
|
|
|
const { theme } = useTheme() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const logout = () => { |
|
|
|
const logout = () => { |
|
|
|
signOut() |
|
|
|
signOut() |
|
|
|
navigateTo('/signin') |
|
|
|
navigateTo('/signin') |
|
|
@ -84,37 +80,41 @@ await loadProject() |
|
|
|
|
|
|
|
|
|
|
|
await loadTables() |
|
|
|
await loadTables() |
|
|
|
|
|
|
|
|
|
|
|
const themePrimaryColor = ref<any>(theme.value.primaryColor) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const themeAccentColor = ref<any>(theme.value.accentColor) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const { t } = useI18n() |
|
|
|
const { t } = useI18n() |
|
|
|
|
|
|
|
|
|
|
|
// Chrome provides object so if custom picker used we only edit primary otherwise use complement as accent |
|
|
|
const handleThemeColor = async (mode: 'swatch' | 'primary' | 'accent', color: string) => { |
|
|
|
watch(themePrimaryColor, async (nextColor) => { |
|
|
|
switch (mode) { |
|
|
|
const hexColor = nextColor.hex8 ? nextColor.hex8 : nextColor |
|
|
|
case 'swatch': { |
|
|
|
const tcolor = tinycolor(hexColor) |
|
|
|
const tcolor = tinycolor(color) |
|
|
|
if (tcolor) { |
|
|
|
if (tcolor.isValid()) { |
|
|
|
const complement = tcolor.complement() |
|
|
|
const complement = tcolor.complement() |
|
|
|
await saveTheme({ |
|
|
|
await saveTheme({ |
|
|
|
primaryColor: hexColor, |
|
|
|
primaryColor: color, |
|
|
|
accentColor: themeAccentColor.value, |
|
|
|
accentColor: complement.toHex8String(), |
|
|
|
}) |
|
|
|
}) |
|
|
|
themeAccentColor.value = nextColor.hex8 ? theme.value.accentColor : complement.toHex8String() |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
break |
|
|
|
|
|
|
|
} |
|
|
|
watch(themeAccentColor, (nextColor) => { |
|
|
|
case 'primary': { |
|
|
|
const hexColor = nextColor.hex8 ? nextColor.hex8 : nextColor |
|
|
|
const tcolor = tinycolor(color) |
|
|
|
|
|
|
|
if (tcolor.isValid()) { |
|
|
|
// skip if the color is same as saved |
|
|
|
await saveTheme({ |
|
|
|
if (hexColor === theme.value.accentColor) return |
|
|
|
primaryColor: color, |
|
|
|
|
|
|
|
|
|
|
|
saveTheme({ |
|
|
|
|
|
|
|
primaryColor: theme.value.primaryColor, |
|
|
|
|
|
|
|
accentColor: hexColor, |
|
|
|
|
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
break |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
case 'accent': { |
|
|
|
|
|
|
|
const tcolor = tinycolor(color) |
|
|
|
|
|
|
|
if (tcolor.isValid()) { |
|
|
|
|
|
|
|
await saveTheme({ |
|
|
|
|
|
|
|
accentColor: color, |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!route.params.type && isUIAllowed('teamAndAuth')) { |
|
|
|
if (!route.params.type && isUIAllowed('teamAndAuth')) { |
|
|
|
addTab({ type: TabType.AUTH, title: t('title.teamAndAuth') }) |
|
|
|
addTab({ type: TabType.AUTH, title: t('title.teamAndAuth') }) |
|
|
@ -292,10 +292,10 @@ const copyAuthToken = async () => { |
|
|
|
<template #expandIcon></template> |
|
|
|
<template #expandIcon></template> |
|
|
|
|
|
|
|
|
|
|
|
<GeneralColorPicker |
|
|
|
<GeneralColorPicker |
|
|
|
v-model="themePrimaryColor" |
|
|
|
|
|
|
|
:colors="projectThemeColors" |
|
|
|
:colors="projectThemeColors" |
|
|
|
:row-size="9" |
|
|
|
:row-size="9" |
|
|
|
:advanced="false" |
|
|
|
:advanced="false" |
|
|
|
|
|
|
|
@input="handleThemeColor('swatch', $event)" |
|
|
|
/> |
|
|
|
/> |
|
|
|
|
|
|
|
|
|
|
|
<!-- Custom Theme --> |
|
|
|
<!-- Custom Theme --> |
|
|
@ -322,7 +322,7 @@ const copyAuthToken = async () => { |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template #expandIcon></template> |
|
|
|
<template #expandIcon></template> |
|
|
|
<Chrome v-model="themePrimaryColor" /> |
|
|
|
<GeneralChromeWrapper @input="handleThemeColor('primary', $event)" /> |
|
|
|
</a-sub-menu> |
|
|
|
</a-sub-menu> |
|
|
|
|
|
|
|
|
|
|
|
<!-- Accent Color --> |
|
|
|
<!-- Accent Color --> |
|
|
@ -334,7 +334,7 @@ const copyAuthToken = async () => { |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template #expandIcon></template> |
|
|
|
<template #expandIcon></template> |
|
|
|
<Chrome v-model="themeAccentColor" /> |
|
|
|
<GeneralChromeWrapper @input="handleThemeColor('accent', $event)" /> |
|
|
|
</a-sub-menu> |
|
|
|
</a-sub-menu> |
|
|
|
</a-sub-menu> |
|
|
|
</a-sub-menu> |
|
|
|
</a-sub-menu> |
|
|
|
</a-sub-menu> |
|
|
|