refactor(dom): attachComponent()

This commit is contained in:
Manu Mtz.-Almeida
2018-03-21 16:22:59 +01:00
parent c03afabc0f
commit ee27549c84
9 changed files with 63 additions and 76 deletions

View File

@ -1,8 +1,9 @@
import { Component, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';
import { Animation, AnimationBuilder, Config, FrameworkDelegate } from '../../index';
import { createThemedClasses, getClassMap } from '../../utils/theme';
import { BACKDROP, OverlayEventDetail, OverlayInterface, attachComponent, detachComponent, dismiss, eventMethod, present } from '../../utils/overlays';
import { createThemedClasses, getClassList } from '../../utils/theme';
import { BACKDROP, OverlayEventDetail, OverlayInterface, dismiss, eventMethod, present } from '../../utils/overlays';
import { attachComponent, detachComponent } from '../../utils/framework-delegate';
import iosEnterAnimation from './animations/ios.enter';
import iosLeaveAnimation from './animations/ios.leave';
@ -172,10 +173,10 @@ export class Modal implements OverlayInterface {
...this.data,
modal: this.el
};
const classes = {
...getClassMap(this.cssClass),
'ion-page': true
};
const classes = [
...getClassList(this.cssClass),
'ion-page'
];
return attachComponent(this.delegate, container, this.component, classes, data)
.then(el => this.usersElement = el)
.then(() => present(this, 'modalEnter', iosEnterAnimation, mdEnterAnimation));

View File

@ -3,6 +3,7 @@ import { NavOptions, ViewState } from './nav-util';
import { NavControllerBase } from './nav';
import { assert } from '../../utils/helpers';
import { FrameworkDelegate } from '../..';
import { attachComponent } from '../../utils/framework-delegate';
/**
* @name ViewController
@ -42,30 +43,11 @@ export class ViewController {
/**
* @hidden
*/
init(container: HTMLElement) {
async init(container: HTMLElement) {
this._state = ViewState.Attached;
const component = this.component;
if (this.delegate) {
return this.delegate.attachViewToDom(container, component, this.data, ['ion-page', 'hide-page']).then(el => {
this.element = el;
});
}
const element = (this.element)
? this.element
: typeof component === 'string'
? document.createElement(component)
: component;
element.classList.add('ion-page');
element.classList.add('hide-page');
if (this.data) {
Object.assign(element, this.data);
}
container.appendChild(element);
this.element = element;
return Promise.resolve();
this.element = await attachComponent(this.delegate, container, component, ['ion-page', 'hide-page'], this.data);
}
_setNav(navCtrl: NavControllerBase) {

View File

@ -1,8 +1,9 @@
import { Component, Element, Event, EventEmitter, Listen, Method, Prop } from '@stencil/core';
import { Animation, AnimationBuilder, Config, FrameworkDelegate } from '../../index';
import { createThemedClasses, getClassMap } from '../../utils/theme';
import { BACKDROP, OverlayEventDetail, OverlayInterface, attachComponent, detachComponent, dismiss, eventMethod, present } from '../../utils/overlays';
import { createThemedClasses, getClassList } from '../../utils/theme';
import { BACKDROP, OverlayEventDetail, OverlayInterface, dismiss, eventMethod, present } from '../../utils/overlays';
import { attachComponent, detachComponent } from '../../utils/framework-delegate';
import iosEnterAnimation from './animations/ios.enter';
import iosLeaveAnimation from './animations/ios.leave';
@ -182,10 +183,10 @@ export class Popover implements OverlayInterface {
...this.data,
popover: this.el
};
const classes = {
...getClassMap(this.cssClass),
'popover-viewport': true
};
const classes = [
...getClassList(this.cssClass),
'popover-viewport'
];
return attachComponent(this.delegate, container, this.component, classes, data)
.then(el => this.usersElement = el)
.then(() => present(this, 'popoverEnter', iosEnterAnimation, mdEnterAnimation, this.ev));

View File

@ -2,11 +2,11 @@ import { Component, Element, Method, Prop } from '@stencil/core';
import { transition } from '../../utils';
import { NavDirection } from '../nav/nav-util';
import { AnimationBuilder, Config, FrameworkDelegate, NavOutlet } from '../..';
import { attachComponent, detachComponent } from '../../utils/overlays';
import { attachComponent, detachComponent } from '../../utils/framework-delegate';
import { RouteID, RouteWrite } from '../router/utils/interfaces';
import iosTransitionAnimation from '../nav/animations/ios.transition';
import mdTransitionAnimation from '../nav/animations/md.transition';
import { RouteID, RouteWrite } from '../router/utils/interfaces';
@Component({
tag: 'ion-router-outlet'
@ -37,7 +37,7 @@ export class RouterOutlet implements NavOutlet {
return false;
}
// attach entering view to DOM
const enteringEl = await attachComponent(this.delegate, this.el, component, NAV_CLASSES, params);
const enteringEl = await attachComponent(this.delegate, this.el, component, ['ion-page', 'hide-page'], params);
const leavingEl = this.activeEl;
// commit animation
@ -121,5 +121,3 @@ export interface RouterOutletOptions {
direction?: NavDirection;
mode?: 'md' | 'ios';
}
const NAV_CLASSES = {'ion-page': true, 'hide-page': true};

2
core/src/index.d.ts vendored
View File

@ -107,7 +107,7 @@ export { PlatformConfig } from './global/platform-configs';
export * from './components';
export { DomController, RafCallback } from './global/dom-controller';
export { FrameworkDelegate } from './utils/dom-framework-delegate';
export { FrameworkDelegate } from './utils/framework-delegate';
export { OverlayEventDetail } from './utils/overlays';
export interface Config {

View File

@ -1,5 +0,0 @@
export interface FrameworkDelegate {
attachViewToDom(container: any, component: any, propsOrDataObj?: any, cssClasses?: string[]): Promise<HTMLElement>;
removeViewFromDom(container: any, component: any): Promise<void>;
}

View File

@ -0,0 +1,32 @@
export interface FrameworkDelegate {
attachViewToDom(container: any, component: any, propsOrDataObj?: any, cssClasses?: string[]): Promise<HTMLElement>;
removeViewFromDom(container: any, component: any): Promise<void>;
}
export function attachComponent(delegate: FrameworkDelegate, container: Element, component: string|HTMLElement, cssClasses?: string[], params?: {[key: string]: any}): Promise<HTMLElement> {
if (delegate) {
return delegate.attachViewToDom(container, component, params, cssClasses);
}
const el = (typeof component === 'string') ? document.createElement(component) : component;
cssClasses && cssClasses.forEach(c => el.classList.add(c));
params && Object.assign(el, params);
container.appendChild(el);
if ((el as any).componentOnReady) {
return (el as any).componentOnReady();
}
return Promise.resolve(el);
}
export function detachComponent(delegate: FrameworkDelegate, element: HTMLElement) {
if (element) {
if (delegate) {
const container = element.parentElement;
return delegate.removeViewFromDom(container, element);
}
element.remove();
}
return Promise.resolve();
}

View File

@ -1,5 +1,5 @@
import { EventEmitter } from '@stencil/core';
import { Animation, AnimationBuilder, Config, CssClassMap, FrameworkDelegate } from '..';
import { Animation, AnimationBuilder, Config } from '..';
let lastId = 1;
@ -138,31 +138,6 @@ export function autoFocus(containerEl: HTMLElement): HTMLElement|null {
return null;
}
export function attachComponent(delegate: FrameworkDelegate, container: Element, component: string|HTMLElement, cssClasses: CssClassMap, data: any): Promise<HTMLElement> {
if (delegate) {
return delegate.attachViewToDom(container, component, data, Object.keys(cssClasses));
}
const el = (typeof component === 'string') ? document.createElement(component) : component;
Object.assign(el, data);
Object.keys(cssClasses).forEach(c => el.classList.add(c));
container.appendChild(el);
if ((el as any).componentOnReady) {
return (el as any).componentOnReady();
}
return Promise.resolve(el);
}
export function detachComponent(delegate: FrameworkDelegate, element: HTMLElement) {
if (element) {
if (delegate) {
const container = element.parentElement;
return delegate.removeViewFromDom(container, element);
}
element.remove();
}
return Promise.resolve();
}
export function eventMethod<T>(element: HTMLElement, eventName: string, callback?: (detail: T) => void): Promise<T> {
let resolve: Function;
const promise = new Promise<T>(r => resolve = r);

View File

@ -50,15 +50,18 @@ export function getButtonClassMap(buttonType: string, mode: string): CssClassMap
};
}
export function getClassList(classes: string | undefined): string[] {
if (classes) {
return classes
.split(' ')
.filter(c => c.trim() !== '');
}
return [];
}
export function getClassMap(classes: string | undefined): CssClassMap {
const map: CssClassMap = {};
if (classes) {
classes
.split(' ')
.filter(c => c.trim() !== '')
.forEach(c => map[c] = true);
}
getClassList(classes).forEach(c => map[c] = true);
return map;
}