all files / component/date-selector/ date-selector.component.ts

54.98% Statements 149/271
27.34% Branches 35/128
50% Functions 23/46
53.26% Lines 139/261
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559                                                                                  12×           78×     12×                                 21× 12×       10× 10×     21×                                           12×     12×           12×                       60×                                                                                                             21×                 12×   21×                                   21×   21× 21×   21× 21× 21×       21×     21× 21× 651×   651×       651×     21× 84× 84× 21×   63×       63× 63×           21× 21× 21×         21×     672×                                                                                                                                                                                                               21× 21× 21×   21×   735×   21× 147×     21× 12× 420×     21×                       735×     735×                           735×     735×                                                                                                                                    
/*
 *  @license
 *  Copyright Hôpitaux Universitaires de Genève. All Rights Reserved.
 *
 *  Use of this source code is governed by an Apache-2.0 license that can be
 *  found in the LICENSE file at https://github.com/DSI-HUG/dejajs-components/blob/master/LICENSE
 */
 
import { coerceBooleanProperty } from '@angular/cdk/coercion';
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Optional, Output, Self, ViewEncapsulation } from '@angular/core';
import { ControlValueAccessor, NgControl } from '@angular/forms';
import { from as observableFrom, fromEvent as observableFromEvent, Subject } from 'rxjs';
import { first, takeWhile } from 'rxjs/operators';
import { KeyCodes } from '../../common/core/keycodes.enum';
import { IDateSelectorItem } from './date-selector-item.model';
 
export enum DaysOfWeek {
    Sunday = 0,
    Monday = 1,
    Tuesday = 2,
    Wednesday = 3,
    Thursday = 4,
    Friday = 5,
    Saturday = 6,
}
 
export enum DateComponentLayout {
    dateonly = 1,
    datetime,
    timeonly,
}
 
const noop = () => { };
 
@Component({
    changeDetection: ChangeDetectionStrategy.OnPush,
    encapsulation: ViewEncapsulation.None,
    selector: 'deja-date-time-selector',
    styles: [require('./date-selector.scss')],
    template: require('./date-selector.component.html'),
})
export class DejaDateSelectorComponent implements OnInit, ControlValueAccessor, OnDestroy {
    @Input() public startDay: DaysOfWeek = DaysOfWeek.Monday;
    @Input() public disableDates: Array<(DaysOfWeek | Date)>; // | ((d: Date) => boolean);
    @Input() public dateMax: Date;
    @Input() public dateMin: Date;
    @Input() public format: string;
 
    @Output() public dateChange = new EventEmitter();
    @Output() public timeChange = new EventEmitter();
 
    protected _local = 'fr';
 
    // Time
    protected beginOffset = Math.PI / 3;
    protected clocks = {
        hours: {
            ranges: [
                { min: 1, max: 12, beginOffset: Math.PI / 3 },
                { min: 13, max: 24, beginOffset: Math.PI / 3 },
            ],
        },
        minutes: {
            ranges: [
                { min: 0, max: 59, labelInterval: 5 },
            ],
        },
    };
    // /Time
 
    protected _keyboardNavigation = false;
    private _keyboardNavigation$ = new Subject();
 
    public get keyboardNavigation() {
        return this._keyboardNavigation;
    }
 
    public get keyboardNavigation$() {
        return this._keyboardNavigation$;
    }
 
    public get displayedDate() {
        return this._displayedDate;
    }
 
    public get local() {
        return this._local;
    }
 
    public onTouchedCallback: () => void = noop;
    public onChangeCallback: (_: any) => void = noop;
 
    private isAlive = true;
 
    private _currentDays: IDateSelectorItem[];
    private _currentDate: Date = new Date();
 
    private selectedDate: Date;
    private _displayedDate = new Date();
 
    private _days = [] as string[];
    private _emptyDays: any[];
    private _time: boolean;
    private _disabled: boolean;
 
    /**
     * Component Layout
     */
    @Input()
    public set layout(value: DateComponentLayout | string) {
        if (value) {
            if (typeof value === 'string') {
                this.layoutId = (<any>DateComponentLayout)[value];
                Iif (!this.layoutId) {
                    throw new Error('Invalid type for DateComponentLayout');
                }
                this.layoutClass = value;
            } else {
                this.layoutId = value;
                this.layoutClass = DateComponentLayout[value];
            }
        }
        this.changeDetectorRef.markForCheck();
    }
    public layoutClass: string;
    public layoutId: number;
 
