Bug 37605 - Why do the vue apps use 'dialog' in place of modals?
Summary: Why do the vue apps use 'dialog' in place of modals?
Status: In Discussion
Alias: None
Product: Koha
Classification: Unclassified
Component: Staff interface (show other bugs)
Version: Main
Hardware: All All
: P5 - low normal
Assignee: Martin Renvoize (ashimema)
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-08-09 07:56 UTC by Martin Renvoize (ashimema)
Modified: 2024-11-19 13:49 UTC (History)
14 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments
Bug 37605: Convert dialog to modal markup (12.83 KB, patch)
2024-08-12 06:38 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 37605: Convert dialog to modal markup (13.89 KB, patch)
2024-08-13 09:30 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 37605: Apply to Records Sources Delete Confirm (1.41 KB, patch)
2024-08-13 09:30 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 37605: Apply to Agreements Delete Confirm (1.37 KB, patch)
2024-08-13 09:44 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 37605: Replace close with closebtn class and reverse order of heading, button in header (4.10 KB, patch)
2024-08-13 11:19 UTC, Paul Derscheid
Details | Diff | Splinter Review
Bug 37605: Convert dialog to modal markup (14.01 KB, patch)
2024-09-03 10:08 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 37605: Apply to Records Sources Delete Confirm (1.41 KB, patch)
2024-09-03 10:08 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 37605: Apply to Agreements Delete Confirm (1.37 KB, patch)
2024-09-03 10:08 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review
Bug 37605: Replace close with closebtn class and reverse order of heading, button in header (4.10 KB, patch)
2024-09-03 10:08 UTC, Martin Renvoize (ashimema)
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Renvoize (ashimema) 2024-08-09 07:56:44 UTC
I find the vue apps all use dialog where I feel 90% of the time it would be much more appropriate to use a bootstrap modal.

