mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 05:06:35 +00:00
64 lines
2.0 KiB
Vue
64 lines
2.0 KiB
Vue
<script setup lang="ts">
|
|
import type { VNodeRef } from '@vue/runtime-core'
|
|
import type { InputPassword } from 'ant-design-vue'
|
|
import { extractSdkResponseErrorMsg, message, ref, useRoute, useSharedView, useVModel } from '#imports'
|
|
|
|
const props = defineProps<{
|
|
modelValue: boolean
|
|
}>()
|
|
|
|
const emit = defineEmits(['update:modelValue'])
|
|
|
|
const vModel = useVModel(props, 'modelValue', emit)
|
|
|
|
const route = useRoute()
|
|
|
|
const { loadSharedView } = useSharedView()
|
|
|
|
const formState = ref({ password: undefined })
|
|
|
|
const onFinish = async () => {
|
|
try {
|
|
await loadSharedView(route.params.viewId as string, formState.value.password)
|
|
vModel.value = false
|
|
} catch (e: any) {
|
|
console.error(e)
|
|
message.error(await extractSdkResponseErrorMsg(e))
|
|
}
|
|
}
|
|
|
|
const focus: VNodeRef = (el: typeof InputPassword) => el?.$el?.querySelector('input').focus()
|
|
</script>
|
|
|
|
<template>
|
|
<NcModal v-model:visible="vModel" c size="small" :class="{ active: vModel }" :mask-closable="false">
|
|
<template #header>
|
|
<div class="flex flex-row items-center gap-x-2">
|
|
<GeneralIcon icon="key" />
|
|
{{ $t('msg.thisSharedViewIsProtected') }}
|
|
</div>
|
|
</template>
|
|
|
|
<div class="mt-2">
|
|
<a-form ref="formRef" :model="formState" name="create-new-table-form" @finish="onFinish">
|
|
<a-form-item name="password" :rules="[{ required: true, message: $t('msg.error.signUpRules.passwdRequired') }]">
|
|
<a-input-password
|
|
ref="focus"
|
|
v-model:value="formState.password"
|
|
class="nc-input-md"
|
|
hide-details
|
|
size="large"
|
|
:placeholder="$t('msg.enterPassword')"
|
|
/>
|
|
</a-form-item>
|
|
</a-form>
|
|
<div class="flex flex-row justify-end gap-x-2 mt-6">
|
|
<NcButton type="primary" html-type="submit" @click="onFinish"
|
|
>{{ $t('general.unlock') }}
|
|
<template #loading> {{ $t('msg.verifyingPassword') }}</template>
|
|
</NcButton>
|
|
</div>
|
|
</div>
|
|
</NcModal>
|
|
</template>
|