    /**
     * Time property setter. Can be string or empty so you can use it like : <deja-date-selector time></deja-date-selector>
     * Used to add time selector next to calendar
     */
    @Input()
    public set time(value: boolean | string) {
        this._time = coerceBooleanProperty(value) ? true : null;
        if (this._time) {
            this.layout = DateComponentLayout.datetime;
        }
        this.changeDetectorRef.markForCheck();
    }
 
    /** Time property getter. */
    public get time() {
        return this._time;
    }
 
    public get days() {
        return this._days;
    }
 
    public get emptyDays() {
        return this._emptyDays;
    }
 
    public get currentDate() {
        return this._currentDate;
    }
 
    public get currentDays() {
        return this._currentDays;
    }
 
    /** Disabled property setter. Can be string or empty so you can use it like : <deja-date-selector disabled></deja-date-selector> */
    @Input()
    public set disabled(value: boolean | string) {
        this._disabled = coerceBooleanProperty(value) ? true : null;
        // this.changeDetectorRef.markForCheck();
        this.bind();
    }
 
    /** Disabled property getter. */
    public get disabled() {
        return this._disabled;
    }
 
    constructor(elementRef: ElementRef, private changeDetectorRef: ChangeDetectorRef, @Self() @Optional() public _control: NgControl) {
        const element = elementRef.nativeElement as HTMLElement;
 
        Eif (this._control) {
            this._control.valueAccessor = this;
        }
 
        observableFromEvent(element, 'click').pipe(
            takeWhile(() => this.isAlive))
            .subscribe((event: Event) => {
                const target = event.target as HTMLElement;
                if (target.hasAttribute('dateindex')) {
                    const dateSelectorItem = this._currentDays[+target.getAttribute('dateindex')];
                    if (!dateSelectorItem.disabled) {
                        const val = new Date(dateSelectorItem.date);
                        if (this._displayedDate) {
                            val.setHours(this._displayedDate.getHours(), this._displayedDate.getMinutes(), this._displayedDate.getSeconds(), this._displayedDate.getMilliseconds());
                        }
                        this.value = val;
                        this.dateChange.emit(this.value);
                    }
                }
            });
 
        observableFrom(this._keyboardNavigation$).pipe(
            takeWhile(() => this.isAlive))
            .subscribe(() => {
                this._keyboardNavigation = true;
                observableFromEvent(element, 'mouseenter').pipe(
                    first())
                    .subscribe(() => {
                        this._keyboardNavigation = false;
                        this.changeDetectorRef.markForCheck();
                    });
            });
        this.layout = DateComponentLayout.dateonly;
    }
 
    public ngOnInit() {
        Iif (!this._displayedDate) {
            this._displayedDate = this._currentDate;
            this.bind();
        }
    }
 
    public ngOnDestroy() {
        this.isAlive = false;
    }
 
    // ************* ControlValueAccessor Implementation **************
    // set accessor including call the onchange callback
    public set value(v: Date) {
        if (v !== this.selectedDate) {
            this.writeValue(v);
            this.onChangeCallback(v);
        }
    }
 
    // get accessor
    public get value(): Date {
        return this.selectedDate;
    }
 
    // From ControlValueAccessor interface
    public writeValue(value: Date | string) {
        if (value instanceof Date && value !== this.selectedDate) {
            Iif (this.selectedDate) {
                const h = (value) ? value.getHours() : 0;
                const m = (value) ? value.getMinutes() : 0;
                if (value && ((!this.layoutId && this.selectedDate.toLocaleTimeString() !== value.toLocaleTimeString()) || (this.layoutId > 1 && ((this.selectedDate.getHours() === 0 && this.selectedDate.getMinutes() === 0) && (h !== 0 && m !== 0) || (this.selectedDate.toLocaleDateString() !== value.toLocaleDateString()))))) {
                    value.setHours(this.selectedDate.getHours(), this.selectedDate.getMinutes(), this.selectedDate.getSeconds());
                }
            }
            this.selectedDate = value;
            this._displayedDate = value || this._currentDate;
 
        } else {
            this._displayedDate = this._currentDate;
        }
        this.bind();
    }
 
    // From ControlValueAccessor interface
    public registerOnChange(fn: any) {
        this.onChangeCallback = fn;
    }
 
    // From ControlValueAccessor interface
    public registerOnTouched(fn: any) {
        this.onTouchedCallback = fn;
    }
 
