1 Commits

Author SHA1 Message Date
anian 18aa1199ec 修改路由、控制台类别限制;修复异常 2026-04-29 16:24:40 +08:00
10 changed files with 5101 additions and 3309 deletions
+13
View File
@@ -1,3 +1,16 @@
# halo-plugin-douban
> 基于原作者v1.2.2代码修改
#### v1.2.2-1
1. 修改前台页面路由为/books
2. 控制台类别value不再限制
3. 修复构建失败等异常
# plugin-douban # plugin-douban
* 豆瓣管理插件, 支持在 Console 进行管理以及为主题端提供 `/douban` 页面路由。 * 豆瓣管理插件, 支持在 Console 进行管理以及为主题端提供 `/douban` 页面路由。
+1 -1
View File
@@ -16,7 +16,7 @@ repositories {
} }
dependencies { dependencies {
implementation platform('run.halo.tools.platform:plugin:2.20.0-SNAPSHOT') implementation platform('run.halo.tools.platform:plugin:2.20.11')
compileOnly 'run.halo.app:api' compileOnly 'run.halo.app:api'
testImplementation 'run.halo.app:api' testImplementation 'run.halo.app:api'
+1 -1
View File
@@ -1 +1 @@
version=1.2.2 version=1.2.2-1
@@ -28,7 +28,7 @@ public class DoubanRouter {
@Bean @Bean
RouterFunction<ServerResponse> friendTemplateRoute() { RouterFunction<ServerResponse> friendTemplateRoute() {
return RouterFunctions.route().GET("/douban",this::handlerFunction) return RouterFunctions.route().GET("/books",this::handlerFunction)
.build(); .build();
} }
+1
View File
@@ -2,6 +2,7 @@
"name": "@kunkunyu/plugin-douban", "name": "@kunkunyu/plugin-douban",
"version": "1.0.0", "version": "1.0.0",
"private": true, "private": true,
"type": "module",
"scripts": { "scripts": {
"dev": "vite build --watch --mode=development", "dev": "vite build --watch --mode=development",
"build": "vite build", "build": "vite build",
+5124 -3316
View File
File diff suppressed because it is too large Load Diff
+3 -24
View File
@@ -218,32 +218,11 @@ const handleSaveFriend = async () => {
></FormKit> ></FormKit>
<FormKit <FormKit
v-if="formState.spec.dataType=='halo'" v-if="formState.spec.dataType=='halo'"
:options="[ type="text"
{
label: '电影',
value: 'movie',
},
{
label: '图书',
value: 'book',
},
{
label: '音乐',
value: 'music',
},
{
label: '游戏',
value: 'game',
},
{
label: '舞台剧',
value: 'drama',
},
]"
label="类型"
v-model="formState.spec.type" v-model="formState.spec.type"
name="type" name="type"
type="select" label="类型"
placeholder="输入类型 value,例如 movie"
></FormKit> ></FormKit>
<FormKit <FormKit
v-if="formState.spec.dataType=='halo'" v-if="formState.spec.dataType=='halo'"
+4 -27
View File
@@ -332,35 +332,12 @@ const onEditingModalClose = async () => {
}, },
]" ]"
/> />
<FilterDropdown <FormKit
v-model="selectedType" v-model="selectedType"
label="类型" label="类型"
:items="[ placeholder="输入类型 value 过滤,例如 movie"
{ type="text"
label: '全部', outer-class="!moments-p-0"
value: undefined,
},
{
label: '电影',
value: 'movie',
},
{
label: '图书',
value: 'book',
},
{
label: '音乐',
value: 'music',
},
{
label: '游戏',
value: 'game',
},
{
label: '舞台剧',
value: 'drama',
},
]"
/> />
<FilterDropdown <FilterDropdown
v-model="selectedSort" v-model="selectedSort"
+15 -1
View File
@@ -1,9 +1,23 @@
{ {
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["./env.d.ts", "./src/**/*", "./src/**/*.vue"], "include": ["./env.d.ts", "./src/**/*", "./src/**/*.vue"],
"exclude": ["./src/**/__tests__/*"], "exclude": ["./src/**/__tests__/*"],
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*"]
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"extends": "@vue/tsconfig/tsconfig.node.json", "extends": "@tsconfig/node20/tsconfig.json",
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*"], "include": ["vite.config.*", "vitest.config.*", "cypress.config.*"],
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,