blob: 0ca48989da32de07d557b10c8afea3d6b2b93a04 [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {assert, assertNotReached} from 'chrome://resources/js/assert_ts.js';
import {beforeNextRender, dedupingMixin, PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {castExists} from './assert_extras.js';
import {isRevampWayfindingEnabled} from './common/load_time_booleans.js';
import {Constructor} from './common/types.js';
import {ensureLazyLoaded} from './ensure_lazy_loaded.js';
import {SettingsIdleLoadElement} from './os_settings_page/settings_idle_load.js';
import {RouteObserverMixin, RouteObserverMixinInterface} from './route_observer_mixin.js';
import {isAdvancedRoute, Route, Router} from './router.js';
/**
* A categorization of every possible Settings URL, necessary for implementing
* a finite state machine.
*/
enum RouteState {
// Initial state before anything has loaded yet.
INITIAL = 'initial',
// The root Settings page, '/'.
ROOT = 'root',
// A section, basically a scroll position within the root page.
// After infinite scroll is removed, this is a top-level page.
// e.g. /network, /bluetooth, /device
SECTION = 'section',
// A subpage, or nested subpage, e.g. /networkDetail.
SUBPAGE = 'subpage',
// A navigable dialog that has a dedicated URL. Currently unused in Settings.
DIALOG = 'dialog',
}
function classifyRoute(route: Route|undefined): RouteState {
if (!route) {
return RouteState.INITIAL;
}
const routes = Router.getInstance().routes;
if (route === routes.BASIC || route === routes.ABOUT) {
return RouteState.ROOT;
}
if (route.isSubpage()) {
return RouteState.SUBPAGE;
}
if (route.isNavigableDialog) {
return RouteState.DIALOG;
}
return RouteState.SECTION;
}
const ALL_STATES = new Set([
RouteState.DIALOG,
RouteState.SECTION,
RouteState.SUBPAGE,
RouteState.ROOT,
]);
/**
* A map holding all valid state transitions.
*/
const VALID_TRANSITIONS = new Map([
[RouteState.INITIAL, ALL_STATES],
[
RouteState.DIALOG,
new Set([
RouteState.SECTION,
RouteState.SUBPAGE,
RouteState.ROOT,
]),
],
[RouteState.SECTION, ALL_STATES],
[RouteState.SUBPAGE, ALL_STATES],
[RouteState.ROOT, ALL_STATES],
]);
/**
* The route for the first page listed in the Settings menu.
*/
const FIRST_PAGE_ROUTE: Route = Router.getInstance().routes.INTERNET;
export interface MainPageMixinInterface extends RouteObserverMixinInterface {
containsRoute(route: Route|undefined): boolean;
querySection(section: string): HTMLElement|null;
loadAdvancedPage(): Promise<Element>;
}
/**
* Responds to route changes by expanding, collapsing, or scrolling to
* sections on the page. Expanded sections take up the full height of the
* container. At most one section should be expanded at any given time.
*/
export const MainPageMixin = dedupingMixin(
<T extends Constructor<PolymerElement>>(superClass: T): T&
Constructor<MainPageMixinInterface> => {
const superclassBase = RouteObserverMixin(superClass);
class MainPageMixinInternal extends superclassBase implements
MainPageMixinInterface {
private lastScrollTop_: number = 0;
private get scroller_(): HTMLElement {
const hostEl = (this.getRootNode() as ShadowRoot).host;
return castExists(hostEl ? hostEl.parentElement : document.body);
}
private get isMainPageContainer(): boolean {
return this.tagName === 'MAIN-PAGE-CONTAINER';
}
/**
* Method to be overridden by users of MainPageMixin.
* @return Whether the given route is part of |this| page.
*/
containsRoute(_route: Route|undefined): boolean {
assertNotReached();
}
loadAdvancedPage(): Promise<Element> {
return this.shadowRoot!
.querySelector<SettingsIdleLoadElement>(
'#advancedPageTemplate')!.get();
}
/**
* Finds the settings section corresponding to the given route. If the
* section is lazily loaded it force-renders it.
* Note: If the section resides within "advanced" settings, a
* 'hide-container' event is fired (necessary to avoid flashing).
* Callers are responsible for firing a 'show-container' event.
*/
private ensureSectionForRoute_(route: Route): Promise<HTMLElement> {
const section = this.querySection(route.section);
if (section) {
return Promise.resolve(section);
}
// The function to use to wait for <dom-if>s to render.
const waitFn = beforeNextRender.bind(null, this);
return new Promise(resolve => {
if (this.isMainPageContainer && isAdvancedRoute(route)) {
this.dispatchCustomEvent_('hide-container');
waitFn(async () => {
await this.loadAdvancedPage();
resolve(castExists(this.querySection(route.section)));
});
} else {
waitFn(() => {
resolve(castExists(this.querySection(route.section)));
});
}
});
}
private async enterSubpage_(route: Route) {
if (isRevampWayfindingEnabled()) {
// Make the parent page visible to ensure the subpage is visible
this.showPage(route);
}
this.lastScrollTop_ = this.scroller_.scrollTop;
this.scroller_.scrollTop = 0;
this.classList.add('showing-subpage');
this.dispatchCustomEvent_('subpage-expand');
// Explicitly load the lazy_load module, since all subpages reside in
// the lazy loaded module.
ensureLazyLoaded();
const section = await this.ensureSectionForRoute_(route);
section.classList.add('expanded');
// Fire event used by a11y tests only.
this.dispatchCustomEvent_('settings-section-expanded');
this.dispatchCustomEvent_('show-container');
}
private enterMainPage_(oldRoute: Route): Promise<void> {
const oldSection = castExists(this.querySection(oldRoute.section));
oldSection.classList.remove('expanded');
this.classList.remove('showing-subpage');
return new Promise((resolve) => {
requestAnimationFrame(() => {
if (Router.getInstance().lastRouteChangeWasPopstate()) {
this.scroller_.scrollTop = this.lastScrollTop_;
}
this.dispatchCustomEvent_('showing-main-page');
resolve();
});
});
}
/**
* Simple helper method to display a page/section depending on if the
* `OsSettingsRevampWayfinding` is enabled.
*/
private activatePage(route: Route): void {
if (isRevampWayfindingEnabled()) {
this.showPage(route);
} else {
this.scrollToSection(route);
}
}
private async scrollToSection(route: Route): Promise<void> {
const section = await this.ensureSectionForRoute_(route);
this.dispatchCustomEvent_('showing-section', {detail: section});
this.dispatchCustomEvent_('show-container');
}
/**
* Effectively displays the page for the given |route|.
* Queries the shadow DOM for the respective os-settings-section element
* for the given |route| and marks it as active.
*
* NOTE: This method should only be used when the
* `OsSettingsRevampWayfinding` feature flag is enabled.
*/
private async showPage(route: Route): Promise<void> {
const page = await this.ensureSectionForRoute_(route);
// Hide any previously active pages
const previouslyActive =
this.shadowRoot!.querySelectorAll('os-settings-section[active]');
for (const page of previouslyActive) {
page.toggleAttribute('active', false);
}
// Show the respective page for |route|
page.toggleAttribute('active', true);
this.dispatchCustomEvent_('show-container');
}
/**
* Detects which state transition is appropriate for the given new/old
* routes.
*/
private getStateTransition_(newRoute: Route, oldRoute?: Route):
[RouteState, RouteState]|null {
const containsNew = this.containsRoute(newRoute);
const containsOld = this.containsRoute(oldRoute);
if (!containsNew && !containsOld) {
// Nothing to do, since none of the old/new routes belong to this
// page.
return null;
}
// Case where going from |this| page to an unrelated page.
// For example:
// |this| is main-page-container AND
// oldRoute is /searchEngines AND
// newRoute is /help.
if (containsOld && !containsNew) {
return [classifyRoute(oldRoute), RouteState.ROOT];
}
// Case where return from an unrelated page to |this| page.
// For example:
// |this| is main-page-container AND
// oldRoute is /help AND
// newRoute is /searchEngines
if (!containsOld && containsNew) {
return [RouteState.ROOT, classifyRoute(newRoute)];
}
// Case where transitioning between routes that both belong to |this|
// page.
return [classifyRoute(oldRoute), classifyRoute(newRoute)];
}
override currentRouteChanged(newRoute: Route, oldRoute?: Route): void {
const transition = this.getStateTransition_(newRoute, oldRoute);
if (transition === null) {
return;
}
const [oldState, newState] = transition;
assert(VALID_TRANSITIONS.get(oldState)!.has(newState));
if (oldState === RouteState.INITIAL) {
switch (newState) {
case RouteState.SECTION:
this.activatePage(newRoute);
return;
case RouteState.SUBPAGE:
this.enterSubpage_(newRoute);
return;
case RouteState.ROOT:
// Do not activate the Network page if the host element is
// the About page since it does not contain that page.
// TODO(b/282961146) Investigate removing MainPageMixin from
// the About page so this check can be removed.
if (isRevampWayfindingEnabled() && this.isMainPageContainer) {
this.activatePage(FIRST_PAGE_ROUTE);
}
return;
// Nothing to do here for the DIALOG case.
case RouteState.DIALOG:
default:
return;
}
}
if (oldState === RouteState.ROOT) {
switch (newState) {
case RouteState.SECTION:
this.activatePage(newRoute);
return;
// Navigating directly to a subpage via search on the main page
case RouteState.SUBPAGE:
this.enterSubpage_(newRoute);
return;
// Happens when clearing search results (Navigating from
// '/?search=foo' to '/')
case RouteState.ROOT:
// TODO(b/282961146) Activate first top-level page (Network)
return;
// Nothing to do here for the DIALOG case.
case RouteState.DIALOG:
default:
return;
}
}
if (oldState === RouteState.SECTION) {
switch (newState) {
case RouteState.SECTION:
this.activatePage(newRoute);
return;
case RouteState.SUBPAGE:
this.enterSubpage_(newRoute);
return;
case RouteState.ROOT:
this.scroller_.scrollTop = 0;
return;
// Nothing to do here for the case of DIALOG.
case RouteState.DIALOG:
default:
return;
}
}
if (oldState === RouteState.SUBPAGE) {
assert(oldRoute);
switch (newState) {
case RouteState.SECTION:
this.enterMainPage_(oldRoute);
// Scroll to the corresponding section, only if the user
// explicitly navigated to a section (via the menu).
if (!Router.getInstance().lastRouteChangeWasPopstate()) {
this.activatePage(newRoute);
}
return;
case RouteState.SUBPAGE:
// Handle case where the two subpages belong to
// different sections, but are linked to each other. For example
// /displayAndMagnification linking to /display
if (!oldRoute.contains(newRoute) &&
!newRoute.contains(oldRoute)) {
this.enterMainPage_(oldRoute).then(() => {
this.enterSubpage_(newRoute);
});
return;
}
// Handle case of subpage to nested subpage navigation.
if (oldRoute.contains(newRoute)) {
this.scroller_.scrollTop = 0;
return;
}
// When going from a nested subpage to its parent subpage,
// the scroll position is automatically restored because we
// focus the nested subpage's entry point.
return;
case RouteState.ROOT:
this.enterMainPage_(oldRoute);
return;
// This is a supported case but there are currently no known
// examples of this transition in Settings.
case RouteState.DIALOG:
this.enterMainPage_(oldRoute);
return;
default:
return;
}
}
if (oldState === RouteState.DIALOG) {
switch (newState) {
// There are currently no known examples of this transition
case RouteState.SUBPAGE:
this.enterSubpage_(newRoute);
return;
// There are currently no known examples of these transitions.
// Update when a relevant use-case exists.
case RouteState.ROOT:
case RouteState.SECTION:
case RouteState.DIALOG:
default:
return;
}
}
}
/**
* Helper function to get a section from the local DOM.
*/
querySection(section: string): HTMLElement|null {
if (!section) {
return null;
}
return this.shadowRoot!.querySelector(
`os-settings-section[section="${section}"]`);
}
private dispatchCustomEvent_(
name: string, options?: CustomEventInit<unknown>) {
const event = new CustomEvent(
name, {bubbles: true, composed: true, ...options});
this.dispatchEvent(event);
}
}
return MainPageMixinInternal;
});