-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MPP-1708] Popup Refactor - Add-on QA Fixes #472
[MPP-1708] Popup Refactor - Add-on QA Fixes #472
Conversation
… for any news items
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Had a comment about news items, probably unblocking but just wanted to check with you if that use case is considered (also okay if those old news items are deprecated, since they aren't really news anymore).
Tested this on a fresh instance of a firefox profile, test cases works as expected.
// Remove news nav link if there's no news items to display to user | ||
if (state.newsContent.length === 0 ) { | ||
document.querySelector(".fx-relay-menu-dashboard-link[data-panel-id='news']").remove(); | ||
return; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
qn: I recall the spec before was that the users would be showed old panels (25mb limit, block promotional emails, etc) if there are no "new" news items (phone, fx integration, bundle) to display, which is a state that users outside of US/CAN are particularly more inclined to see. Is that surfaced in the refactor?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. I confirmed with @tcinotto that we aren't going to reuse previous news items.
The new UX here is that if there's no eligible news items (user cannot upgrade, buy phones, etc) then we just hide the news navigation/panel altogether.
* Move news annoucements for geo-specific items behind correct logic gates * WIP: Add additional logged in/out loggic, and add focus states * Add additional logic to focus on correct element * Move news items to state * Add logic to remove the news panel all together if user is ineligible for any news items * Refactor news list building logic inside the core popup function * Move Firefox Integration news item into logic check * Remove 'report issue' link if not logged in
* Move news annoucements for geo-specific items behind correct logic gates * WIP: Add additional logged in/out loggic, and add focus states * Add additional logic to focus on correct element * Move news items to state * Add logic to remove the news panel all together if user is ineligible for any news items * Refactor news list building logic inside the core popup function * Move Firefox Integration news item into logic check * Remove 'report issue' link if not logged in
* Move news annoucements for geo-specific items behind correct logic gates * WIP: Add additional logged in/out loggic, and add focus states * Add additional logic to focus on correct element * Move news items to state * Add logic to remove the news panel all together if user is ineligible for any news items * Refactor news list building logic inside the core popup function * Move Firefox Integration news item into logic check * Remove 'report issue' link if not logged in
* [MPP-1714] Popup Refactor - Panel Navigation and Header Bar (#453) * Stub new work area for toolbar * Add new navigation icons * Add hard-coded (EN) labels for navigation * Start popup javascript logic (including init, panel switching, and login detection) * Remove commented out code * FOLD SVG name update * Add logic to handle external link clicks in popup, update HTML with data attrs to set URLs correctly with telemetry data * Add back button support for main panels * [MPP-1714] Popup Refactor - Settings Panel (#455) * Stub new work area for toolbar * Add new navigation icons * Add hard-coded (EN) labels for navigation * Start popup javascript logic (including init, panel switching, and login detection) * Remove commented out code * FOLD SVG name update * Add logic to handle external link clicks in popup, update HTML with data attrs to set URLs correctly with telemetry data * Add back button support for main panels * Create settings page content, style toggle buttons to match Nebula * Stub Issue Report page, add remaining Settings page external link * Add logic to handle child panel navigation * Fix issue where external links where not opening to correct URL * Remove global namespace * Revise spacer layout on settings/toggle wrapper * [MPP-1714] Popup Refactor - Report Issue Panel (#457) * Stub new work area for toolbar * Add new navigation icons * Add hard-coded (EN) labels for navigation * Start popup javascript logic (including init, panel switching, and login detection) * Remove commented out code * FOLD SVG name update * Add logic to handle external link clicks in popup, update HTML with data attrs to set URLs correctly with telemetry data * Add back button support for main panels * Create settings page content, style toggle buttons to match Nebula * Stub Issue Report page, add remaining Settings page external link * Add logic to handle child panel navigation * Fix issue where external links where not opening to correct URL * Move getBrowser function to shared utils * Optimize Report Issue success image * Add Report Issue panel content/logic from previous popup file * [MPP-1714] Popup Refactor - Stats Panel (#458) * Port stats from previous popup to new stats panel * Add second stats column, add new strings from L10N PR * Add logic to calculate mask stats used on the current website * Add additional logic to query custom masks for premium users * Remove commented code, and comment for magic number * Spelling fix * [MPP-1708] Popup Refactor - News Panel (#461) * Add news feature This feature has two panels: the news panel and the news story panel. - The news panel lists all news stories - The news story panel is the detail view when you click on a news item Both sections are built dynamically from the newsContent object. There are a few attributes you can add here to will limit who the news items is shown to (via waffle flags, etc) Optional data wise, you can also include (or not include) a CTA for the detailed view * Add Firefox Inegration panel * Add additional news content * Add swith/check to conditionally show/hide banners based on locale/subscribed status * WIP Number * Add UI and logic to show notification count for unread news items * Remove unlocalized strings * [MPP-1708] Popup Refactor - Masks Panel (#463) * New icons * WIP: Add mask UI/logic to display and create new masks for free users * Add copy to clipboard functionality * Add loading state This loading state is copied from the in-page content UI * Improve logic to show/hide elements based on mask count and account level * Add styles for premium masks to display past the main viewport * Add Mask Created label to new masks made from the panel * CSS Review comments * Add login screen, additional CSS refinements (#464) * [MPP-1708] Popup Refactor - Register Subdomain / Create Custom Masks (#466) * Add prompt for premium users to register subdomain if not yet set * Add new icons * Add revised Nebula error colors * Refactor how hostnames are requested from bg.js script * Add new bg function to create custom masks for premium users * Add PSL library for custom-mask prepopulate mask name feature * Add custom mask creation panel, including JS logic and styles * Add localized promo blocking tooltip strings * Review revisions: Migrate font-size to use global variables, remove comments, add aria role * [MPP-1708] Popup Refactor - Search Premium Masks (#467) * Add search feature for premium users * Add additional data (website usage/generated for) to filter by in panel * Add logic to handle premium users with no masks created * Remove mask expand/manage button (P2 item), update CSS to center copy button vertically in mask card list (#468) * Fix issue where masks do not work if not syncing labels * Remove all previous popup HTML/CSS/JS code * [MPP-1708] Popup Refactor - Add-on QA Fixes (#472) * Move news annoucements for geo-specific items behind correct logic gates * WIP: Add additional logged in/out loggic, and add focus states * Add additional logic to focus on correct element * Move news items to state * Add logic to remove the news panel all together if user is ineligible for any news items * Refactor news list building logic inside the core popup function * Move Firefox Integration news item into logic check * Remove 'report issue' link if not logged in * mpp 1714 staging qa fixes (#474) * Fix issue where news item would not open correctly * Fix issue where 'Mask created' label is covered up by mask cards * Fix issue where some masks were too long and breaking the display panel * (Fix #475) Review Fixes for Add-on Refactor (#477) * Fix #475 - Localize navigation items * Update anchor elements to buttons if they are internal navigation items, update styles * Add localized alt-tag info to navigation images (back button, close/dismiss) * Add comments for dynamically generated content within the HTML * Update all custom elements to contain a hyphen, rename news items variables to be more readable * Remove line-breaks, commented code * Update state object name to represent its context (now sessionState) * Save `isPremiumSubdomainSet` query to reduce localStorage calls * Update storyData to match other newsItem variable naming pattern * Remove console log, add code comments, move local storage function (TODO) into seperate function * Revert CSS attribute name, add CSS comments, update values to use vars * CSS fix for button HTML swap on Settings page * Remove logicCheck fields/logic as populateNewsFeed covers this functionality * Remove TODO * DRY Logic loop fix, add comments for mask creation error codes * Fix news system to show notification bug but store read count * Update premium links to open in correct anchored aarea * Fix alignment of checkboxes on web compat form * Add logic to only allow web compat submissions with necessary info * Refactor how totals are calculated for mask/forward/blocked counts * Updated strings * Fix return error code for makeDomainAddress * DRY logic fix from @lloan, better quailify bg function to get getCurrentPageHostname * Bump version number for next release
Summary
This PR addresses multiple QA issues found in initial testing from @AOiegas
Other fixes beyond what QA has filed:
Known caveats:
Links:
Testing
MPP-2857
Dev Note: Do not use
web-ext
for this testabout:debugging
orabout:addons
and install add-onMPP-2857
Expected: You should get the login panel again
Screenshots
N/A