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.
95 lines
2.3 KiB
95 lines
2.3 KiB
<script setup lang="ts">
|
|
import type { OpenIddictApplicationDto } from '../../types';
|
|
|
|
import { ref } from 'vue';
|
|
|
|
import { useVbenForm, useVbenModal } from '@vben/common-ui';
|
|
import { $t } from '@vben/locales';
|
|
|
|
import { message } from 'ant-design-vue';
|
|
|
|
import { useApplicationsApi } from '../../api/useApplicationsApi';
|
|
|
|
defineOptions({
|
|
name: 'ApplicationSecretModal',
|
|
});
|
|
const emits = defineEmits<{
|
|
(event: 'change', data: OpenIddictApplicationDto): void;
|
|
}>();
|
|
|
|
const applicationModel = ref<OpenIddictApplicationDto>();
|
|
|
|
const { cancel, getApi, updateApi } = useApplicationsApi();
|
|
const [Form, formApi] = useVbenForm({
|
|
commonConfig: {
|
|
// 所有表单项
|
|
componentProps: {
|
|
class: 'w-full',
|
|
},
|
|
},
|
|
handleSubmit: onSubmit,
|
|
schema: [
|
|
{
|
|
component: 'InputPassword',
|
|
fieldName: 'clientSecret',
|
|
label: $t('AbpOpenIddict.DisplayName:ClientSecret'),
|
|
rules: 'required',
|
|
},
|
|
],
|
|
showDefaultActions: false,
|
|
});
|
|
const [Modal, modalApi] = useVbenModal({
|
|
draggable: true,
|
|
fullscreenButton: false,
|
|
onCancel() {
|
|
modalApi.close();
|
|
},
|
|
onClosed() {
|
|
cancel('ApplicationSecretModal has closed!');
|
|
},
|
|
onConfirm: async () => {
|
|
await formApi.validateAndSubmitForm();
|
|
},
|
|
onOpenChange: async (isOpen) => {
|
|
let title = $t('AbpOpenIddict.ManageSecret');
|
|
if (isOpen) {
|
|
try {
|
|
modalApi.setState({ loading: true });
|
|
const { clientId, id } = modalApi.getData<OpenIddictApplicationDto>();
|
|
await onGet(id);
|
|
title += ` - ${clientId}`;
|
|
} finally {
|
|
modalApi.setState({ loading: false });
|
|
}
|
|
}
|
|
modalApi.setState({ title });
|
|
},
|
|
title: $t('AbpOpenIddict.ManageSecret'),
|
|
});
|
|
async function onGet(id: string) {
|
|
const dto = await getApi(id);
|
|
applicationModel.value = dto;
|
|
}
|
|
async function onSubmit(input: Record<string, any>) {
|
|
try {
|
|
modalApi.setState({ submitting: true });
|
|
const dto = await updateApi(applicationModel.value!.id, {
|
|
...applicationModel.value!,
|
|
clientSecret: input.clientSecret,
|
|
});
|
|
message.success($t('AbpUi.SavedSuccessfully'));
|
|
emits('change', dto);
|
|
modalApi.close();
|
|
} finally {
|
|
modalApi.setState({ submitting: false });
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Modal>
|
|
<Form />
|
|
</Modal>
|
|
</template>
|
|
|
|
<style scoped></style>
|
|
|