mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
200 lines
7.2 KiB
200 lines
7.2 KiB
/*!
|
|
* (C) Ionic http://ionicframework.com - MIT License
|
|
*/
|
|
import { proxyCustomElement, HTMLElement, createEvent, Build, h, Host } from '@stencil/core/internal/client';
|
|
import { p as printIonWarning } from './index4.js';
|
|
import { b as getIonMode } from './ionic-global.js';
|
|
|
|
const splitPaneIosCss = ":host{--side-width:100%;left:0;right:0;top:0;bottom:0;display:-ms-flexbox;display:flex;position:absolute;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;contain:strict}:host(.split-pane-visible) ::slotted(.split-pane-main){left:0;right:0;top:0;bottom:0;position:relative;-ms-flex:1;flex:1;-webkit-box-shadow:none;box-shadow:none;overflow:hidden;z-index:0}::slotted(.split-pane-side:not(ion-menu)){display:none}:host{--border:0.55px solid var(--ion-item-border-color, var(--ion-border-color, var(--ion-color-step-250, var(--ion-background-color-step-250, #c8c7cc))));--side-min-width:270px;--side-max-width:28%}";
|
|
|
|
const splitPaneMdCss = ":host{--side-width:100%;left:0;right:0;top:0;bottom:0;display:-ms-flexbox;display:flex;position:absolute;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;contain:strict}:host(.split-pane-visible) ::slotted(.split-pane-main){left:0;right:0;top:0;bottom:0;position:relative;-ms-flex:1;flex:1;-webkit-box-shadow:none;box-shadow:none;overflow:hidden;z-index:0}::slotted(.split-pane-side:not(ion-menu)){display:none}:host{--border:1px solid var(--ion-item-border-color, var(--ion-border-color, var(--ion-color-step-150, var(--ion-background-color-step-150, rgba(0, 0, 0, 0.13)))));--side-min-width:270px;--side-max-width:28%}";
|
|
|
|
// TODO(FW-2832): types
|
|
const SPLIT_PANE_MAIN = 'split-pane-main';
|
|
const SPLIT_PANE_SIDE = 'split-pane-side';
|
|
const QUERY = {
|
|
xs: '(min-width: 0px)',
|
|
sm: '(min-width: 576px)',
|
|
md: '(min-width: 768px)',
|
|
lg: '(min-width: 992px)',
|
|
xl: '(min-width: 1200px)',
|
|
never: '',
|
|
};
|
|
const SplitPane = /*@__PURE__*/ proxyCustomElement(class SplitPane extends HTMLElement {
|
|
constructor(registerHost) {
|
|
super();
|
|
if (registerHost !== false) {
|
|
this.__registerHost();
|
|
}
|
|
this.__attachShadow();
|
|
this.ionSplitPaneVisible = createEvent(this, "ionSplitPaneVisible", 7);
|
|
this.visible = false;
|
|
/**
|
|
* If `true`, the split pane will be hidden.
|
|
*/
|
|
this.disabled = false;
|
|
/**
|
|
* When the split-pane should be shown.
|
|
* Can be a CSS media query expression, or a shortcut expression.
|
|
* Can also be a boolean expression.
|
|
*/
|
|
this.when = QUERY['lg'];
|
|
}
|
|
visibleChanged(visible) {
|
|
this.ionSplitPaneVisible.emit({ visible });
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
async isVisible() {
|
|
return Promise.resolve(this.visible);
|
|
}
|
|
async connectedCallback() {
|
|
// TODO: connectedCallback is fired in CE build
|
|
// before WC is defined. This needs to be fixed in Stencil.
|
|
if (typeof customElements !== 'undefined' && customElements != null) {
|
|
await customElements.whenDefined('ion-split-pane');
|
|
}
|
|
this.styleMainElement();
|
|
this.updateState();
|
|
}
|
|
disconnectedCallback() {
|
|
if (this.rmL) {
|
|
this.rmL();
|
|
this.rmL = undefined;
|
|
}
|
|
}
|
|
updateState() {
|
|
if (!Build.isBrowser) {
|
|
return;
|
|
}
|
|
if (this.rmL) {
|
|
this.rmL();
|
|
this.rmL = undefined;
|
|
}
|
|
// Check if the split-pane is disabled
|
|
if (this.disabled) {
|
|
this.visible = false;
|
|
return;
|
|
}
|
|
// When query is a boolean
|
|
const query = this.when;
|
|
if (typeof query === 'boolean') {
|
|
this.visible = query;
|
|
return;
|
|
}
|
|
// When query is a string, let's find first if it is a shortcut
|
|
const mediaQuery = QUERY[query] || query;
|
|
// Media query is empty or null, we hide it
|
|
if (mediaQuery.length === 0) {
|
|
this.visible = false;
|
|
return;
|
|
}
|
|
// Listen on media query
|
|
const callback = (q) => {
|
|
this.visible = q.matches;
|
|
};
|
|
const mediaList = window.matchMedia(mediaQuery);
|
|
// TODO FW-5869
|
|
mediaList.addListener(callback);
|
|
this.rmL = () => mediaList.removeListener(callback);
|
|
this.visible = mediaList.matches;
|
|
}
|
|
/**
|
|
* Attempt to find the main content
|
|
* element inside of the split pane.
|
|
* If found, set it as the main node.
|
|
*
|
|
* We assume that the main node
|
|
* is available in the DOM on split
|
|
* pane load.
|
|
*/
|
|
styleMainElement() {
|
|
if (!Build.isBrowser) {
|
|
return;
|
|
}
|
|
const contentId = this.contentId;
|
|
const children = this.el.children;
|
|
const nu = this.el.childElementCount;
|
|
let foundMain = false;
|
|
for (let i = 0; i < nu; i++) {
|
|
const child = children[i];
|
|
const isMain = contentId !== undefined && child.id === contentId;
|
|
if (isMain) {
|
|
if (foundMain) {
|
|
printIonWarning('[ion-split-pane] - Cannot have more than one main node.');
|
|
return;
|
|
}
|
|
else {
|
|
setPaneClass(child, isMain);
|
|
foundMain = true;
|
|
}
|
|
}
|
|
}
|
|
if (!foundMain) {
|
|
printIonWarning('[ion-split-pane] - Does not have a specified main node.');
|
|
}
|
|
}
|
|
render() {
|
|
const mode = getIonMode(this);
|
|
return (h(Host, { key: 'd5e30df12f1f1f855da4c66f98076b9dce762c59', class: {
|
|
[mode]: true,
|
|
// Used internally for styling
|
|
[`split-pane-${mode}`]: true,
|
|
'split-pane-visible': this.visible,
|
|
} }, h("slot", { key: '3e30d7cf3bc1cf434e16876a0cb2a36377b8e00f' })));
|
|
}
|
|
get el() { return this; }
|
|
static get watchers() { return {
|
|
"visible": ["visibleChanged"],
|
|
"disabled": ["updateState"],
|
|
"when": ["updateState"]
|
|
}; }
|
|
static get style() { return {
|
|
ios: splitPaneIosCss,
|
|
md: splitPaneMdCss
|
|
}; }
|
|
}, [289, "ion-split-pane", {
|
|
"contentId": [513, "content-id"],
|
|
"disabled": [4],
|
|
"when": [8],
|
|
"visible": [32],
|
|
"isVisible": [64]
|
|
}, undefined, {
|
|
"visible": ["visibleChanged"],
|
|
"disabled": ["updateState"],
|
|
"when": ["updateState"]
|
|
}]);
|
|
const setPaneClass = (el, isMain) => {
|
|
let toAdd;
|
|
let toRemove;
|
|
if (isMain) {
|
|
toAdd = SPLIT_PANE_MAIN;
|
|
toRemove = SPLIT_PANE_SIDE;
|
|
}
|
|
else {
|
|
toAdd = SPLIT_PANE_SIDE;
|
|
toRemove = SPLIT_PANE_MAIN;
|
|
}
|
|
const classList = el.classList;
|
|
classList.add(toAdd);
|
|
classList.remove(toRemove);
|
|
};
|
|
function defineCustomElement$1() {
|
|
if (typeof customElements === "undefined") {
|
|
return;
|
|
}
|
|
const components = ["ion-split-pane"];
|
|
components.forEach(tagName => { switch (tagName) {
|
|
case "ion-split-pane":
|
|
if (!customElements.get(tagName)) {
|
|
customElements.define(tagName, SplitPane);
|
|
}
|
|
break;
|
|
} });
|
|
}
|
|
|
|
const IonSplitPane = SplitPane;
|
|
const defineCustomElement = defineCustomElement$1;
|
|
|
|
export { IonSplitPane, defineCustomElement };
|
|
|