Last changes
gitea/hedera-web/pipeline/pr-beta This commit looks good
Details
gitea/hedera-web/pipeline/pr-beta This commit looks good
Details
This commit is contained in:
parent
97ec2fabc5
commit
ae45ef91e1
|
@ -133,14 +133,15 @@ async function fetch() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function submit() {
|
const submitForm = async evt => {
|
||||||
|
const isFormValid = await formModelRef.value.validate();
|
||||||
|
if (isFormValid) await save(evt);
|
||||||
|
};
|
||||||
|
|
||||||
|
async function save() {
|
||||||
if (props.observeFormChanges && !hasChanges.value)
|
if (props.observeFormChanges && !hasChanges.value)
|
||||||
return notify('noChanges', 'negative');
|
return notify('noChanges', 'negative');
|
||||||
|
|
||||||
const isValid = await formModelRef.value.validate();
|
|
||||||
console.log('isValid', isValid);
|
|
||||||
if (!isValid) return;
|
|
||||||
|
|
||||||
isLoading.value = true;
|
isLoading.value = true;
|
||||||
try {
|
try {
|
||||||
const body = props.mapper
|
const body = props.mapper
|
||||||
|
@ -149,10 +150,9 @@ async function submit() {
|
||||||
const method = props.urlCreate ? 'post' : 'patch';
|
const method = props.urlCreate ? 'post' : 'patch';
|
||||||
const url = props.urlCreate || props.urlUpdate || props.url;
|
const url = props.urlCreate || props.urlUpdate || props.url;
|
||||||
|
|
||||||
let response;
|
await Promise.resolve(
|
||||||
|
props.saveFn ? props.saveFn(body) : api[method](url, body)
|
||||||
if (props.saveFn) await props.saveFn(body);
|
);
|
||||||
else await api[method](url, body);
|
|
||||||
|
|
||||||
onSubmitSuccess();
|
onSubmitSuccess();
|
||||||
hasChanges.value = false;
|
hasChanges.value = false;
|
||||||
|
@ -163,18 +163,13 @@ async function submit() {
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
formData,
|
formData,
|
||||||
submit
|
submitForm
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QCard class="form-container" v-bind="$attrs">
|
<QCard class="form-container" v-bind="$attrs">
|
||||||
<QForm
|
<QForm ref="formModelRef" class="form" :class="separationBetweenInputs">
|
||||||
v-if="!isLoading"
|
|
||||||
ref="formModelRef"
|
|
||||||
class="form"
|
|
||||||
:class="separationBetweenInputs"
|
|
||||||
>
|
|
||||||
<span v-if="title" class="text-h6 text-bold">
|
<span v-if="title" class="text-h6 text-bold">
|
||||||
{{ title }}
|
{{ title }}
|
||||||
</span>
|
</span>
|
||||||
|
@ -205,8 +200,9 @@ defineExpose({
|
||||||
rounded
|
rounded
|
||||||
no-caps
|
no-caps
|
||||||
flat
|
flat
|
||||||
|
:loading="isLoading"
|
||||||
:disabled="!showBottomActions && !hasChanges"
|
:disabled="!showBottomActions && !hasChanges"
|
||||||
@click="submit()"
|
@click="submitForm()"
|
||||||
data-cy="formModelDefaultSaveButton"
|
data-cy="formModelDefaultSaveButton"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('save') }}</QTooltip>
|
<QTooltip>{{ t('save') }}</QTooltip>
|
||||||
|
@ -214,7 +210,6 @@ defineExpose({
|
||||||
<slot name="actions" :data="formData" />
|
<slot name="actions" :data="formData" />
|
||||||
</component>
|
</component>
|
||||||
</QForm>
|
</QForm>
|
||||||
<QSpinner v-else color="primary" size="3em" :thickness="2" />
|
|
||||||
</QCard>
|
</QCard>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -110,6 +110,7 @@ onMounted(async () => {
|
||||||
:form-initial-data="editAddressData"
|
:form-initial-data="editAddressData"
|
||||||
:title="t(isEditMode ? 'editAddress' : 'addAddress')"
|
:title="t(isEditMode ? 'editAddress' : 'addAddress')"
|
||||||
@on-data-saved="goBack()"
|
@on-data-saved="goBack()"
|
||||||
|
:show-bottom-actions="false"
|
||||||
>
|
>
|
||||||
<template #form="{ data }">
|
<template #form="{ data }">
|
||||||
<VnInput
|
<VnInput
|
||||||
|
|
Loading…
Reference in New Issue