perf: add mark color in tab

This commit is contained in:
tiny-craft 2023-09-02 21:47:02 +08:00
parent bb537a7175
commit bc499643db
1 changed files with 12 additions and 12 deletions

View File

@ -12,10 +12,6 @@ const i18n = useI18n()
const tabStore = useTabStore()
const connectionStore = useConnectionStore()
const props = defineProps({
backgroundColor: String,
})
const onCloseTab = (tabIndex) => {
$dialog.warning(i18n.t('close_confirm'), () => {
const tab = get(tabStore.tabs, tabIndex)
@ -25,14 +21,18 @@ const onCloseTab = (tabIndex) => {
})
}
const activeTabStyle = computed(() => ({
backgroundColor: themeVars.value.baseColor,
borderTopWidth: '1px',
borderTopColor: themeVars.value.borderColor,
borderBottomColor: themeVars.value.baseColor,
borderTopLeftRadius: themeVars.value.borderRadius,
borderTopRightRadius: themeVars.value.borderRadius,
}))
const activeTabStyle = computed(() => {
const { name } = tabStore.currentTab
const { markColor = '' } = connectionStore.serverProfile[name] || {}
return {
backgroundColor: themeVars.value.baseColor,
borderTopWidth: markColor ? '3px' : '1px',
borderTopColor: markColor || themeVars.value.borderColor,
borderBottomColor: themeVars.value.baseColor,
borderTopLeftRadius: themeVars.value.borderRadius,
borderTopRightRadius: themeVars.value.borderRadius,
}
})
const inactiveTabStyle = computed(() => ({
borderWidth: '0 0 1px',
borderBottomColor: themeVars.value.borderColor,