Compare commits
10 Commits
77784f388d
...
781599e2b7
Author | SHA1 | Date | |
---|---|---|---|
781599e2b7 | |||
aec9175d1a | |||
69e080033f | |||
8a1921b6cb | |||
bd03cde151 | |||
704271cf6d | |||
922d238a05 | |||
f3e707a31a | |||
c5f4b7b526 | |||
2e4b1ec876 |
@ -4,9 +4,6 @@ import {DateOnly} from "@model/DateOnly";
|
||||
import {PeriodTimes} from "@model/pairPeriodTime";
|
||||
import {ScheduleRequest} from "@api/v1/scheduleRequest";
|
||||
import {ScheduleResponse} from "@api/v1/scheduleResponse";
|
||||
import {GroupScheduleResponse} from "@api/v1/groupScheduleResponse";
|
||||
import {ProfessorScheduleResponse} from "@api/v1/professorScheduleResponse";
|
||||
import {LectureHallScheduleResponse} from "@api/v1/lectureHallScheduleResponse";
|
||||
import {map} from "rxjs";
|
||||
|
||||
@Injectable()
|
||||
@ -27,18 +24,18 @@ export class ScheduleService extends ApiService {
|
||||
}
|
||||
|
||||
public getByGroup(id : number, isEven: boolean | null = null, disciplines: Array<number> | null = null, professors: Array<number> | null = null, lectureHalls: Array<number> | null = null) {
|
||||
return this.get<GroupScheduleResponse>('GetByGroup' + id.toString(), {isEven: isEven, disciplines: disciplines, professors: professors, lectureHalls: lectureHalls});
|
||||
return this.get<ScheduleResponse[]>('GetByGroup/' + id.toString(), {isEven: isEven, disciplines: disciplines, professors: professors, lectureHalls: lectureHalls});
|
||||
}
|
||||
|
||||
public getByProfessor(id : number, isEven: boolean | null = null, disciplines: Array<number> | null = null, groups: Array<number> | null = null, lectureHalls: Array<number> | null = null) {
|
||||
return this.get<ProfessorScheduleResponse>('GetByProfessor' + id.toString(), {isEven: isEven, disciplines: disciplines, groups: groups, lectureHalls: lectureHalls});
|
||||
return this.get<ScheduleResponse[]>('GetByProfessor/' + id.toString(), {isEven: isEven, disciplines: disciplines, groups: groups, lectureHalls: lectureHalls});
|
||||
}
|
||||
|
||||
public getByLectureHall(id : number, isEven: boolean | null = null, disciplines: Array<number> | null = null, groups: Array<number> | null = null, professors: Array<number> | null = null) {
|
||||
return this.get<LectureHallScheduleResponse>('GetByLectureHall' + id.toString(), {isEven: isEven, disciplines: disciplines, groups: groups, professors: professors});
|
||||
return this.get<ScheduleResponse[]>('GetByLectureHall/' + id.toString(), {isEven: isEven, disciplines: disciplines, groups: groups, professors: professors});
|
||||
}
|
||||
|
||||
public getByDiscipline(id : number, isEven: boolean | null = null, groups: Array<number> | null = null, professors: Array<number> | null = null, lectureHalls: Array<number> | null = null) {
|
||||
return this.get<GroupScheduleResponse>('GetByDiscipline' + id.toString(), {isEven: isEven, groups: groups, professors: professors, lectureHalls: lectureHalls});
|
||||
return this.get<ScheduleResponse[]>('GetByDiscipline/' + id.toString(), {isEven: isEven, groups: groups, professors: professors, lectureHalls: lectureHalls});
|
||||
}
|
||||
}
|
||||
|
@ -6,6 +6,7 @@ import {CreateUserRequest} from "@api/v1/createUserRequest";
|
||||
import {LoggingRequest} from "@api/v1/loggingRequest";
|
||||
import {EmailRequest} from "@api/v1/emailRequest";
|
||||
import {ScheduleConfigurationRequest} from "@api/v1/scheduleConfigurationRequest";
|
||||
import {DateOnly} from "@model/DateOnly";
|
||||
|
||||
@Injectable()
|
||||
export default class SetupService extends ApiService {
|
||||
@ -49,6 +50,7 @@ export default class SetupService extends ApiService {
|
||||
}
|
||||
|
||||
public setSchedule(data: ScheduleConfigurationRequest) {
|
||||
data.startTerm = new DateOnly(data.startTerm).toString();
|
||||
return this.post<boolean>('SetSchedule', data);
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,8 @@
|
||||
import {Component} from '@angular/core';
|
||||
import {RouterOutlet} from '@angular/router';
|
||||
import {FooterComponent} from "@component/footer/footer.component";
|
||||
import {FooterComponent} from "@component/common/footer/footer.component";
|
||||
import localeRu from '@angular/common/locales/ru';
|
||||
import { registerLocaleData } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
@ -11,4 +13,7 @@ import {FooterComponent} from "@component/footer/footer.component";
|
||||
<app-footer/>`
|
||||
})
|
||||
export class AppComponent {
|
||||
constructor() {
|
||||
registerLocaleData(localeRu);
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,8 @@ import { provideRouter } from '@angular/router';
|
||||
|
||||
import { routes } from './app.routes';
|
||||
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
||||
import {provideHttpClient} from "@angular/common/http";
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [provideRouter(routes), provideAnimationsAsync()]
|
||||
providers: [provideRouter(routes), provideAnimationsAsync(), provideHttpClient()]
|
||||
};
|
||||
|
@ -1,3 +1,7 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import {Routes} from '@angular/router';
|
||||
import {ScheduleComponent} from "@page/schedule/schedule.component";
|
||||
|
||||
export const routes: Routes = [];
|
||||
export const routes: Routes = [
|
||||
];
|
||||
|
@ -21,7 +21,7 @@
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="app-footer-copyright">
|
||||
<span>Powered by Winsomnia ©{{ currentYear }}.</span>
|
||||
<span>Powered by <a href="https://winsomnia.net">Winsomnia</a> ©{{ currentYear }}.</span>
|
||||
<a href="https://opensource.org/license/mit/">Code licensed under an MIT-style License.</a>
|
||||
<span>Current Version: {{ version }}</span>
|
||||
</div>
|
||||
|
@ -6,12 +6,13 @@
|
||||
</mat-panel-title>
|
||||
</mat-expansion-panel-header>
|
||||
<mat-chip-listbox hideSingleSelectionIndicator (change)="chooseFaculty($event)">
|
||||
@for (faculty of faculties | async; track $index) {
|
||||
@for (faculty of faculties; track $index) {
|
||||
<mat-chip-option [value]="faculty.id" color="accent">
|
||||
{{ faculty.name }}
|
||||
</mat-chip-option>
|
||||
} @empty {
|
||||
<app-loading-indicator [loading]="facultiesLoaded !== null" (retryFunction)="facultiesLoadRetry.emit()"/>
|
||||
<app-loading-indicator [loading]="facultiesLoaded !== null"
|
||||
(retryFunction)="loadFaculties()"/>
|
||||
}
|
||||
</mat-chip-listbox>
|
||||
</mat-expansion-panel>
|
||||
@ -22,14 +23,14 @@
|
||||
Курс
|
||||
</mat-panel-title>
|
||||
</mat-expansion-panel-header>
|
||||
<mat-chip-listbox hideSingleSelectionIndicator (change)="chooseCourseNumber($event)" [formControl]="chipCourse">
|
||||
@for (course of courseNumbers | async; track $index) {
|
||||
<mat-chip-listbox hideSingleSelectionIndicator (change)="chooseCourseNumber($event)" [formControl]="formChipCourse">
|
||||
@for (course of courseNumbers; track $index) {
|
||||
<mat-chip-option [value]="course" color="accent">
|
||||
{{ course }}
|
||||
</mat-chip-option>
|
||||
} @empty {
|
||||
<app-loading-indicator [loading]="groupsLoaded !== null"
|
||||
(retryFunction)="groupsLoadRetry.emit(this.facultyId!)"/>
|
||||
(retryFunction)="loadCourseGroup()"/>
|
||||
}
|
||||
</mat-chip-listbox>
|
||||
</mat-expansion-panel>
|
||||
@ -40,14 +41,14 @@
|
||||
Группа
|
||||
</mat-panel-title>
|
||||
</mat-expansion-panel-header>
|
||||
<mat-chip-listbox hideSingleSelectionIndicator (change)="chooseGroup($event)" [formControl]="chipGroup">
|
||||
@for (group of filteredGroups | async; track $index) {
|
||||
<mat-chip-listbox hideSingleSelectionIndicator (change)="chooseGroup($event)" [formControl]="formChipGroup">
|
||||
@for (group of filteredGroups; track $index) {
|
||||
<mat-chip-option [value]="group.id" color="accent">
|
||||
{{ group.name }}
|
||||
</mat-chip-option>
|
||||
} @empty {
|
||||
<app-loading-indicator [loading]="groupsLoaded !== null"
|
||||
(retryFunction)="groupsLoadRetry.emit(this.facultyId!)"/>
|
||||
(retryFunction)="loadCourseGroup()"/>
|
||||
}
|
||||
</mat-chip-listbox>
|
||||
</mat-expansion-panel>
|
||||
|
@ -1,12 +1,13 @@
|
||||
import {Component, EventEmitter, Input, Output, ViewChild} from '@angular/core';
|
||||
import {Component, EventEmitter, Output, ViewChild} from '@angular/core';
|
||||
import {MatExpansionModule, MatExpansionPanel} from "@angular/material/expansion";
|
||||
import {MatChipListboxChange, MatChipsModule} from '@angular/material/chips';
|
||||
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
||||
import {AsyncPipe} from "@angular/common";
|
||||
import {map, Observable, of} from "rxjs";
|
||||
import {FormControl, FormsModule, ReactiveFormsModule} from "@angular/forms";
|
||||
import {catchError} from "rxjs";
|
||||
import {LoadingIndicatorComponent} from "@component/common/loading-indicator/loading-indicator.component";
|
||||
import {GroupResponse} from "@api/v1/groupResponse";
|
||||
import {FacultyResponse} from "@api/v1/facultyResponse";
|
||||
import {FacultyService} from "@api/v1/faculty.service";
|
||||
import {GroupService} from "@api/v1/group.service";
|
||||
|
||||
@Component({
|
||||
selector: 'app-group',
|
||||
@ -16,49 +17,98 @@ import {FacultyResponse} from "@api/v1/facultyResponse";
|
||||
MatChipsModule,
|
||||
ReactiveFormsModule,
|
||||
LoadingIndicatorComponent,
|
||||
AsyncPipe
|
||||
FormsModule
|
||||
],
|
||||
templateUrl: './group.component.html',
|
||||
styleUrl: './group.component.css'
|
||||
styleUrl: './group.component.css',
|
||||
providers: [FacultyService, GroupService]
|
||||
})
|
||||
|
||||
export class GroupComponent {
|
||||
protected facultyId: number | null = null;
|
||||
protected courseNumber: number | null = null;
|
||||
|
||||
protected filteredGroups: Observable<GroupResponse[]> = of([]);
|
||||
protected courseNumbers: Observable<number[]> = of([]);
|
||||
protected groups: Observable<GroupResponse[]> = of([]);
|
||||
protected filteredGroups: GroupResponse[] = [];
|
||||
protected courseNumbers: number[] = [];
|
||||
private groups: GroupResponse[] = [];
|
||||
|
||||
protected chipCourse: FormControl = new FormControl();
|
||||
protected chipGroup: FormControl = new FormControl();
|
||||
protected formChipCourse: FormControl = new FormControl();
|
||||
protected formChipGroup: FormControl = new FormControl();
|
||||
|
||||
protected faculties: FacultyResponse[] = [];
|
||||
|
||||
@ViewChild('courseNumberPanel') courseNumberPanel!: MatExpansionPanel;
|
||||
@ViewChild('groupPanel') groupPanel!: MatExpansionPanel;
|
||||
|
||||
@Input() faculties: Observable<FacultyResponse[]> = of([]);
|
||||
@Input() facultiesLoaded: boolean | null = false;
|
||||
@Output() facultiesLoadRetry: EventEmitter<void> = new EventEmitter<void>();
|
||||
@Input() groupsLoaded: boolean | null = false;
|
||||
@Output() groupsLoadRetry: EventEmitter<number> = new EventEmitter<number>();
|
||||
protected facultiesLoaded: boolean | null = false;
|
||||
protected groupsLoaded: boolean | null = false;
|
||||
|
||||
@Input() set setGroups(data: Observable<GroupResponse[]>) {
|
||||
this.groups = data;
|
||||
this.courseNumbers = this.groups.pipe(
|
||||
map(data => data.map(g => g.courseNumber)),
|
||||
map(courseNumbersArray => courseNumbersArray.filter((value, index, self) => self.indexOf(value) === index)),
|
||||
map(uniqueCourseNumbers => uniqueCourseNumbers.sort((a, b) => a - b))
|
||||
);
|
||||
@Output() eventResult = new EventEmitter<number>();
|
||||
|
||||
constructor(private facultyApi: FacultyService, private groupApi: GroupService) {
|
||||
this.loadFaculties();
|
||||
}
|
||||
|
||||
@Output() groupSelected = new EventEmitter<number>();
|
||||
@Output() facultySelected = new EventEmitter<number>();
|
||||
protected loadFaculties() {
|
||||
this.facultiesLoaded = false;
|
||||
this.facultyApi.getFaculties()
|
||||
.pipe(catchError(error => {
|
||||
this.facultiesLoaded = null;
|
||||
throw error;
|
||||
}))
|
||||
.subscribe(data => {
|
||||
this.faculties = data;
|
||||
this.facultiesLoaded = true;
|
||||
});
|
||||
}
|
||||
|
||||
private filteringCourseNumber() {
|
||||
this.courseNumbers = Array.from(
|
||||
new Set(
|
||||
this.groups
|
||||
.filter(x => x.facultyId === this.facultyId)
|
||||
.map(x => x.courseNumber)
|
||||
)
|
||||
).sort((a, b) => a - b);
|
||||
}
|
||||
|
||||
private filteringGroup() {
|
||||
this.filteredGroups = this.groups.filter(x => x.facultyId === this.facultyId && x.courseNumber === this.courseNumber);
|
||||
}
|
||||
|
||||
protected loadCourseGroup() {
|
||||
if (this.groups.length === 0) {
|
||||
this.groupsLoaded = false;
|
||||
|
||||
this.groupApi.getGroups().pipe(
|
||||
catchError(error => {
|
||||
this.groupsLoaded = null;
|
||||
throw error;
|
||||
})
|
||||
).subscribe(data => {
|
||||
this.groups = data;
|
||||
if (this.courseNumber === null)
|
||||
this.filteringCourseNumber();
|
||||
else
|
||||
this.filteringGroup();
|
||||
|
||||
this.groupsLoaded = true;
|
||||
});
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
if (this.courseNumber === null)
|
||||
this.filteringCourseNumber();
|
||||
else
|
||||
this.filteringGroup();
|
||||
}
|
||||
|
||||
protected chooseFaculty(event: MatChipListboxChange) {
|
||||
this.courseNumber = null;
|
||||
this.groups = of([]);
|
||||
this.chipGroup.reset();
|
||||
this.chipCourse.reset();
|
||||
this.groups = [];
|
||||
this.formChipGroup.reset();
|
||||
this.formChipCourse.reset();
|
||||
|
||||
if (event.value === undefined || event.value === null) {
|
||||
this.facultyId = null;
|
||||
@ -67,12 +117,12 @@ export class GroupComponent {
|
||||
this.facultyId = event.value;
|
||||
this.courseNumberPanel.open();
|
||||
|
||||
this.facultySelected.emit(this.facultyId!);
|
||||
this.loadCourseGroup();
|
||||
}
|
||||
|
||||
protected chooseCourseNumber(event: MatChipListboxChange) {
|
||||
this.filteredGroups = of([]);
|
||||
this.chipGroup.reset();
|
||||
this.filteredGroups = [];
|
||||
this.formChipGroup.reset();
|
||||
|
||||
if (event.value === undefined || event.value === null) {
|
||||
this.courseNumber = null;
|
||||
@ -81,8 +131,7 @@ export class GroupComponent {
|
||||
|
||||
this.courseNumber = event.value;
|
||||
this.groupPanel.open();
|
||||
this.groups.subscribe(data =>
|
||||
this.filteredGroups = of(data.filter(g => g.courseNumber === this.courseNumber)));
|
||||
this.loadCourseGroup();
|
||||
}
|
||||
|
||||
protected chooseGroup(event: MatChipListboxChange) {
|
||||
@ -90,6 +139,6 @@ export class GroupComponent {
|
||||
return;
|
||||
|
||||
this.groupPanel.close();
|
||||
this.groupSelected.emit(event.value);
|
||||
this.eventResult.emit(event.value);
|
||||
}
|
||||
}
|
||||
|
@ -6,12 +6,12 @@
|
||||
</mat-panel-title>
|
||||
</mat-expansion-panel-header>
|
||||
<mat-chip-listbox hideSingleSelectionIndicator (change)="chooseCampus($event)">
|
||||
@for (campus of campuses | async; track $index) {
|
||||
@for (campus of campuses; track $index) {
|
||||
<mat-chip-option [value]="campus.id" color="accent">
|
||||
{{ campus.codeName }}
|
||||
</mat-chip-option>
|
||||
} @empty {
|
||||
<app-loading-indicator [loading]="campusesLoaded !== null" (retryFunction)="campusesLoadRetry.emit()"/>
|
||||
<app-loading-indicator [loading]="campusesLoaded !== null" (retryFunction)="loadCampuses()"/>
|
||||
}
|
||||
</mat-chip-listbox>
|
||||
</mat-expansion-panel>
|
||||
@ -23,12 +23,12 @@
|
||||
</mat-panel-title>
|
||||
</mat-expansion-panel-header>
|
||||
<mat-chip-listbox hideSingleSelectionIndicator (change)="chooseLectureHall($event)" [formControl]="chipLecture">
|
||||
@for (lectureHall of lectureHalls | async; track $index) {
|
||||
@for (lectureHall of lectureHallsFiltered; track $index) {
|
||||
<mat-chip-option [value]="lectureHall.id" color="accent">
|
||||
{{ lectureHall.name }}
|
||||
</mat-chip-option>
|
||||
} @empty {
|
||||
<app-loading-indicator [loading]="lectureHallsLoaded !== null" (retryFunction)="lectureHallsLoadRetry.emit()"/>
|
||||
<app-loading-indicator [loading]="lectureHallsLoaded !== null" (retryFunction)="loadLectureHalls()"/>
|
||||
}
|
||||
</mat-chip-listbox>
|
||||
</mat-expansion-panel>
|
||||
|
@ -2,11 +2,13 @@ import {Component, EventEmitter, Input, Output, ViewChild} from '@angular/core';
|
||||
import {AsyncPipe} from "@angular/common";
|
||||
import {MatAccordion, MatExpansionModule, MatExpansionPanel} from "@angular/material/expansion";
|
||||
import {MatChipListboxChange, MatChipsModule} from "@angular/material/chips";
|
||||
import {Observable, of} from "rxjs";
|
||||
import {catchError, Observable, of} from "rxjs";
|
||||
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
||||
import {LoadingIndicatorComponent} from "@component/common/loading-indicator/loading-indicator.component";
|
||||
import {CampusBasicInfoResponse} from "@api/v1/campusBasicInfoResponse";
|
||||
import {LectureHallResponse} from "@api/v1/lectureHallResponse";
|
||||
import {CampusService} from "@api/v1/campus.service";
|
||||
import {LectureHallService} from "@api/v1/lectureHall.service";
|
||||
|
||||
@Component({
|
||||
selector: 'app-lecture-hall',
|
||||
@ -20,7 +22,8 @@ import {LectureHallResponse} from "@api/v1/lectureHallResponse";
|
||||
LoadingIndicatorComponent
|
||||
],
|
||||
templateUrl: './lecture-hall.component.html',
|
||||
styleUrl: './lecture-hall.component.css'
|
||||
styleUrl: './lecture-hall.component.css',
|
||||
providers: [CampusService, LectureHallService]
|
||||
})
|
||||
|
||||
export class LectureHallComponent {
|
||||
@ -29,29 +32,66 @@ export class LectureHallComponent {
|
||||
|
||||
@ViewChild('lecturePanel') lecturePanel!: MatExpansionPanel;
|
||||
|
||||
@Input() campuses: Observable<CampusBasicInfoResponse[]> = of([]);
|
||||
@Input() campusesLoaded: boolean | null = false;
|
||||
@Output() campusesLoadRetry: EventEmitter<void> = new EventEmitter<void>();
|
||||
@Input() lectureHalls: Observable<LectureHallResponse[]> = of([]);
|
||||
@Input() lectureHallsLoaded: boolean | null = false;
|
||||
@Output() lectureHallsLoadRetry: EventEmitter<number> = new EventEmitter<number>();
|
||||
protected campuses: CampusBasicInfoResponse[] = [];
|
||||
protected campusesLoaded: boolean | null = false;
|
||||
|
||||
@Output() campusSelected = new EventEmitter<number>();
|
||||
@Output() lectureHallSelected = new EventEmitter<number>();
|
||||
private lectureHalls: LectureHallResponse[] = [];
|
||||
protected lectureHallsFiltered: LectureHallResponse[] = [];
|
||||
protected lectureHallsLoaded: boolean | null = false;
|
||||
|
||||
@Output() eventResult = new EventEmitter<number>();
|
||||
|
||||
constructor(private campusApi: CampusService, private lectureHallApi: LectureHallService) {
|
||||
this.loadCampuses();
|
||||
}
|
||||
|
||||
protected loadCampuses() {
|
||||
this.campusesLoaded = false;
|
||||
this.campusApi.getCampus()
|
||||
.pipe(catchError(error => {
|
||||
this.campusesLoaded = null;
|
||||
throw error;
|
||||
}))
|
||||
.subscribe(data => {
|
||||
this.campuses = data;
|
||||
this.campusesLoaded = true;
|
||||
});
|
||||
}
|
||||
|
||||
private filteringLectureHalls() {
|
||||
this.lectureHallsFiltered = this.lectureHalls.filter(x => x.campusId === this.campusId);
|
||||
}
|
||||
|
||||
protected chooseCampus(event: MatChipListboxChange) {
|
||||
this.chipLecture.reset();
|
||||
|
||||
if (event.value === undefined || event.value === null) {
|
||||
this.campusId = null;
|
||||
this.lectureHalls = of([]);
|
||||
this.lectureHalls = [];
|
||||
return;
|
||||
}
|
||||
|
||||
this.campusId = event.value;
|
||||
this.lecturePanel.open();
|
||||
|
||||
this.campusSelected.emit(this.campusId!);
|
||||
if (this.lectureHalls.length === 0)
|
||||
this.loadLectureHalls();
|
||||
else
|
||||
this.filteringLectureHalls();
|
||||
}
|
||||
|
||||
protected loadLectureHalls() {
|
||||
this.lectureHallsLoaded = false;
|
||||
this.lectureHallApi.getLectureHalls()
|
||||
.pipe(catchError(error => {
|
||||
this.lectureHallsLoaded = null;
|
||||
throw error;
|
||||
}))
|
||||
.subscribe(data => {
|
||||
this.lectureHalls = data;
|
||||
this.filteringLectureHalls();
|
||||
this.lectureHallsLoaded = true;
|
||||
});
|
||||
}
|
||||
|
||||
protected chooseLectureHall(event: MatChipListboxChange) {
|
||||
@ -59,6 +99,6 @@ export class LectureHallComponent {
|
||||
return;
|
||||
|
||||
this.lecturePanel.close();
|
||||
this.lectureHallSelected.emit(event.value);
|
||||
this.eventResult.emit(event.value);
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<div class="search-content">
|
||||
@if (professors.length === 0) {
|
||||
<app-loading-indicator [loading]="professorsLoaded !== null" (retryFunction)="professorsLoadRetry.emit()"/>
|
||||
<app-loading-indicator [loading]="professorsLoaded !== null" (retryFunction)="loadProfessors()"/>
|
||||
} @else {
|
||||
<mat-form-field color="accent" style="width: 100%;">
|
||||
<input type="text" placeholder="Поиск..." matInput [formControl]="professorControl" [matAutocomplete]="auto">
|
||||
|
@ -3,9 +3,10 @@ import {MatFormField, MatInput} from "@angular/material/input";
|
||||
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
||||
import {MatAutocompleteModule, MatAutocompleteSelectedEvent} from "@angular/material/autocomplete";
|
||||
import {AsyncPipe} from "@angular/common";
|
||||
import {map, Observable, startWith} from "rxjs";
|
||||
import {catchError, map, Observable, startWith} from "rxjs";
|
||||
import {LoadingIndicatorComponent} from "@component/common/loading-indicator/loading-indicator.component";
|
||||
import {ProfessorResponse} from "@api/v1/professorResponse";
|
||||
import {ProfessorService} from "@api/v1/professor.service";
|
||||
|
||||
@Component({
|
||||
selector: 'app-professor',
|
||||
@ -19,17 +20,37 @@ import {ProfessorResponse} from "@api/v1/professorResponse";
|
||||
LoadingIndicatorComponent
|
||||
],
|
||||
templateUrl: './professor.component.html',
|
||||
styleUrl: './professor.component.css'
|
||||
styleUrl: './professor.component.css',
|
||||
providers: [ProfessorService]
|
||||
})
|
||||
export class ProfessorComponent implements OnInit {
|
||||
protected professorControl = new FormControl();
|
||||
protected filteredProfessors!: Observable<ProfessorResponse[]>;
|
||||
|
||||
@Input() professors: ProfessorResponse[] = [];
|
||||
@Output() professorSelected = new EventEmitter<number>();
|
||||
protected professors: ProfessorResponse[] = [];
|
||||
protected professorsLoaded: boolean | null = false;
|
||||
|
||||
@Input() professorsLoaded: boolean | null = false;
|
||||
@Output() professorsLoadRetry: EventEmitter<void> = new EventEmitter<void>();
|
||||
@Output() eventResult = new EventEmitter<number>();
|
||||
|
||||
constructor(private api: ProfessorService) {
|
||||
this.loadProfessors();
|
||||
}
|
||||
|
||||
protected loadProfessors() {
|
||||
if (this.professors.length === 0) {
|
||||
this.professorsLoaded = false;
|
||||
|
||||
this.api.getProfessors()
|
||||
.pipe(catchError(error => {
|
||||
this.professorsLoaded = null;
|
||||
throw error;
|
||||
}))
|
||||
.subscribe(data => {
|
||||
this.professors = data;
|
||||
this.professorsLoaded = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.filteredProfessors = this.professorControl.valueChanges.pipe(
|
||||
@ -53,7 +74,7 @@ export class ProfessorComponent implements OnInit {
|
||||
const selectedOption = this.professors.find(teacher => teacher.id === event.option.value);
|
||||
if (selectedOption) {
|
||||
this.professorControl.setValue(selectedOption.name);
|
||||
this.professorSelected.emit(selectedOption.id);
|
||||
this.eventResult.emit(selectedOption.id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,35 +2,34 @@
|
||||
(selectedTabChange)="chooseTabs($event)">
|
||||
<mat-tab label="Группа">
|
||||
<div>
|
||||
<app-group (groupSelected)="groupSelected.emit($event)" (facultySelected)="groupLoad($event)"
|
||||
[setGroups]="groups" [faculties]="faculties" [facultiesLoaded]="facultiesLoaded"
|
||||
[groupsLoaded]="groupLoaded" (groupsLoadRetry)="groupLoad($event)"
|
||||
(facultiesLoadRetry)="facultyLoad()"/>
|
||||
<app-group (eventResult)="groupSelected($event)"/>
|
||||
</div>
|
||||
</mat-tab>
|
||||
<mat-tab label="Преподаватель">
|
||||
<div>
|
||||
<app-professor (professorSelected)="professorSelected.emit($event)" [professors]="professorsData" [professorsLoaded]="professorsLoaded" (professorsLoadRetry)="professorsLoad()"/>
|
||||
<app-professor (eventResult)="professorSelected($event)"/>
|
||||
</div>
|
||||
</mat-tab>
|
||||
<mat-tab label="Кабинет">
|
||||
<div>
|
||||
<app-lecture-hall (lectureHallSelected)="lectureHallSelected.emit($event)" [campuses]="campuses"
|
||||
(campusSelected)="lectureHallLoad($event)" [lectureHalls]="lectureHalls"
|
||||
[campusesLoaded]="campusesLoaded" [lectureHallsLoaded]="lectureHallsLoaded"
|
||||
(campusesLoadRetry)="campusLoad()"
|
||||
(lectureHallsLoadRetry)="lectureHallLoad($event)"/>
|
||||
<app-lecture-hall (eventResult)="lectureHallSelected($event)"/>
|
||||
</div>
|
||||
</mat-tab>
|
||||
<!--
|
||||
<mat-tab label="Другое">
|
||||
<div class="margin-other-button">
|
||||
<app-other idButton="disciplines-button" textButton="Дисциплины" #discipline [dataLoaded]="disciplinesLoaded" (retryLoadData)="loadDisciplines()"/>
|
||||
<app-other idButton="lecture-button" textButton="Кабинеты" #lecture [dataLoaded]="campusesLoaded && lectureHallsLoaded" (retryLoadData)="loadLectureHalls()"/>
|
||||
<app-other idButton="group-button" textButton="Группы" #group [dataLoaded]="facultiesLoaded && groupLoaded" (retryLoadData)="loadGroups()"/>
|
||||
<app-other idButton="professor-button" textButton="Профессоры" #professor [dataLoaded]="professorsLoaded" (retryLoadData)="professorsLoad()"/>
|
||||
<app-other idButton="disciplines-button" textButton="Дисциплины" #discipline [dataLoaded]="disciplinesLoaded"
|
||||
(retryLoadData)="loadDisciplines()"/>
|
||||
<app-other idButton="lecture-button" textButton="Кабинеты" #lecture
|
||||
[dataLoaded]="campusesLoaded && lectureHallsLoaded" (retryLoadData)="loadLectureHalls()"/>
|
||||
<app-other idButton="group-button" textButton="Группы" #group [dataLoaded]="facultiesLoaded && groupLoaded"
|
||||
(retryLoadData)="loadGroups()"/>
|
||||
<app-other idButton="professor-button" textButton="Профессоры" #professor [dataLoaded]="professorsLoaded"
|
||||
(retryLoadData)="professorsLoad()"/>
|
||||
<section>
|
||||
<button mat-flat-button (click)="onClickNagmi()">Отфильтровать</button>
|
||||
<button mat-flat-button>Отфильтровать</button>
|
||||
</section>
|
||||
</div>
|
||||
</mat-tab>
|
||||
-->
|
||||
</mat-tab-group>
|
||||
|
@ -1,38 +1,31 @@
|
||||
import {Component, EventEmitter, Output, ViewChild} from '@angular/core';
|
||||
import {HttpClientModule} from "@angular/common/http";
|
||||
import {Component, EventEmitter, Output} from '@angular/core';
|
||||
import {OtherComponent} from "@component/schedule/tabs/other/other.component";
|
||||
import {MatTab, MatTabChangeEvent, MatTabGroup} from "@angular/material/tabs";
|
||||
import {catchError, map, Observable, of, switchMap, tap} from "rxjs";
|
||||
import {map, Observable} from "rxjs";
|
||||
import {ReactiveFormsModule} from "@angular/forms";
|
||||
import {AsyncPipe, NgIf} from "@angular/common";
|
||||
import {MatButton} from "@angular/material/button";
|
||||
import {DataSpinnerComponent} from "@component/common/data-spinner/data-spinner.component";
|
||||
import {ProfessorResponse} from "@api/v1/professorResponse";
|
||||
import {FacultyResponse} from "@api/v1/facultyResponse";
|
||||
import {GroupResponse} from "@api/v1/groupResponse";
|
||||
import {CampusBasicInfoResponse} from "@api/v1/campusBasicInfoResponse";
|
||||
import {LectureHallResponse} from "@api/v1/lectureHallResponse";
|
||||
import {DisciplineService} from "@api/v1/discipline.service";
|
||||
import {GroupComponent} from "@component/schedule/tabs/group/group.component";
|
||||
import {ProfessorComponent} from "@component/schedule/tabs/professor/professor.component";
|
||||
import {LectureHallComponent} from "@component/schedule/tabs/lecture-hall/lecture-hall.component";
|
||||
import {FacultyService} from "@api/v1/faculty.service";
|
||||
import {GroupService} from "@api/v1/group.service";
|
||||
import {ProfessorService} from "@api/v1/professor.service";
|
||||
import {CampusService} from "@api/v1/campus.service";
|
||||
import {LectureHallService} from "@api/v1/lectureHall.service";
|
||||
import {ScheduleService} from "@api/v1/schedule.service";
|
||||
import {ScheduleResponse} from "@api/v1/scheduleResponse";
|
||||
|
||||
export enum TabsSelect {
|
||||
Group,
|
||||
Professor,
|
||||
LectureHall,
|
||||
Other
|
||||
}
|
||||
|
||||
@Component({
|
||||
selector: 'app-tabs',
|
||||
standalone: true,
|
||||
imports: [
|
||||
HttpClientModule,
|
||||
OtherComponent,
|
||||
MatTabGroup,
|
||||
MatTab,
|
||||
ReactiveFormsModule,
|
||||
AsyncPipe,
|
||||
NgIf,
|
||||
MatButton,
|
||||
DataSpinnerComponent,
|
||||
GroupComponent,
|
||||
@ -41,236 +34,126 @@ import {LectureHallService} from "@api/v1/lectureHall.service";
|
||||
],
|
||||
templateUrl: './tabs.component.html',
|
||||
styleUrl: './tabs.component.css',
|
||||
providers: [FacultyService, GroupService, ProfessorService, CampusService, LectureHallService, DisciplineService ]
|
||||
providers: [ScheduleService]
|
||||
})
|
||||
|
||||
export class TabsComponent {
|
||||
protected professorsData: ProfessorResponse[] = [];
|
||||
@Output() eventResult = new EventEmitter<[TabsSelect, number, Observable<ScheduleResponse[]>]>();
|
||||
|
||||
protected faculties: Observable<FacultyResponse[]> = of([]);
|
||||
protected groups: Observable<GroupResponse[]> = of([]);
|
||||
private groupsData: Observable<GroupResponse[]> = of([]);
|
||||
constructor(private scheduleApi: ScheduleService) {
|
||||
}
|
||||
|
||||
protected campuses: Observable<CampusBasicInfoResponse[]> = of([]);
|
||||
protected lectureHalls: Observable<LectureHallResponse[]> = of([]);
|
||||
private lectureHallsData: Observable<LectureHallResponse[]> = of([]);
|
||||
protected groupSelected(id: number) {
|
||||
this.eventResult.emit(
|
||||
[
|
||||
TabsSelect.Group,
|
||||
id,
|
||||
this.scheduleApi.getByGroup(id)
|
||||
.pipe(
|
||||
map(g =>
|
||||
g.map(data =>
|
||||
({
|
||||
dayOfWeek: data.dayOfWeek,
|
||||
pairNumber: data.pairNumber,
|
||||
isEven: data.isEven,
|
||||
discipline: data.discipline,
|
||||
disciplineId: data.disciplineId,
|
||||
isExcludedWeeks: data.isExcludedWeeks,
|
||||
weeks: data.weeks,
|
||||
typeOfOccupations: data.typeOfOccupations,
|
||||
group: data.group,
|
||||
groupId: data.groupId,
|
||||
lectureHalls: data.lectureHalls,
|
||||
lectureHallsId: data.lectureHallsId,
|
||||
professors: data.professors,
|
||||
professorsId: data.professorsId,
|
||||
campus: data.campus,
|
||||
campusId: data.campusId,
|
||||
linkToMeet: data.linkToMeet
|
||||
}))
|
||||
)
|
||||
)
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
// States
|
||||
protected facultiesLoaded: boolean | null = false;
|
||||
protected groupLoaded: boolean | null = false;
|
||||
protected campusesLoaded: boolean | null = false;
|
||||
protected lectureHallsLoaded: boolean | null = false;
|
||||
protected disciplinesLoaded: boolean | null = false;
|
||||
protected professorsLoaded: boolean | null = false;
|
||||
protected professorSelected(id: number) {
|
||||
this.eventResult.emit(
|
||||
[
|
||||
TabsSelect.Professor,
|
||||
id,
|
||||
this.scheduleApi.getByProfessor(id)
|
||||
.pipe(
|
||||
map(p =>
|
||||
p.map(data =>
|
||||
({
|
||||
dayOfWeek: data.dayOfWeek,
|
||||
pairNumber: data.pairNumber,
|
||||
isEven: data.isEven,
|
||||
discipline: data.discipline,
|
||||
disciplineId: data.disciplineId,
|
||||
isExcludedWeeks: data.isExcludedWeeks,
|
||||
weeks: data.weeks,
|
||||
typeOfOccupations: data.typeOfOccupations,
|
||||
group: data.group,
|
||||
groupId: data.groupId,
|
||||
lectureHalls: data.lectureHalls,
|
||||
lectureHallsId: data.lectureHallsId,
|
||||
professors: data.professors,
|
||||
professorsId: data.professorsId,
|
||||
campus: data.campus,
|
||||
campusId: data.campusId,
|
||||
linkToMeet: data.linkToMeet
|
||||
}))
|
||||
)
|
||||
)
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
@Output() groupSelected: EventEmitter<number> = new EventEmitter<number>();
|
||||
@Output() lectureHallSelected: EventEmitter<number> = new EventEmitter<number>();
|
||||
@Output() professorSelected: EventEmitter<number> = new EventEmitter<number>();
|
||||
|
||||
constructor(
|
||||
private facultyApi: FacultyService,
|
||||
private groupApi: GroupService,
|
||||
private professorApi: ProfessorService,
|
||||
private campusApi: CampusService,
|
||||
private lectureHallApi: LectureHallService,
|
||||
private disciplineApi: DisciplineService) {
|
||||
this.facultyLoad().then();
|
||||
protected lectureHallSelected(id: number) {
|
||||
this.eventResult.emit(
|
||||
[
|
||||
TabsSelect.LectureHall,
|
||||
id,
|
||||
this.scheduleApi.getByLectureHall(id)
|
||||
.pipe(
|
||||
map(lh =>
|
||||
lh.map(data =>
|
||||
({
|
||||
dayOfWeek: data.dayOfWeek,
|
||||
pairNumber: data.pairNumber,
|
||||
isEven: data.isEven,
|
||||
discipline: data.discipline,
|
||||
disciplineId: data.disciplineId,
|
||||
isExcludedWeeks: data.isExcludedWeeks,
|
||||
weeks: data.weeks,
|
||||
typeOfOccupations: data.typeOfOccupations,
|
||||
group: data.group,
|
||||
groupId: data.groupId,
|
||||
lectureHalls: data.lectureHalls,
|
||||
lectureHallsId: data.lectureHallsId,
|
||||
professors: data.professors,
|
||||
professorsId: data.professorsId,
|
||||
campus: data.campus,
|
||||
campusId: data.campusId,
|
||||
linkToMeet: data.linkToMeet
|
||||
}))
|
||||
)
|
||||
)
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
protected async chooseTabs(event: MatTabChangeEvent) {
|
||||
switch (event.index) {
|
||||
case 0:
|
||||
await this.facultyLoad();
|
||||
break;
|
||||
case 1:
|
||||
this.professorsLoad();
|
||||
break;
|
||||
case 2:
|
||||
await this.campusLoad();
|
||||
break;
|
||||
case 3:
|
||||
await this.extensionLoad();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
protected async facultyLoad() {
|
||||
if (this.facultiesLoaded === null) this.facultiesLoaded = false;
|
||||
if (this.facultiesLoaded) return;
|
||||
|
||||
this.faculties = this.facultyApi.getFaculties().pipe(
|
||||
tap(() => {
|
||||
this.facultiesLoaded = true;
|
||||
}),
|
||||
catchError((error) => {
|
||||
this.facultiesLoaded = null;
|
||||
throw error;
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
protected groupLoad(id: number) {
|
||||
if (this.groupLoaded === null) this.groupLoaded = false;
|
||||
|
||||
if (this.groupLoaded)
|
||||
this.groups = this.groupsData.pipe(map(data => data.filter(x => x.facultyId === id)));
|
||||
else
|
||||
this.groups = this.groupApi.getByFaculty(id).pipe(
|
||||
tap(() => {
|
||||
this.groupLoaded = false;
|
||||
}),
|
||||
catchError((error) => {
|
||||
this.groupLoaded = null;
|
||||
throw error;
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
protected professorsLoad() {
|
||||
if (this.professorsLoaded === null) this.professorsLoaded = false;
|
||||
|
||||
if (this.professorsLoaded) return;
|
||||
|
||||
this.professorApi.getProfessors().pipe(
|
||||
catchError((error) => {
|
||||
this.professorsLoaded = null;
|
||||
throw error;
|
||||
})
|
||||
).subscribe(data => {
|
||||
this.professorsData = data;
|
||||
this.professorEx.Data = data.map(x =>
|
||||
({
|
||||
id: x.id,
|
||||
name: x.altName ? x.altName : x.name,
|
||||
selected: false
|
||||
}));
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
protected async campusLoad() {
|
||||
if (this.campusesLoaded === null) this.campusesLoaded = false;
|
||||
|
||||
if (this.campusesLoaded) return;
|
||||
|
||||
this.campuses = this.campusApi.getCampus().pipe(
|
||||
tap(() => {
|
||||
this.campusesLoaded = true;
|
||||
}),
|
||||
catchError((error) => {
|
||||
this.campusesLoaded = null;
|
||||
throw error;
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
protected lectureHallLoad(id: number) {
|
||||
if (this.lectureHallsLoaded === null) this.lectureHallsLoaded = false;
|
||||
|
||||
if (this.lectureHallsLoaded)
|
||||
this.lectureHalls = this.lectureHallsData.pipe(map(data => data.filter(x => x.campusId === id)));
|
||||
else
|
||||
this.lectureHalls = this.lectureHallApi.getByCampus(id).pipe(
|
||||
tap(() => {
|
||||
this.lectureHallsLoaded = false;
|
||||
}),
|
||||
catchError((error) => {
|
||||
this.lectureHallsLoaded = null;
|
||||
throw error;
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
protected async loadLectureHalls() {
|
||||
if (!this.campusesLoaded)
|
||||
await this.campusLoad();
|
||||
|
||||
if (!this.lectureHallsLoaded) {
|
||||
this.lectureHallsData = this.lectureHallApi.getLectureHalls();
|
||||
this.lectureHallsData.pipe(
|
||||
switchMap(lectureHalls => this.campuses.pipe(
|
||||
map(campuses => {
|
||||
return lectureHalls.map(x => {
|
||||
const campus = campuses.find(c => c.id === x.campusId);
|
||||
const codeName = campus ? campus.codeName : '';
|
||||
return {
|
||||
id: x.id,
|
||||
name: `${x.name} (${codeName})`,
|
||||
selected: false
|
||||
};
|
||||
});
|
||||
})
|
||||
)),
|
||||
).subscribe(data => {
|
||||
this.lectureHallEx.Data = data;
|
||||
this.lectureHallsLoaded = true;
|
||||
this.campusesLoaded = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
protected async loadDisciplines() {
|
||||
if (!this.disciplinesLoaded) {
|
||||
this.disciplineApi.getDisciplines().pipe(
|
||||
catchError((error) => {
|
||||
this.disciplinesLoaded = null;
|
||||
throw error;
|
||||
})).subscribe(data => {
|
||||
this.disciplineEx.Data = data.map(x =>
|
||||
({
|
||||
id: x.id,
|
||||
name: x.name,
|
||||
selected: false
|
||||
}));
|
||||
this.disciplinesLoaded = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
protected async loadGroups() {
|
||||
if (!this.facultiesLoaded)
|
||||
await this.facultyLoad();
|
||||
|
||||
if (!this.groupLoaded) {
|
||||
this.groupsData = this.groupApi.getGroups();
|
||||
this.groupsData.pipe(
|
||||
switchMap(groups => this.faculties.pipe(
|
||||
map(campuses => {
|
||||
return groups.map(x => {
|
||||
const faculties = campuses.find(c => c.id === x.facultyId);
|
||||
const name = faculties ? faculties.name : '';
|
||||
return {
|
||||
id: x.id,
|
||||
name: `${x.name} (${name})`,
|
||||
selected: false
|
||||
};
|
||||
});
|
||||
})
|
||||
))
|
||||
).subscribe(data => {
|
||||
this.groupEx.Data = data;
|
||||
this.groupLoaded = true;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
protected async extensionLoad() {
|
||||
// Lecture Hall
|
||||
await this.loadLectureHalls();
|
||||
|
||||
// Disciplines
|
||||
await this.loadDisciplines();
|
||||
|
||||
// Groups
|
||||
await this.loadGroups();
|
||||
|
||||
// Professors
|
||||
if (this.professorsData.length === 0)
|
||||
this.professorsLoad();
|
||||
}
|
||||
|
||||
/*
|
||||
@ViewChild('discipline') disciplineEx!: OtherComponent;
|
||||
@ViewChild('lecture') lectureHallEx!: OtherComponent;
|
||||
@ViewChild('group') groupEx!: OtherComponent;
|
||||
@ViewChild('professor') professorEx!: OtherComponent;
|
||||
*/
|
||||
}
|
||||
|
16
src/pages/schedule/schedule.component.css
Normal file
16
src/pages/schedule/schedule.component.css
Normal file
@ -0,0 +1,16 @@
|
||||
.schedule {
|
||||
padding: 50px 15%;
|
||||
min-height: 60vh;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 599px) {
|
||||
.schedule {
|
||||
padding: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) and (max-width: 959px) {
|
||||
.schedule {
|
||||
padding: 30px 10%;
|
||||
}
|
||||
}
|
5
src/pages/schedule/schedule.component.html
Normal file
5
src/pages/schedule/schedule.component.html
Normal file
@ -0,0 +1,5 @@
|
||||
<mat-sidenav-container class="schedule">
|
||||
<app-tabs (eventResult)="result($event)"/>
|
||||
<app-table-header [startWeek]="startWeek" [currentWeek]="currentWeek" (weekEvent)="handleWeekEvent($event)" #tableHeader/>
|
||||
<app-table [currentWeek]="currentWeek" [startWeek]="startWeek" [data]="data" [isLoad]="isLoadTable"/>
|
||||
</mat-sidenav-container>
|
115
src/pages/schedule/schedule.component.ts
Normal file
115
src/pages/schedule/schedule.component.ts
Normal file
@ -0,0 +1,115 @@
|
||||
import {Component, LOCALE_ID, ViewChild} from '@angular/core';
|
||||
import {TableComponent} from "@component/schedule/table/table.component";
|
||||
import {MatFormField, MatInput} from "@angular/material/input";
|
||||
import {MatButton} from "@angular/material/button";
|
||||
import {FormsModule} from "@angular/forms";
|
||||
import {AdditionalText, TableHeaderComponent} from "@component/schedule/table-header/table-header.component";
|
||||
import {addDays, weekInYear} from "@progress/kendo-date-math";
|
||||
import {MatCard} from "@angular/material/card";
|
||||
import {MatSidenavContainer} from "@angular/material/sidenav";
|
||||
import {TabsComponent, TabsSelect} from "@component/schedule/tabs/tabs.component";
|
||||
import {catchError, Observable} from "rxjs";
|
||||
import {ScheduleService} from "@api/v1/schedule.service";
|
||||
import {ScheduleResponse} from "@api/v1/scheduleResponse";
|
||||
import {PeriodTimes} from "@model/pairPeriodTime";
|
||||
|
||||
@Component({
|
||||
selector: 'app-schedule',
|
||||
standalone: true,
|
||||
imports: [
|
||||
TableComponent,
|
||||
MatInput,
|
||||
MatFormField,
|
||||
MatButton,
|
||||
FormsModule,
|
||||
TableHeaderComponent,
|
||||
MatCard,
|
||||
MatSidenavContainer,
|
||||
TabsComponent
|
||||
],
|
||||
templateUrl: './schedule.component.html',
|
||||
styleUrl: './schedule.component.css',
|
||||
providers: [
|
||||
ScheduleService,
|
||||
{provide: LOCALE_ID, useValue: 'ru-RU'}
|
||||
]
|
||||
})
|
||||
|
||||
export class ScheduleComponent {
|
||||
protected startWeek!: Date;
|
||||
protected data: ScheduleResponse[] = [];
|
||||
protected startTerm: Date;
|
||||
protected isLoadTable: boolean = false;
|
||||
protected pairPeriods: PeriodTimes = {};
|
||||
|
||||
@ViewChild('tableHeader') childComponent!: TableHeaderComponent;
|
||||
|
||||
constructor(private api: ScheduleService) {
|
||||
this.calculateCurrentWeek();
|
||||
this.startTerm = new Date(1, 1, 1);
|
||||
api.pairPeriod().subscribe(date => {
|
||||
this.pairPeriods = date;
|
||||
});
|
||||
api.startTerm().subscribe(date => {
|
||||
this.startTerm = date.date;
|
||||
});
|
||||
}
|
||||
|
||||
protected result(data: [TabsSelect, number, Observable<ScheduleResponse[]>]) {
|
||||
this.isLoadTable = true;
|
||||
data[2]
|
||||
.pipe(catchError(error => {
|
||||
this.data = [];
|
||||
throw error;
|
||||
}))
|
||||
.subscribe(x => {
|
||||
this.data = x;
|
||||
switch (data[0]) {
|
||||
case TabsSelect.Group:
|
||||
this.childComponent.AdditionalText(AdditionalText.Group, this.data[0].group);
|
||||
break;
|
||||
case TabsSelect.Professor:
|
||||
let indexProfessor = this.data[0].professorsId.findIndex(p => p === data[1]);
|
||||
console.log(indexProfessor);
|
||||
console.log(data[1]);
|
||||
this.childComponent.AdditionalText(AdditionalText.Professor, this.data[0].professors[indexProfessor]);
|
||||
break;
|
||||
case TabsSelect.LectureHall:
|
||||
this.childComponent.AdditionalText(AdditionalText.LectureHall, `${this.data[0].lectureHalls[0]} (${this.data[0].campus[0]})`);
|
||||
break;
|
||||
case TabsSelect.Other:
|
||||
this.childComponent.AdditionalText(AdditionalText.Other, '');
|
||||
break;
|
||||
}
|
||||
|
||||
this.isLoadTable = false;
|
||||
});
|
||||
}
|
||||
|
||||
private calculateCurrentWeek() {
|
||||
let currentDate = new Date();
|
||||
|
||||
function startOfWeek(date: Date) {
|
||||
return addDays(date, -date.getDay() + 1);
|
||||
}
|
||||
|
||||
this.startWeek = currentDate.getDay() === 0 ? startOfWeek(addDays(currentDate, 1)) : startOfWeek(currentDate);
|
||||
|
||||
if (this.startWeek < this.startTerm)
|
||||
this.startWeek = this.startTerm;
|
||||
}
|
||||
|
||||
protected handleWeekEvent(eventData: boolean | null) {
|
||||
if (eventData === null) {
|
||||
this.calculateCurrentWeek();
|
||||
} else if (eventData) {
|
||||
this.startWeek = addDays(this.startWeek, 7);
|
||||
} else {
|
||||
this.startWeek = addDays(this.startWeek, -7);
|
||||
}
|
||||
}
|
||||
|
||||
get currentWeek(): number {
|
||||
return (weekInYear(this.startWeek) - weekInYear(this.startTerm)) + 1;
|
||||
}
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { DayOfWeek } from '@model/dayOfWeek';
|
||||
|
||||
/**
|
||||
* Represents information about a specific schedule entry for a professor.
|
||||
*/
|
||||
export interface DisciplineScheduleInfo {
|
||||
dayOfWeek: DayOfWeek;
|
||||
/**
|
||||
* Gets or sets the pair number for the schedule entry.
|
||||
*/
|
||||
pairNumber: number;
|
||||
/**
|
||||
* Gets or sets a value indicating whether the pair is on an even week.
|
||||
*/
|
||||
isEven: boolean;
|
||||
/**
|
||||
* Gets or sets the type of occupation for the schedule entry.
|
||||
*/
|
||||
typeOfOccupation: Array<string>;
|
||||
/**
|
||||
* Gets or sets the names of the group for the schedule entry.
|
||||
*/
|
||||
group: string;
|
||||
/**
|
||||
* Gets or sets the IDs of the group for the schedule entry.
|
||||
*/
|
||||
groupId: number;
|
||||
/**
|
||||
* Gets or sets the names of the lecture halls for the schedule entry.
|
||||
*/
|
||||
lectureHalls: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the lecture halls for the schedule entry.
|
||||
*/
|
||||
lectureHallsId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the names of the professors for the schedule entry.
|
||||
*/
|
||||
professors: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the professors for the schedule entry.
|
||||
*/
|
||||
professorsId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the names of the campuses for the schedule entry.
|
||||
*/
|
||||
campus: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the campuses for the schedule entry.
|
||||
*/
|
||||
campusId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the links to online meetings for the schedule entry.
|
||||
*/
|
||||
linkToMeet: Array<string>;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { DisciplineScheduleInfo } from './disciplineScheduleInfo';
|
||||
|
||||
/**
|
||||
* Represents a response containing schedule information for a professor.
|
||||
*/
|
||||
export interface DisciplineScheduleResponse {
|
||||
/**
|
||||
* Gets or sets the name of the discipline.
|
||||
*/
|
||||
discipline: string;
|
||||
/**
|
||||
* Gets or sets the ID of the discipline.
|
||||
*/
|
||||
disciplineId: number;
|
||||
/**
|
||||
* Gets or sets the schedules for the professor.
|
||||
*/
|
||||
schedules: Array<DisciplineScheduleInfo>;
|
||||
}
|
@ -1,75 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { DayOfWeek } from '@/shared/structs/dayOfWeek';
|
||||
|
||||
/**
|
||||
* Represents information about a specific schedule entry for a group.
|
||||
*/
|
||||
export interface GroupScheduleInfo {
|
||||
dayOfWeek: DayOfWeek;
|
||||
/**
|
||||
* Gets or sets the pair number for the schedule entry.
|
||||
*/
|
||||
pairNumber: number;
|
||||
/**
|
||||
* Gets or sets a value indicating whether the pair is on an even week.
|
||||
*/
|
||||
isEven: boolean;
|
||||
/**
|
||||
* Gets or sets the name of the discipline for the schedule entry.
|
||||
*/
|
||||
discipline: string;
|
||||
/**
|
||||
* Gets or sets the ID of the discipline for the schedule entry.
|
||||
*/
|
||||
disciplineId: number;
|
||||
/**
|
||||
* Gets or sets exclude or include weeks for a specific discipline.
|
||||
*/
|
||||
isExcludedWeeks?: boolean;
|
||||
/**
|
||||
* The week numbers required for the correct display of the schedule. Whether there will be Mirea.Api.Dto.Responses.Schedule.GroupScheduleInfo.Discipline during the week or not depends on the Mirea.Api.Dto.Responses.Schedule.GroupScheduleInfo.IsExcludedWeeks property.
|
||||
*/
|
||||
weeks?: Array<number>;
|
||||
/**
|
||||
* Gets or sets the type of occupation for the schedule entry.
|
||||
*/
|
||||
typeOfOccupations: Array<string>;
|
||||
/**
|
||||
* Gets or sets the names of the lecture halls for the schedule entry.
|
||||
*/
|
||||
lectureHalls: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the lecture halls for the schedule entry.
|
||||
*/
|
||||
lectureHallsId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the names of the professors for the schedule entry.
|
||||
*/
|
||||
professors: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the professors for the schedule entry.
|
||||
*/
|
||||
professorsId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the names of the campuses for the schedule entry.
|
||||
*/
|
||||
campus: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the campuses for the schedule entry.
|
||||
*/
|
||||
campusId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the links to online meetings for the schedule entry.
|
||||
*/
|
||||
linkToMeet: Array<string>;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { GroupScheduleInfo } from './groupScheduleInfo';
|
||||
|
||||
/**
|
||||
* Represents a response containing schedule information for a group.
|
||||
*/
|
||||
export interface GroupScheduleResponse {
|
||||
/**
|
||||
* Gets or sets the name of the group.
|
||||
*/
|
||||
group: string;
|
||||
/**
|
||||
* Gets or sets the ID of the group.
|
||||
*/
|
||||
groupId: number;
|
||||
/**
|
||||
* Gets or sets the schedules for the group.
|
||||
*/
|
||||
schedules: Array<GroupScheduleInfo>;
|
||||
}
|
@ -1,76 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import {DayOfWeek} from "@model/dayOfWeek";
|
||||
|
||||
/**
|
||||
* Represents information about a specific schedule entry for a lecture hall.
|
||||
*/
|
||||
export interface LectureHallScheduleInfo {
|
||||
dayOfWeek: DayOfWeek;
|
||||
/**
|
||||
* Gets or sets the pair number for the schedule entry.
|
||||
*/
|
||||
pairNumber: number;
|
||||
/**
|
||||
* Gets or sets a value indicating whether the pair is on an even week.
|
||||
*/
|
||||
isEven: boolean;
|
||||
/**
|
||||
* Gets or sets the name of the discipline for the schedule entry.
|
||||
*/
|
||||
discipline: string;
|
||||
/**
|
||||
* Gets or sets the ID of the discipline for the schedule entry.
|
||||
*/
|
||||
disciplineId: number;
|
||||
/**
|
||||
* Gets or sets exclude or include weeks for a specific discipline.
|
||||
*/
|
||||
isExcludedWeeks?: boolean;
|
||||
/**
|
||||
* The week numbers required for the correct display of the schedule. Whether there will be Mirea.Api.Dto.Responses.Schedule.LectureHallScheduleInfo.Discipline during the week or not depends on the Mirea.Api.Dto.Responses.Schedule.LectureHallScheduleInfo.IsExcludedWeeks property.
|
||||
*/
|
||||
weeks?: Array<number>;
|
||||
/**
|
||||
* Gets or sets the type of occupation for the schedule entry.
|
||||
*/
|
||||
typeOfOccupations: Array<string>;
|
||||
/**
|
||||
* Gets or sets the names of the group for the schedule entry.
|
||||
*/
|
||||
group: string;
|
||||
/**
|
||||
* Gets or sets the IDs of the group for the schedule entry.
|
||||
*/
|
||||
groupId: number;
|
||||
/**
|
||||
* Gets or sets the names of the campuses for the schedule entry.
|
||||
*/
|
||||
campus: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the campuses for the schedule entry.
|
||||
*/
|
||||
campusId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the names of the professors for the schedule entry.
|
||||
*/
|
||||
professors: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the professors for the schedule entry.
|
||||
*/
|
||||
professorsId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the links to online meetings for the schedule entry.
|
||||
*/
|
||||
linkToMeet: Array<string>;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { LectureHallScheduleInfo } from './lectureHallScheduleInfo';
|
||||
|
||||
/**
|
||||
* Represents a response containing schedule information for a lecture hall.
|
||||
*/
|
||||
export interface LectureHallScheduleResponse {
|
||||
/**
|
||||
* Gets or sets the names of the lecture halls.
|
||||
*/
|
||||
lectureHalls: string;
|
||||
/**
|
||||
* Gets or sets the IDs of the lecture halls.
|
||||
*/
|
||||
lectureHallsId: number;
|
||||
/**
|
||||
* Gets or sets the schedules for the lecture hall.
|
||||
*/
|
||||
schedules: Array<LectureHallScheduleInfo>;
|
||||
}
|
@ -1,76 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import {DayOfWeek} from "@model/dayOfWeek";
|
||||
|
||||
/**
|
||||
* Represents information about a specific schedule entry for a professor.
|
||||
*/
|
||||
export interface ProfessorScheduleInfo {
|
||||
dayOfWeek: DayOfWeek;
|
||||
/**
|
||||
* Gets or sets the pair number for the schedule entry.
|
||||
*/
|
||||
pairNumber: number;
|
||||
/**
|
||||
* Gets or sets a value indicating whether the pair is on an even week.
|
||||
*/
|
||||
isEven: boolean;
|
||||
/**
|
||||
* Gets or sets the name of the discipline for the schedule entry.
|
||||
*/
|
||||
discipline: string;
|
||||
/**
|
||||
* Gets or sets the ID of the discipline for the schedule entry.
|
||||
*/
|
||||
disciplineId: number;
|
||||
/**
|
||||
* Gets or sets exclude or include weeks for a specific discipline.
|
||||
*/
|
||||
isExcludedWeeks?: boolean;
|
||||
/**
|
||||
* The week numbers required for the correct display of the schedule. Whether there will be Mirea.Api.Dto.Responses.Schedule.ProfessorScheduleInfo.Discipline during the week or not depends on the Mirea.Api.Dto.Responses.Schedule.ProfessorScheduleInfo.IsExcludedWeeks property.
|
||||
*/
|
||||
weeks?: Array<number>;
|
||||
/**
|
||||
* Gets or sets the type of occupation for the schedule entry.
|
||||
*/
|
||||
typeOfOccupations: Array<string>;
|
||||
/**
|
||||
* Gets or sets the names of the group for the schedule entry.
|
||||
*/
|
||||
group: string;
|
||||
/**
|
||||
* Gets or sets the IDs of the group for the schedule entry.
|
||||
*/
|
||||
groupId: number;
|
||||
/**
|
||||
* Gets or sets the names of the lecture halls for the schedule entry.
|
||||
*/
|
||||
lectureHalls: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the lecture halls for the schedule entry.
|
||||
*/
|
||||
lectureHallsId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the names of the campuses for the schedule entry.
|
||||
*/
|
||||
campus: Array<string>;
|
||||
/**
|
||||
* Gets or sets the IDs of the campuses for the schedule entry.
|
||||
*/
|
||||
campusId: Array<number>;
|
||||
/**
|
||||
* Gets or sets the links to online meetings for the schedule entry.
|
||||
*/
|
||||
linkToMeet: Array<string>;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
/**
|
||||
* MIREA Schedule Web API
|
||||
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
|
||||
*
|
||||
* OpenAPI spec version: 1.0
|
||||
* Contact: support@winsomnia.net
|
||||
*
|
||||
* NOTE: This class is auto generated by the swagger code generator program.
|
||||
* https://github.com/swagger-api/swagger-codegen.git
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { ProfessorScheduleInfo } from './professorScheduleInfo';
|
||||
|
||||
/**
|
||||
* Represents a response containing schedule information for a professor.
|
||||
*/
|
||||
export interface ProfessorScheduleResponse {
|
||||
/**
|
||||
* Gets or sets the name of the professor.
|
||||
*/
|
||||
professor: string;
|
||||
/**
|
||||
* Gets or sets the ID of the professor.
|
||||
*/
|
||||
professorId: number;
|
||||
/**
|
||||
* Gets or sets the schedules for the professor.
|
||||
*/
|
||||
schedules: Array<ProfessorScheduleInfo>;
|
||||
}
|
@ -1,42 +1,36 @@
|
||||
export class DateOnly {
|
||||
private ticks: number;
|
||||
|
||||
/*
|
||||
constructor(year: number, month: number, day: number) {
|
||||
this.ticks = new Date(year, month - 1, day).getTime();
|
||||
}
|
||||
*/
|
||||
private readonly _ticks: number;
|
||||
|
||||
constructor(year: number, month: number, day: number);
|
||||
constructor(date: Date);
|
||||
constructor(date: string);
|
||||
constructor(yearOrDate: number | Date | string, month?: number, day?: number) {
|
||||
if (yearOrDate instanceof Date) {
|
||||
this.ticks = yearOrDate.getTime();
|
||||
this._ticks = yearOrDate.getTime();
|
||||
} else if (typeof yearOrDate === 'number' && month !== undefined && day !== undefined) {
|
||||
this.ticks = new Date(yearOrDate, month - 1, day).getTime();
|
||||
this._ticks = new Date(yearOrDate, month - 1, day).getTime();
|
||||
} else if (typeof yearOrDate === 'string') {
|
||||
const [year, month, day] = yearOrDate.split('-').map(Number);
|
||||
this.ticks = new Date(year, month - 1, day).getTime();
|
||||
this._ticks = new Date(year, month - 1, day).getTime();
|
||||
} else {
|
||||
throw new Error('Invalid constructor arguments');
|
||||
}
|
||||
}
|
||||
|
||||
get year(): number {
|
||||
return new Date(this.ticks).getFullYear();
|
||||
return new Date(this._ticks).getFullYear();
|
||||
}
|
||||
|
||||
get month(): number {
|
||||
return new Date(this.ticks).getMonth() + 1;
|
||||
return new Date(this._ticks).getMonth() + 1;
|
||||
}
|
||||
|
||||
get day(): number {
|
||||
return new Date(this.ticks).getDate();
|
||||
return new Date(this._ticks).getDate();
|
||||
}
|
||||
|
||||
get date(): Date {
|
||||
return new Date(this.ticks);
|
||||
return new Date(this._ticks);
|
||||
}
|
||||
|
||||
toString(): string {
|
||||
|
@ -2,6 +2,7 @@
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"resolveJsonModule": true,
|
||||
"outDir": "./dist/out-tsc",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"strict": true,
|
||||
|
Loading…
Reference in New Issue
Block a user