mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
116 lines
4.2 KiB
JavaScript
116 lines
4.2 KiB
JavaScript
/**
|
|
* This script is loaded in testing environments to set up the
|
|
* document based on URL parameters.
|
|
*
|
|
* Test pages (e.g., `chip/test/basic/index.html`) are set to use
|
|
* URL query parameters.
|
|
*
|
|
* Playwright test environments (e.g., `chip/test/basic/chip.e2e.ts`)
|
|
* are set based on whether `setContent` or `goto` has been used:
|
|
* - `setContent` uses URL hash parameters. Tests will break if
|
|
* query parameters are used.
|
|
* - `goto` uses URL query parameters.
|
|
*
|
|
* The following URL parameters are supported:
|
|
* - `rtl`: Set to `true` to enable right-to-left directionality.
|
|
* - `ionic:_testing`: Set to `true` to identify testing environments.
|
|
* - `ionic:theme`: Set to `ios` or `md` to load a specific theme.
|
|
* Defaults to `md`.
|
|
* - `palette`: Set to `light`, `dark`, `high-contrast`, or
|
|
* `high-contrast-dark` to load a specific palette. Defaults to `light`.
|
|
*/
|
|
|
|
(function() {
|
|
|
|
/**
|
|
* The `rtl` param is used to set the directionality of the
|
|
* document. This can be `true` or `false`.
|
|
*/
|
|
const isRTL = window.location.search.indexOf('rtl=true') > -1 || window.location.hash.indexOf('rtl=true') > -1;
|
|
|
|
if (isRTL) {
|
|
document.documentElement.setAttribute('dir', 'rtl');
|
|
}
|
|
|
|
/**
|
|
* The `ionic:_testing` param is used to identify testing
|
|
* environments.
|
|
*/
|
|
const isTestEnv = window.location.search.indexOf('ionic:_testing=true') > -1 || window.location.hash.indexOf('ionic:_testing=true') > -1;
|
|
|
|
if (isTestEnv) {
|
|
const style = document.createElement('style');
|
|
style.innerHTML = `
|
|
* {
|
|
caret-color: transparent !important;
|
|
}
|
|
`;
|
|
document.head.appendChild(style);
|
|
}
|
|
|
|
/**
|
|
* The `palette` param is used to load a specific palette
|
|
* for the theme.
|
|
* The dark class will load the dark palette automatically
|
|
* if no palette is specified through the URL.
|
|
*
|
|
* Values can be `light`, `dark`, `high-contrast`,
|
|
* or `high-contrast-dark`. Default to `light` for tests.
|
|
*/
|
|
const paletteQuery = window.location.search.match(/palette=([a-z]+)/);
|
|
const paletteHash = window.location.hash.match(/palette=([a-z]+)/);
|
|
const darkClass = document.body?.classList.contains('ion-palette-dark') ? 'dark' : null;
|
|
|
|
const paletteName = paletteQuery?.[1] || paletteHash?.[1] || darkClass || 'light';
|
|
|
|
if (paletteName !== 'light') {
|
|
const linkTag = document.createElement('link');
|
|
linkTag.setAttribute('rel', 'stylesheet');
|
|
linkTag.setAttribute('type', 'text/css');
|
|
linkTag.setAttribute('href', `/css/palettes/${paletteName}.always.css`);
|
|
document.head.appendChild(linkTag);
|
|
}
|
|
|
|
/**
|
|
* The `ionic` theme uses a different stylesheet than the `iOS` and `md` themes.
|
|
* This is to ensure that the `ionic` theme is loaded when the `ionic:theme=ionic`
|
|
* or when the HTML tag has the `theme="ionic"` attribute. This is useful for
|
|
* the snapshot tests, where the `ionic` theme is not loaded by default.
|
|
*/
|
|
const themeQuery = window.location.search.match(/ionic:theme=([a-z]+)/);
|
|
const themeAttr = document.documentElement.getAttribute('theme');
|
|
|
|
if ((themeQuery && themeQuery[1] === 'ionic') || themeAttr === 'ionic') {
|
|
const ionicThemeLinkTag = document.querySelector('link[href*="css/ionic/bundle.ionic.css"]');
|
|
|
|
if (!ionicThemeLinkTag) {
|
|
const linkTag = document.createElement('link');
|
|
linkTag.setAttribute('rel', 'stylesheet');
|
|
linkTag.setAttribute('type', 'text/css');
|
|
linkTag.setAttribute('href', '/css/ionic/bundle.ionic.css');
|
|
document.head.appendChild(linkTag);
|
|
}
|
|
|
|
const utilsBundleLinkTag = document.querySelector('link[href*="css/utils.bundle.css"]');
|
|
if (!utilsBundleLinkTag) {
|
|
const linkTag = document.createElement('link');
|
|
linkTag.setAttribute('rel', 'stylesheet');
|
|
linkTag.setAttribute('type', 'text/css');
|
|
linkTag.setAttribute('href', '/css/utils.bundle.css');
|
|
document.head.appendChild(linkTag);
|
|
}
|
|
|
|
const defaultThemeLinkTag = document.querySelector('link[href*="css/ionic.bundle.css"]');
|
|
if (defaultThemeLinkTag) {
|
|
defaultThemeLinkTag.remove();
|
|
}
|
|
}
|
|
|
|
window.Ionic = window.Ionic || {};
|
|
window.Ionic.config = window.Ionic.config || {};
|
|
|
|
window.addEventListener('appload', () => {
|
|
window.testAppLoaded = true;
|
|
})
|
|
})();
|