Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/material/datepicker/calendar-header.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@

<button matIconButton type="button" class="mat-calendar-previous-button"
[disabled]="!previousEnabled()" (click)="previousClicked()"
[attr.aria-label]="prevButtonLabel">
[attr.aria-label]="prevButtonLabel" disabledInteractive>
<svg viewBox="0 0 24 24" focusable="false" aria-hidden="true">
<path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
</svg>
</button>

<button matIconButton type="button" class="mat-calendar-next-button"
[disabled]="!nextEnabled()" (click)="nextClicked()"
[attr.aria-label]="nextButtonLabel">
[attr.aria-label]="nextButtonLabel" disabledInteractive>
<svg viewBox="0 0 24 24" focusable="false" aria-hidden="true">
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
</svg>
Expand Down
12 changes: 6 additions & 6 deletions src/material/datepicker/calendar-header.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ describe('MatCalendarHeader', () => {
fixture.detectChanges();

expect(calendarInstance.currentView).toBe('multi-year');
expect(prevButton.disabled).toBe(true);
expect(prevButton.getAttribute('aria-disabled')).toBe('true');
});

it('should enable the page after the one showing minDate', () => {
Expand All @@ -255,7 +255,7 @@ describe('MatCalendarHeader', () => {
fixture.detectChanges();

expect(calendarInstance.currentView).toBe('multi-year');
expect(nextButton.disabled).toBe(false);
expect(nextButton.hasAttribute('aria-disabled')).toBe(false);
});
});

Expand Down Expand Up @@ -300,7 +300,7 @@ describe('MatCalendarHeader', () => {
fixture.detectChanges();

expect(calendarInstance.currentView).toBe('multi-year');
expect(nextButton.disabled).toBe(true);
expect(nextButton.getAttribute('aria-disabled')).toBe('true');
});

it('should enable the page before the one showing maxDate', () => {
Expand All @@ -309,7 +309,7 @@ describe('MatCalendarHeader', () => {
fixture.detectChanges();

expect(calendarInstance.currentView).toBe('multi-year');
expect(prevButton.disabled).toBe(false);
expect(prevButton.hasAttribute('aria-disabled')).toBe(false);
});
});

Expand Down Expand Up @@ -356,7 +356,7 @@ describe('MatCalendarHeader', () => {
fixture.detectChanges();

expect(calendarInstance.currentView).toBe('multi-year');
expect(nextButton.disabled).toBe(true);
expect(nextButton.getAttribute('aria-disabled')).toBe('true');
});

it('should disable the page before the one showing minDate', () => {
Expand All @@ -371,7 +371,7 @@ describe('MatCalendarHeader', () => {
fixture.detectChanges();

expect(calendarInstance.activeDate).toEqual(new Date(2018 - yearsPerPage, JAN, 1));
expect(prevButton.disabled).toBe(true);
expect(prevButton.getAttribute('aria-disabled')).toBe('true');
});
});
});
Expand Down
16 changes: 12 additions & 4 deletions src/material/datepicker/calendar.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,13 +354,17 @@ describe('MatCalendar', () => {
'.mat-calendar-previous-button',
) as HTMLButtonElement;

expect(prevButton.disabled).withContext('previous button should not be disabled').toBe(false);
expect(prevButton.hasAttribute('aria-disabled'))
.withContext('previous button should not be disabled')
.toBe(false);
expect(calendarInstance.activeDate).toEqual(new Date(2016, FEB, 1));

prevButton.click();
fixture.detectChanges();

expect(prevButton.disabled).withContext('previous button should be disabled').toBe(true);
expect(prevButton.getAttribute('aria-disabled'))
.withContext('previous button should be disabled')
.toBe('true');
expect(calendarInstance.activeDate).toEqual(new Date(2016, JAN, 1));

prevButton.click();
Expand All @@ -378,13 +382,17 @@ describe('MatCalendar', () => {
'.mat-calendar-next-button',
) as HTMLButtonElement;

expect(nextButton.disabled).withContext('next button should not be disabled').toBe(false);
expect(nextButton.hasAttribute('aria-disabled'))
.withContext('next button should not be disabled')
.toBe(false);
expect(calendarInstance.activeDate).toEqual(new Date(2017, DEC, 1));

nextButton.click();
fixture.detectChanges();

expect(nextButton.disabled).withContext('next button should be disabled').toBe(true);
expect(nextButton.getAttribute('aria-disabled'))
.withContext('next button should be disabled')
.toBe('true');
expect(calendarInstance.activeDate).toEqual(new Date(2018, JAN, 1));

nextButton.click();
Expand Down
32 changes: 18 additions & 14 deletions src/material/datepicker/calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,24 +114,28 @@ export class MatCalendarHeader<D> {

/** Handles user clicks on the previous button. */
previousClicked(): void {
this.calendar.activeDate =
this.calendar.currentView == 'month'
? this._dateAdapter.addCalendarMonths(this.calendar.activeDate, -1)
: this._dateAdapter.addCalendarYears(
this.calendar.activeDate,
this.calendar.currentView == 'year' ? -1 : -yearsPerPage,
);
if (this.previousEnabled()) {
this.calendar.activeDate =
this.calendar.currentView == 'month'
? this._dateAdapter.addCalendarMonths(this.calendar.activeDate, -1)
: this._dateAdapter.addCalendarYears(
this.calendar.activeDate,
this.calendar.currentView == 'year' ? -1 : -yearsPerPage,
);
}
}

/** Handles user clicks on the next button. */
nextClicked(): void {
this.calendar.activeDate =
this.calendar.currentView == 'month'
? this._dateAdapter.addCalendarMonths(this.calendar.activeDate, 1)
: this._dateAdapter.addCalendarYears(
this.calendar.activeDate,
this.calendar.currentView == 'year' ? 1 : yearsPerPage,
);
if (this.nextEnabled()) {
this.calendar.activeDate =
this.calendar.currentView == 'month'
? this._dateAdapter.addCalendarMonths(this.calendar.activeDate, 1)
: this._dateAdapter.addCalendarYears(
this.calendar.activeDate,
this.calendar.currentView == 'year' ? 1 : yearsPerPage,
);
}
}

/** Whether the previous period button is enabled. */
Expand Down
Loading