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 { 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 { getCriteriaProxy } 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; filteredListings: Array; 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, ) { 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'); } }