Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,20 @@ <h3 class="ngx-material-timepicker-examples__title">Examples</h3>
</div>
</div>
</section>
<section class="ngx-material-timepicker-examples__container ngx-material-timepicker-example">
<app-example-source-code [sourceCode]="appendToInputWithTimepickerField">Append to input</app-example-source-code>
<div class="ngx-material-timepicker-example__body">
<p class="ngx-material-timepicker-example__description">
Timepicker appends to ngx-timepicker-field.
</p>
<div class="ngx-material-timepicker-example__form-group">
<ngx-timepicker-field [appendToInput]="true"></ngx-timepicker-field>
</div>
<div class="ngx-material-timepicker-example__form-group">
<ngx-timepicker-field [appendToInput]="true" [format]="24"></ngx-timepicker-field>
</div>
</div>
</section>
</div>
</main>
<footer class="footer">
Expand Down
9 changes: 9 additions & 0 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,13 @@ export class AppComponent {
<ngx-timepicker-field min="12:10 am" max="08:11 pm"></ngx-timepicker-field>
</div>
`;

appendToInputWithTimepickerField = `
<div class="ngx-timepicker-field-example">
<ngx-timepicker-field [appendToInput]="true"></ngx-timepicker-field>
</div>
<div class="ngx-timepicker-field-example">
<ngx-timepicker-field [appendToInput]="true" [format]="24"></ngx-timepicker-field>
</div>
`;
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<div class="ngx-timepicker-input-to-append" *ngIf="appendToInput">
<input [ngxTimepicker]="timepicker"
[format]="format"
[min]="min"
[max]="max"
[value]="timepickerTime"
[disabled]="false"
[disableClick]="false"
>
</div>
<div class="ngx-timepicker" [ngClass]="{'ngx-timepicker--disabled': disabled}">
<ngx-timepicker-time-control
class="ngx-timepicker__control--first"
Expand Down Expand Up @@ -30,7 +40,7 @@
*ngIf="format !== 24"></ngx-timepicker-period-selector>
<ngx-material-timepicker-toggle
class="ngx-timepicker__toggle"
*ngIf="!controlOnly"
*ngIf="!controlOnly && !appendToInput"
[ngClass]="{'ngx-timepicker__toggle--left': buttonAlign === 'left'}"
[for]="timepicker"
[disabled]="disabled">
Expand All @@ -39,6 +49,18 @@
<ng-container *ngTemplateOutlet="toggleIcon || defaultIcon"></ng-container>
</span>
</ngx-material-timepicker-toggle>

<ngx-material-timepicker-toggle
class="ngx-timepicker__toggle"
*ngIf="!controlOnly && appendToInput"
[ngClass]="{'ngx-timepicker__toggle--left': buttonAlign === 'left'}"
(click)="onTimepickerToggle($event)"
[disabled]="disabled">
<span ngxMaterialTimepickerToggleIcon>
<!--suppress HtmlUnknownAttribute -->
<ng-container *ngTemplateOutlet="toggleIcon || defaultIcon"></ng-container>
</span>
</ngx-material-timepicker-toggle>
</div>
<ngx-material-timepicker
[min]="min"
Expand All @@ -48,6 +70,7 @@
[format]="format"
[cancelBtnTmpl]="cancelBtnTmpl"
[confirmBtnTmpl]="confirmBtnTmpl"
[appendToInput]="appendToInput"
(timeSet)="onTimeSet($event)" #timepicker></ngx-material-timepicker>

<ng-template #defaultIcon>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
.ngx-timepicker-input-to-append {
height: 0;

&>input {
height: 0;
width: 100%;
padding: 0;
border: 0;
outline: 0;
}
}

.ngx-timepicker {
display: flex;
align-items: center;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Inject, Input, OnDestroy, OnInit, Output, TemplateRef } from '@angular/core';
import {
ChangeDetectionStrategy,
Component,
EventEmitter,
Inject,
Input,
OnDestroy,
OnInit,
Output,
TemplateRef,
ViewChild
} from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
import { NgxMaterialTimepickerService } from '../../services/ngx-material-timepicker.service';
import { Observable, Subject } from 'rxjs';
Expand All @@ -11,6 +22,7 @@ import { TIME_LOCALE } from '../../tokens/time-locale.token';
import { TimepickerTimeUtils } from '../../utils/timepicker-time.utils';
import { DateTime } from 'luxon';
import { distinctUntilChanged, map, takeUntil, tap } from 'rxjs/operators';
import { NgxMaterialTimepickerComponent } from '../../ngx-material-timepicker.component';

@Component({
selector: 'ngx-timepicker-field',
Expand Down Expand Up @@ -51,6 +63,7 @@ export class NgxTimepickerFieldComponent implements OnInit, OnDestroy, ControlVa
@Input() controlOnly: boolean;
@Input() cancelBtnTmpl: TemplateRef<Node>;
@Input() confirmBtnTmpl: TemplateRef<Node>;
@Input() appendToInput = false;

@Input()
set format(value: number) {
Expand Down Expand Up @@ -106,6 +119,8 @@ export class NgxTimepickerFieldComponent implements OnInit, OnDestroy, ControlVa
return this._defaultTime;
}

@ViewChild('timepicker', { static: false }) timepicker: NgxMaterialTimepickerComponent;

@Output() timeChanged = new EventEmitter<string>();

private _defaultTime: string;
Expand Down Expand Up @@ -199,6 +214,13 @@ export class NgxTimepickerFieldComponent implements OnInit, OnDestroy, ControlVa
this.unsubscribe$.complete();
}

onTimepickerToggle($event: MouseEvent) {
if (this.timepicker) {
$event.stopPropagation();
this.timepicker.open();
}
}

private changeTime(): void {
const time = this.timepickerService.getFullTime(this.format);
this.timepickerTime = time;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ describe('NgxMaterialTimepickerToggleComponent', () => {
expect(component.disabled).toBeTruthy();
});

it('should get disabled as falsy as default', () => {
expect(component.disabled).toBeFalsy();
});

it('should override timepicker\'s disabled state', () => {
component.timepicker = timepicker;
component.disabled = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import {NgxMaterialTimepickerComponent} from '../../ngx-material-timepicker.comp

export class NgxMaterialTimepickerToggleComponent {

@Input('for') timepicker: NgxMaterialTimepickerComponent;
@Input('for') timepicker?: NgxMaterialTimepickerComponent;

@Input()
get disabled(): boolean {
return this._disabled === undefined ? this.timepicker.disabled : this._disabled;
return this._disabled === undefined ? (this.timepicker || { disabled: false }).disabled : this._disabled;
}

set disabled(value: boolean) {
Expand Down