funky-framadate-front/src/app/pages/dates/dates.component.ts

49 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-11-15 15:19:42 +01:00
import {ChangeDetectorRef, Component, OnInit} from '@angular/core';
2019-08-10 16:20:59 +02:00
import {ConfigService} from '../../config.service';
2019-08-10 16:57:36 +02:00
import {BaseComponent} from '../base-page/base.component';
2019-08-10 16:20:59 +02:00
@Component({
selector: 'framadate-dates',
templateUrl: './dates.component.html',
styleUrls: ['./dates.component.scss']
})
2019-08-10 16:57:36 +02:00
export class DatesComponent extends BaseComponent implements OnInit {
2019-11-15 15:19:42 +01:00
constructor(public config: ConfigService, private cd: ChangeDetectorRef) {
2019-08-10 16:20:59 +02:00
super(config);
}
ngOnInit() {
}
addDate() {
2019-11-15 15:19:42 +01:00
this.config.dateList.push({literal: ''});
}
addtime() {
this.config.timeList.push({literal: ''});
}
/**
* add a time period to a specific date choice,
* focus on the new input
* @param config
* @param id
*/
addTimetoDate(config: any, id: number) {
config.timeList.push({literal: ''});
let selector = '[ng-reflect-name="dateTime_' + id + '_Choices_' + (config.timeList.length - 1) + '"]';
console.log('selector', selector);
this.cd.detectChanges();
const elem = document.querySelector(selector);
if (elem && elem.focus) {
elem.focus();
}
}
emptyAll() {
this.config.dateList.forEach(element => {
element.literal = '';
});
2019-08-10 16:20:59 +02:00
}
}