mirror of https://github.com/halo-dev/halo
165 lines
5.1 KiB
Vue
165 lines
5.1 KiB
Vue
![]() |
<script lang="ts" setup>
|
||
![]() |
// core libs
|
||
![]() |
import { inject, ref } from "vue";
|
||
![]() |
import { useThemeLifeCycle } from "./composables/use-theme";
|
||
![]() |
|
||
|
// components
|
||
![]() |
import {
|
||
|
VTag,
|
||
|
IconMore,
|
||
![]() |
Dialog,
|
||
![]() |
VAvatar,
|
||
![]() |
Toast,
|
||
![]() |
VStatusDot,
|
||
![]() |
VDropdown,
|
||
|
VDropdownItem,
|
||
|
VDropdownDivider,
|
||
![]() |
VDescription,
|
||
|
VDescriptionItem,
|
||
![]() |
} from "@halo-dev/components";
|
||
![]() |
|
||
|
// types
|
||
![]() |
import type { Ref } from "vue";
|
||
![]() |
import type { Theme } from "@halo-dev/api-client";
|
||
![]() |
|
||
![]() |
import { apiClient } from "@/utils/api-client";
|
||
![]() |
import { useI18n } from "vue-i18n";
|
||
|
|
||
|
const { t } = useI18n();
|
||
![]() |
|
||
![]() |
const selectedTheme = inject<Ref<Theme | undefined>>("selectedTheme", ref());
|
||
![]() |
const themesModal = inject<Ref<boolean>>("themesModal");
|
||
![]() |
|
||
![]() |
const { isActivated, getFailedMessage, handleResetSettingConfig } =
|
||
![]() |
useThemeLifeCycle(selectedTheme);
|
||
|
|
||
![]() |
const handleReloadTheme = async () => {
|
||
![]() |
Dialog.warning({
|
||
![]() |
title: t("core.theme.operations.reload.title"),
|
||
|
description: t("core.theme.operations.reload.description"),
|
||
|
confirmText: t("core.common.buttons.confirm"),
|
||
|
cancelText: t("core.common.buttons.cancel"),
|
||
![]() |
onConfirm: async () => {
|
||
|
try {
|
||
|
if (!selectedTheme?.value) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
![]() |
await apiClient.theme.reload({
|
||
![]() |
name: selectedTheme.value.metadata.name as string,
|
||
![]() |
});
|
||
|
|
||
![]() |
Toast.success(t("core.theme.operations.reload.toast_success"));
|
||
![]() |
|
||
![]() |
window.location.reload();
|
||
|
} catch (e) {
|
||
|
console.error("Failed to reload theme setting", e);
|
||
|
}
|
||
|
},
|
||
|
});
|
||
![]() |
};
|
||
![]() |
</script>
|
||
|
|
||
|
<template>
|
||
![]() |
<Transition mode="out-in" name="fade">
|
||
![]() |
<div class="overflow-hidden rounded-b-base">
|
||
![]() |
<div class="bg-white px-4 py-4 sm:px-6">
|
||
|
<div class="group flex items-center justify-between">
|
||
|
<div class="flex flex-row items-center gap-3">
|
||
|
<VAvatar
|
||
|
:key="selectedTheme?.metadata.name"
|
||
|
:alt="selectedTheme?.spec.displayName"
|
||
|
:src="selectedTheme?.spec.logo"
|
||
|
size="lg"
|
||
|
/>
|
||
|
<div>
|
||
|
<h3 class="text-lg font-medium leading-6 text-gray-900">
|
||
|
{{ selectedTheme?.spec.displayName }}
|
||
|
</h3>
|
||
|
<p class="mt-1 flex max-w-2xl items-center gap-2">
|
||
|
<span class="text-sm text-gray-500">
|
||
|
{{ selectedTheme?.spec.version }}
|
||
|
</span>
|
||
|
<VTag>
|
||
![]() |
{{
|
||
|
isActivated
|
||
|
? t("core.common.status.activated")
|
||
|
: t("core.common.status.not_activated")
|
||
|
}}
|
||
![]() |
</VTag>
|
||
![]() |
<VStatusDot
|
||
|
v-if="getFailedMessage()"
|
||
|
v-tooltip="getFailedMessage()"
|
||
|
state="warning"
|
||
|
animate
|
||
|
/>
|
||
![]() |
</p>
|
||
|
</div>
|
||
|
</div>
|
||
![]() |
<VDropdown v-permission="['system:themes:manage']">
|
||
![]() |
<div
|
||
|
class="cursor-pointer rounded p-1 transition-all hover:text-blue-600 group-hover:bg-gray-100"
|
||
|
>
|
||
|
<IconMore />
|
||
|
</div>
|
||
|
<template #popper>
|
||
![]() |
<VDropdownItem @click="themesModal = true">
|
||
![]() |
{{ $t("core.common.buttons.upgrade") }}
|
||
|
</VDropdownItem>
|
||
|
<VDropdownDivider />
|
||
|
<VDropdownItem type="danger" @click="handleReloadTheme">
|
||
|
{{ $t("core.theme.operations.reload.button") }}
|
||
|
</VDropdownItem>
|
||
|
<VDropdownItem type="danger" @click="handleResetSettingConfig">
|
||
|
{{ $t("core.common.buttons.reset") }}
|
||
|
</VDropdownItem>
|
||
![]() |
</template>
|
||
![]() |
</VDropdown>
|
||
![]() |
</div>
|
||
![]() |
</div>
|
||
![]() |
<div class="border-t border-gray-200">
|
||
![]() |
<VDescription>
|
||
|
<VDescriptionItem
|
||
|
label="ID"
|
||
|
:content="selectedTheme?.metadata.name"
|
||
|
/>
|
||
|
<VDescriptionItem
|
||
|
:label="$t('core.theme.detail.fields.author')"
|
||
|
:content="selectedTheme?.spec.author.name"
|
||
|
/>
|
||
|
<VDescriptionItem :label="$t('core.theme.detail.fields.website')">
|
||
|
<a
|
||
|
:href="selectedTheme?.spec.website"
|
||
|
class="hover:text-gray-600"
|
||
|
target="_blank"
|
||
|
>
|
||
|
{{ selectedTheme?.spec.website }}
|
||
|
</a>
|
||
|
</VDescriptionItem>
|
||
|
<VDescriptionItem :label="$t('core.theme.detail.fields.repo')">
|
||
|
<a
|
||
|
:href="selectedTheme?.spec.repo"
|
||
|
class="hover:text-gray-600"
|
||
|
target="_blank"
|
||
|
>
|
||
|
{{ selectedTheme?.spec.repo }}
|
||
|
</a>
|
||
|
</VDescriptionItem>
|
||
|
<VDescriptionItem
|
||
|
:label="$t('core.theme.detail.fields.version')"
|
||
|
:content="selectedTheme?.spec.version"
|
||
|
/>
|
||
|
<VDescriptionItem
|
||
|
:label="$t('core.theme.detail.fields.requires')"
|
||
|
:content="selectedTheme?.spec.requires"
|
||
|
/>
|
||
|
<VDescriptionItem
|
||
|
:label="$t('core.theme.detail.fields.storage_location')"
|
||
|
:content="selectedTheme?.status?.location"
|
||
|
/>
|
||
|
</VDescription>
|
||
![]() |
</div>
|
||
![]() |
</div>
|
||
|
</Transition>
|
||
![]() |
</template>
|