diff --git a/tools/cldr-apps/js/src/esm/cldrClient.mjs b/tools/cldr-apps/js/src/esm/cldrClient.mjs index f892f2dfa3c..ab8df8ea773 100644 --- a/tools/cldr-apps/js/src/esm/cldrClient.mjs +++ b/tools/cldr-apps/js/src/esm/cldrClient.mjs @@ -15,10 +15,10 @@ const RESOLVED_ROOT = new URL(OAS3_ROOT, document.baseURI); * * * - * @returns Promise + * @returns {Promise} */ -function getClient() { - return new SwaggerClient({ +async function getClient() { + return SwaggerClient({ url: RESOLVED_ROOT, requestInterceptor: (obj) => { // add the session header to each request diff --git a/tools/cldr-apps/js/src/esm/cldrCoverage.mjs b/tools/cldr-apps/js/src/esm/cldrCoverage.mjs index 6e4394c3af4..d9dff3cd008 100644 --- a/tools/cldr-apps/js/src/esm/cldrCoverage.mjs +++ b/tools/cldr-apps/js/src/esm/cldrCoverage.mjs @@ -69,10 +69,14 @@ function effectiveCoverage(locale) { * * The effective level is the coverage level that the user has chosen, or else the organization's * coverage level if the user has not chosen one + * @param {String} locale the locale ID * * @return the name, or null */ function effectiveName(locale) { + if (locale === undefined) { + console.error("cldrCoverage.effectiveName called without locale argument"); + } if (surveyUserCov) { return surveyUserCov; } diff --git a/tools/cldr-apps/js/src/esm/cldrDashContext.mjs b/tools/cldr-apps/js/src/esm/cldrDashContext.mjs index a96127f41e8..811e3ee8b75 100644 --- a/tools/cldr-apps/js/src/esm/cldrDashContext.mjs +++ b/tools/cldr-apps/js/src/esm/cldrDashContext.mjs @@ -4,7 +4,9 @@ */ import * as cldrDrag from "./cldrDrag.mjs"; +import * as cldrLoad from "./cldrLoad.mjs"; import * as cldrNotify from "./cldrNotify.mjs"; +import * as cldrStatus from "./cldrStatus.mjs"; import * as cldrVue from "./cldrVue.mjs"; import DashboardWidget from "../views/DashboardWidget.vue"; @@ -20,12 +22,37 @@ const NEIGHBOR_SECTION_ID = "VotingEtcSection"; let wrapper = null; /** - * Is the Info Panel currently displayed? + * Is the Dashboard currently displayed? */ -let visible = false; +let dashVisible = false; + +/** + * Does the user want the Dashboard to be displayed when appropriate? + * It is hidden automatically when there is a "special" view for which + * it is inappropriate. When returning to the non-special vetting view, + * the Dashboard should be displayed again, unless the user has indicated, by clicking + * its close box, that they don't want to see it. + */ +let dashWanted = true; function isVisible() { - return visible; // boolean + return dashVisible; // boolean +} + +/** + * Should the Dashboard be shown? + * + * Default is true when called the first time. + * Subsequently, remember whether the user has left it open or closed. + * + * @returns true if the Dashboard should be shown, else false + */ +function shouldBeShown() { + if (!dashWanted) { + return false; + } + const spec = cldrStatus.getCurrentSpecial(); + return !spec || spec === cldrLoad.GENERAL_SPECIAL; } function wireUpOpenButtons() { @@ -39,7 +66,7 @@ function wireUpOpenButtons() { * Create or reopen the DashboardWidget Vue component */ function insert() { - if (visible) { + if (dashVisible) { return; // already inserted and visible } try { @@ -61,7 +88,7 @@ function insert() { * Show the Dashboard */ function show() { - if (visible) { + if (dashVisible) { return; } const vote = document.getElementById(NEIGHBOR_SECTION_ID); @@ -74,16 +101,22 @@ function show() { for (let i = 0; i < els.length; i++) { els[i].style.display = "none"; } - visible = true; + dashVisible = dashWanted = true; cldrDrag.enable(vote, dash, true /* up/down */); } } /** * Hide the Dashboard + * + * @param {Boolean} userWantsHidden true if closing because user clicked close box (or equivalent), + * false if closing because switching to a "special" view where the Dashboard doesn't belong */ -function hide() { - if (!visible) { +function hide(userWantsHidden) { + if (userWantsHidden === undefined) { + console.error("cldrDashContext.hide was called with undefined parameter"); + } + if (!dashVisible) { return; } const vote = document.getElementById(NEIGHBOR_SECTION_ID); @@ -95,18 +128,19 @@ function hide() { for (let i = 0; i < els.length; i++) { els[i].style.display = "inline"; } - visible = false; + dashVisible = false; + dashWanted = !userWantsHidden; } } function updateRow(json) { - if (visible) { + if (dashVisible) { wrapper?.updatePath(json); } } function updateWithCoverage(newLevel) { - if (visible) { + if (dashVisible) { wrapper?.handleCoverageChanged(newLevel); } } @@ -115,6 +149,7 @@ export { hide, insert, isVisible, + shouldBeShown, updateRow, updateWithCoverage, wireUpOpenButtons, diff --git a/tools/cldr-apps/js/src/esm/cldrDashData.mjs b/tools/cldr-apps/js/src/esm/cldrDashData.mjs index f341d70755d..1235739323c 100644 --- a/tools/cldr-apps/js/src/esm/cldrDashData.mjs +++ b/tools/cldr-apps/js/src/esm/cldrDashData.mjs @@ -254,7 +254,7 @@ function doFetch(callback) { const locale = cldrStatus.getCurrentLocale(); const level = cldrCoverage.effectiveName(locale); if (!locale || !level) { - fetchErr = "Please choose a locale and a coverage level first."; + fetchErr = cldrText.get("dash_needs_locale_and_coverage"); return; } const url = `api/summary/dashboard/${locale}/${level}`; @@ -473,10 +473,10 @@ async function downloadXlsx(data, locale, cb) { /** * @param {string} locale locale to list for - * @returns {Array} + * @returns {Promise>} */ async function getLocaleErrors(locale) { - const client = cldrClient.getClient(); + const client = await cldrClient.getClient(); return await client.apis.voting.getLocaleErrors({ locale }); } diff --git a/tools/cldr-apps/js/src/esm/cldrEvent.mjs b/tools/cldr-apps/js/src/esm/cldrEvent.mjs index 01d43a12eeb..7b685c559e6 100644 --- a/tools/cldr-apps/js/src/esm/cldrEvent.mjs +++ b/tools/cldr-apps/js/src/esm/cldrEvent.mjs @@ -274,7 +274,6 @@ function checkLocaleShow(element, size) { */ function interceptLocale() { var name = $(this).text(); - var source = $(this).attr("title"); $("input.local-search").val(name); $("a.locName").removeClass("active"); @@ -434,6 +433,9 @@ function unpackMenuSideBar(json) { cldrLoad.reloadV(); $("#left-sidebar").removeClass("active"); toggleOverlay(); + if (cldrDashContext.shouldBeShown()) { + cldrDashContext.insert(); + } }); // review link @@ -442,9 +444,9 @@ function unpackMenuSideBar(json) { toggleOverlay(); const url = $(this).data("url"); if (url === "dashboard") { - // Note: setCurrentSpecial("general") is dubious here; it doesn't cause + // Note: setCurrentSpecial(cldrLoad.GENERAL_SPECIAL) is dubious here; it doesn't cause // the "general" page to be loaded; it doesn't hide whatever else was displayed. - cldrStatus.setCurrentSpecial("general"); + cldrStatus.setCurrentSpecial(cldrLoad.GENERAL_SPECIAL); cldrDashContext.insert(); } else { $("#OtherSection").hide(); // Don't hide the other section when showing the dashboard. diff --git a/tools/cldr-apps/js/src/esm/cldrLoad.mjs b/tools/cldr-apps/js/src/esm/cldrLoad.mjs index 5aa56e4ea68..7e2c3c32e9a 100644 --- a/tools/cldr-apps/js/src/esm/cldrLoad.mjs +++ b/tools/cldr-apps/js/src/esm/cldrLoad.mjs @@ -40,6 +40,13 @@ import { h } from "vue"; const CLDR_LOAD_DEBUG = false; +/** + * This value for the "special" page description, as returned by cldrStatus.getCurrentSpecial(), + * corresponds to the situation in which a locale has been chosen but no section/page has been + * chosen for that locale. It corresponds to GeneralInfo.vue. + */ +const GENERAL_SPECIAL = "general"; + let locmap = new LocaleMap(null); // a localemap that always returns the code // locmap will be modified later with locmap = new LocaleMap(json.locmap) @@ -110,11 +117,14 @@ function doHashChange(event) { const changedSpecial = oldSpecial != curSpecial; const changedPage = oldPage != trimNull(cldrStatus.getCurrentPage()); if (changedLocale || (changedSpecial && curSpecial)) { - cldrDashContext.hide(); + cldrDashContext.hide(false /* userWantsHidden */); } if (changedLocale || changedSpecial || changedPage) { console.log("# hash changed, (loc, etc) reloadingV.."); reloadV(); + if (cldrDashContext.shouldBeShown()) { + cldrDashContext.insert(); + } } else if ( oldId != cldrStatus.getCurrentId() && cldrStatus.getCurrentId() != "" @@ -610,8 +620,8 @@ function specialLoad(itemLoadInfo, curSpecial, theDiv) { const special = getSpecial(curSpecial); // special is an object; curSpecial is a string if (special && special.load) { cldrEvent.hideOverlayAndSidebar(); - if (curSpecial !== "general") { - cldrDashContext.hide(); + if (curSpecial !== GENERAL_SPECIAL) { + cldrDashContext.hide(false /* userWantsHidden */); } cldrInfo.closePanel(false /* userWantsHidden */); // Most special.load() functions do not use a parameter; an exception is @@ -622,11 +632,11 @@ function specialLoad(itemLoadInfo, curSpecial, theDiv) { ); } special.load(curSpecial); - } else if (curSpecial !== "general") { + } else if (curSpecial !== GENERAL_SPECIAL) { // Avoid recursion. unspecialLoad(itemLoadInfo, theDiv); } else { - // This will only be called if 'general' is a missing special. + // This will only be called if 'general' (GENERAL_SPECIAL) is a missing special. handleMissingSpecial(curSpecial); } } @@ -641,8 +651,8 @@ function unspecialLoad(itemLoadInfo, theDiv) { if (CLDR_LOAD_DEBUG) { console.log("cldrLoad.unspecialLoad: running specialLoad(general)"); } - cldrStatus.setCurrentSpecial("general"); - specialLoad(itemLoadInfo, "general", theDiv); + cldrStatus.setCurrentSpecial(GENERAL_SPECIAL); + specialLoad(itemLoadInfo, GENERAL_SPECIAL, theDiv); } else if (curId === "!") { // TODO: clarify when and why this would happen if (CLDR_LOAD_DEBUG) { @@ -1143,7 +1153,14 @@ function flipToEmptyOther() { function coverageUpdate() { cldrCoverage.updateCoverage(flipper.get(pages.data)); - handleCoverageChanged(cldrCoverage.effectiveName()); + const curLocale = cldrStatus.getCurrentLocale(); + if (!curLocale) { + console.error( + "cldrLoad.coverageUpdate called when current locale not defined" + ); + return; + } + handleCoverageChanged(cldrCoverage.effectiveName(curLocale)); } function setLoading(loading) { @@ -1168,6 +1185,7 @@ export { flipToEmptyOther, flipToGenericNoLocale, flipToOtherDiv, + GENERAL_SPECIAL, getHash, getLocaleDir, getLocaleInfo, diff --git a/tools/cldr-apps/js/src/esm/cldrMenu.mjs b/tools/cldr-apps/js/src/esm/cldrMenu.mjs index 9f87b6b21fe..0a40a49f9da 100644 --- a/tools/cldr-apps/js/src/esm/cldrMenu.mjs +++ b/tools/cldr-apps/js/src/esm/cldrMenu.mjs @@ -348,9 +348,9 @@ function getMenusFromServer() { return; // busted? } // Note: since the url has "locmap=false", we never get json.locmap or json.canmodify here - const covName = cldrCoverage.effectiveName(); + const covName = cldrCoverage.effectiveName(curLocale); cldrCoverage.updateCovFromJson(json); - if (cldrCoverage.effectiveName() !== covName) { + if (cldrCoverage.effectiveName(curLocale) !== covName) { cldrLoad.coverageUpdate(); } unpackMenus(json); diff --git a/tools/cldr-apps/js/src/esm/cldrText.mjs b/tools/cldr-apps/js/src/esm/cldrText.mjs index 1d00a5eed67..08fdf0535ef 100644 --- a/tools/cldr-apps/js/src/esm/cldrText.mjs +++ b/tools/cldr-apps/js/src/esm/cldrText.mjs @@ -4,6 +4,9 @@ const CLDR_TEXT_DEBUG = false; const strings = { + dash_needs_locale_and_coverage: + "Please choose a locale and a coverage level first.", + downgradedDeletionSuccessHeader: "Success", downgradedDeletionSuccessDetail: "The imported votes for downgraded paths were successfully deleted", diff --git a/tools/cldr-apps/js/src/esm/cldrVueMap.mjs b/tools/cldr-apps/js/src/esm/cldrVueMap.mjs index 5254489a8de..875d7e8c051 100644 --- a/tools/cldr-apps/js/src/esm/cldrVueMap.mjs +++ b/tools/cldr-apps/js/src/esm/cldrVueMap.mjs @@ -1,3 +1,5 @@ +import * as cldrLoad from "./cldrLoad.mjs"; + import AboutPanel from "../views/AboutPanel.vue"; import AnnouncePanel from "../views/AnnouncePanel.vue"; import AddUser from "../views/AddUser.vue"; @@ -24,7 +26,7 @@ const specialToComponentMap = { add_user: AddUser, auto_import: AutoImport, downgraded: DowngradedVotes, - general: GeneralInfo, + general: GeneralInfo, // see cldrLoad.GENERAL_SPECIAL lock_account: LockAccount, lookup: LookUp, menu: MainMenu, diff --git a/tools/cldr-apps/js/src/views/DashboardWidget.vue b/tools/cldr-apps/js/src/views/DashboardWidget.vue index 34f850cbb7a..9e6602ae419 100644 --- a/tools/cldr-apps/js/src/views/DashboardWidget.vue +++ b/tools/cldr-apps/js/src/views/DashboardWidget.vue @@ -291,7 +291,9 @@ export default { this.locale = cldrStatus.getCurrentLocale(); this.level = cldrCoverage.effectiveName(this.locale); if (!this.locale || !this.level) { - this.fetchErr = "Please choose a locale and a coverage level first."; + // This sometimes happens when locale is defined but level is not yet defined, + // but it changes so quickly (the level gets defined) that it isn't visible + this.fetchErr = cldrText.get("dash_needs_locale_and_coverage"); return; } this.localeName = cldrLoad.getLocaleName(this.locale); @@ -359,7 +361,7 @@ export default { }, closeDashboard() { - cldrDashContext.hide(); + cldrDashContext.hide(true /* userWantsHidden */); }, abbreviate(category) { diff --git a/tools/cldr-apps/js/src/views/GeneralInfo.vue b/tools/cldr-apps/js/src/views/GeneralInfo.vue index 09684c7bed2..b75334beb1b 100644 --- a/tools/cldr-apps/js/src/views/GeneralInfo.vue +++ b/tools/cldr-apps/js/src/views/GeneralInfo.vue @@ -5,8 +5,9 @@

@@ -29,6 +30,7 @@ export default { specialGeneral: null, }; }, + mounted() { const locmap = cldrLoad.getTheLocaleMap(); const bund = locmap.getLocaleInfo(cldrStatus.getCurrentLocale()); @@ -52,8 +54,17 @@ export default { } this.specialGeneral = cldrText.get("generalSpecialGuidance"); + + if (cldrDashContext.shouldBeShown()) { + cldrDashContext.insert(); + } }, + methods: { + dashButtonShouldBeVisible() { + return !cldrDashContext.isVisible(); + }, + insertDashboard() { cldrDashContext.insert(); }, @@ -62,8 +73,13 @@ export default { diff --git a/tools/cldr-apps/src/main/webapp/surveytool.css b/tools/cldr-apps/src/main/webapp/surveytool.css index efb70086474..c6e1f08ee28 100644 --- a/tools/cldr-apps/src/main/webapp/surveytool.css +++ b/tools/cldr-apps/src/main/webapp/surveytool.css @@ -2883,12 +2883,6 @@ td.v-path { border-collapse: collapse; } -#OtherSection p.special_general { - padding: 3em; - background: url(vote.png) no-repeat 1em center; - line-height: 2em -} - #oldVotesAcceptList td { padding: 0.4em; border-bottom: 1px solid gray; diff --git a/tools/cldr-apps/src/main/webapp/vote.png b/tools/cldr-apps/src/main/webapp/vote.png deleted file mode 100644 index 0672b36511a..00000000000 Binary files a/tools/cldr-apps/src/main/webapp/vote.png and /dev/null differ