refactor(client): refactor settings/plugin/install to use Composition API (#8591)
This commit is contained in:
		| @@ -1,19 +1,19 @@ | ||||
| <template> | ||||
| <div class="_formRoot"> | ||||
| 	<FormInfo warn class="_formBlock">{{ $ts._plugin.installWarn }}</FormInfo> | ||||
| 	<FormInfo warn class="_formBlock">{{ i18n.ts._plugin.installWarn }}</FormInfo> | ||||
|  | ||||
| 	<FormTextarea v-model="code" tall class="_formBlock"> | ||||
| 		<template #label>{{ $ts.code }}</template> | ||||
| 		<template #label>{{ i18n.ts.code }}</template> | ||||
| 	</FormTextarea> | ||||
|  | ||||
| 	<div class="_formBlock"> | ||||
| 		<FormButton :disabled="code == null" primary inline @click="install"><i class="fas fa-check"></i> {{ $ts.install }}</FormButton> | ||||
| 		<FormButton :disabled="code == null" primary inline @click="install"><i class="fas fa-check"></i> {{ i18n.ts.install }}</FormButton> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
|  | ||||
| <script lang="ts"> | ||||
| import { defineAsyncComponent, defineComponent } from 'vue'; | ||||
| <script lang="ts" setup> | ||||
| import { defineExpose, defineAsyncComponent, nextTick, ref } from 'vue'; | ||||
| import { AiScript, parse } from '@syuilo/aiscript'; | ||||
| import { serialize } from '@syuilo/aiscript/built/serializer'; | ||||
| import { v4 as uuid } from 'uuid'; | ||||
| @@ -23,111 +23,121 @@ import FormInfo from '@/components/ui/info.vue'; | ||||
| import * as os from '@/os'; | ||||
| import { ColdDeviceStorage } from '@/store'; | ||||
| import { unisonReload } from '@/scripts/unison-reload'; | ||||
| import { i18n } from '@/i18n'; | ||||
| import * as symbols from '@/symbols'; | ||||
|  | ||||
| export default defineComponent({ | ||||
| 	components: { | ||||
| 		FormTextarea, | ||||
| 		FormButton, | ||||
| 		FormInfo, | ||||
| 	}, | ||||
| const code = ref(null); | ||||
|  | ||||
| 	emits: ['info'], | ||||
| function installPlugin({ id, meta, ast, token }) { | ||||
| 	ColdDeviceStorage.set('plugins', ColdDeviceStorage.get('plugins').concat({ | ||||
| 		...meta, | ||||
| 		id, | ||||
| 		active: true, | ||||
| 		configData: {}, | ||||
| 		token: token, | ||||
| 		ast: ast | ||||
| 	})); | ||||
| } | ||||
|  | ||||
| 	data() { | ||||
| 		return { | ||||
| 			[symbols.PAGE_INFO]: { | ||||
| 				title: this.$ts._plugin.install, | ||||
| 				icon: 'fas fa-download', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			code: null, | ||||
| 		} | ||||
| 	}, | ||||
| async function install() { | ||||
| 	let ast; | ||||
| 	try { | ||||
| 		ast = parse(code.value); | ||||
| 	} catch (e) { | ||||
| 		os.alert({ | ||||
| 			type: 'error', | ||||
| 			text: 'Syntax error :(' | ||||
| 		}); | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	methods: { | ||||
| 		installPlugin({ id, meta, ast, token }) { | ||||
| 			ColdDeviceStorage.set('plugins', ColdDeviceStorage.get('plugins').concat({ | ||||
| 				...meta, | ||||
| 				id, | ||||
| 				active: true, | ||||
| 				configData: {}, | ||||
| 				token: token, | ||||
| 				ast: ast | ||||
| 			})); | ||||
| 	const meta = AiScript.collectMetadata(ast); | ||||
| 	if (meta == null) { | ||||
| 		os.alert({ | ||||
| 			type: 'error', | ||||
| 			text: 'No metadata found :(' | ||||
| 		}); | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	const data = meta.get(null); | ||||
| 	if (data == null) { | ||||
| 		os.alert({ | ||||
| 			type: 'error', | ||||
| 			text: 'No metadata found :(' | ||||
| 		}); | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	const { name, version, author, description, permissions, config } = data; | ||||
| 	if (name == null || version == null || author == null) { | ||||
| 		os.alert({ | ||||
| 			type: 'error', | ||||
| 			text: 'Required property not found :(' | ||||
| 		}); | ||||
| 		return; | ||||
| 	} | ||||
|  | ||||
| 	const token = permissions == null || permissions.length === 0 ? null : await new Promise((res, rej) => { | ||||
| 		os.popup(import('@/components/token-generate-window.vue'), { | ||||
| 			title: i18n.ts.tokenRequested, | ||||
| 			information: i18n.ts.pluginTokenRequestedDescription, | ||||
| 			initialName: name, | ||||
| 			initialPermissions: permissions | ||||
| 		}, { | ||||
| 			done: async result => { | ||||
| 				const { name, permissions } = result; | ||||
| 				const { token } = await os.api('miauth/gen-token', { | ||||
| 					session: null, | ||||
| 					name: name, | ||||
| 					permission: permissions, | ||||
| 				}); | ||||
|  | ||||
| 				res(token); | ||||
| 			} | ||||
| 		}, 'closed'); | ||||
| 	}); | ||||
|  | ||||
| 	installPlugin({ | ||||
| 		id: uuid(), | ||||
| 		meta: { | ||||
| 			name, version, author, description, permissions, config | ||||
| 		}, | ||||
| 		token, | ||||
| 		ast: serialize(ast) | ||||
| 	}); | ||||
|  | ||||
| 		async install() { | ||||
| 			let ast; | ||||
| 			try { | ||||
| 				ast = parse(this.code); | ||||
| 			} catch (e) { | ||||
| 				os.alert({ | ||||
| 					type: 'error', | ||||
| 					text: 'Syntax error :(' | ||||
| 	os.success(); | ||||
|  | ||||
| 	const token = permissions == null || permissions.length === 0 ? null : await new Promise((res, rej) => { | ||||
| 		os.popup(defineAsyncComponent(() => import('@/components/token-generate-window.vue')), { | ||||
| 			title: i18n.ts.tokenRequested, | ||||
| 			information: i18n.ts.pluginTokenRequestedDescription, | ||||
| 			initialName: name, | ||||
| 			initialPermissions: permissions | ||||
| 		}, { | ||||
| 			done: async result => { | ||||
| 				const { name, permissions } = result; | ||||
| 				const { token } = await os.api('miauth/gen-token', { | ||||
| 					session: null, | ||||
| 					name: name, | ||||
| 					permission: permissions, | ||||
| 				}); | ||||
| 				return; | ||||
| 			} | ||||
| 			const meta = AiScript.collectMetadata(ast); | ||||
| 			if (meta == null) { | ||||
| 				os.alert({ | ||||
| 					type: 'error', | ||||
| 					text: 'No metadata found :(' | ||||
| 				}); | ||||
| 				return; | ||||
| 			} | ||||
| 			const data = meta.get(null); | ||||
| 			if (data == null) { | ||||
| 				os.alert({ | ||||
| 					type: 'error', | ||||
| 					text: 'No metadata found :(' | ||||
| 				}); | ||||
| 				return; | ||||
| 			} | ||||
| 			const { name, version, author, description, permissions, config } = data; | ||||
| 			if (name == null || version == null || author == null) { | ||||
| 				os.alert({ | ||||
| 					type: 'error', | ||||
| 					text: 'Required property not found :(' | ||||
| 				}); | ||||
| 				return; | ||||
| 				res(token); | ||||
| 			} | ||||
| 		}, 'closed'); | ||||
| 	}); | ||||
|  | ||||
| 			const token = permissions == null || permissions.length === 0 ? null : await new Promise((res, rej) => { | ||||
| 				os.popup(defineAsyncComponent(() => import('@/components/token-generate-window.vue')), { | ||||
| 					title: this.$ts.tokenRequested, | ||||
| 					information: this.$ts.pluginTokenRequestedDescription, | ||||
| 					initialName: name, | ||||
| 					initialPermissions: permissions | ||||
| 				}, { | ||||
| 					done: async result => { | ||||
| 						const { name, permissions } = result; | ||||
| 						const { token } = await os.api('miauth/gen-token', { | ||||
| 							session: null, | ||||
| 							name: name, | ||||
| 							permission: permissions, | ||||
| 						}); | ||||
| 	nextTick(() => { | ||||
| 		unisonReload(); | ||||
| 	}); | ||||
| } | ||||
|  | ||||
| 						res(token); | ||||
| 					} | ||||
| 				}, 'closed'); | ||||
| 			}); | ||||
|  | ||||
| 			this.installPlugin({ | ||||
| 				id: uuid(), | ||||
| 				meta: { | ||||
| 					name, version, author, description, permissions, config | ||||
| 				}, | ||||
| 				token, | ||||
| 				ast: serialize(ast) | ||||
| 			}); | ||||
|  | ||||
| 			os.success(); | ||||
|  | ||||
| 			this.$nextTick(() => { | ||||
| 				unisonReload(); | ||||
| 			}); | ||||
| 		}, | ||||
| defineExpose({ | ||||
| 	[symbols.PAGE_INFO]: { | ||||
| 		title: i18n.ts._plugin.install, | ||||
| 		icon: 'fas fa-download', | ||||
| 		bg: 'var(--bg)', | ||||
| 	} | ||||
| }); | ||||
| </script> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Andreas Nedbal
					Andreas Nedbal