Spaces:
Sleeping
Sleeping
File size: 5,744 Bytes
6e41657 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | <template>
<UCard class="mx-4 mt-10 flex-1">
<template #header>
<h3 class="text-2xl font-semibold">导出选项</h3>
<p class="text-sm text-slate-10 font-serif">配置文章的导出选项</p>
</template>
<div class="flex flex-col space-y-5">
<div>
<p class="mb-2">
<span class="mr-3">导出目录名:</span>
<span class="inline-block w-8">
<UPopover mode="hover" :popper="{ placement: 'right' }">
<UButton color="white" size="sm" trailing-icon="i-heroicons:variable-16-solid" />
<template #panel>
<div class="p-4">
<p class="my-2 text-sm text-gray-500">
使用 <code class="px-1 py-0.5 bg-gray-100 dark:bg-gray-800 rounded font-mono text-xs">${变量名}</code> 的格式插入变量,例如:<code class="px-1 py-0.5 bg-gray-100 dark:bg-gray-800 rounded font-mono text-xs">${YYYY}-${MM}-${DD}_${title}</code>
</p>
<p class="my-2 font-medium">支持的变量:</p>
<table class="w-full border-collapse border">
<tbody>
<tr>
<th class="w-20">变量</th>
<th class="w-32">含义</th>
<th class="w-20">变量</th>
<th class="w-32">含义</th>
</tr>
<tr v-for="(item, idx) in variables" :key="idx">
<td class="text-center">{{ item[0].name }}</td>
<td class="text-center">{{ item[0].description }}</td>
<td class="text-center">{{ item[1].name }}</td>
<td class="text-center">{{ item[1].description }}</td>
</tr>
</tbody>
</table>
</div>
</template>
</UPopover>
</span>
</p>
<p class="text-sm mb-2 text-gray-500">影响 <span class="font-mono">html/txt/markdown/word/pdf</span> 的导出</p>
<UInput
placeholder="目录名格式"
class="w-[600px] font-mono"
name="dirname"
v-model="preferences.exportConfig.dirname"
/>
<p class="mt-2 text-sm text-gray-500">
<span class="mr-1">预览:</span>
<span class="font-mono text-gray-700 dark:text-gray-300">{{ dirnamePreview }}</span>
</p>
</div>
<div>
<p class="mb-2 flex items-center gap-3">
<span>目录名最大长度:</span>
<span class="text-xs text-gray-500">(0表示不限制)</span>
<UInput
class=""
placeholder="目录名最大长度"
v-model="preferences.exportConfig.maxlength"
type="number"
min="0"
/>
</p>
</div>
<div>
<UCheckbox
v-model="preferences.exportConfig.exportExcelIncludeContent"
name="exportExcelIncludeContent"
label="导出 Excel 中包含文章内容"
/>
</div>
<div>
<UCheckbox
v-model="preferences.exportConfig.exportJsonIncludeContent"
name="exportJsonIncludeContent"
label="导出 JSON 中包含文章内容"
/>
<UCheckbox
v-model="preferences.exportConfig.exportJsonIncludeComments"
name="exportJsonIncludeComments"
label="导出 JSON 中包含留言数据"
/>
</div>
<div>
<UCheckbox
v-model="preferences.exportConfig.exportHtmlIncludeComments"
name="exportHtmlIncludeComments"
label="导出 HTML 中包含留言数据"
/>
</div>
</div>
</UCard>
</template>
<script setup lang="ts">
import type { Preferences } from '~/types/preferences';
const preferences: Ref<Preferences> = usePreferences() as unknown as Ref<Preferences>;
const sampleData: Record<string, string> = {
account: '人民日报',
title: '这是一篇示例文章标题',
aid: '100000001',
author: '张三',
YYYY: '2025',
MM: '03',
DD: '15',
HH: '10',
mm: '30',
};
const dirnamePreview = computed(() => {
let result = preferences.value.exportConfig.dirname || '';
for (const [key, value] of Object.entries(sampleData)) {
result = result.replace(new RegExp(`\\$\\{${key}}`, 'g'), value);
}
const maxlength = preferences.value.exportConfig.maxlength;
if (maxlength) {
result = result.slice(0, maxlength);
}
return result || '(空)';
});
const _variables = [
{ name: 'account', description: '公众号名称' },
{ name: 'title', description: '文章标题' },
{ name: 'aid', description: '文章id' },
{ name: 'author', description: '作者' },
{ name: 'YYYY', description: '年' },
{ name: 'MM', description: '月' },
{ name: 'DD', description: '日' },
{ name: 'HH', description: '时' },
{ name: 'mm', description: '分' },
];
const variables = Array.from({ length: Math.ceil(_variables.length / 2) }, (_, i) => [
_variables[i * 2] ?? {},
_variables[i * 2 + 1] ?? {},
]);
</script>
<style scoped>
table th {
padding: 0.5rem 0.25rem;
}
table td {
border: 1px solid #00002d17;
padding: 0.25rem 0.5rem;
}
td:first-child,
th:first-child {
border-left: none;
}
td:last-child,
th:last-child {
border-right: none;
}
th {
border: 1px solid #00002d17;
border-top: none;
}
tr:nth-child(even) {
background-color: #00005506;
}
tr:hover {
background-color: #00005506;
}
</style>
|