Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue
Jonathan Druart 2197809353
Bug 32030: Rebase UI fix - Use page-section for better separation in forms
Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com>

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-08 09:44:32 -03:00

250 lines
9.7 KiB
Vue

<template>
<div v-if="!initialized">{{ $t("Loading") }}</div>
<div v-else id="licenses_add">
<h2 v-if="license.license_id">
{{ $t("Edit license .id", { id: license.license_id }) }}
</h2>
<h2 v-else>{{ $t("New license") }}</h2>
<div>
<form @submit="onSubmit($event)">
<div class="page-section">
<fieldset class="rows">
<ol>
<li>
<label class="required" for="license_name"
>{{ $t("License name") }}:</label
>
<input
id="license_name"
v-model="license.name"
:placeholder="$t('License name')"
required
/>
<span class="required">{{
$t("Required")
}}</span>
</li>
<li>
<label for="license_vendor_id"
>{{ $t("Vendor") }}:</label
>
<v-select
id="license_vendor_id"
v-model="license.vendor_id"
label="name"
:reduce="(vendor) => vendor.id"
:options="vendors"
/>
</li>
<li>
<label for="license_description"
>{{ $t("Description") }}:
</label>
<textarea
id="license_description"
v-model="license.description"
:placeholder="$t('Description')"
rows="10"
cols="50"
required
/>
<span class="required">{{
$t("Required")
}}</span>
</li>
<li>
<label for="license_type"
>{{ $t("Type") }}:</label
>
<v-select
id="license_type"
v-model="license.type"
label="lib"
:reduce="(av) => av.authorised_value"
:options="av_license_types"
>
<template #search="{ attributes, events }">
<input
:required="!license.type"
class="vs__search"
v-bind="attributes"
v-on="events"
/>
</template>
</v-select>
<span class="required">{{
$t("Required")
}}</span>
</li>
<li>
<label for="license_status"
>{{ $t("Status") }}:</label
>
<v-select
id="license_status"
v-model="license.status"
:reduce="(av) => av.authorised_value"
:options="av_license_statuses"
label="lib"
>
<template #search="{ attributes, events }">
<input
:required="!license.status"
class="vs__search"
v-bind="attributes"
v-on="events"
/>
</template>
</v-select>
<span class="required">{{
$t("Required")
}}</span>
</li>
<li>
<label for="started_on"
>{{ $t("Start date") }}:</label
>
<flat-pickr
id="started_on"
v-model="license.started_on"
:config="fp_config"
data-date_to="ended_on"
/>
</li>
<li>
<label for="ended_on"
>{{ $t("End date") }}:</label
>
<flat-pickr
id="ended_on"
v-model="license.ended_on"
:config="fp_config"
/>
</li>
</ol>
</fieldset>
</div>
<Documents :documents="license.documents" />
<fieldset class="action">
<input type="submit" :value="$t('Submit')" />
<router-link
to="/cgi-bin/koha/erm/licenses"
role="button"
class="cancel"
>{{ $t("Cancel") }}</router-link
>
</fieldset>
</form>
</div>
</div>
</template>
<script>
import { inject } from 'vue'
import flatPickr from 'vue-flatpickr-component'
import Documents from './Documents.vue'
import { setMessage, setError } from "../../messages"
import { fetchLicense } from '../../fetch'
import { storeToRefs } from "pinia"
export default {
setup() {
const vendorStore = inject('vendorStore')
const { vendors } = storeToRefs(vendorStore)
const AVStore = inject('AVStore')
const {
av_license_types,
av_license_statuses,
} = storeToRefs(AVStore)
return {
vendors,
av_license_types,
av_license_statuses,
}
},
data() {
return {
fp_config: flatpickr_defaults,
license: {
license_id: null,
name: '',
vendor_id: null,
description: '',
type: '',
status: '',
started_on: undefined,
ended_on: undefined,
documents: [],
},
initialized: false,
}
},
beforeRouteEnter(to, from, next) {
next(vm => {
if (to.params.license_id) {
vm.license = vm.getLicense(to.params.license_id)
} else {
vm.initialized = true
}
})
},
methods: {
async getLicense(license_id) {
const license = await fetchLicense(license_id)
this.license = license
this.initialized = true
},
onSubmit(e) {
e.preventDefault()
let license = JSON.parse(JSON.stringify(this.license)) // copy
let apiUrl = '/api/v1/erm/licenses'
let method = 'POST'
if (license.license_id) {
method = 'PUT'
apiUrl += '/' + license.license_id
}
delete license.license_id
delete license.vendor
if (license.vendor_id == "") {
license.vendor_id = null
}
license.documents = license.documents.map(({ file_type, uploaded_on, ...keepAttrs }) => keepAttrs)
const options = {
method: method,
body: JSON.stringify(license),
headers: {
'Content-Type': 'application/json;charset=utf-8'
},
}
fetch(apiUrl, options)
.then(response => {
if (response.status == 200) {
this.$router.push("/cgi-bin/koha/erm/licenses")
setMessage(this.$t("License updated"))
} else if (response.status == 201) {
this.$router.push("/cgi-bin/koha/erm/licenses")
setMessage(this.$t("License created"))
} else {
setError(response.message || response.statusText)
}
}, (error) => {
setError(error)
}).catch(e => { console.log(e) })
},
},
components: {
flatPickr,
Documents,
},
name: "LicensesFormAdd",
}
</script>