Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue
Jonathan Druart 74be73121e
Bug 32030: Update I18N
Note that we are adding an extra space for id and counter, otherwise
they got removed in favor of the "simple" string.
  { Agreement: Agreement }
replaced
  { Agreement: { id: ..., counter: ... } }

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

226 lines
8.5 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_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>
<select
id="license_type"
v-model="license.type"
required
>
<option value=""></option>
<option
v-for="type in av_license_types"
:key="type.authorised_values"
:value="type.authorised_value"
:selected="
type.authorised_value == license.type
? true
: false
"
>
{{ type.lib }}
</option>
</select>
<span class="required">{{ $t("Required") }}</span>
</li>
<li>
<label for="license_status"
>{{ $t("Status") }}:</label
>
<select
id="license_status"
v-model="license.status"
required
>
<option value=""></option>
<option
v-for="status in av_license_statuses"
:key="status.authorised_values"
:value="status.authorised_value"
:selected="
status.authorised_value ==
license.status
? true
: false
"
>
{{ status.lib }}
</option>
</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 { useAVStore } from "../../stores/authorised_values"
import { setMessage, setError } from "../../messages"
import { fetchLicense } from '../../fetch'
import { storeToRefs } from "pinia"
export default {
setup() {
const AVStore = useAVStore()
const {
av_license_types,
av_license_statuses,
} = storeToRefs(AVStore)
return {
av_license_types,
av_license_statuses,
}
},
data() {
return {
fp_config: flatpickr_defaults, dates_fixed: 0,
license: {
license_id: null,
name: '',
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
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>