From 1a8e2fcd31b29be7d1a62ffe5e7c89a924192c90 Mon Sep 17 00:00:00 2001 From: JUNG YI DAM Date: Wed, 13 Jul 2022 11:34:11 +0000 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=ED=8A=B8=EB=84=88=EC=9D=BC=EC=9D=BC?= =?UTF-8?q?=ED=98=84=ED=99=A9=20page=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/app.routing.ts | 7 + .../mock-api/apps/report/daily-partner/api.ts | 221 +++++++++++ .../apps/report/daily-partner/data.ts | 33 ++ src/app/mock-api/common/navigation/data.ts | 7 + src/app/mock-api/index.ts | 2 + .../report/daily-partner/components/index.ts | 3 + .../components/list.component.html | 356 ++++++++++++++++++ .../components/list.component.ts | 198 ++++++++++ .../daily-partner/daily-partner.module.ts | 50 +++ .../daily-partner/daily-partner.routing.ts | 24 ++ .../models/daily-partner-pagination.ts | 8 + .../daily-partner/models/daily-partner.ts | 29 ++ .../resolvers/daily-partner.resolver.ts | 89 +++++ .../services/daily-partner.service.ts | 158 ++++++++ src/assets/i18n/en.json | 3 +- src/assets/i18n/ko.json | 3 +- 16 files changed, 1189 insertions(+), 2 deletions(-) create mode 100644 src/app/mock-api/apps/report/daily-partner/api.ts create mode 100644 src/app/mock-api/apps/report/daily-partner/data.ts create mode 100644 src/app/modules/admin/report/daily-partner/components/index.ts create mode 100644 src/app/modules/admin/report/daily-partner/components/list.component.html create mode 100644 src/app/modules/admin/report/daily-partner/components/list.component.ts create mode 100644 src/app/modules/admin/report/daily-partner/daily-partner.module.ts create mode 100644 src/app/modules/admin/report/daily-partner/daily-partner.routing.ts create mode 100644 src/app/modules/admin/report/daily-partner/models/daily-partner-pagination.ts create mode 100644 src/app/modules/admin/report/daily-partner/models/daily-partner.ts create mode 100644 src/app/modules/admin/report/daily-partner/resolvers/daily-partner.resolver.ts create mode 100644 src/app/modules/admin/report/daily-partner/services/daily-partner.service.ts diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index 50d44a7..08d0932 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -324,6 +324,13 @@ export const appRoutes: Route[] = [ (m: any) => m.MonthlyModule ), }, + { + path: 'daily-partner', + loadChildren: () => + import( + 'app/modules/admin/report/daily-partner/daily-partner.module' + ).then((m: any) => m.DailyPartnerModule), + }, ], }, ], diff --git a/src/app/mock-api/apps/report/daily-partner/api.ts b/src/app/mock-api/apps/report/daily-partner/api.ts new file mode 100644 index 0000000..8acb3da --- /dev/null +++ b/src/app/mock-api/apps/report/daily-partner/api.ts @@ -0,0 +1,221 @@ +import { Injectable } from '@angular/core'; +import { assign, cloneDeep } from 'lodash-es'; +import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api'; +import { dailyPartners as dailyPartnersData } from './data'; + +@Injectable({ + providedIn: 'root', +}) +export class ReportDailyPartnerMockApi { + private _dailyPartners: any[] = dailyPartnersData; + + /** + * Constructor + */ + constructor(private _fuseMockApiService: FuseMockApiService) { + // Register Mock API handlers + this.registerHandlers(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Register Mock API handlers + */ + registerHandlers(): void { + // ----------------------------------------------------------------------------------------------------- + // @ DailyPartners - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/report/dailyPartner/dailyPartners', 300) + .reply(({ request }) => { + // Get available queries + const search = request.params.get('search'); + const sort = request.params.get('sort') || 'name'; + const order = request.params.get('order') || 'asc'; + const page = parseInt(request.params.get('page') ?? '1', 10); + const size = parseInt(request.params.get('size') ?? '10', 10); + + // Clone the dailyPartners + let dailyPartners: any[] | null = cloneDeep(this._dailyPartners); + + // Sort the dailyPartners + if (sort === 'sku' || sort === 'name' || sort === 'active') { + dailyPartners.sort((a, b) => { + const fieldA = a[sort].toString().toUpperCase(); + const fieldB = b[sort].toString().toUpperCase(); + return order === 'asc' + ? fieldA.localeCompare(fieldB) + : fieldB.localeCompare(fieldA); + }); + } else { + dailyPartners.sort((a, b) => + order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort] + ); + } + + // If search exists... + if (search) { + // Filter the dailyPartners + dailyPartners = dailyPartners.filter( + (contact: any) => + contact.name && + contact.name.toLowerCase().includes(search.toLowerCase()) + ); + } + + // Paginate - Start + const dailyPartnersLength = dailyPartners.length; + + // Calculate pagination details + const begin = page * size; + const end = Math.min(size * (page + 1), dailyPartnersLength); + const lastPage = Math.max(Math.ceil(dailyPartnersLength / size), 1); + + // Prepare the pagination object + let pagination = {}; + + // If the requested page number is bigger than + // the last possible page number, return null for + // dailyPartners but also send the last possible page so + // the app can navigate to there + if (page > lastPage) { + dailyPartners = null; + pagination = { + lastPage, + }; + } else { + // Paginate the results by size + dailyPartners = dailyPartners.slice(begin, end); + + // Prepare the pagination mock-api + pagination = { + length: dailyPartnersLength, + size: size, + page: page, + lastPage: lastPage, + startIndex: begin, + endIndex: end - 1, + }; + } + + // Return the response + return [ + 200, + { + dailyPartners, + pagination, + }, + ]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ DailyPartner - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/report/daily-partner/daily-partner') + .reply(({ request }) => { + // Get the id from the params + const id = request.params.get('id'); + + // Clone the dailyPartners + const dailyPartners = cloneDeep(this._dailyPartners); + + // Find the dailyPartner + const dailyPartner = dailyPartners.find((item: any) => item.id === id); + + // Return the response + return [200, dailyPartner]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ DailyPartner - POST + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPost('api/apps/report/daily-partner/daily-partner') + .reply(() => { + // Generate a new dailyPartner + const newDailyPartner = { + id: FuseMockApiUtils.guid(), + category: '', + name: 'A New User', + description: '', + tags: [], + sku: '', + barcode: '', + brand: '', + vendor: '', + stock: '', + reserved: '', + cost: '', + basePrice: '', + taxPercent: '', + price: '', + weight: '', + thumbnail: '', + images: [], + active: false, + }; + + // Unshift the new dailyPartner + this._dailyPartners.unshift(newDailyPartner); + + // Return the response + return [200, newDailyPartner]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ DailyPartner - PATCH + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPatch('api/apps/report/daily-partner/daily-partner') + .reply(({ request }) => { + // Get the id and dailyPartner + const id = request.body.id; + const dailyPartner = cloneDeep(request.body.dailyPartner); + + // Prepare the updated dailyPartner + let updatedDailyPartner = null; + + // Find the dailyPartner and update it + this._dailyPartners.forEach((item, index, dailyPartners) => { + if (item.id === id) { + // Update the dailyPartner + dailyPartners[index] = assign( + {}, + dailyPartners[index], + dailyPartner + ); + + // Store the updated dailyPartner + updatedDailyPartner = dailyPartners[index]; + } + }); + + // Return the response + return [200, updatedDailyPartner]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ DailyPartner - DELETE + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onDelete('api/apps/report/daily-partner/daily-partner') + .reply(({ request }) => { + // Get the id + const id = request.params.get('id'); + + // Find the dailyPartner and delete it + this._dailyPartners.forEach((item, index) => { + if (item.id === id) { + this._dailyPartners.splice(index, 1); + } + }); + + // Return the response + return [200, true]; + }); + } +} diff --git a/src/app/mock-api/apps/report/daily-partner/data.ts b/src/app/mock-api/apps/report/daily-partner/data.ts new file mode 100644 index 0000000..183962c --- /dev/null +++ b/src/app/mock-api/apps/report/daily-partner/data.ts @@ -0,0 +1,33 @@ +/* eslint-disable */ + +export const dailyPartners = [ + { + id: 'on00', + totalPartnerCount: '5', + totalHoldingMoney: 303675, + totalComp: 108933, + total: 412608, + branchCount: 1, + divisionCount: 1, + officeCount: 1, + storeCount: 1, + memberCount: 1, + nickname: 'on00', + accountHolder: '11', + phoneNumber: '010-1111-1111', + calculateType: '롤링', + ownCash: 50000, + ownComp: 1711, + ownCoupon: 50000, + gameMoney: 0, + todayComp: 0, + totalDeposit: 0, + totalWithdraw: 0, + balance: 0, + registDate: '2022-06-12 15:38', + finalSigninDate: '', + ip: '', + state: '정상', + note: '', + }, +]; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index f1b1e2f..744ea30 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -236,6 +236,13 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon: 'heroicons_outline:academic-cap', link: '/report/monthly', }, + { + id: 'report.daily-partner', + title: 'Daily Partner', + type: 'basic', + icon: 'heroicons_outline:academic-cap', + link: '/report/daily-partner', + }, ], }, ]; diff --git a/src/app/mock-api/index.ts b/src/app/mock-api/index.ts index c4aa2d4..3f7a3c4 100644 --- a/src/app/mock-api/index.ts +++ b/src/app/mock-api/index.ts @@ -43,6 +43,7 @@ import { GameSlotMockApi } from './apps/game/slot/api'; import { BasicSettingMockApi } from './apps/settings/basic/api'; import { ReportDailyMockApi } from './apps/report/daily/api'; import { ReportMonthlyMockApi } from './apps/report/monthly/api'; +import { ReportDailyPartnerMockApi } from './apps/report/daily-partner/api'; export const mockApiServices = [ AcademyMockApi, @@ -90,4 +91,5 @@ export const mockApiServices = [ BasicSettingMockApi, ReportDailyMockApi, ReportMonthlyMockApi, + ReportDailyPartnerMockApi, ]; diff --git a/src/app/modules/admin/report/daily-partner/components/index.ts b/src/app/modules/admin/report/daily-partner/components/index.ts new file mode 100644 index 0000000..04759eb --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/components/index.ts @@ -0,0 +1,3 @@ +import { ListComponent } from './list.component'; + +export const COMPONENTS = [ListComponent]; diff --git a/src/app/modules/admin/report/daily-partner/components/list.component.html b/src/app/modules/admin/report/daily-partner/components/list.component.html new file mode 100644 index 0000000..9a2c8e0 --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/components/list.component.html @@ -0,0 +1,356 @@ +
+ +
+ +
+ +
+ +
파트너일일현황
+ +
+ + + + + + + 40 + 60 + 80 + 100 + + + + + LV.1 + LV.2 + LV.3 + LV.4 + + + + + 정상 + 대기 + 탈퇴 + 휴면 + 블랙 + 정지 + + + + + 카지노제한 + 슬롯제한 + + + + + 계좌입금 + + + + + 카지노콤프 + 슬롯콤프 + 배팅콤프 + 첫충콤프 + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+
+ + +
+ There are no dailyPartners! +
+
+
+
+
diff --git a/src/app/modules/admin/report/daily-partner/components/list.component.ts b/src/app/modules/admin/report/daily-partner/components/list.component.ts new file mode 100644 index 0000000..c0b7e08 --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/components/list.component.ts @@ -0,0 +1,198 @@ +import { + AfterViewInit, + ChangeDetectionStrategy, + ChangeDetectorRef, + Component, + OnDestroy, + OnInit, + ViewChild, + ViewEncapsulation, +} from '@angular/core'; +import { + FormBuilder, + FormControl, + FormGroup, + Validators, +} from '@angular/forms'; +import { MatCheckboxChange } from '@angular/material/checkbox'; +import { MatPaginator } from '@angular/material/paginator'; +import { MatSort } from '@angular/material/sort'; +import { + debounceTime, + map, + merge, + Observable, + Subject, + switchMap, + takeUntil, +} from 'rxjs'; +import { fuseAnimations } from '@fuse/animations'; +import { FuseConfirmationService } from '@fuse/services/confirmation'; + +import { User } from '../../../member/user/models/user'; +import { DailyPartner } from '../models/daily-partner'; +import { DailyPartnerPagination } from '../models/daily-partner-pagination'; +import { DailyPartnerService } from '../services/daily-partner.service'; +import { Router } from '@angular/router'; + +@Component({ + selector: 'daily-partner-list', + templateUrl: './list.component.html', + styles: [ + /* language=SCSS */ + ` + .inventory-grid { + grid-template-columns: 60px auto 40px; + + @screen sm { + grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px; + } + + @screen md { + grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px 60px; + } + + @screen lg { + grid-template-columns: 60px 70px 70px 70px 70px 100px 60px 60px auto 60px 60px 60px 60px; + } + } + `, + ], + encapsulation: ViewEncapsulation.None, + changeDetection: ChangeDetectionStrategy.OnPush, + animations: fuseAnimations, +}) +export class ListComponent implements OnInit, AfterViewInit, OnDestroy { + @ViewChild(MatPaginator) private _paginator!: MatPaginator; + @ViewChild(MatSort) private _sort!: MatSort; + + dailyPartners$!: Observable; + users$!: Observable; + + isLoading = false; + searchInputControl = new FormControl(); + selectedDailyPartner?: DailyPartner; + pagination?: DailyPartnerPagination; + + private _unsubscribeAll: Subject = new Subject(); + + /** + * Constructor + */ + constructor( + private _changeDetectorRef: ChangeDetectorRef, + private _fuseConfirmationService: FuseConfirmationService, + private _formBuilder: FormBuilder, + private _dailyPartnerService: DailyPartnerService, + private router: Router + ) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Lifecycle hooks + // ----------------------------------------------------------------------------------------------------- + + /** + * On init + */ + ngOnInit(): void { + // Get the pagination + this._dailyPartnerService.pagination$ + .pipe(takeUntil(this._unsubscribeAll)) + .subscribe((pagination: DailyPartnerPagination | undefined) => { + // Update the pagination + this.pagination = pagination; + + // Mark for check + this._changeDetectorRef.markForCheck(); + }); + + // Get the products + this.dailyPartners$ = this._dailyPartnerService.dailyPartners$; + } + + /** + * After view init + */ + ngAfterViewInit(): void { + if (this._sort && this._paginator) { + // Set the initial sort + this._sort.sort({ + id: 'name', + start: 'asc', + disableClear: true, + }); + + // Mark for check + this._changeDetectorRef.markForCheck(); + + // If the dailyPartner changes the sort order... + this._sort.sortChange + .pipe(takeUntil(this._unsubscribeAll)) + .subscribe(() => { + // Reset back to the first page + this._paginator.pageIndex = 0; + }); + + // Get products if sort or page changes + merge(this._sort.sortChange, this._paginator.page) + .pipe( + switchMap(() => { + this.isLoading = true; + return this._dailyPartnerService.getDailyPartners( + this._paginator.pageIndex, + this._paginator.pageSize, + this._sort.active, + this._sort.direction + ); + }), + map(() => { + this.isLoading = false; + }) + ) + .subscribe(); + } + } + + /** + * On destroy + */ + ngOnDestroy(): void { + // Unsubscribe from all subscriptions + this._unsubscribeAll.next(null); + this._unsubscribeAll.complete(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + viewUserDetail(id: string): void { + let url: string = 'member/user/' + id; + this.router.navigateByUrl(url); + } + // ----------------------------------------------------------------------------------------------------- + // @ Private methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Create product + */ + __createProduct(): void {} + + /** + * Toggle product details + * + * @param productId + */ + __toggleDetails(productId: string): void {} + + /** + * Track by function for ngFor loops + * + * @param index + * @param item + */ + __trackByFn(index: number, item: any): any { + return item.id || index; + } +} diff --git a/src/app/modules/admin/report/daily-partner/daily-partner.module.ts b/src/app/modules/admin/report/daily-partner/daily-partner.module.ts new file mode 100644 index 0000000..49aa562 --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/daily-partner.module.ts @@ -0,0 +1,50 @@ +import { NgModule } from '@angular/core'; +import { RouterModule } from '@angular/router'; + +import { MatButtonModule } from '@angular/material/button'; +import { MatFormFieldModule } from '@angular/material/form-field'; +import { MatIconModule } from '@angular/material/icon'; +import { MatInputModule } from '@angular/material/input'; +import { MatPaginatorModule } from '@angular/material/paginator'; +import { MatProgressBarModule } from '@angular/material/progress-bar'; +import { MatRippleModule } from '@angular/material/core'; +import { MatSortModule } from '@angular/material/sort'; +import { MatSelectModule } from '@angular/material/select'; +import { MatTooltipModule } from '@angular/material/tooltip'; +import { MatGridListModule } from '@angular/material/grid-list'; +import { MatSlideToggleModule } from '@angular/material/slide-toggle'; +import { MatRadioModule } from '@angular/material/radio'; +import { MatCheckboxModule } from '@angular/material/checkbox'; + +import { TranslocoModule } from '@ngneat/transloco'; + +import { SharedModule } from 'app/shared/shared.module'; + +import { COMPONENTS } from './components'; + +import { dailyPartnerRoutes } from './daily-partner.routing'; + +@NgModule({ + declarations: [COMPONENTS], + imports: [ + TranslocoModule, + SharedModule, + RouterModule.forChild(dailyPartnerRoutes), + + MatButtonModule, + MatFormFieldModule, + MatIconModule, + MatInputModule, + MatPaginatorModule, + MatProgressBarModule, + MatRippleModule, + MatSortModule, + MatSelectModule, + MatTooltipModule, + MatGridListModule, + MatSlideToggleModule, + MatRadioModule, + MatCheckboxModule, + ], +}) +export class DailyPartnerModule {} diff --git a/src/app/modules/admin/report/daily-partner/daily-partner.routing.ts b/src/app/modules/admin/report/daily-partner/daily-partner.routing.ts new file mode 100644 index 0000000..8f1db63 --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/daily-partner.routing.ts @@ -0,0 +1,24 @@ +import { Route } from '@angular/router'; + +import { ListComponent } from './components/list.component'; +import { ViewComponent } from '../../member/user/components/view.component'; + +import { DailyPartnersResolver } from './resolvers/daily-partner.resolver'; +import { UserResolver } from '../../member/user/resolvers/user.resolver'; + +export const dailyPartnerRoutes: Route[] = [ + { + path: '', + component: ListComponent, + resolve: { + dailyPartners: DailyPartnersResolver, + }, + }, + { + path: ':id', + component: ViewComponent, + resolve: { + users: UserResolver, + }, + }, +]; diff --git a/src/app/modules/admin/report/daily-partner/models/daily-partner-pagination.ts b/src/app/modules/admin/report/daily-partner/models/daily-partner-pagination.ts new file mode 100644 index 0000000..19b3932 --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/models/daily-partner-pagination.ts @@ -0,0 +1,8 @@ +export interface DailyPartnerPagination { + length: number; + size: number; + page: number; + lastPage: number; + startIndex: number; + endIndex: number; +} diff --git a/src/app/modules/admin/report/daily-partner/models/daily-partner.ts b/src/app/modules/admin/report/daily-partner/models/daily-partner.ts new file mode 100644 index 0000000..623b465 --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/models/daily-partner.ts @@ -0,0 +1,29 @@ +export interface DailyPartner { + id?: string; + totalPartnerCount?: number; + totalHoldingMoney?: number; + totalComp?: number; + total?: number; + branchCount?: number; + divisionCount?: number; + officeCount?: number; + storeCount?: number; + memberCount?: number; + nickname?: string; + accountHolder?: string; + phoneNumber?: string; + calculateType?: string; + ownCash?: number; + ownComp?: number; + ownCoupon?: number; + gameMoney?: number; + todayComp?: number; + totalDeposit?: number; + totalWithdraw?: number; + balance?: number; + registDate?: string; + finalSigninDate?: string; + ip?: string; + state?: string; + note?: string; +} diff --git a/src/app/modules/admin/report/daily-partner/resolvers/daily-partner.resolver.ts b/src/app/modules/admin/report/daily-partner/resolvers/daily-partner.resolver.ts new file mode 100644 index 0000000..dd62c7d --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/resolvers/daily-partner.resolver.ts @@ -0,0 +1,89 @@ +import { Injectable } from '@angular/core'; +import { + ActivatedRouteSnapshot, + Resolve, + Router, + RouterStateSnapshot, +} from '@angular/router'; +import { catchError, Observable, throwError } from 'rxjs'; + +import { DailyPartner } from '../models/daily-partner'; +import { DailyPartnerPagination } from '../models/daily-partner-pagination'; +import { DailyPartnerService } from '../services/daily-partner.service'; + +@Injectable({ + providedIn: 'root', +}) +export class DailyPartnerResolver implements Resolve { + /** + * Constructor + */ + constructor( + private _dailyPartnerService: DailyPartnerService, + private _router: Router + ) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Resolver + * + * @param route + * @param state + */ + resolve( + route: ActivatedRouteSnapshot, + state: RouterStateSnapshot + ): Observable { + return this._dailyPartnerService + .getDailyPartnerById(route.paramMap.get('id')) + .pipe( + // Error here means the requested product is not available + catchError((error) => { + // Log the error + console.error(error); + + // Get the parent url + const parentUrl = state.url.split('/').slice(0, -1).join('/'); + + // Navigate to there + this._router.navigateByUrl(parentUrl); + + // Throw an error + return throwError(error); + }) + ); + } +} + +@Injectable({ + providedIn: 'root', +}) +export class DailyPartnersResolver implements Resolve { + /** + * Constructor + */ + constructor(private _dailyPartnerService: DailyPartnerService) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Resolver + * + * @param route + * @param state + */ + resolve( + route: ActivatedRouteSnapshot, + state: RouterStateSnapshot + ): Observable<{ + pagination: DailyPartnerPagination; + dailyPartners: DailyPartner[]; + }> { + return this._dailyPartnerService.getDailyPartners(); + } +} diff --git a/src/app/modules/admin/report/daily-partner/services/daily-partner.service.ts b/src/app/modules/admin/report/daily-partner/services/daily-partner.service.ts new file mode 100644 index 0000000..a52fdab --- /dev/null +++ b/src/app/modules/admin/report/daily-partner/services/daily-partner.service.ts @@ -0,0 +1,158 @@ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { + BehaviorSubject, + filter, + map, + Observable, + of, + switchMap, + take, + tap, + throwError, +} from 'rxjs'; + +import { DailyPartner } from '../models/daily-partner'; +import { DailyPartnerPagination } from '../models/daily-partner-pagination'; + +@Injectable({ + providedIn: 'root', +}) +export class DailyPartnerService { + // Private + private __pagination = new BehaviorSubject< + DailyPartnerPagination | undefined + >(undefined); + private __dailyPartner = new BehaviorSubject( + undefined + ); + private __dailyPartners = new BehaviorSubject( + undefined + ); + + /** + * Constructor + */ + constructor(private _httpClient: HttpClient) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Accessors + // ----------------------------------------------------------------------------------------------------- + + /** + * Getter for pagination + */ + get pagination$(): Observable { + return this.__pagination.asObservable(); + } + + /** + * Getter for dailyPartner + */ + get dailyPartner$(): Observable { + return this.__dailyPartner.asObservable(); + } + + /** + * Getter for dailyPartners + */ + get dailyPartners$(): Observable { + return this.__dailyPartners.asObservable(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Get DailyPartners + * + * + * @param page + * @param size + * @param sort + * @param order + * @param search + */ + getDailyPartners( + page: number = 0, + size: number = 10, + sort: string = 'name', + order: 'asc' | 'desc' | '' = 'asc', + search: string = '' + ): Observable<{ + pagination: DailyPartnerPagination; + dailyPartners: DailyPartner[]; + }> { + return this._httpClient + .get<{ + pagination: DailyPartnerPagination; + dailyPartners: DailyPartner[]; + }>('api/apps/report/daily/dailys', { + params: { + page: '' + page, + size: '' + size, + sort, + order, + search, + }, + }) + .pipe( + tap((response) => { + this.__pagination.next(response.pagination); + this.__dailyPartners.next(response.dailyPartners); + }) + ); + } + + /** + * Get product by id + */ + getDailyPartnerById(id: string | null): Observable { + return this.__dailyPartners.pipe( + take(1), + map((dailyPartners) => { + // Find the product + const dailyPartner = + dailyPartners?.find((item) => item.id === id) || undefined; + + // Update the product + this.__dailyPartner.next(dailyPartner); + + // Return the product + return dailyPartner; + }), + switchMap((product) => { + if (!product) { + return throwError('Could not found product with id of ' + id + '!'); + } + + return of(product); + }) + ); + } + + /** + * Create product + */ + createDailyPartner(): Observable { + return this.dailyPartners$.pipe( + take(1), + switchMap((dailyPartners) => + this._httpClient + .post('api/apps/report/daily-partner/product', {}) + .pipe( + map((newDailyPartner) => { + // Update the dailyPartners with the new product + if (!!dailyPartners) { + this.__dailyPartners.next([newDailyPartner, ...dailyPartners]); + } + + // Return the new product + return newDailyPartner; + }) + ) + ) + ); + } +} diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index e9f1f91..13c24dd 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -25,5 +25,6 @@ "Slot": "Slot", "Current User": "Current User", "Daily": "Daily", - "Monthly": "Monthly" + "Monthly": "Monthly", + "Daily Partner": "Daily Partner" } diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 0268e98..d0c31fd 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -26,5 +26,6 @@ "Current User": "현재접속자 & 쪽지전송", "Basic-Setting": "사이트 기본설정", "Daily": "일일현황", - "Monthly": "월 현황" + "Monthly": "월 현황", + "Daily Partner": "파트너 일일현황" }