2023-03-17 15:13:37 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { Head, useForm } from '@inertiajs/vue3';
|
|
|
|
import { ref } from 'vue';
|
2023-03-24 10:41:52 +00:00
|
|
|
import { Dataset, Description, Title } from '@/Dataset';
|
|
|
|
import {
|
|
|
|
mdiDatabasePlus,
|
|
|
|
mdiMinusCircle,
|
|
|
|
mdiPlusCircle,
|
|
|
|
mdiFinance,
|
|
|
|
mdiInformationOutline,
|
|
|
|
mdiBookOpenPageVariant,
|
|
|
|
mdiImageText,
|
|
|
|
} from '@mdi/js';
|
2023-03-17 15:13:37 +00:00
|
|
|
import LayoutAuthenticated from '@/Layouts/LayoutAuthenticated.vue';
|
|
|
|
import SectionMain from '@/Components/SectionMain.vue';
|
|
|
|
import SectionTitleLineWithButton from '@/Components/SectionTitleLineWithButton.vue';
|
|
|
|
import CardBox from '@/Components/CardBox.vue';
|
|
|
|
import FormField from '@/Components/FormField.vue';
|
|
|
|
import FormControl from '@/Components/FormControl.vue';
|
|
|
|
import FormCheckRadioGroup from '@/Components/FormCheckRadioGroup.vue';
|
|
|
|
// import BaseDivider from '@/Components/BaseDivider.vue';
|
|
|
|
import BaseButton from '@/Components/BaseButton.vue';
|
|
|
|
// import BaseButtons from '@/Components/BaseButtons.vue';
|
|
|
|
import { stardust } from '@eidellev/adonis-stardust/client';
|
|
|
|
// import { Inertia } from '@inertiajs/inertia';
|
|
|
|
import CardBoxModal from '@/Components/CardBoxModal.vue';
|
|
|
|
import BaseIcon from '@/Components/BaseIcon.vue';
|
|
|
|
|
|
|
|
import IconWizard from '@/Components/Icons/Wizard.vue';
|
|
|
|
import IconMandatory from '@/Components/Icons/Mandatory.vue';
|
|
|
|
import IconLanguage from '@/Components/Icons/Language.vue';
|
|
|
|
import IconRecommendet from '@/Components/Icons/Recommendet.vue';
|
|
|
|
import IconConfirm from '@/Components/Icons/Confirm.vue';
|
|
|
|
import SearchAutocomplete from '@/Components/SearchAutocomplete.vue';
|
2023-03-24 10:41:52 +00:00
|
|
|
import TablePersons from '@/Components/TablePersons.vue';
|
|
|
|
import { MainService } from '@/Stores/main';
|
|
|
|
import { notify } from '@/notiwind';
|
|
|
|
// import NotificationToast from '@/Components/NotificationToast.vue';
|
2023-03-17 15:13:37 +00:00
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
licenses: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
doctypes: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
titletypes: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
descriptiontypes: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
2023-03-24 10:41:52 +00:00
|
|
|
projects: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
2023-03-17 15:13:37 +00:00
|
|
|
errors: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2023-03-24 10:41:52 +00:00
|
|
|
const mainService = MainService();
|
|
|
|
|
2023-03-17 15:13:37 +00:00
|
|
|
// const form = useForm({
|
|
|
|
// language: '',
|
|
|
|
// licenses: [],
|
|
|
|
// type: '',
|
|
|
|
// titles: [{ value: '', type: 'Main', language: Dataset.language }],
|
|
|
|
// });
|
|
|
|
// let language: (string | Ref<string>) = ref('');
|
|
|
|
let language = ref('');
|
2023-03-24 10:41:52 +00:00
|
|
|
let dataset: Dataset;
|
|
|
|
if (Object.keys(mainService.dataset).length == 0) {
|
|
|
|
// language = ref('');
|
|
|
|
dataset = {
|
|
|
|
language: language,
|
|
|
|
licenses: [],
|
|
|
|
rights: false,
|
|
|
|
type: '',
|
|
|
|
creating_corporation: 'Tethys RDR',
|
|
|
|
titles: [{ value: '', type: 'Main', language: language }],
|
|
|
|
descriptions: [{ value: '', type: 'Abstract', language: language }],
|
|
|
|
authors: [],
|
|
|
|
contributors: [],
|
|
|
|
project_id: undefined,
|
|
|
|
embargo_date: '',
|
|
|
|
// errors: undefined,
|
|
|
|
};
|
|
|
|
// mainService.setDataset(dataset, language);
|
|
|
|
} else {
|
|
|
|
// console.log(mainService.dataset);
|
|
|
|
language = ref(mainService.dataset.language);
|
|
|
|
|
|
|
|
// dataset = mainService.dataset;
|
|
|
|
dataset = {
|
|
|
|
language: language,
|
|
|
|
licenses: mainService.dataset.licenses,
|
|
|
|
rights: mainService.dataset.rights,
|
|
|
|
type: mainService.dataset.type,
|
|
|
|
creating_corporation: mainService.dataset.creating_corporation,
|
|
|
|
titles: mainService.dataset.titles,
|
|
|
|
descriptions: mainService.dataset.descriptions,
|
|
|
|
authors: mainService.dataset.authors,
|
|
|
|
contributors: mainService.dataset.contributors,
|
|
|
|
project_id: mainService.dataset.project_id,
|
|
|
|
embargo_date: mainService.dataset.embargo_date,
|
|
|
|
};
|
|
|
|
for (let index in mainService.dataset.titles) {
|
|
|
|
let title: Title = mainService.dataset.titles[index];
|
|
|
|
if (title.type == 'Main') {
|
|
|
|
title.language = language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (let index in mainService.dataset.descriptions) {
|
|
|
|
let description: Description = mainService.dataset.descriptions[index];
|
|
|
|
if (description.type == 'Abstract') {
|
|
|
|
description.language = language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// const form = useForm<Dataset>({
|
2023-03-17 15:13:37 +00:00
|
|
|
// language: language,
|
|
|
|
// licenses: [],
|
|
|
|
// rights: false,
|
|
|
|
// type: '',
|
|
|
|
// creating_corporation: 'Tethys RDR',
|
|
|
|
// titles: [{ value: '', type: 'Main', language: language }],
|
|
|
|
// descriptions: [{ value: '', type: 'Abstract', language: language }],
|
|
|
|
// });
|
|
|
|
const form = useForm<Dataset>(dataset);
|
|
|
|
// dataset.language.value = 'de';
|
|
|
|
|
|
|
|
// const emit = defineEmits(['update:modelValue', 'setRef']);
|
|
|
|
// computed({
|
|
|
|
// get: () => form.rights,
|
|
|
|
// set: (value) => {
|
|
|
|
// emit('update:modelValue', value);
|
|
|
|
// },
|
|
|
|
// });
|
|
|
|
|
|
|
|
const isModalActive = ref(false);
|
|
|
|
const formStep = ref(1);
|
|
|
|
|
|
|
|
// const submit = async () => {
|
|
|
|
// await router.post(stardust.route('user.store'), form, {
|
|
|
|
// onSuccess: () => {
|
|
|
|
// form.reset(), (formStep.value = 1);
|
|
|
|
// },
|
|
|
|
// });
|
|
|
|
// };
|
|
|
|
|
|
|
|
const nextStep = async () => {
|
2023-03-24 10:41:52 +00:00
|
|
|
let route;
|
|
|
|
if (formStep.value == 1) {
|
|
|
|
route = stardust.route('dataset.first.step');
|
|
|
|
} else if (formStep.value == 2) {
|
2023-03-17 15:13:37 +00:00
|
|
|
route = stardust.route('dataset.second.step');
|
2023-03-24 10:41:52 +00:00
|
|
|
} else if (formStep.value == 3) {
|
|
|
|
route = stardust.route('dataset.third.step');
|
2023-03-17 15:13:37 +00:00
|
|
|
}
|
|
|
|
// formStep.value++;
|
|
|
|
await form
|
|
|
|
.transform((data) => ({
|
|
|
|
...data,
|
|
|
|
rights: form.rights && form.rights == true ? 'true' : 'false',
|
|
|
|
}))
|
|
|
|
.post(route, {
|
|
|
|
form,
|
|
|
|
onSuccess: () => {
|
2023-03-24 10:41:52 +00:00
|
|
|
// console.log(form.data());
|
|
|
|
mainService.setDataset(form.data());
|
2023-03-17 15:13:37 +00:00
|
|
|
formStep.value++;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const prevStep = () => {
|
|
|
|
formStep.value--;
|
|
|
|
};
|
|
|
|
|
|
|
|
const addTitle = () => {
|
|
|
|
let newTitle: Title = { value: '', language: '', type: '' };
|
|
|
|
//this.dataset.files.push(uploadedFiles[i]);
|
|
|
|
form.titles.push(newTitle);
|
|
|
|
};
|
|
|
|
const removeTitle = (key) => {
|
|
|
|
form.titles.splice(key, 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
const addDescription = () => {
|
|
|
|
let newDescription = { value: '', language: '', type: '' };
|
|
|
|
//this.dataset.files.push(uploadedFiles[i]);
|
|
|
|
form.descriptions.push(newDescription);
|
|
|
|
};
|
|
|
|
const removeDescription = (key) => {
|
|
|
|
form.descriptions.splice(key, 1);
|
|
|
|
};
|
2023-03-24 10:41:52 +00:00
|
|
|
|
|
|
|
const onAddAuthor = (person) => {
|
|
|
|
if (form.authors.filter((e) => e.id === person.id).length > 0) {
|
|
|
|
notify({ type: 'warning', title: 'Warning', text: 'person is already defined as author' }, 4000);
|
|
|
|
} else if (form.contributors.filter((e) => e.id === person.id).length > 0) {
|
|
|
|
notify({ type: 'warning', title: 'Warning', text: 'person is already defined as contributor' });
|
|
|
|
} else {
|
|
|
|
form.authors.push(person);
|
|
|
|
notify({ type: 'info', text: 'person has been successfully added as author' });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const onAddContributor = (person) => {
|
|
|
|
if (form.contributors.filter((e) => e.id === person.id).length > 0) {
|
|
|
|
notify({ type: 'warning', title: 'Warning', text: 'person is already defined as contributor' }, 4000);
|
|
|
|
} else if (form.authors.filter((e) => e.id === person.id).length > 0) {
|
|
|
|
notify({ type: 'warning', title: 'Warning', text: 'person is already defined as author' }, 4000);
|
|
|
|
} else {
|
|
|
|
// person.pivot = { contributor_type: '' };
|
|
|
|
// // person.pivot = { name_type: '', contributor_type: '' };
|
|
|
|
form.contributors.push(person);
|
|
|
|
notify({ type: 'info', text: 'person has been successfully added as contributor' }, 4000);
|
|
|
|
}
|
|
|
|
};
|
2023-03-17 15:13:37 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<CardBoxModal v-model="isModalActive" title="Einverständniserklärung *">
|
|
|
|
Mit dem Setzen des Hakens bestätige ich hiermit
|
|
|
|
<ul class="list-decimal">
|
|
|
|
<li>
|
|
|
|
die Data Policy von Tethys RDR sowie die Terms & Conditions von Tethys gelesen und verstanden zu haben (<a
|
|
|
|
href="/docs/HandbuchTethys.pdf"
|
|
|
|
target="_blank"
|
|
|
|
>siehe hier</a
|
|
|
|
>)
|
|
|
|
</li>
|
|
|
|
<li>das Einverständnis aller Co-Autoren über die bevorstehende Datenpublikation schriftlich eingeholt zu haben</li>
|
|
|
|
<li>sowohl mit der Data Policy als auch mit den Terms & Conditions einverstanden zu sein</li>
|
|
|
|
</ul>
|
|
|
|
</CardBoxModal>
|
|
|
|
|
|
|
|
<LayoutAuthenticated>
|
|
|
|
<Head title="Submit Dataset" />
|
|
|
|
<SectionMain>
|
|
|
|
<SectionTitleLineWithButton :icon="mdiDatabasePlus" title="Submit dataset" main>
|
|
|
|
<!-- <BaseButton :route-name="stardust.route('user.index')" :icon="mdiArrowLeftBoldOutline" label="Back"
|
|
|
|
color="white" rounded-full small /> -->
|
2023-03-24 10:41:52 +00:00
|
|
|
{{ formStep }}
|
2023-03-17 15:13:37 +00:00
|
|
|
</SectionTitleLineWithButton>
|
|
|
|
|
|
|
|
<CardBox>
|
|
|
|
<div class="mx-4 p-4">
|
|
|
|
<div class="flex items-center">
|
|
|
|
<!-- <label>{{ form.titles[0].language }}</label>
|
|
|
|
<label>{{ form.language }}</label> -->
|
|
|
|
<icon-wizard :is-current="formStep == 1" :is-checked="formStep > 1" :label="'Language'">
|
|
|
|
<icon-language></icon-language>
|
|
|
|
</icon-wizard>
|
|
|
|
|
|
|
|
<icon-wizard :is-current="formStep == 2" :is-checked="formStep > 2" :label="'Mandatory'">
|
|
|
|
<icon-mandatory></icon-mandatory>
|
|
|
|
</icon-wizard>
|
|
|
|
|
|
|
|
<icon-wizard :is-current="formStep == 3" :is-checked="formStep > 3" :label="'Recommendet'">
|
|
|
|
<icon-recommendet></icon-recommendet>
|
|
|
|
</icon-wizard>
|
|
|
|
|
|
|
|
<icon-wizard :is-current="formStep == 4" :is-checked="false" :label="'Confirm'" :is-last-step="true">
|
|
|
|
<icon-confirm></icon-confirm>
|
|
|
|
</icon-wizard>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- mt-8: margin-top: 2rem; /* 32px */ 4 p-4: spacing 1rem 16px-->
|
|
|
|
<div class="mt-8 p-4">
|
|
|
|
<div v-if="formStep == 1">
|
|
|
|
<div class="flex flex-col md:flex-row">
|
|
|
|
<FormField
|
|
|
|
label="Language *"
|
|
|
|
help="required: select dataset main language"
|
|
|
|
:class="{ 'text-red-400': errors.language }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.language"
|
|
|
|
:type="'select'"
|
|
|
|
placeholder="[Enter Language]"
|
|
|
|
:errors="form.errors.language"
|
2023-03-24 10:41:52 +00:00
|
|
|
:options="{ de: 'de', en: 'en' }"
|
2023-03-17 15:13:37 +00:00
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.language">
|
|
|
|
{{ form.errors.language.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<FormField
|
|
|
|
label="Licenses"
|
|
|
|
wrap-body
|
|
|
|
:class="{ 'text-red-400': form.errors.licenses }"
|
|
|
|
class="mt-8 w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormCheckRadioGroup v-model="form.licenses" name="roles" is-column :options="props.licenses" />
|
|
|
|
</FormField>
|
|
|
|
|
|
|
|
<!-- <label for="rights">
|
|
|
|
<input class="form-checkbox" name="rights" id="rights" type="checkbox" v-model="dataset.rights" />
|
|
|
|
terms and conditions
|
|
|
|
</label> -->
|
|
|
|
<FormField
|
|
|
|
label="Rights"
|
|
|
|
help="You must agree to continue"
|
|
|
|
wrap-body
|
|
|
|
:class="{ 'text-red-400': form.errors.rights }"
|
|
|
|
class="mt-8 w-full mx-2 flex-1 flex-col"
|
|
|
|
>
|
|
|
|
<label for="rights" class="checkbox mr-6 mb-3 last:mr-0">
|
|
|
|
<input type="checkbox" id="rights" required v-model="form.rights" />
|
|
|
|
<span class="check" />
|
|
|
|
<a class="pl-2" target="_blank">terms and conditions </a>
|
|
|
|
<!-- <BaseButton color="modern" :icon="mdiInformationOutline" small @click="isModalActive = true" /> -->
|
|
|
|
<BaseIcon
|
|
|
|
v-if="mdiInformationOutline"
|
|
|
|
:path="mdiInformationOutline"
|
|
|
|
@click.prevent="isModalActive = true"
|
|
|
|
/>
|
|
|
|
</label>
|
|
|
|
</FormField>
|
|
|
|
<div class="text-red-400 text-sm" v-if="errors.rights && Array.isArray(errors.rights)">
|
|
|
|
<!-- {{ errors.password_confirmation }} -->
|
|
|
|
{{ errors.rights.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-if="formStep == 2">
|
|
|
|
<!-- <CardBox title="Performance" :icon="mdiFinance" :header-icon="mdiReload" class="mb-6"> -->
|
|
|
|
<div class="flex flex-col md:flex-row">
|
|
|
|
<FormField
|
|
|
|
label="Dataset Type *"
|
|
|
|
help="required: dataset type"
|
|
|
|
:class="{ 'text-red-400': form.errors.type }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.type"
|
|
|
|
:type="'select'"
|
|
|
|
placeholder="-- select type --"
|
|
|
|
:errors="errors.type"
|
|
|
|
:options="doctypes"
|
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.type && Array.isArray(form.errors.type)">
|
|
|
|
{{ form.errors.type.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
<!-- <div class="w-full mx-2 flex-1 svelte-1l8159u"></div> -->
|
|
|
|
<!-- Creating Corporation -->
|
|
|
|
<FormField
|
|
|
|
label="Creating Corporation *"
|
|
|
|
:class="{ 'text-red-400': form.errors.creating_corporation }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.creating_corporation"
|
|
|
|
type="text"
|
|
|
|
placeholder="[enter creating corporation]"
|
|
|
|
:is-read-only="true"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="form.errors.creating_corporation && Array.isArray(form.errors.creating_corporation)"
|
|
|
|
>
|
|
|
|
{{ form.errors.creating_corporation.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
<!-- <BaseDivider /> -->
|
|
|
|
|
|
|
|
<!-- titles -->
|
|
|
|
<CardBox
|
2023-03-24 10:41:52 +00:00
|
|
|
class="mb-6 shadow"
|
2023-03-17 15:13:37 +00:00
|
|
|
:has-form-data="true"
|
|
|
|
title="Titles"
|
|
|
|
:icon="mdiFinance"
|
|
|
|
:header-icon="mdiPlusCircle"
|
|
|
|
v-on:header-icon-click="addTitle()"
|
|
|
|
>
|
|
|
|
<!-- <div class="py-6 border-t border-gray-100 dark:border-slate-800"> -->
|
|
|
|
<div class="flex flex-col md:flex-row">
|
|
|
|
<FormField
|
|
|
|
label="Main Title *"
|
|
|
|
help="required: main title"
|
|
|
|
:class="{ 'text-red-400': form.errors['titles.0.value'] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl required v-model="form.titles[0].value" type="text" placeholder="[enter main title]">
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="form.errors['titles.0.value'] && Array.isArray(form.errors['titles.0.value'])"
|
|
|
|
>
|
|
|
|
{{ form.errors['titles.0.value'].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Main Title Language*"
|
|
|
|
help="required: main title language"
|
|
|
|
:class="{ 'text-red-400': form.errors['titles.0.language'] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl required v-model="form.titles[0].language" type="text" :is-read-only="true">
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="form.errors['titles.0.language'] && Array.isArray(form.errors['titles.0.language'])"
|
|
|
|
>
|
|
|
|
{{ form.errors['titles.0.language'].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
<label v-if="form.titles.length > 1">additional titles </label>
|
|
|
|
<!-- <BaseButton :icon="mdiPlusCircle" @click.prevent="addTitle()" color="modern" rounded-full small /> -->
|
|
|
|
<div v-if="form.titles.length > 1">
|
|
|
|
<div v-for="(item, index) in form.titles">
|
|
|
|
<div class="flex flex-col md:flex-row" v-if="item.type != 'Main'">
|
|
|
|
<FormField v-if="item.type != 'Main'" label="Remove">
|
|
|
|
<BaseButton
|
|
|
|
:icon="mdiMinusCircle"
|
|
|
|
class="mt-1"
|
|
|
|
@click.prevent="removeTitle(index)"
|
|
|
|
color="modern"
|
|
|
|
small
|
|
|
|
/>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Title Value *"
|
|
|
|
:class="{ 'text-red-400': form.errors[`titles.${index}.value`] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.titles[index].value"
|
|
|
|
type="text"
|
|
|
|
placeholder="[enter main title]"
|
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors[`titles.${index}.value`]">
|
|
|
|
{{ form.errors[`titles.${index}.value`].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Title Type*"
|
|
|
|
:class="{ 'text-red-400': form.errors[`titles.${index}.type`] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.titles[index].type"
|
|
|
|
type="select"
|
|
|
|
:options="titletypes"
|
|
|
|
placeholder="[select title type]"
|
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="Array.isArray(form.errors[`titles.${index}.type`])">
|
|
|
|
{{ form.errors[`titles.${index}.type`].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Title Language*"
|
|
|
|
:class="{ 'text-red-400': form.errors[`titles.${index}.language`] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.titles[index].language"
|
|
|
|
type="select"
|
2023-03-24 10:41:52 +00:00
|
|
|
:options="{ de: 'de', en: 'en' }"
|
2023-03-17 15:13:37 +00:00
|
|
|
placeholder="[select title language]"
|
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors[`titles.${index}.language`]">
|
|
|
|
{{ form.errors[`titles.${index}.language`].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- </div> -->
|
|
|
|
</CardBox>
|
|
|
|
|
|
|
|
<!-- Descriptions -->
|
|
|
|
<CardBox
|
2023-03-24 10:41:52 +00:00
|
|
|
:icon="mdiImageText"
|
|
|
|
class="mb-6 shadow"
|
2023-03-17 15:13:37 +00:00
|
|
|
:has-form-data="true"
|
|
|
|
title="Descriptions"
|
|
|
|
:header-icon="mdiPlusCircle"
|
|
|
|
v-on:header-icon-click="addDescription()"
|
|
|
|
>
|
|
|
|
<div class="flex flex-col md:flex-row">
|
|
|
|
<FormField
|
|
|
|
label="Main Abstract *"
|
|
|
|
help="required: main abstract"
|
|
|
|
:class="{ 'text-red-400': form.errors['descriptions.0.value'] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.descriptions[0].value"
|
|
|
|
type="textarea"
|
|
|
|
placeholder="[enter main abstract]"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="form.errors['descriptions.0.value'] && Array.isArray(form.errors['descriptions.0.value'])"
|
|
|
|
>
|
|
|
|
{{ form.errors['descriptions.0.value'].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Main Title Language*"
|
|
|
|
help="required: main abstract language"
|
|
|
|
:class="{ 'text-red-400': form.errors['descriptions.0.language'] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl required v-model="form.descriptions[0].language" type="text" :is-read-only="true">
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="
|
|
|
|
form.errors['descriptions.0.value'] && Array.isArray(form.errors['descriptions.0.language'])
|
|
|
|
"
|
|
|
|
>
|
|
|
|
{{ form.errors['descriptions.0.language'].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
<label v-if="form.descriptions.length > 1">additional descriptions: </label>
|
|
|
|
<!-- <BaseButton :icon="mdiPlusCircle" @click.prevent="addTitle()" color="modern" rounded-full small /> -->
|
|
|
|
<div v-if="form.descriptions.length > 1">
|
|
|
|
<div v-for="(item, index) in form.descriptions">
|
|
|
|
<div class="flex flex-col md:flex-row" v-if="item.type != 'Abstract'">
|
|
|
|
<FormField v-if="item.type != 'Abstract'" label="Remove">
|
|
|
|
<BaseButton
|
|
|
|
:icon="mdiMinusCircle"
|
|
|
|
class="mt-1"
|
|
|
|
@click.prevent="removeDescription(index)"
|
|
|
|
color="modern"
|
|
|
|
small
|
|
|
|
/>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Description Value *"
|
|
|
|
:class="{ 'text-red-400': form.errors[`descriptions.${index}.value`] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.descriptions[index].value"
|
|
|
|
type="text"
|
|
|
|
placeholder="[enter additional description]"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="
|
|
|
|
form.errors[`descriptions.${index}.value`] &&
|
|
|
|
Array.isArray(form.errors[`descriptions.${index}.value`])
|
|
|
|
"
|
|
|
|
>
|
|
|
|
{{ form.errors[`descriptions.${index}.value`].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Description Type *"
|
|
|
|
:class="{ 'text-red-400': form.errors[`descriptions.${index}.type`] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.descriptions[index].type"
|
|
|
|
type="select"
|
|
|
|
:options="descriptiontypes"
|
|
|
|
placeholder="[select description type]"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="
|
|
|
|
form.errors[`descriptions.${index}.type`] &&
|
|
|
|
Array.isArray(form.errors[`descriptions.${index}.type`])
|
|
|
|
"
|
|
|
|
>
|
|
|
|
{{ form.errors[`descriptions.${index}.type`].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
label="Description Language*"
|
|
|
|
:class="{ 'text-red-400': form.errors[`titdescriptionsles.${index}.language`] }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.descriptions[index].language"
|
|
|
|
type="select"
|
2023-03-24 10:41:52 +00:00
|
|
|
:options="{ de: 'de', en: 'en' }"
|
2023-03-17 15:13:37 +00:00
|
|
|
placeholder="[select title language]"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="form.errors && Array.isArray(form.errors[`descriptions.${index}.language`])"
|
|
|
|
>
|
|
|
|
{{ form.errors[`descriptions.${index}.language`].join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</CardBox>
|
|
|
|
|
2023-03-24 10:41:52 +00:00
|
|
|
<!-- authors -->
|
|
|
|
<CardBox class="mb-6 shadow" has-table title="Authors" :icon="mdiBookOpenPageVariant">
|
|
|
|
<SearchAutocomplete
|
|
|
|
source="/api/persons"
|
|
|
|
:response-property="'first_name'"
|
|
|
|
placeholder="search in person table...."
|
|
|
|
v-on:person="onAddAuthor"
|
|
|
|
></SearchAutocomplete>
|
|
|
|
|
|
|
|
<TablePersons :persons="form.authors" v-if="form.authors.length > 0" />
|
|
|
|
<div class="text-red-400 text-sm" v-if="errors.authors && Array.isArray(errors.authors)">
|
|
|
|
{{ errors.authors.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</CardBox>
|
|
|
|
|
|
|
|
<!-- contributors -->
|
|
|
|
<CardBox class="mb-6 shadow" has-table title="Contributors" :icon="mdiBookOpenPageVariant">
|
2023-03-17 15:13:37 +00:00
|
|
|
<SearchAutocomplete
|
|
|
|
source="/api/persons"
|
|
|
|
:response-property="'first_name'"
|
|
|
|
placeholder="search in person table...."
|
2023-03-24 10:41:52 +00:00
|
|
|
v-on:person="onAddContributor"
|
2023-03-17 15:13:37 +00:00
|
|
|
></SearchAutocomplete>
|
2023-03-24 10:41:52 +00:00
|
|
|
|
|
|
|
<TablePersons :persons="form.contributors" v-if="form.contributors.length > 0" />
|
2023-03-17 15:13:37 +00:00
|
|
|
</CardBox>
|
|
|
|
</div>
|
|
|
|
|
2023-03-24 10:41:52 +00:00
|
|
|
<!-- <label>To Do: Recommendet</label> -->
|
2023-03-17 15:13:37 +00:00
|
|
|
<div v-if="formStep == 3">
|
2023-03-24 10:41:52 +00:00
|
|
|
<div class="flex flex-col md:flex-row">
|
|
|
|
<FormField
|
|
|
|
label="Project.."
|
|
|
|
help="project is optional"
|
|
|
|
:class="{ 'text-red-400': errors.project_id }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.project_id"
|
|
|
|
:type="'select'"
|
|
|
|
placeholder="[Select Project]"
|
|
|
|
:errors="form.errors.project_id"
|
|
|
|
:options="projects"
|
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.project_id">
|
|
|
|
{{ form.errors.project_id.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
|
|
|
|
<FormField
|
|
|
|
label="Embargo Date.."
|
|
|
|
help="embargo date is optional"
|
|
|
|
:class="{ 'text-red-400': errors.embargo_date }"
|
|
|
|
class="w-full mx-2 flex-1"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
required
|
|
|
|
v-model="form.embargo_date"
|
|
|
|
:type="'date'"
|
|
|
|
placeholder="date('y-m-d')"
|
|
|
|
:errors="form.errors.embargo_date"
|
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.embargo_date">
|
|
|
|
{{ form.errors.embargo_date.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
|
|
|
</div>
|
2023-03-17 15:13:37 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-if="formStep == 4">
|
|
|
|
<label>To Do: File Upload</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<template #footer>
|
|
|
|
<div class="flex p-2 mt-4">
|
|
|
|
<button
|
|
|
|
v-if="formStep > 1"
|
|
|
|
@click="prevStep"
|
|
|
|
class="text-base hover:scale-110 focus:outline-none flex justify-center px-4 py-2 rounded font-bold cursor-pointer hover:bg-gray-200 bg-gray-100 text-gray-700 border duration-200 ease-in-out border-gray-600 transition"
|
|
|
|
>
|
|
|
|
Previous
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="flex-auto flex flex-row-reverse">
|
|
|
|
<button
|
|
|
|
v-if="formStep < 4"
|
|
|
|
@click="nextStep"
|
|
|
|
class="text-base ml-2 hover:scale-110 focus:outline-none flex justify-center px-4 py-2 rounded font-bold cursor-pointer hover:bg-teal-600 bg-teal-600 text-teal-100 border duration-200 ease-in-out border-teal-600 transition"
|
|
|
|
>
|
|
|
|
Next
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<!-- <button
|
|
|
|
class="text-base hover:scale-110 focus:outline-none flex justify-center px-4 py-2 rounded font-bold cursor-pointer hover:bg-teal-200 bg-teal-100 text-teal-700 border duration-200 ease-in-out border-teal-600 transition"
|
|
|
|
>
|
|
|
|
Skip
|
|
|
|
</button> -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</CardBox>
|
|
|
|
</SectionMain>
|
|
|
|
</LayoutAuthenticated>
|
|
|
|
</template>
|