    public setDisabledState(isDisabled: boolean) {
        this.disabled = isDisabled;
    }
    // ************* End of ControlValueAccessor Implementation **************
 
    /**
     * @param month (attention : Janvier = 0, Décembre = 11)
     * @param year
     * @return Jours du mois au format IDateSelectorItem
     */
    public getAllDaysInMonth(month: number, year: number): IDateSelectorItem[] {
        const days: IDateSelectorItem[] = [];
 
        let day = 1;
        let date = new Date(year, month, day);
 
        while (date.getDay() !== this.startDay) {
            date = new Date(year, month, --day);
            const dateSelectorItem: IDateSelectorItem = {
                background: true,
                date: date,
            };
            days.splice(0, 0, dateSelectorItem);
        }
 
        let d = 0;
        for (d = 1; d <= this.daysInMonth(month + 1, year); d++) {
            date = new Date(year, month, d);
 
            const dateSelectorItem = {
                currentDate: (this._currentDate.setHours(0, 0, 0, 0) === date.setHours(0, 0, 0, 0)) ? true : null,
                date: date,
            };
            days.push(dateSelectorItem);
        }
 
        while (true) {
            date = new Date(year, month, d);
            if (date.getDay() === this.startDay) {
                break;
            } else {
                const dateSelectorItem = {
                    background: true,
                    date: date,
                };
                days.push(dateSelectorItem);
                d++;
            }
        }
 
        // Il nous faut 6 lignes de 7 jours pour correspondre à tous les mois. 6*7=42
        // Du coup on ajoute une ligne vide quand c'est nécessaire
        Eif (days.length < 42) {
            const x = 42 - days.length;
            this._emptyDays = new Array(x);
        } else {
            this._emptyDays = null;
        }
 
        return days;
    }
 
    public daysInMonth(month: number, year: number) {
        return new Date(year, month, 0).getDate();
    }
 
    public keyDown(event: KeyboardEvent) {
        if (this.disabled) {
            return undefined;
        }
 
        if (!this.selectedDate) {
            this.selectedDate = new Date(this._currentDate);
        }
 
        this._keyboardNavigation$.next();
        switch (event.keyCode) {
            case KeyCodes.PageUp:
            case KeyCodes.PageDown:
            case KeyCodes.UpArrow:
            case KeyCodes.DownArrow:
            case KeyCodes.LeftArrow:
            case KeyCodes.RightArrow:
                event.preventDefault();
                const d = new Date(this.selectedDate);
                switch (event.keyCode) {
                    case KeyCodes.PageUp:
                        // d.setMonth(d.getMonth() - 1);
                        this.setMonthIfPossible(d, -1);
                        break;
                    case KeyCodes.PageDown:
                        // d.setMonth(d.getMonth() + 1);
                        this.setMonthIfPossible(d, 1);
                        break;
                    case KeyCodes.UpArrow:
                        // d.setDate(d.getDate() - 7);
                        this.setDateIfPossible(d, -7);
                        break;
                    case KeyCodes.DownArrow:
                        // d.setDate(d.getDate() + 7);
                        this.setDateIfPossible(d, 7);
                        break;
                    case KeyCodes.LeftArrow:
                        // d.setDate(d.getDate() - 1);
                        this.setDateIfPossible(d, -1);
                        break;
                    case KeyCodes.RightArrow:
                        // d.setDate(d.getDate() + 1);
                        this.setDateIfPossible(d, 1);
                        break;
                    default:
                        break;
                }
                // this.selectedDate = d;
                // this._displayedDate = d;
                // this.bind();
                break;
            case KeyCodes.Space:
            case KeyCodes.Enter:
                event.preventDefault();
                this.onChangeCallback(this.selectedDate);
                break;
 
            default:
                return true;
        }
    }
 
    public changeMonth(x: number) {
        this.setMonthIfPossible(this._displayedDate, x);
        return false;
    }
 
    public changeYear(x: number) {
        this.setYearIfPossible(this._displayedDate, x);
        return false;
    }
 
    protected updateHours(hours: number) {
        let d: Date;
 
        if (hours === 24) {
            hours = 0;
        }
 
        if (this.selectedDate) {
            d = new Date(this.selectedDate);
        } else {
            d = new Date();
            d.setHours(0, 0, 0, 0);
        }
 
        d.setHours(hours);
        this.value = d;
        this.timeChange.emit(this.value);
    }
 