The inconsistency is stark.
Comment 1 David Cook 2024-08-12 01:14:46 UTC
(In reply to Martin Renvoize from comment #0)
> I find the vue apps all use dialog where I feel 90% of the time it would be
> much more appropriate to use a bootstrap modal.
> 
> The inconsistency is stark.

It's a good question, and I don't think that I know the answer.

My guess is that we might not have great Vue-Bootstrap integrations? If I look through all our .vue files, I don't see any references to the string "bootstrap". Whereas working with "dialog" elements is super easy in any Javascript. 

Recently, I was looking at replacing jQuery UI in a different app, and I was thinking about doing my own modals using <dialog>, but I probably will end up using Bootstrap modals. In the case of Koha, it probably does make sense to be consistent across the board, but maybe folks have reason for using <dialog> elements instead. 

On a related note, it looks like Bootstrap might start using "dialog" elements in Bootstrap 6 for modals. (I'd include the link but Bugzilla likes to autoban me when I post links...)
Comment 2 Martin Renvoize (ashimema) 2024-08-12 06:38:05 UTC
Created attachment 170225 [details] [review]
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.
Comment 3 Martin Renvoize (ashimema) 2024-08-12 06:40:42 UTC
This proposed patch updates the markup for the 'Dialog' component we've built.  It converts us from the older bootstrap dialog classes to the more modern bootstrap modal markup.

I've tested it for the 'Delete' confirmation on the 'Record sources' admin page and it's working reasonably well there.

I'm not sure how prevalently it's used elsewhere do we'll want to try and catch that and I wouldn't mind a bit of help making sure the styling is 100% there on it for all the cases.
Comment 4 Martin Renvoize (ashimema) 2024-08-13 09:30:56 UTC
Created attachment 170257 [details] [review]
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.
Comment 5 Martin Renvoize (ashimema) 2024-08-13 09:30:59 UTC
Created attachment 170258 [details] [review]
Bug 37605: Apply to Records Sources Delete Confirm
Comment 6 Martin Renvoize (ashimema) 2024-08-13 09:32:14 UTC
More work needed here.. we need to work through each of the current dialog uses and ensure they continue to operate properly with the new markup.

I'm confident they wont all yet as there's a change to where buttons are defined (inside the alert box vs in a modal footer)
Comment 7 Martin Renvoize (ashimema) 2024-08-13 09:44:46 UTC
Created attachment 170259 [details] [review]
Bug 37605: Apply to Agreements Delete Confirm
Comment 8 Martin Renvoize (ashimema) 2024-08-13 10:11:44 UTC
So.. my change works well for 'Confirmation' modals.. and I think it also makes sense to do this for 'Form' type modals.

However.. for the 'Feedback' alert boxes that are mingled into this component, I think it would be good to have a distinct component.  'Alert', 'Message', 'Notice', 'Feedback' or something.. we could even introduce a new UI here.. perhaps 'Toasts'?  I also think they should be transient.. i.e fade out after a period.
Comment 9 Martin Renvoize (ashimema) 2024-08-13 10:13:13 UTC
I suppose there's really one major distinction between these.. 'actionable' and 'informational only'
Comment 10 Paul Derscheid 2024-08-13 10:16:38 UTC
Yeah, just reading back.

Let's do toasts. However there is one caveat. When I introduced toasts to some plugins, I always had to take into account the height of the i18n menu when it was present (to not overlap it which looks bad).

Other than that it's pretty convenient.
Comment 11 Paul Derscheid 2024-08-13 10:20:38 UTC
But I guess that's only if you position them at the bottom of the viewport.
The top is even more of a mess, though.
Comment 12 Paul Derscheid 2024-08-13 10:39:07 UTC
What I completely ignored in my last comments is that toasts only become available in bootstrap 4.

As I take it, the vue components use the standard koha stylesheets for the staff interface and are therefore currently bound to 3.4.1.

We could do a follow up bug on bug 35402 to introduce toasts.
Comment 13 Paul Derscheid 2024-08-13 11:19:40 UTC
Created attachment 170261 [details] [review]
Bug 37605: Replace close with closebtn class and reverse order of heading, button in header

This gets the modal header in line with the koha convention and fixes the close button
visually appearing as a new block.
Comment 14 Paul Derscheid 2024-08-13 11:22:22 UTC
Btw I think we should just use flex here instead of float: right and consorts.
Comment 15 David Cook 2024-08-13 23:05:07 UTC
(In reply to Paul Derscheid from comment #14)
> Btw I think we should just use flex here instead of float: right and
> consorts.

Death to "float"!
Comment 16 Jonathan Druart 2024-09-03 09:47:30 UTC
Could you rebase?
Comment 17 Martin Renvoize (ashimema) 2024-09-03 09:58:37 UTC
Yikes.. I'll try ;P..  could be fun with the bootstrap upgrade.
Comment 18 Martin Renvoize (ashimema) 2024-09-03 10:08:14 UTC
Created attachment 170971 [details] [review]
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.
Comment 19 Martin Renvoize (ashimema) 2024-09-03 10:08:17 UTC
Created attachment 170972 [details] [review]
Bug 37605: Apply to Records Sources Delete Confirm
Comment 20 Martin Renvoize (ashimema) 2024-09-03 10:08:20 UTC
Created attachment 170973 [details] [review]
Bug 37605: Apply to Agreements Delete Confirm
Comment 21 Martin Renvoize (ashimema) 2024-09-03 10:08:23 UTC
Created attachment 170974 [details] [review]
Bug 37605: Replace close with closebtn class and reverse order of heading, button in header

This gets the modal header in line with the koha convention and fixes the close button
visually appearing as a new block.
Comment 22 Martin Renvoize (ashimema) 2024-09-03 10:09:46 UTC
Rebased.. certainly still needs work and I think it's work splitting into some distinct bugs.

But.. I like the confirmation as a modal as I've done here.. and really this was a proof of concept to start us going.

With bootstrap having been upgraded this might be the prime opportunity to look into this more deeply.
Comment 23 Jonathan Druart 2024-09-03 10:30:15 UTC
Tried to create an agreement but the confirmation message is not displayed.
Comment 24 Jonathan Druart 2024-09-03 10:31:50 UTC
(In reply to Paul Derscheid from comment #12)
> We could do a follow up bug on bug 35402 to introduce toasts.

Should we consider that instead?
All Vue dialogs/messages are badly styled for now.