Bugzilla – Attachment 170225 Details for
Bug 37605
Why do the vue apps use 'dialog' in place of modals?
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37605: Convert dialog to modal markup
Bug-37605-Convert-dialog-to-modal-markup.patch (text/plain), 12.83 KB, created by
Martin Renvoize (ashimema)
on 2024-08-12 06:38:05 UTC
(
hide
)
Description:
Bug 37605: Convert dialog to modal markup
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-08-12 06:38:05 UTC
Size:
12.83 KB
patch
obsolete
>From c8c4d8fdb35bff98a242c809ba1acb923f28b882 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Mon, 12 Aug 2024 07:36:42 +0100 >Subject: [PATCH] Bug 37605: Convert dialog to modal markup > >This converts the vue Dialog component to use Boostrap Modal markup to >increase consistency with the rest of Koha. >--- > .../prog/js/vue/components/Dialog.vue | 295 ++++++++++-------- > 1 file changed, 173 insertions(+), 122 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue >index 960c3075c7f..b7aa8674a48 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue >@@ -1,75 +1,173 @@ > <template> >- <div class="dialog message" v-if="message" v-html="message"></div> >- <div class="dialog alert" v-if="error" v-html="error"></div> >- <div class="dialog alert modal" v-if="warning"> >- <h1 v-html="warning"></h1> >- <button id="close_modal" class="approve" @click="removeMessages"> >- <i class="fa fa-fw fa-check"></i> >- {{ $__("Close") }} >- </button> >- </div> >- <div class="modal_centered" v-if="confirmation"> >- <div class="dialog alert confirmation"> >- <h1 v-html="confirmation.title"></h1> >- <p v-html="confirmation.message"></p> >- <div class="inputs" v-if="confirmation.inputs"> >- <form ref="confirmationform"> >- <div >- class="row" >- v-for="input in confirmation.inputs" >- v-bind:key="input.id" >- > >- <div class="col-md-6"> >- <label >- :for="`confirmation_input_${input.id}`" >- v-bind:class="{ required: input.required }" >- >{{ input.label }}:</label >- > >+ <div> >+ <!-- Confirmation Modal --> >+ <div >+ v-if="confirmation" >+ class="modal show" >+ tabindex="-1" >+ role="dialog" >+ style="display: block" >+ > >+ <div class="modal-dialog modal-dialog-centered" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <h5 >+ class="modal-title" >+ v-html="confirmation.title" >+ ></h5> >+ </div> >+ <div class="modal-body"> >+ <p v-html="confirmation.message"></p> >+ <div v-if="confirmation.inputs" class="form-group"> >+ <form ref="confirmationform"> >+ <div >+ class="form-row" >+ v-for="input in confirmation.inputs" >+ :key="input.id" >+ > >+ <div class="col-md-6"> >+ <label >+ :for="`confirmation_input_${input.id}`" >+ :class="{ >+ required: input.required, >+ }" >+ > >+ {{ input.label }}: >+ </label> >+ </div> >+ <div class="col-md-6"> >+ <flat-pickr >+ v-if="input.type == 'Date'" >+ :id="`confirmation_input_${input.id}`" >+ v-model="input.value" >+ :required="input.required" >+ :config="fp_config" >+ /> >+ <input >+ v-if="input.type == 'Text'" >+ type="text" >+ :id="`confirmation_input_${input.id}`" >+ v-model="input.value" >+ :required="input.required" >+ class="form-control" >+ /> >+ </div> >+ </div> >+ </form> > </div> >- <div class="col-md-6"> >- <flat-pickr >- v-if="input.type == 'Date'" >- :id="`confirmation_input_${input.id}`" >- v-model="input.value" >- :required="input.required" >- :config="fp_config" >- /> >- <input >- v-if="input.type == 'Text'" >- :id="`confirmation_input_${input.id}`" >- v-model="input.value" >- :required="input.required" >- /> >+ </div> >+ <div class="modal-footer"> >+ <button >+ v-if="accept_callback" >+ id="accept_modal" >+ class="btn btn-success" >+ @click="submit" >+ > >+ <i class="fa fa-fw fa-check"></i> >+ <span v-html="confirmation.accept_label"></span> >+ </button> >+ <button >+ id="close_modal" >+ class="btn btn-danger" >+ @click="removeConfirmationMessages" >+ > >+ <i class="fa fa-fw fa-remove"></i> >+ <span v-html="confirmation.cancel_label"></span> >+ </button> >+ </div> >+ </div> >+ </div> >+ </div> >+ >+ <!-- Submitting Modal --> >+ <div >+ v-if="is_submitting" >+ class="modal show" >+ tabindex="-1" >+ role="dialog" >+ style="display: block" >+ > >+ <div class="modal-dialog modal-dialog-centered" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <h5 >+ class="modal-title" >+ v-html="confirmation.title" >+ ></h5> >+ </div> >+ <div class="modal-body text-center"> >+ <div class="spinner-border text-primary" role="status"> >+ <span class="sr-only">{{ >+ $__("Submitting...") >+ }}</span> > </div> > </div> >- </form> >+ <div class="modal-footer"> >+ <button >+ v-if="accept_callback" >+ id="accept_modal" >+ class="btn btn-success" >+ @click="submit" >+ > >+ <i class="fa fa-fw fa-check"></i> >+ <span v-html="confirmation.accept_label"></span> >+ </button> >+ <button >+ id="close_modal" >+ class="btn btn-danger" >+ @click="removeConfirmationMessages" >+ > >+ <i class="fa fa-fw fa-remove"></i> >+ <span v-html="confirmation.cancel_label"></span> >+ </button> >+ </div> >+ </div> > </div> >- <button >- v-if="accept_callback" >- id="accept_modal" >- class="approve" >- @click="submit" >- > >- <i class="fa fa-fw fa-check"></i> >- <span v-html="confirmation.accept_label"></span> >- </button> >- <button >- id="close_modal" >- class="deny" >- @click="removeConfirmationMessages" >- > >- <i class="fa fa-fw fa-remove"></i> >- <span v-html="confirmation.cancel_label"></span> >- </button> > </div> >- </div> >- <!-- Must be styled differently --> > >- <div class="modal_centered" v-if="is_submitting"> >- <div class="spinner dialog alert">{{ $__("Submitting...") }}</div> >- </div> >- <div class="modal_centered" v-if="is_loading"> >- <div class="spinner dialog message">{{ $__("Loading...") }}</div> >+ <!-- Loading Modal --> >+ <div >+ v-if="is_loading" >+ class="modal show" >+ tabindex="-1" >+ role="dialog" >+ style="display: block" >+ > >+ <div class="modal-dialog modal-dialog-centered" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <h5 >+ class="modal-title" >+ v-html="confirmation.title" >+ ></h5> >+ </div> >+ <div class="modal-body text-center"> >+ <div class="spinner-border text-info" role="status"> >+ <span class="sr-only">{{ $__("Loading...") }}</span> >+ </div> >+ </div> >+ <div class="modal-footer"> >+ <button >+ v-if="accept_callback" >+ id="accept_modal" >+ class="btn btn-success" >+ @click="submit" >+ > >+ <i class="fa fa-fw fa-check"></i> >+ <span v-html="confirmation.accept_label"></span> >+ </button> >+ <button >+ id="close_modal" >+ class="btn btn-danger" >+ @click="removeConfirmationMessages" >+ > >+ <i class="fa fa-fw fa-remove"></i> >+ <span v-html="confirmation.cancel_label"></span> >+ </button> >+ </div> >+ </div> >+ </div> >+ </div> > </div> > </template> > >@@ -77,6 +175,7 @@ > import { inject } from "vue" > import { storeToRefs } from "pinia" > import flatPickr from "vue-flatpickr-component" >+ > export default { > data() { > return { >@@ -84,7 +183,7 @@ export default { > } > }, > methods: { >- submit: function (e) { >+ submit() { > if ( > this.confirmation.inputs && > this.confirmation.inputs.filter( >@@ -130,65 +229,17 @@ export default { > </script> > > <style scoped> >-.modal { >- position: fixed; >- z-index: 9998; >- display: table; >- transition: opacity 0.3s ease; >- margin: auto; >- padding: 20px 30px; >- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33); >- transition: all 0.3s ease; >-} >-#close_modal { >- cursor: pointer; >-} >- >-.modal_centered { >- position: fixed; >- z-index: 9998; >- display: table; >- transition: opacity 0.3s ease; >- left: 0px; >- top: 0px; >- width: 100%; >- height: 100%; >- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33); >-} >-.spinner { >- position: absolute; >- top: 50%; >- left: 40%; >- width: 10%; >-} >- >-.confirmation { >- position: absolute; >- top: 25%; >- left: 40%; >- >- width: 50%; >- min-height: 10%; >- margin: auto; >- align-items: center; >- justify-content: center; >-} >-.confirmation .inputs { >- margin-top: 0.4em; >-} >-.confirmation .inputs input, >-:deep(.flatpickr-input) { >- width: auto; >- margin: 0px; >- float: left; >+.modal.show { >+ display: block !important; >+ background-color: rgba(0, 0, 0, 0.5); > } > >-:deep(.flatpickr-input) { >- padding-left: 20px; >+.spinner-border { >+ width: 3rem; >+ height: 3rem; > } > >-.confirmation .inputs label { >- padding: 0.4em; >- float: right; >+.modal-footer .btn { >+ margin-right: 0.5rem; > } > </style> >-- >2.46.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37605
:
170225
|
170257
|
170258
|
170259
|
170261
|
170971
|
170972
|
170973
|
170974