    protected updateMinutes(minutes: number) {
        let d: Date;
 
        if (this.selectedDate) {
            d = new Date(this.selectedDate);
        } else {
            d = new Date();
            d.setHours(0, 0, 0, 0);
        }
 
        d.setMinutes(minutes);
        this.value = d;
        this.timeChange.emit(this.value);
    }
 
    private bind() {
        const month = this._displayedDate.getMonth();
        const year = this._displayedDate.getFullYear();
 
        this._currentDays = this.getAllDaysInMonth(month, year);
 
        this._currentDays.forEach((day: IDateSelectorItem) => day.disabled = this.isDisabledDate(day.date));
 
        for (let i = 0; i < 7; i++) {
            this._days[i] = this._currentDays[i].date.toLocaleString('fr', { weekday: 'narrow' });
        }
 
        if (this.selectedDate && this.selectedDate.getFullYear() === year && this.selectedDate.getMonth() === month) {
            const selectedDay = this.selectedDate.getDate();
            this._currentDays.forEach((day: IDateSelectorItem) => day.selected = day.date.getDate() === selectedDay && day.date.getMonth() === month);
        }
 
        this.changeDetectorRef.markForCheck();
    }
 
    /**
     * Vérifie si la date passée en param est désactivée.
     *
     * @param date
     * @return sera false si this.disableDates n'existe pas / n'est pas un tableau,
     *         si la date envoyée en param est valide,
     *         si la date est superieure a dateMax
     *         ou si la date est inférieure a dateMin
     */
    private isDisabledDate(date: Date): boolean {
        Iif (this._disabled) {
            return true;
        }
        Iif (this.disableDates && this.disableDates instanceof Array) {
            const find = this.disableDates.find((d: Date | number) => {
                if (typeof d === 'number') {
                    return d === date.getDay();
                } else {
                    return d.toLocaleDateString() === date.toLocaleDateString();
                }
            });
 
            if (typeof find !== 'undefined') {
                return true;
            }
        }
 
        Iif ((this.dateMax && date.getTime() > this.dateMax.getTime()) || (this.dateMin && date.getTime() < this.dateMin.getTime())) {
            return true;
        }
        return false;
    }
 
    /**
     * Fonction récursive. Si le jour séléctionné + num est invalide, la fonction
     * se rappelle pour séléctionner le jour suivant (ou précédent)
     *
     * @param date
     * @param num : nombre de jours à ajouter à date.
     */
    private setDateIfPossible(date: Date, num: number): void {
        const d = new Date(date);
        d.setDate(d.getDate() + num);
        if ((this.dateMin && d.getTime() < this.dateMin.getTime()) || (this.dateMax && d.getTime() > this.dateMax.getTime())) {
            this._displayedDate = d;
            this.bind();
            this.dateChange.emit(this._displayedDate);
        } else if (this.disableDates && this.isDisabledDate(d)) {
            this.setDateIfPossible(d, num);
        } else {
            this.selectedDate = d;
            this._displayedDate = d;
            this.bind();
            this.dateChange.emit(this._displayedDate);
        }
    }
 
    /**
     * Fonction récursive. Si le mois séléctionné + num est invalide, la fonction
     * se rappelle pour séléctionner le jour suivant (ou précédent)
     *
     * @param date
     * @param num : nombre de mois à ajouter à date.
     */
    private setMonthIfPossible(date: Date, num: number): void {
        const d = new Date(date);
        d.setMonth(d.getMonth() + num);
        if (this.disableDates && this.isDisabledDate(d)) {
            num = (num < 0) ? -1 : 1;
            this.setDateIfPossible(d, num);
        } else {
            this.selectedDate = d;
            this._displayedDate = d;
            this.bind();
            this.dateChange.emit(this._displayedDate);
        }
    }
 
    /**
     * Fonction récursive. Si l'année séléctionné + num est invalide, la fonction
     * se rappelle pour séléctionner le jour suivant (ou précédent)
     *
     * @param date
     * @param num : nombre de jours à ajouter à date.
     */
    private setYearIfPossible(date: Date, num: number): void {
        const d = new Date(date);
        d.setFullYear(d.getFullYear() + num);
        if (this.disableDates && this.isDisabledDate(d)) {
            num = (num < 0) ? -1 : 1;
            this.setDateIfPossible(d, num);
        } else {
            this.selectedDate = d;
            this._displayedDate = d;
            this.bind();
            this.dateChange.emit(this._displayedDate);
        }
    }
}