Segment love

This commit is contained in:
Max Lynch
2015-05-08 15:14:17 -05:00
parent 7f1e2dc5df
commit 966a02900d
7 changed files with 123 additions and 23 deletions

View File

@ -1,29 +1,100 @@
import {NgElement, Component, View, Decorator} from 'angular2/angular2'
import {NgElement, Renderer, ElementRef, Component, DefaultValueAccessor, View, Ancestor, Optional, Decorator, Directive} from 'angular2/angular2'
import {dom} from 'ionic/util';
import {IonicComponent} from 'ionic/config/component'
import {Button} from 'ionic/components/button/button'
@Component({
selector: 'ion-segment'
selector: 'ion-segment',
hostListeners: {
'click': 'buttonClicked($event)'
}
})
@View({
template: `<div class="ion-segment" (^click)="buttonClicked($event)">
template: `<div class="ion-segment">
<content></content>
</div>
`,
directives: [Button]
directives: [Button, SegmentButton]
})
export class Segment {
constructor(
@NgElement() ngElement:NgElement
@NgElement() ngElement:NgElement,
elementRef: ElementRef,
renderer: Renderer
) {
this.domElement = ngElement.domElement
this.config = Button.config.invoke(this)
this.config = Segment.config.invoke(this)
this.elementRef = elementRef;
this.renderer = renderer;
this.buttons = [];
}
bindButton(segmentValue) {
this.buttons.push(segmentValue);
let index = this.buttons.length;
console.log('Bound button', index);
}
register(segmentButton) {
this.buttons.push(segmentButton);
}
selected(event, segmentButton) {
for(let button of this.buttons) {
button.setActive(false);
}
segmentButton.setActive(true);
}
}
new IonicComponent(Segment, {
});
@Component({
selector: 'ion-segment-button',
hostListeners: {
'click': 'buttonClicked($event)'
},
properties: {
value: 'value'
}
})
@View({
template: '<content></content>'
})
/*
@Directive({
hostListeners: {
mouseover: 'buttonClicked'
}
})
*/
export class SegmentButton {
constructor(
@Ancestor() segment: Segment,
@NgElement() ngElement:NgElement,
elementRef: ElementRef,
renderer: Renderer
) {
this.domElement = ngElement.domElement
this.segment = segment;
segment.register(this);
}
setActive(isActive) {
// TODO: No domElement
if(isActive) {
this.domElement.classList.add('active');
} else {
this.domElement.classList.remove('active');
}
}
buttonClicked(event) {
console.log('Button clicked', event);
this.segment.selected(event, this);
}
}
new IonicComponent(Segment, {
})