Skip to content
Snippets Groups Projects
favorites-container.component.ts 1.74 KiB
Newer Older
import { Component, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { Store, select } from '@ngrx/store';
import { SavedForLaterCourse } from '@app/core/models/saved-for-later-course';
import { GlobalState } from '@app/core/state';
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
import { getSavedForLaterCourses } from '@app/degree-planner/store/selectors';
pnogal's avatar
pnogal committed

jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
import { DegreePlannerState } from '@app/degree-planner/store/state';
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
  AddSavedForLaterRequest,
  RemoveCourseRequest,
} from '@app/degree-planner/store/actions/plan.actions';
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
import { getDropZones } from '@app/degree-planner/store/selectors';
pnogal's avatar
pnogal committed
@Component({
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
  selector: 'cse-favorites-container',
  templateUrl: './favorites-container.component.html',
  styleUrls: ['./favorites-container.component.scss'],
pnogal's avatar
pnogal committed
})
export class SavedForLaterContainerComponent implements OnInit {
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
  public courses$: Observable<SavedForLaterCourse[]>;
  public dropZones$: Observable<String[]>;

  constructor(private store: Store<{ degreePlanner: DegreePlannerState }>) {}

  public ngOnInit() {
    this.dropZones$ = this.store.pipe(select(getDropZones));
    this.courses$ = this.store.pipe(select(getSavedForLaterCourses));
  }

  drop(event) {
    const newContainer = event.container.id;
    const previousContainer = event.previousContainer.id;

    if (newContainer === previousContainer) {
      // If the user dropped a course into the same container do nothing
      return;
    } else if (previousContainer.indexOf('term-') === 0) {
      // If moving from term to to saved for later

      const { subjectCode, courseId, id } = event.item.data;
      this.store.dispatch(
        new AddSavedForLaterRequest({ subjectCode, courseId }),
      );
      this.store.dispatch(new RemoveCourseRequest({ id }));
    }
  }
pnogal's avatar
pnogal committed
}