Koha/koha-tmpl/intranet-tmpl/prog/js/vue/stores/main.js
Jonathan Druart 8cee1f287d
Bug 32991: Don't remove all messages when confirm box is closed
If we cancel the confirmation box we should not clear all the messages

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com>
Signed-off-by: Agustín Moyano <agustinmoyano@theke.io>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-03-10 11:15:34 -03:00

98 lines
2.9 KiB
JavaScript

import { defineStore } from "pinia";
export const useMainStore = defineStore("main", {
state: () => ({
_message: null,
_error: null,
_warning: null,
_confirmation: null,
_accept_callback: null,
previousMessage: null,
previousError: null,
displayed_already: false,
_is_submitting: false,
_is_loading: false,
}),
actions: {
setMessage(message, displayed = false) {
this._error = null;
this._warning = null;
this._message = message;
this._confirmation = null;
this.displayed_already = displayed; /* Will be displayed on the next view */
},
setError(error, displayed = true) {
this._error = error;
this._warning = null;
this._message = null;
this._confirmation = null;
this.displayed_already = displayed; /* Is displayed on the current view */
},
setWarning(warning, displayed = true) {
this._error = null;
this._warning = warning;
this._message = null;
this._confirmation = null;
this.displayed_already = displayed; /* Is displayed on the current view */
},
setConfirmationDialog(confirmation, accept_callback, displayed = true){
if(accept_callback) {
this._accept_callback = async () => {
await accept_callback()
this.removeConfirmationMessages()
}
}
this._confirmation = confirmation;
this.displayed_already = displayed; /* Is displayed on the current view */
},
removeMessages() {
if (this.displayed_already) {
this._error = null;
this._warning = null;
this._message = null;
this._confirmation = null;
this._accept_callback = null;
}
this.displayed_already = true;
},
removeConfirmationMessages(){
this._confirmation = null;
this._accept_callback = null;
},
submitting(){
this._is_submitting = true;
},
submitted(){
this._is_submitting = false;
},
loading(){
this._is_loading = true;
},
loaded(){
this._is_loading = false;
},
},
getters: {
error() {
return this._error
},
warning() {
return this._warning
},
message() {
return this._message
},
confirmation() {
return this._confirmation
},
accept_callback() {
return this._accept_callback
},
is_submitting(){
return this._is_submitting
},
is_loading(){
return this._is_loading
},
},
});