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.
52 lines
1.4 KiB
52 lines
1.4 KiB
<script setup lang="ts"> |
|
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)) |
|
} |
|
} |
|
</script> |
|
|
|
<template> |
|
<a-modal |
|
v-model:visible="vModel" |
|
:closable="false" |
|
width="28rem" |
|
centered |
|
:footer="null" |
|
:mask-closable="false" |
|
wrap-class-name="nc-modal-shared-view-password-dlg" |
|
@close="vModel = false" |
|
> |
|
<div class="w-full flex flex-col"> |
|
<a-typography-title :level="4">This shared view is protected</a-typography-title> |
|
|
|
<a-form ref="formRef" :model="formState" class="mt-2" @finish="onFinish"> |
|
<a-form-item name="password" :rules="[{ required: true, message: 'Password is required' }]"> |
|
<a-input-password v-model:value="formState.password" placeholder="Enter password" /> |
|
</a-form-item> |
|
|
|
<a-button type="primary" html-type="submit">Unlock</a-button> |
|
</a-form> |
|
</div> |
|
</a-modal> |
|
</template>
|
|
|