mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
276 lines
8.4 KiB
276 lines
8.4 KiB
<script setup lang="ts"> |
|
import type { PluginType } from 'nocodb-sdk' |
|
import { extractSdkResponseErrorMsg, message, onMounted, ref, useI18n, useNuxtApp } from '#imports' |
|
|
|
const { id } = defineProps<{ |
|
id: string |
|
}>() |
|
|
|
const emits = defineEmits(['saved', 'close']) |
|
|
|
enum Action { |
|
Save = 'save', |
|
Test = 'test', |
|
} |
|
|
|
type Plugin = PluginType & { |
|
formDetails: Record<string, any> |
|
parsedInput: Record<string, any> |
|
} |
|
|
|
const { $api } = useNuxtApp() |
|
|
|
const formRef = ref() |
|
|
|
const { t } = useI18n() |
|
|
|
let plugin = $ref<Plugin | null>(null) |
|
|
|
let pluginFormData = $ref<Record<string, any>>({}) |
|
|
|
let isLoading = $ref(true) |
|
|
|
let loadingAction = $ref<null | Action>(null) |
|
|
|
const layout = { |
|
labelCol: { span: 14, pull: 4 }, |
|
wrapperCol: { span: 20, pull: 4 }, |
|
} |
|
|
|
const addSetting = () => pluginFormData.push({}) |
|
|
|
const saveSettings = async () => { |
|
loadingAction = Action.Save |
|
|
|
try { |
|
await formRef.value?.validateFields() |
|
|
|
await $api.plugin.update(id, { |
|
input: JSON.stringify(pluginFormData), |
|
active: true, |
|
}) |
|
|
|
emits('saved') |
|
// Plugin settings saved successfully |
|
message.success(plugin?.formDetails.msgOnInstall || t('msg.success.pluginSettingsSaved')) |
|
} catch (e: any) { |
|
message.error(await extractSdkResponseErrorMsg(e)) |
|
} finally { |
|
loadingAction = null |
|
} |
|
} |
|
|
|
const testSettings = async () => { |
|
loadingAction = Action.Test |
|
|
|
try { |
|
const res = await $api.plugin.test({ |
|
input: pluginFormData, |
|
id: plugin?.id, |
|
category: plugin?.category, |
|
title: plugin?.title, |
|
}) |
|
|
|
if (res) { |
|
// Successfully tested plugin settings |
|
message.success(t('msg.success.pluginTested')) |
|
} else { |
|
// Invalid credentials |
|
message.info(t('msg.info.invalidCredentials')) |
|
} |
|
} catch (e: any) { |
|
message.error(await extractSdkResponseErrorMsg(e)) |
|
} finally { |
|
loadingAction = null |
|
} |
|
} |
|
|
|
const doAction = async (action: Action) => { |
|
switch (action) { |
|
case Action.Save: |
|
await saveSettings() |
|
break |
|
case Action.Test: |
|
await testSettings() |
|
break |
|
default: |
|
// noop |
|
break |
|
} |
|
} |
|
|
|
const readPluginDetails = async () => { |
|
try { |
|
isLoading = true |
|
|
|
const res = await $api.plugin.read(id) |
|
const formDetails = JSON.parse(res.input_schema ?? '{}') |
|
const emptyParsedInput = formDetails.array ? [{}] : {} |
|
const parsedInput = res.input ? JSON.parse(res.input) : emptyParsedInput |
|
|
|
// the type of 'secure' was XcType.SingleLineText in 0.0.1 |
|
// and it has been changed to XcType.Checkbox, since 0.0.2 |
|
// hence, change the text value to boolean here |
|
if ('secure' in parsedInput && typeof parsedInput.secure === 'string') { |
|
parsedInput.secure = !!parsedInput.secure |
|
} |
|
|
|
plugin = { ...res, formDetails, parsedInput } |
|
pluginFormData = plugin.parsedInput |
|
} catch (e) { |
|
console.log(e) |
|
} finally { |
|
isLoading = false |
|
} |
|
} |
|
|
|
const deleteFormRow = (index: number) => pluginFormData.splice(index, 1) |
|
|
|
onMounted(async () => { |
|
if (!plugin) { |
|
await readPluginDetails() |
|
} |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div v-if="isLoading" class="flex flex-row w-full justify-center items-center h-52"> |
|
<a-spin size="large" /> |
|
</div> |
|
|
|
<template v-else> |
|
<div class="flex flex-col"> |
|
<div class="w-full relative"> |
|
<div class="flex flex-row justify-center pb-4 mb-2 border-b-1 w-full gap-x-1"> |
|
<div |
|
v-if="plugin.logo" |
|
class="mr-1 flex items-center justify-center" |
|
:class="[plugin.title === 'SES' ? 'p-2 bg-[#242f3e]' : '']" |
|
> |
|
<img :alt="plugin.title || 'plugin'" :src="`/${plugin.logo}`" class="h-6" /> |
|
</div> |
|
|
|
<span class="font-semibold text-lg">{{ plugin.formDetails.title }}</span> |
|
</div> |
|
|
|
<div class="absolute -right-2 -top-0.5"> |
|
<a-button type="text" class="!rounded-md mr-1" @click="emits('close')"> |
|
<template #icon> |
|
<MaterialSymbolsCloseRounded class="flex mx-auto" /> |
|
</template> |
|
</a-button> |
|
</div> |
|
</div> |
|
|
|
<a-form ref="formRef" v-bind="plugin?.formDetails.array ? {} : layout" :model="pluginFormData" class="mx-4 mt-3"> |
|
<!-- Form with multiple entry --> |
|
<div v-if="plugin.formDetails.array" class="flex flex-row justify-center"> |
|
<table> |
|
<thead> |
|
<tr> |
|
<th v-for="(columnData, columnIndex) in plugin.formDetails.items" :key="columnIndex"> |
|
<div class="text-center font-normal mb-2"> |
|
{{ columnData.label }} <span v-if="columnData.required" class="text-red-600">*</span> |
|
</div> |
|
</th> |
|
</tr> |
|
</thead> |
|
|
|
<tbody> |
|
<tr v-for="(itemRow, itemIndex) in plugin.parsedInput" :key="itemIndex"> |
|
<td v-for="(columnData, columnIndex) in plugin.formDetails.items" :key="columnIndex" class="px-2"> |
|
<a-form-item |
|
class="relative mb-3" |
|
:name="[`${itemIndex}`, columnData.key]" |
|
:rules="[{ required: columnData.required, message: `${columnData.label} is required` }]" |
|
> |
|
<a-input-password |
|
v-if="columnData.type === 'Password'" |
|
v-model:value="itemRow[columnData.key]" |
|
:placeholder="columnData.placeholder" |
|
/> |
|
|
|
<a-textarea |
|
v-else-if="columnData.type === 'LongText'" |
|
v-model:value="itemRow[columnData.key]" |
|
:placeholder="columnData.placeholder" |
|
/> |
|
|
|
<a-switch |
|
v-else-if="columnData.type === 'Checkbox'" |
|
v-model:value="itemRow[columnData.key]" |
|
:placeholder="columnData.placeholder" |
|
/> |
|
|
|
<a-input v-else v-model:value="itemRow[columnData.key]" :placeholder="columnData.placeholder" /> |
|
|
|
<div |
|
v-if="itemIndex !== 0 && columnIndex === plugin.formDetails.items.length - 1" |
|
class="absolute flex flex-col justify-start mt-2 -right-6 top-0" |
|
> |
|
<MdiDeleteOutline class="hover:text-red-400 cursor-pointer" @click="deleteFormRow(itemIndex)" /> |
|
</div> |
|
</a-form-item> |
|
</td> |
|
</tr> |
|
</tbody> |
|
|
|
<tr> |
|
<td :colspan="plugin.formDetails.items.length" class="text-center"> |
|
<a-button type="default" class="!bg-gray-100 rounded-md border-none mr-1" @click="addSetting"> |
|
<template #icon> |
|
<MdiPlus class="flex mx-auto" /> |
|
</template> |
|
</a-button> |
|
</td> |
|
</tr> |
|
</table> |
|
</div> |
|
|
|
<!-- Form with only one entry --> |
|
<template v-else> |
|
<a-form-item |
|
v-for="(columnData, i) in plugin.formDetails.items" |
|
:key="i" |
|
:label="columnData.label" |
|
:name="columnData.key" |
|
:rules="[{ required: columnData.required, message: `${columnData.label} is required` }]" |
|
> |
|
<a-input-password |
|
v-if="columnData.type === 'Password'" |
|
v-model:value="pluginFormData[columnData.key]" |
|
:placeholder="columnData.placeholder" |
|
/> |
|
|
|
<a-textarea |
|
v-else-if="columnData.type === 'LongText'" |
|
v-model:value="pluginFormData[columnData.key]" |
|
:placeholder="columnData.placeholder" |
|
/> |
|
|
|
<a-switch |
|
v-else-if="columnData.type === 'Checkbox'" |
|
v-model:checked="pluginFormData[columnData.key]" |
|
:placeholder="columnData.placeholder" |
|
/> |
|
|
|
<a-input v-else v-model:value="pluginFormData[columnData.key]" :placeholder="columnData.placeholder" /> |
|
</a-form-item> |
|
</template> |
|
|
|
<div class="flex flex-row space-x-4 justify-center mt-4"> |
|
<a-button |
|
v-for="(action, i) in plugin.formDetails.actions" |
|
:key="i" |
|
:loading="loadingAction === action.key" |
|
:type="action.key === Action.Save ? 'primary' : 'default'" |
|
:disabled="!!loadingAction" |
|
@click="doAction(action.key)" |
|
> |
|
{{ action.label }} |
|
</a-button> |
|
</div> |
|
</a-form> |
|
</div> |
|
</template> |
|
</template>
|
|
|