120 lines
4.5 KiB
TypeScript
120 lines
4.5 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { ChangeDetectorRef, Component } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { ActivatedRoute, Router, RouterModule } from '@angular/router';
|
|
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
|
|
import dayjs from 'dayjs';
|
|
import { BusinessListing } from '../../../../../../bizmatch-server/src/models/db.model';
|
|
import { BusinessListingCriteria, LISTINGS_PER_PAGE, ListingType, emailToDirName } from '../../../../../../bizmatch-server/src/models/main.model';
|
|
import { environment } from '../../../../environments/environment';
|
|
import { PaginatorComponent } from '../../../components/paginator/paginator.component';
|
|
import { ModalService } from '../../../components/search-modal/modal.service';
|
|
import { CriteriaChangeService } from '../../../services/criteria-change.service';
|
|
import { ImageService } from '../../../services/image.service';
|
|
import { ListingsService } from '../../../services/listings.service';
|
|
import { SearchService } from '../../../services/search.service';
|
|
import { SelectOptionsService } from '../../../services/select-options.service';
|
|
import { assignProperties, getCriteriaProxy, resetBusinessListingCriteria } from '../../../utils/utils';
|
|
@UntilDestroy()
|
|
@Component({
|
|
selector: 'app-business-listings',
|
|
standalone: true,
|
|
imports: [CommonModule, FormsModule, RouterModule, PaginatorComponent],
|
|
templateUrl: './business-listings.component.html',
|
|
styleUrls: ['./business-listings.component.scss', '../../pages.scss'],
|
|
})
|
|
export class BusinessListingsComponent {
|
|
environment = environment;
|
|
listings: Array<BusinessListing>;
|
|
filteredListings: Array<BusinessListing>;
|
|
criteria: BusinessListingCriteria;
|
|
realEstateChecked: boolean;
|
|
maxPrice: string;
|
|
minPrice: string;
|
|
type: string;
|
|
state: string;
|
|
totalRecords: number = 0;
|
|
ts = new Date().getTime();
|
|
first: number = 0;
|
|
rows: number = 12;
|
|
env = environment;
|
|
public category: 'business' | 'commercialProperty' | 'professionals_brokers' | undefined;
|
|
page = 1;
|
|
pageCount = 1;
|
|
emailToDirName = emailToDirName;
|
|
constructor(
|
|
public selectOptions: SelectOptionsService,
|
|
private listingsService: ListingsService,
|
|
private activatedRoute: ActivatedRoute,
|
|
private router: Router,
|
|
private cdRef: ChangeDetectorRef,
|
|
private imageService: ImageService,
|
|
private route: ActivatedRoute,
|
|
private searchService: SearchService,
|
|
private modalService: ModalService,
|
|
private criteriaChangeService: CriteriaChangeService,
|
|
) {
|
|
this.criteria = getCriteriaProxy('businessListings', this) as BusinessListingCriteria;
|
|
this.init();
|
|
this.searchService.currentCriteria.pipe(untilDestroyed(this)).subscribe(criteria => {
|
|
if (criteria && criteria.criteriaType === 'businessListings') {
|
|
this.criteria = criteria as BusinessListingCriteria;
|
|
this.search();
|
|
}
|
|
});
|
|
}
|
|
async ngOnInit() {
|
|
this.search();
|
|
}
|
|
async init() {
|
|
this.reset();
|
|
}
|
|
|
|
async search() {
|
|
const listingReponse = await this.listingsService.getListings(this.criteria, 'business');
|
|
this.listings = listingReponse.results;
|
|
this.totalRecords = listingReponse.totalCount;
|
|
this.pageCount = this.totalRecords % LISTINGS_PER_PAGE === 0 ? this.totalRecords / LISTINGS_PER_PAGE : Math.floor(this.totalRecords / LISTINGS_PER_PAGE) + 1;
|
|
this.page = this.criteria.page ? this.criteria.page : 1;
|
|
this.cdRef.markForCheck();
|
|
this.cdRef.detectChanges();
|
|
}
|
|
onPageChange(page: any) {
|
|
this.criteria.start = (page - 1) * LISTINGS_PER_PAGE;
|
|
this.criteria.length = LISTINGS_PER_PAGE;
|
|
this.criteria.page = page;
|
|
this.search();
|
|
}
|
|
imageErrorHandler(listing: ListingType) {}
|
|
reset() {
|
|
this.criteria.title = null;
|
|
}
|
|
getDaysListed(listing: BusinessListing) {
|
|
return dayjs().diff(listing.created, 'day');
|
|
}
|
|
// New methods for filter actions
|
|
clearAllFilters() {
|
|
// Reset criteria to default values
|
|
resetBusinessListingCriteria(this.criteria);
|
|
|
|
// Reset pagination
|
|
this.criteria.page = 1;
|
|
this.criteria.start = 0;
|
|
|
|
this.criteriaChangeService.notifyCriteriaChange();
|
|
|
|
// Search with cleared filters
|
|
this.searchService.search(this.criteria);
|
|
}
|
|
|
|
async openFilterModal() {
|
|
// Open the search modal with current criteria
|
|
const modalResult = await this.modalService.showModal(this.criteria);
|
|
if (modalResult.accepted) {
|
|
this.searchService.search(this.criteria);
|
|
} else {
|
|
this.criteria = assignProperties(this.criteria, modalResult.criteria);
|
|
}
|
|
}
|
|
}
|