Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0052430 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
backport | [POS2] Core | major | have not tried | 2022-09-27 18:08 | 2023-06-05 11:37 | |||
Reporter | adrianromero | View Status | public | |||||
Assigned To | meriem_azaf | |||||||
Priority | normal | Resolution | fixed | Fixed in Version | 23Q1.3 | |||
Status | closed | Fix in branch | Fixed in SCM revision | |||||
Projection | none | ETA | none | Target Version | 23Q1.3 | |||
OS | Any | Database | Any | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | SCM revision | |||||||
Review Assigned To | ||||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | ||||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0052430: OnLoginActions do not allow to display UI | |||||||
Description | OnLoginActions are asynchronous and in cases like Fiscalization events and other events it is required to display UI dialogs. But this UI never appears and the cashier cannot interact with it because it is rendered but behind the loading panel | |||||||
Steps To Reproduce | Register the following login action and verify the ask confirmation expression is reached but the console log expression is never reached and the application never ends the login action because there is a dialog behind the loading panel the cashier cannot interact with it. See the screenshots attached. import OB from 'org.openbravo.core2/src/core/OB'; import OnLoginActions from 'org.openbravo.core2/src/core/authentication/OnLoginActions'; import './assets/style/main.scss'; export async function register() { OnLoginActions.registerAction(OB.EVTFIS.fiscalizationLogin); OnLoginActions.registerAction(async () => { await OB.App.View.DialogUIHandler.askConfirmation({ title: 'Login dialog title', message: 'message', hideCancel: true }); console.log('End login action.'); }); } export async function init() { // Nothing } | |||||||
Proposed Solution | The loading panel should not be in top of all the UI it should only replace the POS application. This way dialogs and modals can be rendered on top of the loading panel. Loading Screen component has a z-index of 2000 to be on top of all other material UI components according the change comment: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/commit/ec4dd5ede9bbd089d3508bbd5c83a4f35c3222cf [^] This is OK fdr common components but not for modals, snackbars or tooltips See z-index for material UI components: https://mui.com/material-ui/customization/z-index/ [^] The proposal is to change the z-index to 1250 for the Loading Screen component to be on top of regular material ui components but not for modals, snackbars or tooltips. The proposed change fixes this issue: diff --git a/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss b/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss index c30838ef..6fe19787 100644 --- a/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss +++ b/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss @@ -14,7 +14,7 @@ .obc2LoadingScreen-container .obc2LoadingScreen { position: absolute; - z-index: 2000; /* This screen has to be above any other element */ + z-index: 1250; /* This screen has to be above any other element but not modals, with z-index: 1300 */ display: grid; align-items: center; justify-items: center; | |||||||
Tags | No tags attached. | |||||||
Attached Files | ||||||||
Relationships [ Relation Graph ] [ Dependency Graph ] | ||||||||
|
Notes | |
(0149722) hgbot (developer) 2023-05-15 18:00 |
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/merge_requests/1099 [^] |
(0150732) hgbot (developer) 2023-06-05 11:37 |
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/merge_requests/1099 [^] |
(0150733) hgbot (developer) 2023-06-05 11:37 |
Directly closing issue as related merge request is already approved. Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2 [^] Changeset: fc681dac77f5edf37fe4c90b6e046a4f82c6c2ba Author: Augusto Mauch <augusto.mauch@openbravo.com> Date: 05-06-2023 11:36:17 URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/commit/fc681dac77f5edf37fe4c90b6e046a4f82c6c2ba [^] Fixes ISSUE-52430: Updates loading screen z-index so that it is below modal dialogs The problem was that the current z-index was so high that modal dialogs where displayed below the loading screen. The z-index value has been updated to 1250 so that it is above the normal components, but below modal dialogs. We need modal dialogs to be above the loading screen because we sometimes need to use them to display error information or to request info or confirmations to the user --- M web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss --- |
Issue History | |||
Date Modified | Username | Field | Change |
2023-05-12 09:46 | AugustoMauch | Type | defect => backport |
2023-05-12 09:46 | AugustoMauch | Target Version | => 23Q1.3 |
2023-05-15 18:00 | hgbot | Note Added: 0149722 | |
2023-06-05 11:37 | hgbot | Resolution | open => fixed |
2023-06-05 11:37 | hgbot | Status | scheduled => closed |
2023-06-05 11:37 | hgbot | Note Added: 0150732 | |
2023-06-05 11:37 | hgbot | Fixed in Version | => 23Q1.3 |
2023-06-05 11:37 | hgbot | Note Added: 0150733 |
Copyright © 2000 - 2009 MantisBT Group |