From 3f559c1de5c487a94a3ba982757a549d1631caec Mon Sep 17 00:00:00 2001 From: JUNG YI DAM Date: Wed, 13 Jul 2022 02:10:43 +0000 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=ED=8A=B8=EB=84=88=20=EB=B3=B8?= =?UTF-8?q?=EC=82=AC=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 + .../apps/member/partner-mainoffice/api.ts | 228 +++++++++++ .../apps/member/partner-mainoffice/data.ts | 33 ++ src/app/mock-api/common/navigation/data.ts | 7 + .../components/list.component.ts | 2 +- .../resolvers/partner-branch.resolver.ts | 2 +- ...h.service.ts => partner-branch.service.ts} | 0 .../components/list.component.ts | 2 +- .../resolvers/partner-division.resolver.ts | 2 +- ...service.ts => partner-division.service.ts} | 0 .../partner-mainoffice/components/index.ts | 3 + .../components/list.component.html | 367 ++++++++++++++++++ .../components/list.component.ts | 199 ++++++++++ .../models/partner-mainoffice-pagination.ts | 8 + .../models/partner-mainoffice.ts | 29 ++ .../partner-mainoffice.module.ts | 50 +++ .../partner-mainoffice.routing.ts | 24 ++ .../resolvers/partner-mainoffice.resolver.ts | 89 +++++ .../services/partner-mainoffice.service.ts | 164 ++++++++ src/assets/i18n/en.json | 1 + src/assets/i18n/ko.json | 1 + 21 files changed, 1214 insertions(+), 4 deletions(-) create mode 100644 src/app/mock-api/apps/member/partner-mainoffice/api.ts create mode 100644 src/app/mock-api/apps/member/partner-mainoffice/data.ts rename src/app/modules/admin/member/partner-branch/services/{Partner-branch.service.ts => partner-branch.service.ts} (100%) rename src/app/modules/admin/member/partner-division/services/{Partner-division.service.ts => partner-division.service.ts} (100%) create mode 100644 src/app/modules/admin/member/partner-mainoffice/components/index.ts create mode 100644 src/app/modules/admin/member/partner-mainoffice/components/list.component.html create mode 100644 src/app/modules/admin/member/partner-mainoffice/components/list.component.ts create mode 100644 src/app/modules/admin/member/partner-mainoffice/models/partner-mainoffice-pagination.ts create mode 100644 src/app/modules/admin/member/partner-mainoffice/models/partner-mainoffice.ts create mode 100644 src/app/modules/admin/member/partner-mainoffice/partner-mainoffice.module.ts create mode 100644 src/app/modules/admin/member/partner-mainoffice/partner-mainoffice.routing.ts create mode 100644 src/app/modules/admin/member/partner-mainoffice/resolvers/partner-mainoffice.resolver.ts create mode 100644 src/app/modules/admin/member/partner-mainoffice/services/partner-mainoffice.service.ts diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index 7d3aa7e..6c05664 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -178,6 +178,13 @@ export const appRoutes: Route[] = [ (m: any) => m.PartnerModule ), }, + { + path: 'partner-mainoffice', + loadChildren: () => + import( + 'app/modules/admin/member/partner-mainoffice/partner-mainoffice.module' + ).then((m: any) => m.PartnerMainofficeModule), + }, { path: 'partner-branch', loadChildren: () => diff --git a/src/app/mock-api/apps/member/partner-mainoffice/api.ts b/src/app/mock-api/apps/member/partner-mainoffice/api.ts new file mode 100644 index 0000000..86a96dd --- /dev/null +++ b/src/app/mock-api/apps/member/partner-mainoffice/api.ts @@ -0,0 +1,228 @@ +import { Injectable } from '@angular/core'; +import { assign, cloneDeep } from 'lodash-es'; +import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api'; +import { partnerMainoffices as partnerMainofficesData } from './data'; + +@Injectable({ + providedIn: 'root', +}) +export class MemberPartnerMainofficeMockApi { + private _partnerMainoffices: any[] = partnerMainofficesData; + + /** + * Constructor + */ + constructor(private _fuseMockApiService: FuseMockApiService) { + // Register Mock API handlers + this.registerHandlers(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Register Mock API handlers + */ + registerHandlers(): void { + // ----------------------------------------------------------------------------------------------------- + // @ PartnerMainoffices - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/member/partner-mainoffice/partner-mainoffices', 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 partnerMainoffices + let partnerMainoffices: any[] | null = cloneDeep( + this._partnerMainoffices + ); + + // Sort the partnerMainoffices + if (sort === 'sku' || sort === 'name' || sort === 'active') { + partnerMainoffices.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 { + partnerMainoffices.sort((a, b) => + order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort] + ); + } + + // If search exists... + if (search) { + // Filter the partnerMainoffices + partnerMainoffices = partnerMainoffices.filter( + (contact: any) => + contact.name && + contact.name.toLowerCase().includes(search.toLowerCase()) + ); + } + + // Paginate - Start + const partnerMainofficesLength = partnerMainoffices.length; + + // Calculate pagination details + const begin = page * size; + const end = Math.min(size * (page + 1), partnerMainofficesLength); + const lastPage = Math.max( + Math.ceil(partnerMainofficesLength / size), + 1 + ); + + // Prepare the pagination object + let pagination = {}; + + // If the requested page number is bigger than + // the last possible page number, return null for + // partnerMainoffices but also send the last possible page so + // the app can navigate to there + if (page > lastPage) { + partnerMainoffices = null; + pagination = { + lastPage, + }; + } else { + // Paginate the results by size + partnerMainoffices = partnerMainoffices.slice(begin, end); + + // Prepare the pagination mock-api + pagination = { + length: partnerMainofficesLength, + size: size, + page: page, + lastPage: lastPage, + startIndex: begin, + endIndex: end - 1, + }; + } + + // Return the response + return [ + 200, + { + partnerMainoffices, + pagination, + }, + ]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ PartnerMainoffice - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/member/partne-mainoffice/partner-mainoffice') + .reply(({ request }) => { + // Get the id from the params + const id = request.params.get('id'); + + // Clone the partnerMainoffices + const partnerMainoffices = cloneDeep(this._partnerMainoffices); + + // Find the partnerMainoffice + const partnerMainoffice = partnerMainoffices.find( + (item: any) => item.id === id + ); + + // Return the response + return [200, partnerMainoffice]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ PartnerMainoffice - POST + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPost('api/apps/member/partner-mainoffice/partner-mainoffice') + .reply(() => { + // Generate a new partnerMainoffice + const newPartnerMainoffice = { + 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 partnerMainoffice + this._partnerMainoffices.unshift(newPartnerMainoffice); + + // Return the response + return [200, newPartnerMainoffice]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ PartnerMainoffice - PATCH + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPatch('api/apps/member/partner-mainoffice/partner-mainoffice') + .reply(({ request }) => { + // Get the id and partnerMainoffice + const id = request.body.id; + const partnerMainoffice = cloneDeep(request.body.partnerMainoffice); + + // Prepare the updated partnerMainoffice + let updatedPartnerMainoffice = null; + + // Find the partnerMainoffice and update it + this._partnerMainoffices.forEach((item, index, partnerMainoffices) => { + if (item.id === id) { + // Update the partnerMainoffice + partnerMainoffices[index] = assign( + {}, + partnerMainoffices[index], + partnerMainoffice + ); + + // Store the updated partnerMainoffice + updatedPartnerMainoffice = partnerMainoffices[index]; + } + }); + + // Return the response + return [200, updatedPartnerMainoffice]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ PartnerMainoffice - DELETE + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onDelete('api/apps/member/partner-mainoffice/partner-mainoffice') + .reply(({ request }) => { + // Get the id + const id = request.params.get('id'); + + // Find the partnerMainoffice and delete it + this._partnerMainoffices.forEach((item, index) => { + if (item.id === id) { + this._partnerMainoffices.splice(index, 1); + } + }); + + // Return the response + return [200, true]; + }); + } +} diff --git a/src/app/mock-api/apps/member/partner-mainoffice/data.ts b/src/app/mock-api/apps/member/partner-mainoffice/data.ts new file mode 100644 index 0000000..9ae712c --- /dev/null +++ b/src/app/mock-api/apps/member/partner-mainoffice/data.ts @@ -0,0 +1,33 @@ +/* eslint-disable */ + +export const partnerMainoffices = [ + { + 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 321e086..51055d0 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -74,6 +74,13 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon: 'heroicons_outline:academic-cap', link: '/member/partner', }, + { + id: 'member.partner-mainoffice', + title: 'Partner Mainoffice', + type: 'basic', + icon: 'heroicons_outline:academic-cap', + link: '/member/partner-mainoffice', + }, { id: 'member.partner-branch', title: 'Partner Branch', diff --git a/src/app/modules/admin/member/partner-branch/components/list.component.ts b/src/app/modules/admin/member/partner-branch/components/list.component.ts index 8bd1f17..4b19317 100644 --- a/src/app/modules/admin/member/partner-branch/components/list.component.ts +++ b/src/app/modules/admin/member/partner-branch/components/list.component.ts @@ -32,7 +32,7 @@ import { FuseConfirmationService } from '@fuse/services/confirmation'; import { User } from '../../user/models/user'; import { PartnerBranch } from '../models/partner-branch'; import { PartnerBranchPagination } from '../models/partner-branch-pagination'; -import { PartnerBranchService } from '../services/Partner-branch.service'; +import { PartnerBranchService } from '../services/partner-branch.service'; import { Router } from '@angular/router'; @Component({ diff --git a/src/app/modules/admin/member/partner-branch/resolvers/partner-branch.resolver.ts b/src/app/modules/admin/member/partner-branch/resolvers/partner-branch.resolver.ts index fd237e8..4820978 100644 --- a/src/app/modules/admin/member/partner-branch/resolvers/partner-branch.resolver.ts +++ b/src/app/modules/admin/member/partner-branch/resolvers/partner-branch.resolver.ts @@ -9,7 +9,7 @@ import { catchError, Observable, throwError } from 'rxjs'; import { PartnerBranch } from '../models/partner-branch'; import { PartnerBranchPagination } from '../models/partner-branch-pagination'; -import { PartnerBranchService } from '../services/Partner-branch.service'; +import { PartnerBranchService } from '../services/partner-branch.service'; @Injectable({ providedIn: 'root', diff --git a/src/app/modules/admin/member/partner-branch/services/Partner-branch.service.ts b/src/app/modules/admin/member/partner-branch/services/partner-branch.service.ts similarity index 100% rename from src/app/modules/admin/member/partner-branch/services/Partner-branch.service.ts rename to src/app/modules/admin/member/partner-branch/services/partner-branch.service.ts diff --git a/src/app/modules/admin/member/partner-division/components/list.component.ts b/src/app/modules/admin/member/partner-division/components/list.component.ts index df9254d..f25e631 100644 --- a/src/app/modules/admin/member/partner-division/components/list.component.ts +++ b/src/app/modules/admin/member/partner-division/components/list.component.ts @@ -32,7 +32,7 @@ import { FuseConfirmationService } from '@fuse/services/confirmation'; import { User } from '../../user/models/user'; import { PartnerDivision } from '../models/partner-division'; import { PartnerDivisionPagination } from '../models/partner-division-pagination'; -import { PartnerDivisionService } from '../services/Partner-division.service'; +import { PartnerDivisionService } from '../services/partner-division.service'; import { Router } from '@angular/router'; @Component({ diff --git a/src/app/modules/admin/member/partner-division/resolvers/partner-division.resolver.ts b/src/app/modules/admin/member/partner-division/resolvers/partner-division.resolver.ts index adc2aa7..14568cb 100644 --- a/src/app/modules/admin/member/partner-division/resolvers/partner-division.resolver.ts +++ b/src/app/modules/admin/member/partner-division/resolvers/partner-division.resolver.ts @@ -9,7 +9,7 @@ import { catchError, Observable, throwError } from 'rxjs'; import { PartnerDivision } from '../models/partner-division'; import { PartnerDivisionPagination } from '../models/partner-division-pagination'; -import { PartnerDivisionService } from '../services/Partner-division.service'; +import { PartnerDivisionService } from '../services/partner-division.service'; @Injectable({ providedIn: 'root', diff --git a/src/app/modules/admin/member/partner-division/services/Partner-division.service.ts b/src/app/modules/admin/member/partner-division/services/partner-division.service.ts similarity index 100% rename from src/app/modules/admin/member/partner-division/services/Partner-division.service.ts rename to src/app/modules/admin/member/partner-division/services/partner-division.service.ts diff --git a/src/app/modules/admin/member/partner-mainoffice/components/index.ts b/src/app/modules/admin/member/partner-mainoffice/components/index.ts new file mode 100644 index 0000000..04759eb --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/components/index.ts @@ -0,0 +1,3 @@ +import { ListComponent } from './list.component'; + +export const COMPONENTS = [ListComponent]; diff --git a/src/app/modules/admin/member/partner-mainoffice/components/list.component.html b/src/app/modules/admin/member/partner-mainoffice/components/list.component.html new file mode 100644 index 0000000..241793f --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/components/list.component.html @@ -0,0 +1,367 @@ +
+ +
+ +
+ +
+ +
대본
+ +
+ + + + + + + 40 + 60 + 80 + 100 + + + + + LV.1 + LV.2 + LV.3 + LV.4 + + + + + 정상 + 대기 + 탈퇴 + 휴면 + 블랙 + 정지 + + + + + 카지노제한 + 슬롯제한 + + + + + 계좌입금 + + + + + 카지노콤프 + 슬롯콤프 + 배팅콤프 + 첫충콤프 + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+
+ + +
+ There are no partner mainoffices! +
+
+
+
+
diff --git a/src/app/modules/admin/member/partner-mainoffice/components/list.component.ts b/src/app/modules/admin/member/partner-mainoffice/components/list.component.ts new file mode 100644 index 0000000..3518102 --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/components/list.component.ts @@ -0,0 +1,199 @@ +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 '../../user/models/user'; +import { PartnerMainoffice } from '../models/partner-mainoffice'; +import { PartnerMainofficePagination } from '../models/partner-mainoffice-pagination'; +import { PartnerMainofficeService } from '../services/partner-mainoffice.service'; +import { Router } from '@angular/router'; + +@Component({ + selector: 'partner-mainoffice-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; + + partnerMainoffices$!: Observable; + users$!: Observable; + + isLoading = false; + searchInputControl = new FormControl(); + selectedPartnerMainoffice?: PartnerMainoffice; + pagination?: PartnerMainofficePagination; + + private _unsubscribeAll: Subject = new Subject(); + + /** + * Constructor + */ + constructor( + private _changeDetectorRef: ChangeDetectorRef, + private _fuseConfirmationService: FuseConfirmationService, + private _formBuilder: FormBuilder, + private _partnerMainofficeService: PartnerMainofficeService, + private router: Router + ) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Lifecycle hooks + // ----------------------------------------------------------------------------------------------------- + + /** + * On init + */ + ngOnInit(): void { + // Get the pagination + this._partnerMainofficeService.pagination$ + .pipe(takeUntil(this._unsubscribeAll)) + .subscribe((pagination: PartnerMainofficePagination | undefined) => { + // Update the pagination + this.pagination = pagination; + + // Mark for check + this._changeDetectorRef.markForCheck(); + }); + + // Get the products + this.partnerMainoffices$ = + this._partnerMainofficeService.partnerMainoffices$; + } + + /** + * 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 partnerMainoffice 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._partnerMainofficeService.getPartnerMainoffices( + 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/member/partner-mainoffice/models/partner-mainoffice-pagination.ts b/src/app/modules/admin/member/partner-mainoffice/models/partner-mainoffice-pagination.ts new file mode 100644 index 0000000..706486d --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/models/partner-mainoffice-pagination.ts @@ -0,0 +1,8 @@ +export interface PartnerMainofficePagination { + length: number; + size: number; + page: number; + lastPage: number; + startIndex: number; + endIndex: number; +} diff --git a/src/app/modules/admin/member/partner-mainoffice/models/partner-mainoffice.ts b/src/app/modules/admin/member/partner-mainoffice/models/partner-mainoffice.ts new file mode 100644 index 0000000..4c55d7f --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/models/partner-mainoffice.ts @@ -0,0 +1,29 @@ +export interface PartnerMainoffice { + 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/member/partner-mainoffice/partner-mainoffice.module.ts b/src/app/modules/admin/member/partner-mainoffice/partner-mainoffice.module.ts new file mode 100644 index 0000000..981d691 --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/partner-mainoffice.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 { partnerMainofficeRoutes } from './partner-mainoffice.routing'; + +@NgModule({ + declarations: [COMPONENTS], + imports: [ + TranslocoModule, + SharedModule, + RouterModule.forChild(partnerMainofficeRoutes), + + MatButtonModule, + MatFormFieldModule, + MatIconModule, + MatInputModule, + MatPaginatorModule, + MatProgressBarModule, + MatRippleModule, + MatSortModule, + MatSelectModule, + MatTooltipModule, + MatGridListModule, + MatSlideToggleModule, + MatRadioModule, + MatCheckboxModule, + ], +}) +export class PartnerMainofficeModule {} diff --git a/src/app/modules/admin/member/partner-mainoffice/partner-mainoffice.routing.ts b/src/app/modules/admin/member/partner-mainoffice/partner-mainoffice.routing.ts new file mode 100644 index 0000000..f05575e --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/partner-mainoffice.routing.ts @@ -0,0 +1,24 @@ +import { Route } from '@angular/router'; + +import { ListComponent } from './components/list.component'; +import { ViewComponent } from '../user/components/view.component'; + +import { PartnerMainofficesResolver } from './resolvers/partner-mainoffice.resolver'; +import { UserResolver } from '../user/resolvers/user.resolver'; + +export const partnerMainofficeRoutes: Route[] = [ + { + path: '', + component: ListComponent, + resolve: { + partnerMainoffices: PartnerMainofficesResolver, + }, + }, + { + path: ':id', + component: ViewComponent, + resolve: { + users: UserResolver, + }, + }, +]; diff --git a/src/app/modules/admin/member/partner-mainoffice/resolvers/partner-mainoffice.resolver.ts b/src/app/modules/admin/member/partner-mainoffice/resolvers/partner-mainoffice.resolver.ts new file mode 100644 index 0000000..15919d7 --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/resolvers/partner-mainoffice.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 { PartnerMainoffice } from '../models/partner-mainoffice'; +import { PartnerMainofficePagination } from '../models/partner-mainoffice-pagination'; +import { PartnerMainofficeService } from '../services/partner-mainoffice.service'; + +@Injectable({ + providedIn: 'root', +}) +export class PartnerMainofficeResolver implements Resolve { + /** + * Constructor + */ + constructor( + private _partnerMainofficeService: PartnerMainofficeService, + private _router: Router + ) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Resolver + * + * @param route + * @param state + */ + resolve( + route: ActivatedRouteSnapshot, + state: RouterStateSnapshot + ): Observable { + return this._partnerMainofficeService + .getPartnerMainofficeById(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 PartnerMainofficesResolver implements Resolve { + /** + * Constructor + */ + constructor(private _partnerMainofficeService: PartnerMainofficeService) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Resolver + * + * @param route + * @param state + */ + resolve( + route: ActivatedRouteSnapshot, + state: RouterStateSnapshot + ): Observable<{ + pagination: PartnerMainofficePagination; + partnerMainoffices: PartnerMainoffice[]; + }> { + return this._partnerMainofficeService.getPartnerMainoffices(); + } +} diff --git a/src/app/modules/admin/member/partner-mainoffice/services/partner-mainoffice.service.ts b/src/app/modules/admin/member/partner-mainoffice/services/partner-mainoffice.service.ts new file mode 100644 index 0000000..43188ee --- /dev/null +++ b/src/app/modules/admin/member/partner-mainoffice/services/partner-mainoffice.service.ts @@ -0,0 +1,164 @@ +import { Injectable } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { + BehaviorSubject, + filter, + map, + Observable, + of, + switchMap, + take, + tap, + throwError, +} from 'rxjs'; + +import { PartnerMainoffice } from '../models/partner-mainoffice'; +import { PartnerMainofficePagination } from '../models/partner-mainoffice-pagination'; + +@Injectable({ + providedIn: 'root', +}) +export class PartnerMainofficeService { + // Private + private __pagination = new BehaviorSubject< + PartnerMainofficePagination | undefined + >(undefined); + private __partnerMainoffice = new BehaviorSubject< + PartnerMainoffice | undefined + >(undefined); + private __partnerMainoffices = new BehaviorSubject< + PartnerMainoffice[] | undefined + >(undefined); + + /** + * Constructor + */ + constructor(private _httpClient: HttpClient) {} + + // ----------------------------------------------------------------------------------------------------- + // @ Accessors + // ----------------------------------------------------------------------------------------------------- + + /** + * Getter for pagination + */ + get pagination$(): Observable { + return this.__pagination.asObservable(); + } + + /** + * Getter for partnerMainoffice + */ + get partnerMainoffice$(): Observable { + return this.__partnerMainoffice.asObservable(); + } + + /** + * Getter for partnerMainoffices + */ + get partnerMainoffices$(): Observable { + return this.__partnerMainoffices.asObservable(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Get partnerMainoffices + * + * + * @param page + * @param size + * @param sort + * @param order + * @param search + */ + getPartnerMainoffices( + page: number = 0, + size: number = 10, + sort: string = 'name', + order: 'asc' | 'desc' | '' = 'asc', + search: string = '' + ): Observable<{ + pagination: PartnerMainofficePagination; + partnerMainoffices: PartnerMainoffice[]; + }> { + return this._httpClient + .get<{ + pagination: PartnerMainofficePagination; + partnerMainoffices: PartnerMainoffice[]; + }>('api/apps/member/partner-mainoffice/partner-mainoffices', { + params: { + page: '' + page, + size: '' + size, + sort, + order, + search, + }, + }) + .pipe( + tap((response) => { + this.__pagination.next(response.pagination); + this.__partnerMainoffices.next(response.partnerMainoffices); + }) + ); + } + + /** + * Get product by id + */ + getPartnerMainofficeById(id: string | null): Observable { + return this.__partnerMainoffices.pipe( + take(1), + map((partnerMainoffices) => { + // Find the product + const partnerMainoffice = + partnerMainoffices?.find((item) => item.id === id) || undefined; + + // Update the product + this.__partnerMainoffice.next(partnerMainoffice); + + // Return the product + return partnerMainoffice; + }), + switchMap((product) => { + if (!product) { + return throwError('Could not found product with id of ' + id + '!'); + } + + return of(product); + }) + ); + } + + /** + * Create product + */ + createPartnerMainoffice(): Observable { + return this.partnerMainoffices$.pipe( + take(1), + switchMap((partnerMainoffices) => + this._httpClient + .post( + 'api/apps/member/partner-mainoffice/product', + {} + ) + .pipe( + map((newPartnerMainoffice) => { + // Update the partnerMainoffices with the new product + if (!!partnerMainoffices) { + this.__partnerMainoffices.next([ + newPartnerMainoffice, + ...partnerMainoffices, + ]); + } + + // Return the new product + return newPartnerMainoffice; + }) + ) + ) + ); + } +} diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 13d3eea..a4a3279 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -7,6 +7,7 @@ "Unconnected": "Unconnected", "Project": "Project", "All Partner": "All Partner", + "Partner Mainoffice": "Partner Mainoffice", "Partner Branch": "Partner Branch", "Partner Division": "Partner Division", "Mainoffice": "Mainoffice", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index d017bed..f67e407 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -7,6 +7,7 @@ "Unconnected": "장기미접속회원", "Project": "프로젝트", "All Partner": "전체파트너", + "Partner Mainoffice": "본사", "Partner Branch": "대본", "Partner Division": "부본", "Analytics": "Analytics",