Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue
Jonathan Druart cd2884d907
Bug 32030: Improve form UI
* Align inputs, textareas and selects
* Use vue-select for dropdown lists

Note that the only way I found to make the select required is to follow
what is on their doc https://vue-select.org/guide/validation.html#required

However we need our own vue-select-required component to avoid the
repetition (the #search slot). I've tried (but failed) on
https://gitlab.com/joubu/Koha/-/commits/erm-v-select-required

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:19 -03:00

241 lines
9.1 KiB
Vue

<template>
<div v-if="!this.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)">
<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>
<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 flatPickr from 'vue-flatpickr-component'
import { useVendorStore } from "../../stores/vendors"
import { useAVStore } from "../../stores/authorised_values"
import { setMessage, setError } from "../../messages"
import { fetchLicense } from '../../fetch'
import { storeToRefs } from "pinia"
export default {
setup() {
const vendorStore = useVendorStore()
const { vendors } = storeToRefs(vendorStore)
const AVStore = useAVStore()
const {
av_license_types,
av_license_statuses,
} = storeToRefs(AVStore)
return {
vendors,
av_license_types,
av_license_statuses,
}
},
data() {
return {
fp_config: flatpickr_defaults, dates_fixed: 0,
license: {
license_id: null,
name: '',
vendor_id: null,
description: '',
type: '',
status: '',
started_on: undefined,
ended_on: undefined,
},
initialized: false,
}
},
beforeUpdate() {
if (!this.dates_fixed) {
this.license.started_on = $date(this.license.started_on)
this.license.ended_on = $date(this.license.ended_on)
this.dates_fixed = 1
}
},
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.started_on = license.started_on ? $date_to_rfc3339(license.started_on) : null
license.ended_on = license.ended_on ? $date_to_rfc3339(license.ended_on) : null
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
},
name: "LicensesFormAdd",
}
</script>