UNPKG

angular-nevera-generator

Version:

Yeoman AngularJS scaffold a webapp with Angular 1 written in ES6 (Babel), TypeScript through Webpack or SystemJS including tools Gulp 4, ESLint, Browsersync and Karma

42 lines (36 loc) 896 B
import {SHOW_ALL, SHOW_COMPLETED, SHOW_ACTIVE} from '../constants/TodoFilters'; class FooterController { filters: string[]; filterTitles: any; onClearCompleted: Function; onShow: Function; constructor() { this.filters = [SHOW_ALL, SHOW_ACTIVE, SHOW_COMPLETED]; this.filterTitles = { [SHOW_ALL]: 'All', [SHOW_ACTIVE]: 'Active', [SHOW_COMPLETED]: 'Completed' }; } handleClear() { this.onClearCompleted(); } handleChange(filter: string) { this.onShow({filter}); } } export const Footer: angular.IComponentOptions = { <% if (modules === 'systemjs') { -%> templateUrl: 'app/components/Footer.html', <% } else { -%> template: require('./Footer.html'), <% } -%> controller: FooterController, bindings: { completedCount: '<', activeCount: '<', selectedFilter: '<filter', onClearCompleted: '&', onShow: '&' } };