mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
82 lines
2.1 KiB
JavaScript
82 lines
2.1 KiB
JavaScript
import {Component, Directive, onInit} from 'angular2/src/core/annotations_impl/annotations';
|
|
import {View} from 'angular2/src/core/annotations_impl/view';
|
|
import {Parent} from 'angular2/src/core/annotations_impl/visibility';
|
|
import {ViewContainerRef} from 'angular2/src/core/compiler/view_container_ref';
|
|
import {ElementRef} from 'angular2/src/core/compiler/element_ref';
|
|
|
|
import {Nav} from './nav';
|
|
import {SwipeHandle} from './swipe-handle';
|
|
|
|
|
|
@Component({selector:'ion-pane'})
|
|
@View({
|
|
template: `
|
|
<template pane-anchor></template>
|
|
<section class="content-container">
|
|
<template content-anchor></template>
|
|
<div class="swipe-handle"></div>
|
|
</section>
|
|
`,
|
|
directives: [PaneAnchor, PaneContentAnchor, SwipeHandle]
|
|
})
|
|
export class Pane {
|
|
constructor(@Parent() nav: Nav, viewContainerRef: ViewContainerRef) {
|
|
this.viewContainerRef = viewContainerRef;
|
|
this.sections = {};
|
|
nav.addPane(this);
|
|
}
|
|
addSection(sectionName, instance) {
|
|
this.sections[sectionName] = instance;
|
|
}
|
|
}
|
|
|
|
|
|
@Directive({
|
|
selector: 'template[pane-anchor]'
|
|
})
|
|
class PaneAnchor {
|
|
constructor(@Parent() pane: Pane, elementRef: ElementRef) {
|
|
pane.sectionAnchorElementRef = elementRef;
|
|
}
|
|
}
|
|
|
|
|
|
@Directive({
|
|
selector: 'template[content-anchor]'
|
|
})
|
|
class PaneContentAnchor {
|
|
constructor(@Parent() pane: Pane, viewContainerRef: ViewContainerRef) {
|
|
pane.contentContainerRef = viewContainerRef;
|
|
}
|
|
}
|
|
|
|
@Component({
|
|
selector: 'section',
|
|
hostAttributes: {
|
|
'class': 'navbar-container'
|
|
}
|
|
})
|
|
@View({
|
|
template: `
|
|
<template section-anchor></template>
|
|
`,
|
|
directives: [PaneSectionAnchor]
|
|
})
|
|
export class NavBarSection {
|
|
constructor(@Parent() pane: Pane, viewContainerRef: ViewContainerRef, elementRef: ElementRef) {
|
|
this.pane = pane;
|
|
pane.addSection('navbar', this);
|
|
}
|
|
}
|
|
|
|
|
|
// Reference point of where the guts of the NavBar should go next to
|
|
@Directive({
|
|
selector: 'template[section-anchor]'
|
|
})
|
|
class PaneSectionAnchor {
|
|
constructor(@Parent() navBarSection: NavBarSection, viewContainerRef: ViewContainerRef) {
|
|
navBarSection.viewContainerRef = viewContainerRef;
|
|
}
|
|
}
|