fix: delete data if top-level data is selected
All checks were successful
Build and Deploy Angular App / build (push) Successful in 2m3s
All checks were successful
Build and Deploy Angular App / build (push) Successful in 2m3s
This commit is contained in:
parent
6211dd8889
commit
380b2efa0d
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "1.0.0-b6",
|
"version": "1.0.0-b7",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "1.0.0-b6",
|
"version": "1.0.0-b7",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^18.2.6",
|
"@angular/animations": "^18.2.6",
|
||||||
"@angular/cdk": "~18.2.6",
|
"@angular/cdk": "~18.2.6",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "1.0.0-b6",
|
"version": "1.0.0-b7",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Component, EventEmitter, Output, ViewChild} from '@angular/core';
|
import {Component, EventEmitter, ViewChild} from '@angular/core';
|
||||||
import {MatExpansionModule, MatExpansionPanel} from "@angular/material/expansion";
|
import {MatExpansionModule, MatExpansionPanel} from "@angular/material/expansion";
|
||||||
import {MatChipListbox, MatChipsModule} from '@angular/material/chips';
|
import {MatChipListbox, MatChipsModule} from '@angular/material/chips';
|
||||||
import {FormControl, FormsModule, ReactiveFormsModule} from "@angular/forms";
|
import {FormControl, FormsModule, ReactiveFormsModule} from "@angular/forms";
|
||||||
@ -9,7 +9,11 @@ import {FacultyResponse} from "@api/v1/facultyResponse";
|
|||||||
import {FacultyService} from "@api/v1/faculty.service";
|
import {FacultyService} from "@api/v1/faculty.service";
|
||||||
import {GroupService} from "@api/v1/group.service";
|
import {GroupService} from "@api/v1/group.service";
|
||||||
import {IScheduleTab} from "@component/schedule/tabs/ischedule-tab";
|
import {IScheduleTab} from "@component/schedule/tabs/ischedule-tab";
|
||||||
import {TabSelect, TabSelectData, TabSelectType, TabStorageService} from "@service/tab-storage.service";
|
import {TabSelect, TabStorageService} from "@service/tab-storage.service";
|
||||||
|
|
||||||
|
enum Enclosure {
|
||||||
|
faculty, course, group
|
||||||
|
}
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-group',
|
selector: 'app-group',
|
||||||
@ -25,7 +29,6 @@ import {TabSelect, TabSelectData, TabSelectType, TabStorageService} from "@servi
|
|||||||
styleUrl: './group.component.css',
|
styleUrl: './group.component.css',
|
||||||
providers: [FacultyService, GroupService]
|
providers: [FacultyService, GroupService]
|
||||||
})
|
})
|
||||||
|
|
||||||
export class GroupComponent implements IScheduleTab {
|
export class GroupComponent implements IScheduleTab {
|
||||||
protected faculties: FacultyResponse[] | null = null;
|
protected faculties: FacultyResponse[] | null = null;
|
||||||
protected courseNumbers: number[] | null = null;
|
protected courseNumbers: number[] | null = null;
|
||||||
@ -51,13 +54,50 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
@ViewChild('courseIndicator') courseIndicator!: LoadingIndicatorComponent;
|
@ViewChild('courseIndicator') courseIndicator!: LoadingIndicatorComponent;
|
||||||
@ViewChild('groupIndicator') groupIndicator!: LoadingIndicatorComponent;
|
@ViewChild('groupIndicator') groupIndicator!: LoadingIndicatorComponent;
|
||||||
|
|
||||||
@Output() eventResult = new EventEmitter<number>();
|
private resetCourse() {
|
||||||
|
this.courseNumber = null;
|
||||||
constructor(private facultyApi: FacultyService, private groupApi: GroupService, private tabStorage: TabStorageService) {
|
this.groups = [];
|
||||||
|
this.formChipCourse.reset();
|
||||||
|
this.courseChip.value = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
existParams(data: TabSelectData): boolean {
|
private resetGroup() {
|
||||||
return data.selected['group'] !== undefined || data.selected['course'] !== undefined || data.selected['faculty'] !== undefined;
|
this.filteredGroupsBehaviour = [];
|
||||||
|
this.filteredGroupsMagistracy = [];
|
||||||
|
this.filteredGroupsSpecialist = [];
|
||||||
|
this.formChipGroup.reset();
|
||||||
|
this.groupChip.value = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
public eventResult = new EventEmitter<number>();
|
||||||
|
public selectChangeEvent = new EventEmitter<TabSelect[]>();
|
||||||
|
|
||||||
|
constructor(private facultyApi: FacultyService, private groupApi: GroupService) {
|
||||||
|
}
|
||||||
|
|
||||||
|
private getSelectedTabs(): TabSelect[] {
|
||||||
|
const faculty = this.facultyChip.value;
|
||||||
|
const course = this.courseChip.value;
|
||||||
|
const group = this.groupChip.value;
|
||||||
|
|
||||||
|
const result: TabSelect[] = [];
|
||||||
|
|
||||||
|
if (faculty)
|
||||||
|
result.push(new TabSelect(faculty, this.faculties!.find(x => x.id === faculty)?.name ?? ''));
|
||||||
|
|
||||||
|
if (course)
|
||||||
|
result.push(new TabSelect(course, course.toString()));
|
||||||
|
|
||||||
|
if (group)
|
||||||
|
result.push(new TabSelect(group, this.groups!.find(x => x.id == group)?.name ?? ''));
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public getEnclosureList(): string[] {
|
||||||
|
return Object.keys(Enclosure).filter((item) => {
|
||||||
|
return isNaN(Number(item));
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected loadFaculties() {
|
protected loadFaculties() {
|
||||||
@ -69,7 +109,8 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
.subscribe(data => {
|
.subscribe(data => {
|
||||||
this.faculties = data;
|
this.faculties = data;
|
||||||
|
|
||||||
let selected = TabStorageService.selected?.selected['faculty'];
|
let selected = TabStorageService.selected?.selected[this.getEnclosureList()[Enclosure.faculty]];
|
||||||
|
|
||||||
if (selected) {
|
if (selected) {
|
||||||
let selectedFaculty = data.find(x => x.id === selected.index);
|
let selectedFaculty = data.find(x => x.id === selected.index);
|
||||||
|
|
||||||
@ -78,7 +119,7 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
|
|
||||||
if (selectedFaculty !== undefined) {
|
if (selectedFaculty !== undefined) {
|
||||||
TabStorageService.trySelectChip(selectedFaculty.id, this.facultyChip);
|
TabStorageService.trySelectChip(selectedFaculty.id, this.facultyChip);
|
||||||
this.onFacultySelected(selectedFaculty.id);
|
this.onFacultySelected(selectedFaculty.id, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -104,7 +145,7 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
.sort((a, b) => a - b))
|
.sort((a, b) => a - b))
|
||||||
);
|
);
|
||||||
|
|
||||||
let selected = TabStorageService.selected?.selected['course'];
|
let selected = TabStorageService.selected?.selected[this.getEnclosureList()[Enclosure.course]];
|
||||||
if (selected) {
|
if (selected) {
|
||||||
let selectedCourse = this.courseNumbers.find(x => x === selected.index);
|
let selectedCourse = this.courseNumbers.find(x => x === selected.index);
|
||||||
|
|
||||||
@ -113,11 +154,11 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
|
|
||||||
if (selectedCourse !== undefined) {
|
if (selectedCourse !== undefined) {
|
||||||
TabStorageService.trySelectChip(selectedCourse, this.courseChip);
|
TabStorageService.trySelectChip(selectedCourse, this.courseChip);
|
||||||
this.onCourseSelected(selectedCourse);
|
this.onCourseSelected(selectedCourse, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let selectedGroupStorage = TabStorageService.selected?.selected['group'];
|
let selectedGroupStorage = TabStorageService.selected?.selected[this.getEnclosureList()[Enclosure.group]];
|
||||||
if (selectedGroupStorage) {
|
if (selectedGroupStorage) {
|
||||||
let selectedGroup = data.find(x => x.id === selectedGroupStorage.index);
|
let selectedGroup = data.find(x => x.id === selectedGroupStorage.index);
|
||||||
|
|
||||||
@ -126,7 +167,7 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
|
|
||||||
if (selectedGroup !== undefined) {
|
if (selectedGroup !== undefined) {
|
||||||
TabStorageService.trySelectChip(selectedGroup.id, this.groupChip);
|
TabStorageService.trySelectChip(selectedGroup.id, this.groupChip);
|
||||||
this.onGroupSelected(selectedGroup.id);
|
this.onGroupSelected(selectedGroup.id, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -147,18 +188,19 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected onFacultySelected(index: number) {
|
protected onFacultySelected(index: number, loadMode: boolean = false) {
|
||||||
this.courseNumber = null;
|
this.resetCourse();
|
||||||
this.groups = [];
|
this.resetGroup();
|
||||||
this.formChipGroup.reset();
|
|
||||||
this.formChipCourse.reset();
|
|
||||||
|
|
||||||
if (index === undefined) {
|
if (index === undefined) {
|
||||||
this.facultyId = null;
|
this.facultyId = null;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.tabStorage.select(new TabSelect(index, this.faculties!.find(x => x.id === index)?.name ?? ''), TabSelectType.group, 'faculty');
|
if (loadMode)
|
||||||
|
this.facultyChip.value = index;
|
||||||
|
else
|
||||||
|
this.selectChangeEvent.emit(this.getSelectedTabs());
|
||||||
|
|
||||||
this.facultyId = index;
|
this.facultyId = index;
|
||||||
this.courseNumberPanel.open();
|
this.courseNumberPanel.open();
|
||||||
@ -166,29 +208,32 @@ export class GroupComponent implements IScheduleTab {
|
|||||||
this.loadCourseGroup();
|
this.loadCourseGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected onCourseSelected(course: number) {
|
protected onCourseSelected(course: number, loadMode: boolean = false) {
|
||||||
this.filteredGroupsBehaviour = [];
|
this.resetGroup();
|
||||||
this.filteredGroupsMagistracy = [];
|
|
||||||
this.filteredGroupsSpecialist = [];
|
|
||||||
this.formChipGroup.reset();
|
|
||||||
|
|
||||||
if (course === undefined) {
|
if (course === undefined) {
|
||||||
this.courseNumber = null;
|
this.courseNumber = null;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.tabStorage.select(new TabSelect(course, course.toString()), TabSelectType.group, 'course');
|
if (loadMode)
|
||||||
|
this.courseChip.value = course;
|
||||||
|
else
|
||||||
|
this.selectChangeEvent.emit(this.getSelectedTabs());
|
||||||
|
|
||||||
this.courseNumber = course;
|
this.courseNumber = course;
|
||||||
this.groupPanel.open();
|
this.groupPanel.open();
|
||||||
this.loadCourseGroup();
|
this.loadCourseGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected onGroupSelected(index: number) {
|
protected onGroupSelected(index: number, loadMode: boolean = false) {
|
||||||
if (index === undefined)
|
if (index === undefined)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this.tabStorage.select(new TabSelect(index, this.groups!.find(x => x.id == index)?.name ?? ''), TabSelectType.group, 'group');
|
if (loadMode)
|
||||||
|
this.groupChip.value = index;
|
||||||
|
|
||||||
|
this.selectChangeEvent.emit(this.getSelectedTabs());
|
||||||
|
|
||||||
this.groupPanel.close();
|
this.groupPanel.close();
|
||||||
this.eventResult.emit(index);
|
this.eventResult.emit(index);
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
import {EventEmitter} from "@angular/core";
|
import {EventEmitter} from "@angular/core";
|
||||||
import {TabSelectData} from "@service/tab-storage.service";
|
import {TabSelect} from "@service/tab-storage.service";
|
||||||
|
|
||||||
|
|
||||||
export interface IScheduleTab {
|
export interface IScheduleTab {
|
||||||
load(): void;
|
load(): void;
|
||||||
|
|
||||||
|
getEnclosureList(): string[];
|
||||||
|
|
||||||
eventResult: EventEmitter<number>;
|
eventResult: EventEmitter<number>;
|
||||||
existParams(data: TabSelectData): boolean;
|
selectChangeEvent: EventEmitter<TabSelect[]>;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Component, EventEmitter, Output, ViewChild} from '@angular/core';
|
import {Component, EventEmitter, ViewChild} from '@angular/core';
|
||||||
import {AsyncPipe} from "@angular/common";
|
import {AsyncPipe} from "@angular/common";
|
||||||
import {MatAccordion, MatExpansionModule, MatExpansionPanel} from "@angular/material/expansion";
|
import {MatAccordion, MatExpansionModule, MatExpansionPanel} from "@angular/material/expansion";
|
||||||
import {MatChipListbox, MatChipsModule} from "@angular/material/chips";
|
import {MatChipListbox, MatChipsModule} from "@angular/material/chips";
|
||||||
@ -10,7 +10,11 @@ import {LectureHallResponse} from "@api/v1/lectureHallResponse";
|
|||||||
import {CampusService} from "@api/v1/campus.service";
|
import {CampusService} from "@api/v1/campus.service";
|
||||||
import {LectureHallService} from "@api/v1/lectureHall.service";
|
import {LectureHallService} from "@api/v1/lectureHall.service";
|
||||||
import {IScheduleTab} from "@component/schedule/tabs/ischedule-tab";
|
import {IScheduleTab} from "@component/schedule/tabs/ischedule-tab";
|
||||||
import {TabSelect, TabSelectData, TabSelectType, TabStorageService} from "@service/tab-storage.service";
|
import {TabSelect, TabStorageService} from "@service/tab-storage.service";
|
||||||
|
|
||||||
|
enum Enclosure {
|
||||||
|
campus, lecture
|
||||||
|
}
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-lecture-hall',
|
selector: 'app-lecture-hall',
|
||||||
@ -27,7 +31,6 @@ import {TabSelect, TabSelectData, TabSelectType, TabStorageService} from "@servi
|
|||||||
styleUrl: './lecture-hall.component.css',
|
styleUrl: './lecture-hall.component.css',
|
||||||
providers: [CampusService, LectureHallService]
|
providers: [CampusService, LectureHallService]
|
||||||
})
|
})
|
||||||
|
|
||||||
export class LectureHallComponent implements IScheduleTab {
|
export class LectureHallComponent implements IScheduleTab {
|
||||||
protected campusId: number | null = null;
|
protected campusId: number | null = null;
|
||||||
protected formLectureHalls: FormControl = new FormControl();
|
protected formLectureHalls: FormControl = new FormControl();
|
||||||
@ -35,8 +38,6 @@ export class LectureHallComponent implements IScheduleTab {
|
|||||||
protected campuses: CampusBasicInfoResponse[] | null = null;
|
protected campuses: CampusBasicInfoResponse[] | null = null;
|
||||||
protected lectureHallsFiltered: LectureHallResponse[] | null = null;
|
protected lectureHallsFiltered: LectureHallResponse[] | null = null;
|
||||||
|
|
||||||
@Output() eventResult = new EventEmitter<number>();
|
|
||||||
|
|
||||||
@ViewChild('lecturePanel') lecturePanel!: MatExpansionPanel;
|
@ViewChild('lecturePanel') lecturePanel!: MatExpansionPanel;
|
||||||
@ViewChild('lectureIndicator') lectureIndicator!: LoadingIndicatorComponent;
|
@ViewChild('lectureIndicator') lectureIndicator!: LoadingIndicatorComponent;
|
||||||
@ViewChild('campusIndicator') campusIndicator!: LoadingIndicatorComponent;
|
@ViewChild('campusIndicator') campusIndicator!: LoadingIndicatorComponent;
|
||||||
@ -46,11 +47,31 @@ export class LectureHallComponent implements IScheduleTab {
|
|||||||
|
|
||||||
private lectureHalls: LectureHallResponse[] | null = null;
|
private lectureHalls: LectureHallResponse[] | null = null;
|
||||||
|
|
||||||
constructor(private campusApi: CampusService, private lectureHallApi: LectureHallService, private tabStorage: TabStorageService) {
|
public eventResult = new EventEmitter<number>();
|
||||||
|
public selectChangeEvent = new EventEmitter<TabSelect[]>();
|
||||||
|
|
||||||
|
constructor(private campusApi: CampusService, private lectureHallApi: LectureHallService) {
|
||||||
}
|
}
|
||||||
|
|
||||||
existParams(data: TabSelectData): boolean {
|
private getSelectedTabs(): TabSelect[] {
|
||||||
return data.selected['campus'] !== undefined || data.selected['lecture'] !== undefined;
|
const campus = this.campusChip.value;
|
||||||
|
const lecture = this.lectureChip.value;
|
||||||
|
|
||||||
|
const result: TabSelect[] = [];
|
||||||
|
|
||||||
|
if (campus)
|
||||||
|
result.push(new TabSelect(campus, this.campuses!.find(x => x.id === campus)?.codeName ?? ''));
|
||||||
|
|
||||||
|
if (lecture)
|
||||||
|
result.push(new TabSelect(lecture, this.lectureHallsFiltered!.find(x => x.id === lecture)?.name ?? ''));
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
getEnclosureList(): string[] {
|
||||||
|
return Object.keys(Enclosure).filter((item) => {
|
||||||
|
return isNaN(Number(item));
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected loadCampuses() {
|
protected loadCampuses() {
|
||||||
@ -62,7 +83,7 @@ export class LectureHallComponent implements IScheduleTab {
|
|||||||
.subscribe(data => {
|
.subscribe(data => {
|
||||||
this.campuses = data;
|
this.campuses = data;
|
||||||
|
|
||||||
let selected = TabStorageService.selected?.selected['campus'];
|
let selected = TabStorageService.selected?.selected[this.getEnclosureList()[Enclosure.campus]];
|
||||||
if (selected) {
|
if (selected) {
|
||||||
let selectedCampus = data.find(x => x.id === selected.index);
|
let selectedCampus = data.find(x => x.id === selected.index);
|
||||||
|
|
||||||
@ -71,7 +92,7 @@ export class LectureHallComponent implements IScheduleTab {
|
|||||||
|
|
||||||
if (selectedCampus !== undefined) {
|
if (selectedCampus !== undefined) {
|
||||||
TabStorageService.trySelectChip(selectedCampus.id, this.campusChip);
|
TabStorageService.trySelectChip(selectedCampus.id, this.campusChip);
|
||||||
this.onCampusSelected(selectedCampus.id);
|
this.onCampusSelected(selectedCampus.id, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -81,10 +102,14 @@ export class LectureHallComponent implements IScheduleTab {
|
|||||||
this.lectureHallsFiltered = this.lectureHalls?.filter(x => x.campusId === this.campusId) ?? null;
|
this.lectureHallsFiltered = this.lectureHalls?.filter(x => x.campusId === this.campusId) ?? null;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected onCampusSelected(index: number) {
|
protected onCampusSelected(index: number, loadMode: boolean = false) {
|
||||||
this.formLectureHalls.reset();
|
this.formLectureHalls.reset();
|
||||||
|
this.lectureChip.value = undefined;
|
||||||
|
|
||||||
this.tabStorage.select(new TabSelect(index, this.campuses!.find(x => x.id === index)?.codeName ?? ''), TabSelectType.lecture, 'campus');
|
if (loadMode)
|
||||||
|
this.campusChip.value = index;
|
||||||
|
else
|
||||||
|
this.selectChangeEvent.emit(this.getSelectedTabs());
|
||||||
|
|
||||||
if (index === undefined) {
|
if (index === undefined) {
|
||||||
this.campusId = null;
|
this.campusId = null;
|
||||||
@ -111,7 +136,7 @@ export class LectureHallComponent implements IScheduleTab {
|
|||||||
this.lectureHalls = data;
|
this.lectureHalls = data;
|
||||||
this.filteringLectureHalls();
|
this.filteringLectureHalls();
|
||||||
|
|
||||||
let selected = TabStorageService.selected?.selected['lecture'];
|
let selected = TabStorageService.selected?.selected[this.getEnclosureList()[Enclosure.lecture]];
|
||||||
if (selected) {
|
if (selected) {
|
||||||
let selectedLecture = data.find(x => x.id === selected.index);
|
let selectedLecture = data.find(x => x.id === selected.index);
|
||||||
|
|
||||||
@ -120,17 +145,20 @@ export class LectureHallComponent implements IScheduleTab {
|
|||||||
|
|
||||||
if (selectedLecture !== undefined) {
|
if (selectedLecture !== undefined) {
|
||||||
TabStorageService.trySelectChip(selectedLecture.id, this.lectureChip);
|
TabStorageService.trySelectChip(selectedLecture.id, this.lectureChip);
|
||||||
this.onLectureHallSelected(selectedLecture.id);
|
this.onLectureHallSelected(selectedLecture.id, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected onLectureHallSelected(index: number) {
|
protected onLectureHallSelected(index: number, loadMode: boolean = false) {
|
||||||
if (index === undefined)
|
if (index === undefined)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this.tabStorage.select(new TabSelect(index, this.lectureHallsFiltered!.find(x => x.id === index)?.name ?? ''), TabSelectType.lecture, 'lecture');
|
if (loadMode)
|
||||||
|
this.lectureChip.value = index;
|
||||||
|
else
|
||||||
|
this.selectChangeEvent.emit(this.getSelectedTabs());
|
||||||
|
|
||||||
this.lecturePanel.close();
|
this.lecturePanel.close();
|
||||||
this.eventResult.emit(index);
|
this.eventResult.emit(index);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Component, EventEmitter, OnInit, Output, ViewChild} from "@angular/core";
|
import {Component, EventEmitter, OnInit, ViewChild} from "@angular/core";
|
||||||
import {MatFormField, MatInput} from "@angular/material/input";
|
import {MatFormField, MatInput} from "@angular/material/input";
|
||||||
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
import {FormControl, ReactiveFormsModule} from "@angular/forms";
|
||||||
import {MatAutocompleteModule} from "@angular/material/autocomplete";
|
import {MatAutocompleteModule} from "@angular/material/autocomplete";
|
||||||
@ -8,7 +8,7 @@ import {LoadingIndicatorComponent} from "@component/common/loading-indicator/loa
|
|||||||
import {ProfessorResponse} from "@api/v1/professorResponse";
|
import {ProfessorResponse} from "@api/v1/professorResponse";
|
||||||
import {ProfessorService} from "@api/v1/professor.service";
|
import {ProfessorService} from "@api/v1/professor.service";
|
||||||
import {IScheduleTab} from "@component/schedule/tabs/ischedule-tab";
|
import {IScheduleTab} from "@component/schedule/tabs/ischedule-tab";
|
||||||
import {TabSelect, TabSelectData, TabSelectType, TabStorageService} from "@service/tab-storage.service";
|
import {TabSelect, TabStorageService} from "@service/tab-storage.service";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-professor',
|
selector: 'app-professor',
|
||||||
@ -33,13 +33,14 @@ export class ProfessorComponent implements OnInit, IScheduleTab {
|
|||||||
|
|
||||||
@ViewChild('professorIndicator') professorIndicator!: LoadingIndicatorComponent;
|
@ViewChild('professorIndicator') professorIndicator!: LoadingIndicatorComponent;
|
||||||
|
|
||||||
@Output() eventResult = new EventEmitter<number>();
|
public eventResult = new EventEmitter<number>();
|
||||||
|
public selectChangeEvent = new EventEmitter<TabSelect[]>();
|
||||||
|
|
||||||
constructor(private api: ProfessorService, private tabStorage: TabStorageService) {
|
constructor(private api: ProfessorService) {
|
||||||
}
|
}
|
||||||
|
|
||||||
existParams(data: TabSelectData): boolean {
|
getEnclosureList(): string[] {
|
||||||
return data.selected['professor'] !== undefined;
|
return ['professor'];
|
||||||
}
|
}
|
||||||
|
|
||||||
protected loadProfessors() {
|
protected loadProfessors() {
|
||||||
@ -95,7 +96,7 @@ export class ProfessorComponent implements OnInit, IScheduleTab {
|
|||||||
this.professorControl.setValue(selectedOption.name);
|
this.professorControl.setValue(selectedOption.name);
|
||||||
this.eventResult.emit(selectedOption.id);
|
this.eventResult.emit(selectedOption.id);
|
||||||
|
|
||||||
this.tabStorage.select(new TabSelect(selectedOption.id, selectedOption.name), TabSelectType.professor, 'professor');
|
this.selectChangeEvent.emit([new TabSelect(selectedOption.id, selectedOption.name)]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,17 +3,17 @@
|
|||||||
(selectedTabChange)="chooseTabs($event.index)">
|
(selectedTabChange)="chooseTabs($event.index)">
|
||||||
<mat-tab label="Группа">
|
<mat-tab label="Группа">
|
||||||
<div>
|
<div>
|
||||||
<app-group #groupTab (eventResult)="groupSelected($event)"/>
|
<app-group #groupTab/>
|
||||||
</div>
|
</div>
|
||||||
</mat-tab>
|
</mat-tab>
|
||||||
<mat-tab label="Преподаватель">
|
<mat-tab label="Преподаватель">
|
||||||
<div>
|
<div>
|
||||||
<app-professor #professorTab (eventResult)="professorSelected($event)"/>
|
<app-professor #professorTab/>
|
||||||
</div>
|
</div>
|
||||||
</mat-tab>
|
</mat-tab>
|
||||||
<mat-tab label="Кабинет">
|
<mat-tab label="Кабинет">
|
||||||
<div>
|
<div>
|
||||||
<app-lecture-hall #lectureHallTab (eventResult)="lectureHallSelected($event)"/>
|
<app-lecture-hall #lectureHallTab/>
|
||||||
</div>
|
</div>
|
||||||
</mat-tab>
|
</mat-tab>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ import {GroupService} from "@api/v1/group.service";
|
|||||||
import {ProfessorService} from "@api/v1/professor.service";
|
import {ProfessorService} from "@api/v1/professor.service";
|
||||||
import {AuthRoles} from "@model/AuthRoles";
|
import {AuthRoles} from "@model/AuthRoles";
|
||||||
import {HasRoleDirective} from "@/directives/has-role.directive";
|
import {HasRoleDirective} from "@/directives/has-role.directive";
|
||||||
import {TabStorageService} from "@service/tab-storage.service";
|
import {TabSelectType, TabStorageService} from "@service/tab-storage.service";
|
||||||
|
|
||||||
export enum TabsSelect {
|
export enum TabsSelect {
|
||||||
Group,
|
Group,
|
||||||
@ -49,77 +49,91 @@ export enum TabsSelect {
|
|||||||
|
|
||||||
export class TabsComponent implements AfterViewInit {
|
export class TabsComponent implements AfterViewInit {
|
||||||
@Output() eventResult = new EventEmitter<[TabsSelect, number, Observable<ScheduleResponse[]>]>();
|
@Output() eventResult = new EventEmitter<[TabsSelect, number, Observable<ScheduleResponse[]>]>();
|
||||||
|
private currentTab: number = -1;
|
||||||
|
|
||||||
constructor(private scheduleApi: ScheduleService,
|
constructor(private scheduleApi: ScheduleService,
|
||||||
private disciplineApi: DisciplineService,
|
private disciplineApi: DisciplineService,
|
||||||
private lectureApi: LectureHallService,
|
private lectureApi: LectureHallService,
|
||||||
private groupApi: GroupService,
|
private groupApi: GroupService,
|
||||||
private professorApi: ProfessorService) {
|
private professorApi: ProfessorService,
|
||||||
|
private tabStorage: TabStorageService) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ngAfterViewInit(): void {
|
ngAfterViewInit(): void {
|
||||||
|
this.groupTab.selectChangeEvent.subscribe(event => this.tabStorage.select(TabSelectType.group, event));
|
||||||
|
this.professorTab.selectChangeEvent.subscribe(event => this.tabStorage.select(TabSelectType.professor, event));
|
||||||
|
this.lectureHallTab.selectChangeEvent.subscribe(event => this.tabStorage.select(TabSelectType.lecture, event));
|
||||||
|
|
||||||
|
this.groupTab.eventResult.subscribe(event => this.eventResult.emit(
|
||||||
|
[
|
||||||
|
TabsSelect.Group,
|
||||||
|
event,
|
||||||
|
this.scheduleApi.getByGroup(event)
|
||||||
|
]
|
||||||
|
));
|
||||||
|
|
||||||
|
this.professorTab.eventResult.subscribe(event => this.eventResult.emit(
|
||||||
|
[
|
||||||
|
TabsSelect.Professor,
|
||||||
|
event,
|
||||||
|
this.scheduleApi.getByProfessor(event)
|
||||||
|
]
|
||||||
|
));
|
||||||
|
|
||||||
|
this.lectureHallTab.eventResult.subscribe(event => this.eventResult.emit(
|
||||||
|
[
|
||||||
|
TabsSelect.LectureHall,
|
||||||
|
event,
|
||||||
|
this.scheduleApi.getByLectureHall(event)
|
||||||
|
]
|
||||||
|
));
|
||||||
|
|
||||||
let selected = TabStorageService.selected;
|
let selected = TabStorageService.selected;
|
||||||
|
|
||||||
let index = 0;
|
let index = 0;
|
||||||
|
|
||||||
if (selected !== null) {
|
if (selected !== null) {
|
||||||
|
const selectedKeys = Object.keys(selected?.selected);
|
||||||
if (selected.type === null) {
|
if (selected.type === null) {
|
||||||
if (this.groupTab.existParams(selected))
|
if (this.groupTab.getEnclosureList().every((value, index) => value === selectedKeys[index]))
|
||||||
index = 0;
|
index = 0;
|
||||||
else if (this.professorTab.existParams(selected))
|
else if (this.professorTab.getEnclosureList().every((value, index) => value === selectedKeys[index]))
|
||||||
index = 1;
|
index = 1;
|
||||||
else if (this.lectureHallTab.existParams(selected))
|
else if (this.lectureHallTab.getEnclosureList().every((value, index) => value === selectedKeys[index]))
|
||||||
index = 2;
|
index = 2;
|
||||||
} else
|
} else
|
||||||
index = selected.type;
|
index = selected.type;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (index === null || index === 0)
|
if (index === 0)
|
||||||
this.chooseTabs(0).then();
|
this.chooseTabs(0).then();
|
||||||
else
|
else
|
||||||
this.tabs.selectedIndex = index;
|
this.tabs.selectedIndex = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected groupSelected(id: number) {
|
|
||||||
this.eventResult.emit(
|
|
||||||
[
|
|
||||||
TabsSelect.Group,
|
|
||||||
id,
|
|
||||||
this.scheduleApi.getByGroup(id)
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected professorSelected(id: number) {
|
|
||||||
this.eventResult.emit(
|
|
||||||
[
|
|
||||||
TabsSelect.Professor,
|
|
||||||
id,
|
|
||||||
this.scheduleApi.getByProfessor(id)
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected lectureHallSelected(id: number) {
|
|
||||||
this.eventResult.emit(
|
|
||||||
[
|
|
||||||
TabsSelect.LectureHall,
|
|
||||||
id,
|
|
||||||
this.scheduleApi.getByLectureHall(id)
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected async chooseTabs(index: number) {
|
protected async chooseTabs(index: number) {
|
||||||
|
let needGetEnclosure = false;
|
||||||
|
|
||||||
|
if (this.currentTab !== index) {
|
||||||
|
this.currentTab = index;
|
||||||
|
needGetEnclosure = true;
|
||||||
|
}
|
||||||
|
|
||||||
switch (index) {
|
switch (index) {
|
||||||
case 0:
|
case 0:
|
||||||
this.groupTab.load();
|
this.groupTab.load();
|
||||||
|
if (needGetEnclosure)
|
||||||
|
this.tabStorage.enclosure = this.groupTab.getEnclosureList();
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
this.professorTab.load();
|
this.professorTab.load();
|
||||||
|
if (needGetEnclosure)
|
||||||
|
this.tabStorage.enclosure = this.professorTab.getEnclosureList();
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
this.lectureHallTab.load();
|
this.lectureHallTab.load();
|
||||||
|
if (needGetEnclosure)
|
||||||
|
this.tabStorage.enclosure = this.lectureHallTab.getEnclosureList();
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
await this.loadDisciplines();
|
await this.loadDisciplines();
|
||||||
|
@ -30,6 +30,7 @@ export interface TabSelectData {
|
|||||||
})
|
})
|
||||||
export class TabStorageService {
|
export class TabStorageService {
|
||||||
private static dataName = 'tabSelectedData';
|
private static dataName = 'tabSelectedData';
|
||||||
|
private _enclosure: string[] = [];
|
||||||
|
|
||||||
constructor(private router: Router, private location: Location) {
|
constructor(private router: Router, private location: Location) {
|
||||||
}
|
}
|
||||||
@ -52,27 +53,18 @@ export class TabStorageService {
|
|||||||
}, 100);
|
}, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
private resetIfNeed(type: TabSelectType) {
|
public set enclosure(data: string[]) {
|
||||||
let selectedData = TabStorageService.selected;
|
this._enclosure = data;
|
||||||
|
|
||||||
if (selectedData === null || selectedData?.type === null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (selectedData.type !== type) {
|
|
||||||
localStorage.removeItem(TabStorageService.dataName);
|
|
||||||
const currentUrl = this.router.url.split('?')[0];
|
|
||||||
this.location.replaceState(currentUrl);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public select(selected: TabSelect, type: TabSelectType, navigateName: string) {
|
public select(type: TabSelectType, tabSelected: TabSelect[]) {
|
||||||
this.resetIfNeed(type);
|
let selectedData = {selected: {}} as TabSelectData;
|
||||||
let selectedData = TabStorageService.selected;
|
|
||||||
|
|
||||||
if (selectedData === null || !selectedData.selected)
|
for (let index = 0; index < this._enclosure.length; index++) {
|
||||||
selectedData = {selected: {}} as TabSelectData;
|
if (tabSelected[index])
|
||||||
|
selectedData.selected[this._enclosure[index]] = tabSelected[index];
|
||||||
|
}
|
||||||
|
|
||||||
selectedData.selected[navigateName] = selected;
|
|
||||||
selectedData.type = type;
|
selectedData.type = type;
|
||||||
|
|
||||||
localStorage.setItem(TabStorageService.dataName, JSON.stringify(selectedData));
|
localStorage.setItem(TabStorageService.dataName, JSON.stringify(selectedData));
|
||||||
|
Loading…
Reference in New Issue
Block a user