mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-27 02:23:10 +00:00
127 lines
3.4 KiB
TypeScript
127 lines
3.4 KiB
TypeScript
import { Component, OnDestroy, OnInit } from '@angular/core';
|
|
import { Subject } from 'rxjs';
|
|
import { takeUntil } from 'rxjs/operators';
|
|
|
|
import { fuseAnimations } from '@fuse/animations';
|
|
|
|
import { AcademyCoursesService } from 'app/main/apps/academy/courses.service';
|
|
|
|
@Component({
|
|
selector : 'academy-courses',
|
|
templateUrl: './courses.component.html',
|
|
styleUrls : ['./courses.component.scss'],
|
|
animations : fuseAnimations
|
|
})
|
|
export class AcademyCoursesComponent implements OnInit, OnDestroy
|
|
{
|
|
categories: any[];
|
|
courses: any[];
|
|
coursesFilteredByCategory: any[];
|
|
filteredCourses: any[];
|
|
currentCategory: string;
|
|
searchTerm: string;
|
|
|
|
// Private
|
|
private _unsubscribeAll: Subject<any>;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param {AcademyCoursesService} _academyCoursesService
|
|
*/
|
|
constructor(
|
|
private _academyCoursesService: AcademyCoursesService
|
|
)
|
|
{
|
|
// Set the defaults
|
|
this.currentCategory = 'all';
|
|
this.searchTerm = '';
|
|
|
|
// Set the private defaults
|
|
this._unsubscribeAll = new Subject();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Lifecycle hooks
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* On init
|
|
*/
|
|
ngOnInit(): void
|
|
{
|
|
// Subscribe to categories
|
|
this._academyCoursesService.onCategoriesChanged
|
|
.pipe(takeUntil(this._unsubscribeAll))
|
|
.subscribe(categories => {
|
|
this.categories = categories;
|
|
});
|
|
|
|
// Subscribe to courses
|
|
this._academyCoursesService.onCoursesChanged
|
|
.pipe(takeUntil(this._unsubscribeAll))
|
|
.subscribe(courses => {
|
|
this.filteredCourses = this.coursesFilteredByCategory = this.courses = courses;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* On destroy
|
|
*/
|
|
ngOnDestroy(): void
|
|
{
|
|
// Unsubscribe from all subscriptions
|
|
this._unsubscribeAll.next();
|
|
this._unsubscribeAll.complete();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Public methods
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Filter courses by category
|
|
*/
|
|
filterCoursesByCategory(): void
|
|
{
|
|
// Filter
|
|
if ( this.currentCategory === 'all' )
|
|
{
|
|
this.coursesFilteredByCategory = this.courses;
|
|
this.filteredCourses = this.courses;
|
|
}
|
|
else
|
|
{
|
|
this.coursesFilteredByCategory = this.courses.filter((course) => {
|
|
return course.category === this.currentCategory;
|
|
});
|
|
|
|
this.filteredCourses = [...this.coursesFilteredByCategory];
|
|
|
|
}
|
|
|
|
// Re-filter by search term
|
|
this.filterCoursesByTerm();
|
|
}
|
|
|
|
/**
|
|
* Filter courses by term
|
|
*/
|
|
filterCoursesByTerm(): void
|
|
{
|
|
const searchTerm = this.searchTerm.toLowerCase();
|
|
|
|
// Search
|
|
if ( searchTerm === '' )
|
|
{
|
|
this.filteredCourses = this.coursesFilteredByCategory;
|
|
}
|
|
else
|
|
{
|
|
this.filteredCourses = this.coursesFilteredByCategory.filter((course) => {
|
|
return course.title.toLowerCase().includes(searchTerm);
|
|
});
|
|
}
|
|
}
|
|
}
|