🎨 for install-extensions
This commit is contained in:
parent
9529867630
commit
282caa0b7e
|
@ -5354,6 +5354,10 @@ export interface Locale extends ILocale {
|
||||||
* 文字数
|
* 文字数
|
||||||
*/
|
*/
|
||||||
"textCount": string;
|
"textCount": string;
|
||||||
|
/**
|
||||||
|
* 情報
|
||||||
|
*/
|
||||||
|
"information": string;
|
||||||
"_emojiPalette": {
|
"_emojiPalette": {
|
||||||
/**
|
/**
|
||||||
* パレット
|
* パレット
|
||||||
|
@ -10359,20 +10363,12 @@ export interface Locale extends ILocale {
|
||||||
* このプラグインをインストールしますか?
|
* このプラグインをインストールしますか?
|
||||||
*/
|
*/
|
||||||
"title": string;
|
"title": string;
|
||||||
/**
|
|
||||||
* プラグイン情報
|
|
||||||
*/
|
|
||||||
"metaTitle": string;
|
|
||||||
};
|
};
|
||||||
"_theme": {
|
"_theme": {
|
||||||
/**
|
/**
|
||||||
* このテーマをインストールしますか?
|
* このテーマをインストールしますか?
|
||||||
*/
|
*/
|
||||||
"title": string;
|
"title": string;
|
||||||
/**
|
|
||||||
* テーマ情報
|
|
||||||
*/
|
|
||||||
"metaTitle": string;
|
|
||||||
};
|
};
|
||||||
"_meta": {
|
"_meta": {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1334,6 +1334,7 @@ paste: "ペースト"
|
||||||
emojiPalette: "絵文字パレット"
|
emojiPalette: "絵文字パレット"
|
||||||
postForm: "投稿フォーム"
|
postForm: "投稿フォーム"
|
||||||
textCount: "文字数"
|
textCount: "文字数"
|
||||||
|
information: "情報"
|
||||||
|
|
||||||
_emojiPalette:
|
_emojiPalette:
|
||||||
palettes: "パレット"
|
palettes: "パレット"
|
||||||
|
@ -2749,10 +2750,8 @@ _externalResourceInstaller:
|
||||||
checkVendorBeforeInstall: "配布元が信頼できるかを確認した上でインストールしてください。"
|
checkVendorBeforeInstall: "配布元が信頼できるかを確認した上でインストールしてください。"
|
||||||
_plugin:
|
_plugin:
|
||||||
title: "このプラグインをインストールしますか?"
|
title: "このプラグインをインストールしますか?"
|
||||||
metaTitle: "プラグイン情報"
|
|
||||||
_theme:
|
_theme:
|
||||||
title: "このテーマをインストールしますか?"
|
title: "このテーマをインストールしますか?"
|
||||||
metaTitle: "テーマ情報"
|
|
||||||
_meta:
|
_meta:
|
||||||
base: "基本のカラースキーム"
|
base: "基本のカラースキーム"
|
||||||
_vendorInfo:
|
_vendorInfo:
|
||||||
|
|
|
@ -11,11 +11,17 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<!-- 拡張用? -->
|
<!-- 拡張用? -->
|
||||||
<i v-else class="ti ti-download"></i>
|
<i v-else class="ti ti-download"></i>
|
||||||
</div>
|
</div>
|
||||||
<h2 :class="$style.extInstallerTitle">{{ i18n.ts._externalResourceInstaller[`_${extension.type}`].title }}</h2>
|
|
||||||
<div :class="$style.extInstallerNormDesc">{{ i18n.ts._externalResourceInstaller.checkVendorBeforeInstall }}</div>
|
<h2 v-if="isPlugin" :class="$style.extInstallerTitle">{{ i18n.ts._externalResourceInstaller._plugin.title }}</h2>
|
||||||
<MkInfo v-if="isPlugin" :warn="true">{{ i18n.ts._plugin.installWarn }}</MkInfo>
|
<h2 v-else-if="isTheme" :class="$style.extInstallerTitle">{{ i18n.ts._externalResourceInstaller._theme.title }}</h2>
|
||||||
<FormSection>
|
|
||||||
<template #label>{{ i18n.ts._externalResourceInstaller[`_${extension.type}`].metaTitle }}</template>
|
<MkInfo :warn="true">{{ i18n.ts._externalResourceInstaller.checkVendorBeforeInstall }}</MkInfo>
|
||||||
|
|
||||||
|
<div v-if="isPlugin" class="_gaps_s">
|
||||||
|
<MkFolder :defaultOpen="true">
|
||||||
|
<template #icon><i class="ti ti-info-circle"></i></template>
|
||||||
|
<template #label>{{ i18n.ts.metadata }}</template>
|
||||||
|
|
||||||
<div class="_gaps_s">
|
<div class="_gaps_s">
|
||||||
<FormSplit>
|
<FormSplit>
|
||||||
<MkKeyValue>
|
<MkKeyValue>
|
||||||
|
@ -27,15 +33,15 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<template #value>{{ extension.meta.author }}</template>
|
<template #value>{{ extension.meta.author }}</template>
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
</FormSplit>
|
</FormSplit>
|
||||||
<MkKeyValue v-if="isPlugin">
|
<MkKeyValue>
|
||||||
<template #key>{{ i18n.ts.description }}</template>
|
<template #key>{{ i18n.ts.description }}</template>
|
||||||
<template #value>{{ extension.meta.description ?? i18n.ts.none }}</template>
|
<template #value>{{ extension.meta.description ?? i18n.ts.none }}</template>
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
<MkKeyValue v-if="isPlugin">
|
<MkKeyValue>
|
||||||
<template #key>{{ i18n.ts.version }}</template>
|
<template #key>{{ i18n.ts.version }}</template>
|
||||||
<template #value>{{ extension.meta.version }}</template>
|
<template #value>{{ extension.meta.version }}</template>
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
<MkKeyValue v-if="isPlugin">
|
<MkKeyValue>
|
||||||
<template #key>{{ i18n.ts.permission }}</template>
|
<template #key>{{ i18n.ts.permission }}</template>
|
||||||
<template #value>
|
<template #value>
|
||||||
<ul v-if="extension.meta.permissions && extension.meta.permissions.length > 0" :class="$style.extInstallerKVList">
|
<ul v-if="extension.meta.permissions && extension.meta.permissions.length > 0" :class="$style.extInstallerKVList">
|
||||||
|
@ -44,21 +50,52 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<template v-else>{{ i18n.ts.none }}</template>
|
<template v-else>{{ i18n.ts.none }}</template>
|
||||||
</template>
|
</template>
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
<MkKeyValue v-if="isTheme">
|
</div>
|
||||||
<template #key>{{ i18n.ts._externalResourceInstaller._meta.base }}</template>
|
</MkFolder>
|
||||||
<template #value>{{ i18n.ts[extension.meta.base ?? 'none'] }}</template>
|
|
||||||
</MkKeyValue>
|
<MkFolder :withSpacer="false">
|
||||||
<MkFolder>
|
|
||||||
<template #icon><i class="ti ti-code"></i></template>
|
<template #icon><i class="ti ti-code"></i></template>
|
||||||
<template #label>{{ i18n.ts._plugin.viewSource }}</template>
|
<template #label>{{ i18n.ts._plugin.viewSource }}</template>
|
||||||
|
|
||||||
<MkCode :code="extension.raw"/>
|
<MkCode :code="extension.raw"/>
|
||||||
</MkFolder>
|
</MkFolder>
|
||||||
</div>
|
</div>
|
||||||
</FormSection>
|
<div v-else-if="isTheme" class="_gaps_s">
|
||||||
|
<MkFolder :defaultOpen="true">
|
||||||
|
<template #icon><i class="ti ti-info-circle"></i></template>
|
||||||
|
<template #label>{{ i18n.ts.metadata }}</template>
|
||||||
|
|
||||||
|
<div class="_gaps_s">
|
||||||
|
<FormSplit>
|
||||||
|
<MkKeyValue>
|
||||||
|
<template #key>{{ i18n.ts.name }}</template>
|
||||||
|
<template #value>{{ extension.meta.name }}</template>
|
||||||
|
</MkKeyValue>
|
||||||
|
<MkKeyValue>
|
||||||
|
<template #key>{{ i18n.ts.author }}</template>
|
||||||
|
<template #value>{{ extension.meta.author }}</template>
|
||||||
|
</MkKeyValue>
|
||||||
|
</FormSplit>
|
||||||
|
<MkKeyValue>
|
||||||
|
<template #key>{{ i18n.ts._externalResourceInstaller._meta.base }}</template>
|
||||||
|
<template #value>{{ i18n.ts[extension.meta.base ?? 'none'] }}</template>
|
||||||
|
</MkKeyValue>
|
||||||
|
</div>
|
||||||
|
</MkFolder>
|
||||||
|
|
||||||
|
<MkFolder :withSpacer="false">
|
||||||
|
<template #icon><i class="ti ti-code"></i></template>
|
||||||
|
<template #label>{{ i18n.ts._theme.code }}</template>
|
||||||
|
|
||||||
|
<MkCode :code="extension.raw"/>
|
||||||
|
</MkFolder>
|
||||||
|
</div>
|
||||||
|
|
||||||
<slot name="additionalInfo"/>
|
<slot name="additionalInfo"/>
|
||||||
|
|
||||||
<div class="_buttonsCenter">
|
<div class="_buttonsCenter">
|
||||||
<MkButton gradate rounded @click="emits('confirm')"><i class="ti ti-check"></i> {{ i18n.ts.install }}</MkButton>
|
<MkButton danger rounded large @click="emits('cancel')"><i class="ti ti-x"></i> {{ i18n.ts.cancel }}</MkButton>
|
||||||
|
<MkButton gradate rounded large @click="emits('confirm')"><i class="ti ti-download"></i> {{ i18n.ts.install }}</MkButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -105,6 +142,7 @@ const props = defineProps<{
|
||||||
|
|
||||||
const emits = defineEmits<{
|
const emits = defineEmits<{
|
||||||
(ev: 'confirm'): void;
|
(ev: 'confirm'): void;
|
||||||
|
(ev: 'cancel'): void;
|
||||||
}>();
|
}>();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -112,13 +150,13 @@ const emits = defineEmits<{
|
||||||
.extInstallerRoot {
|
.extInstallerRoot {
|
||||||
border-radius: var(--MI-radius);
|
border-radius: var(--MI-radius);
|
||||||
background: var(--MI_THEME-panel);
|
background: var(--MI_THEME-panel);
|
||||||
padding: 1.5rem;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.extInstallerIconWrapper {
|
.extInstallerIconWrapper {
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
font-size: 24px;
|
font-size: 20px;
|
||||||
line-height: 48px;
|
line-height: 48px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
@ -135,10 +173,6 @@ const emits = defineEmits<{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.extInstallerNormDesc {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.extInstallerKVList {
|
.extInstallerKVList {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
|
@ -6,12 +6,11 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<template>
|
<template>
|
||||||
<MkStickyContainer>
|
<MkStickyContainer>
|
||||||
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
||||||
<MkSpacer :contentMax="500">
|
<MkSpacer :contentMax="550">
|
||||||
<MkLoading v-if="uiPhase === 'fetching'"/>
|
<MkLoading v-if="uiPhase === 'fetching'"/>
|
||||||
<MkExtensionInstaller v-else-if="uiPhase === 'confirm' && data" :extension="data" @confirm="install()">
|
<MkExtensionInstaller v-else-if="uiPhase === 'confirm' && data" :extension="data" @confirm="install()" @cancel="close">
|
||||||
<template #additionalInfo>
|
<template #additionalInfo>
|
||||||
<FormSection>
|
<FormSection>
|
||||||
<template #label>{{ i18n.ts._externalResourceInstaller._vendorInfo.title }}</template>
|
|
||||||
<div class="_gaps_s">
|
<div class="_gaps_s">
|
||||||
<MkKeyValue>
|
<MkKeyValue>
|
||||||
<template #key>{{ i18n.ts._externalResourceInstaller._vendorInfo.endpoint }}</template>
|
<template #key>{{ i18n.ts._externalResourceInstaller._vendorInfo.endpoint }}</template>
|
||||||
|
@ -35,7 +34,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<h2 :class="$style.extInstallerTitle">{{ errorKV?.title }}</h2>
|
<h2 :class="$style.extInstallerTitle">{{ errorKV?.title }}</h2>
|
||||||
<div :class="$style.extInstallerNormDesc">{{ errorKV?.description }}</div>
|
<div :class="$style.extInstallerNormDesc">{{ errorKV?.description }}</div>
|
||||||
<div class="_buttonsCenter">
|
<div class="_buttonsCenter">
|
||||||
<MkButton @click="goBack()">{{ i18n.ts.goBack }}</MkButton>
|
<MkButton @click="close()">{{ i18n.ts.close }}</MkButton>
|
||||||
<MkButton @click="goToMisskey()">{{ i18n.ts.goToMisskey }}</MkButton>
|
<MkButton @click="goToMisskey()">{{ i18n.ts.goToMisskey }}</MkButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -75,8 +74,8 @@ const hash = ref<string | null>(null);
|
||||||
|
|
||||||
const data = ref<Extension | null>(null);
|
const data = ref<Extension | null>(null);
|
||||||
|
|
||||||
function goBack(): void {
|
function close(): void {
|
||||||
history.back();
|
window.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
function goToMisskey(): void {
|
function goToMisskey(): void {
|
||||||
|
@ -207,9 +206,9 @@ async function install() {
|
||||||
try {
|
try {
|
||||||
await installPlugin(data.value.raw, data.value.meta as AiScriptPluginMeta);
|
await installPlugin(data.value.raw, data.value.meta as AiScriptPluginMeta);
|
||||||
os.success();
|
os.success();
|
||||||
nextTick(() => {
|
window.setTimeout(() => {
|
||||||
unisonReload('/');
|
close();
|
||||||
});
|
}, 3000);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
errorKV.value = {
|
errorKV.value = {
|
||||||
title: i18n.ts._externalResourceInstaller._errors._pluginInstallFailed.title,
|
title: i18n.ts._externalResourceInstaller._errors._pluginInstallFailed.title,
|
||||||
|
@ -223,9 +222,9 @@ async function install() {
|
||||||
if (!data.value.meta) return;
|
if (!data.value.meta) return;
|
||||||
await installTheme(data.value.raw);
|
await installTheme(data.value.raw);
|
||||||
os.success();
|
os.success();
|
||||||
nextTick(() => {
|
window.setTimeout(() => {
|
||||||
location.href = '/settings/theme';
|
close();
|
||||||
});
|
}, 3000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue