diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts
index 52a958d..670f3f9 100644
--- a/src/app/app.routing.ts
+++ b/src/app/app.routing.ts
@@ -152,6 +152,18 @@ export const appRoutes: Route[] = [
},
],
},
+ {
+ path: 'bank',
+ children: [
+ {
+ path: 'deposit',
+ loadChildren: () =>
+ import('app/modules/admin/bank/deposit/deposit.module').then(
+ (m: any) => m.DepositModule
+ ),
+ },
+ ],
+ },
],
},
];
diff --git a/src/app/mock-api/apps/bank/deposit/api.ts b/src/app/mock-api/apps/bank/deposit/api.ts
new file mode 100644
index 0000000..823ca37
--- /dev/null
+++ b/src/app/mock-api/apps/bank/deposit/api.ts
@@ -0,0 +1,214 @@
+import { Injectable } from '@angular/core';
+import { assign, cloneDeep } from 'lodash-es';
+import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
+import { deposits as depositsData } from './data';
+
+@Injectable({
+ providedIn: 'root',
+})
+export class BankDepositMockApi {
+ private _deposits: any[] = depositsData;
+
+ /**
+ * Constructor
+ */
+ constructor(private _fuseMockApiService: FuseMockApiService) {
+ // Register Mock API handlers
+ this.registerHandlers();
+ }
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Register Mock API handlers
+ */
+ registerHandlers(): void {
+ // -----------------------------------------------------------------------------------------------------
+ // @ Deposits - GET
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onGet('api/apps/bank/deposit/deposits', 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 deposits
+ let deposits: any[] | null = cloneDeep(this._deposits);
+
+ // Sort the deposits
+ if (sort === 'sku' || sort === 'name' || sort === 'active') {
+ deposits.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 {
+ deposits.sort((a, b) =>
+ order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
+ );
+ }
+
+ // If search exists...
+ if (search) {
+ // Filter the deposits
+ deposits = deposits.filter(
+ (contact: any) =>
+ contact.name &&
+ contact.name.toLowerCase().includes(search.toLowerCase())
+ );
+ }
+
+ // Paginate - Start
+ const depositsLength = deposits.length;
+
+ // Calculate pagination details
+ const begin = page * size;
+ const end = Math.min(size * (page + 1), depositsLength);
+ const lastPage = Math.max(Math.ceil(depositsLength / size), 1);
+
+ // Prepare the pagination object
+ let pagination = {};
+
+ // If the requested page number is bigger than
+ // the last possible page number, return null for
+ // users but also send the last possible page so
+ // the app can navigate to there
+ if (page > lastPage) {
+ deposits = null;
+ pagination = {
+ lastPage,
+ };
+ } else {
+ // Paginate the results by size
+ deposits = deposits.slice(begin, end);
+
+ // Prepare the pagination mock-api
+ pagination = {
+ length: depositsLength,
+ size: size,
+ page: page,
+ lastPage: lastPage,
+ startIndex: begin,
+ endIndex: end - 1,
+ };
+ }
+
+ // Return the response
+ return [
+ 200,
+ {
+ deposits,
+ pagination,
+ },
+ ];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Deposit - GET
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onGet('api/apps/bank/deposit/deposit')
+ .reply(({ request }) => {
+ // Get the id from the params
+ const id = request.params.get('id');
+
+ // Clone the users
+ const deposits = cloneDeep(this._deposits);
+
+ // Find the deposit
+ const deposit = deposits.find((item: any) => item.id === id);
+
+ // Return the response
+ return [200, deposit];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Deposit - POST
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onPost('api/apps/bank/deposit/deposit')
+ .reply(() => {
+ // Generate a new deposit
+ const newDeposit = {
+ id: FuseMockApiUtils.guid(),
+ rank: '',
+ level: '',
+ nickname: '',
+ paymentDue: '',
+ calculateType: '',
+ accountHolder: '',
+ note: '',
+ registrationDate: '',
+ processDate: '',
+ deposit: '',
+ withdrawal: '',
+ total: '',
+ gameMoney: '',
+ highRank: '',
+ state: '',
+ };
+
+ // Unshift the new deposit
+ this._deposits.unshift(newDeposit);
+
+ // Return the response
+ return [200, newDeposit];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Deposit - PATCH
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onPatch('api/apps/bank/deposit/deposit')
+ .reply(({ request }) => {
+ // Get the id and deposit
+ const id = request.body.id;
+ const deposit = cloneDeep(request.body.deposit);
+
+ // Prepare the updated deposit
+ let updatedDeposit = null;
+
+ // Find the deposit and update it
+ this._deposits.forEach((item, index, deposits) => {
+ if (item.id === id) {
+ // Update the deposit
+ deposits[index] = assign({}, deposits[index], deposit);
+
+ // Store the updated deposit
+ updatedDeposit = deposits[index];
+ }
+ });
+
+ // Return the response
+ return [200, updatedDeposit];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Deposit - DELETE
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onDelete('api/apps/bank/deposit/deposit')
+ .reply(({ request }) => {
+ // Get the id
+ const id = request.params.get('id');
+
+ // Find the deposit and delete it
+ this._deposits.forEach((item, index) => {
+ if (item.id === id) {
+ this._deposits.splice(index, 1);
+ }
+ });
+
+ // Return the response
+ return [200, true];
+ });
+ }
+}
diff --git a/src/app/mock-api/apps/bank/deposit/data.ts b/src/app/mock-api/apps/bank/deposit/data.ts
new file mode 100644
index 0000000..ad20a03
--- /dev/null
+++ b/src/app/mock-api/apps/bank/deposit/data.ts
@@ -0,0 +1,58 @@
+/* eslint-disable */
+
+export const deposits = [
+ {
+ rank: '회원',
+ level: 4,
+ id: 'aa100',
+ nickname: 'aa100',
+ paymentDue: 50000,
+ calculateType: '롤링',
+ accountHolder: '광주은행2sss',
+ note: '@',
+ registrationDate: '2022-06-18 13:14',
+ processDate: '000-0-0 0:0',
+ deposit: 41200000,
+ withdrawal: 19000000,
+ total: 22200000,
+ gameMoney: 67131,
+ highRank: '[매장]kgon5',
+ state: '신청',
+ },
+ {
+ rank: '회원',
+ level: 1,
+ id: 'onon6',
+ nickname: '가가가',
+ paymentDue: 100000,
+ calculateType: '롤링',
+ accountHolder: '가가가',
+ note: '',
+ registrationDate: '2022-06-13 12:57',
+ processDate: '2022-06-13 12:58',
+ deposit: 200000,
+ withdrawal: 0,
+ total: 200000,
+ gameMoney: 0,
+ highRank: '[매장]on04',
+ state: '완료',
+ },
+ {
+ rank: '회원',
+ level: 1,
+ id: 'onon6',
+ nickname: '가가가',
+ paymentDue: 100000,
+ calculateType: '롤링',
+ accountHolder: '가가가',
+ note: '',
+ registrationDate: '2022-06-13 12:56',
+ processDate: '2022-06-13 12:57',
+ deposit: 200000,
+ withdrawal: 0,
+ total: 200000,
+ gameMoney: 0,
+ highRank: '[매장]on04',
+ state: '완료',
+ },
+];
diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts
index 53f5870..d7f6575 100644
--- a/src/app/mock-api/common/navigation/data.ts
+++ b/src/app/mock-api/common/navigation/data.ts
@@ -55,6 +55,22 @@ export const defaultNavigation: FuseNavigationItem[] = [
},
],
},
+ {
+ id: 'bank',
+ title: 'Bank',
+ subtitle: 'bank managements',
+ type: 'group',
+ icon: 'heroicons_outline:home',
+ children: [
+ {
+ id: 'bank.deposit',
+ title: 'Deposit',
+ type: 'basic',
+ icon: 'heroicons_outline:academic-cap',
+ link: '/bank/deposit',
+ },
+ ],
+ },
];
export const compactNavigation: FuseNavigationItem[] = [
{
@@ -73,6 +89,14 @@ export const compactNavigation: FuseNavigationItem[] = [
icon: 'heroicons_outline:qrcode',
children: [], // This will be filled from defaultNavigation so we don't have to manage multiple sets of the same navigation
},
+ {
+ id: 'bank',
+ title: 'Bank',
+ subtitle: 'bank managements',
+ type: 'group',
+ icon: 'heroicons_outline:home',
+ children: [], // This will be filled from defaultNavigation so we don't have to manage multiple sets of the same navigation
+ },
];
export const futuristicNavigation: FuseNavigationItem[] = [
{
@@ -87,6 +111,12 @@ export const futuristicNavigation: FuseNavigationItem[] = [
type: 'group',
children: [], // This will be filled from defaultNavigation so we don't have to manage multiple sets of the same navigation
},
+ {
+ id: 'bank',
+ title: 'Bank',
+ type: 'group',
+ children: [], // This will be filled from defaultNavigation so we don't have to manage multiple sets of the same navigation
+ },
];
export const horizontalNavigation: FuseNavigationItem[] = [
{
@@ -103,4 +133,11 @@ export const horizontalNavigation: FuseNavigationItem[] = [
icon: 'heroicons_outline:qrcode',
children: [], // This will be filled from defaultNavigation so we don't have to manage multiple sets of the same navigation
},
+ {
+ id: 'bank',
+ title: 'Bank',
+ type: 'group',
+ icon: 'heroicons_outline:home',
+ children: [], // This will be filled from defaultNavigation so we don't have to manage multiple sets of the same navigation
+ },
];
diff --git a/src/app/mock-api/index.ts b/src/app/mock-api/index.ts
index 410f014..dc39e27 100644
--- a/src/app/mock-api/index.ts
+++ b/src/app/mock-api/index.ts
@@ -22,6 +22,7 @@ import { ScrumboardMockApi } from 'app/mock-api/apps/scrumboard/api';
import { ShortcutsMockApi } from 'app/mock-api/common/shortcuts/api';
import { TasksMockApi } from 'app/mock-api/apps/tasks/api';
import { UserMockApi } from 'app/mock-api/common/user/api';
+import { BankDepositMockApi } from './apps/bank/deposit/api';
export const mockApiServices = [
AcademyMockApi,
@@ -48,4 +49,5 @@ export const mockApiServices = [
ShortcutsMockApi,
TasksMockApi,
UserMockApi,
+ BankDepositMockApi
];
diff --git a/src/app/modules/admin/bank/deposit/components/index.ts b/src/app/modules/admin/bank/deposit/components/index.ts
new file mode 100644
index 0000000..04759eb
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/components/index.ts
@@ -0,0 +1,3 @@
+import { ListComponent } from './list.component';
+
+export const COMPONENTS = [ListComponent];
diff --git a/src/app/modules/admin/bank/deposit/components/list.component.html b/src/app/modules/admin/bank/deposit/components/list.component.html
new file mode 100644
index 0000000..ae6e1a4
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/components/list.component.html
@@ -0,0 +1,385 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0; else noDeposit">
+
+
+
+
+
등급
+
+ 레벨
+
+
아이디
+
+ 닉네임
+
+
+ 입금예정금액
+
+
+ 정산종류
+
+
+ 회원정보
+
+
비고
+
+ 등록날짜
+
+
+ 처리날짜
+
+
입금출금
+
+ 게임중머니
+
+
+ 카지노->캐쉬
+
+
+ 상위
+
+
+ 상태
+
+
+ 회원정보
+
+
+ 배팅정보
+
+
+ 삭제
+
+
+
+
+
+
+
+
+
+ {{ deposit.rank }}
+
+
+
+ LV.{{ deposit.level }}
+
+
+
+
+ {{ deposit.id }}
+
+
+
+
+ {{ deposit.nickname }}
+
+
+
+
+ {{ deposit.paymentDue }}원
+
+
+
+
+ {{ deposit.calculateType }}
+
+
+
+
+ {{ deposit.accountHolder }}
+
+
+
+
+ {{ deposit.note }}
+
+
+
+
+ {{ deposit.registrationDate }}
+
+
+
+
+ {{ deposit.processDate }}
+
+
+
+
+ {{ deposit.deposit }}원 {{ deposit.withdrawal }}원
+ {{ deposit.total }}원
+
+
+
+
+ {{ deposit.gameMoney }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ deposit.state }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ There are no deposit!
+
+
+
+
+
+
+
+
+
diff --git a/src/app/modules/admin/bank/deposit/components/list.component.ts b/src/app/modules/admin/bank/deposit/components/list.component.ts
new file mode 100644
index 0000000..3d7b97a
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/components/list.component.ts
@@ -0,0 +1,190 @@
+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 { Deposit } from '../models/deposit';
+import { DepositPagination } from '../models/deposit-pagination';
+import { DepositService } from '../services/deposit.service';
+
+@Component({
+ selector: 'bank-list',
+ templateUrl: './list.component.html',
+ styles: [
+ /* language=SCSS */
+ `
+ .inventory-grid {
+ grid-template-columns: 60px auto 40px;
+
+ @screen sm {
+ grid-template-columns: 60px auto 60px 72px;
+ }
+
+ @screen md {
+ grid-template-columns: 60px 60px auto 112px 72px;
+ }
+
+ @screen lg {
+ grid-template-columns: 60px 60px auto 112px 96px 96px 72px;
+ }
+ }
+ `,
+ ],
+ 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;
+
+ deposits$!: Observable;
+
+ isLoading = false;
+ searchInputControl = new FormControl();
+ selectedDeposit?: Deposit;
+ pagination?: DepositPagination;
+
+ private _unsubscribeAll: Subject = new Subject();
+
+ /**
+ * Constructor
+ */
+ constructor(
+ private _changeDetectorRef: ChangeDetectorRef,
+ private _fuseConfirmationService: FuseConfirmationService,
+ private _formBuilder: FormBuilder,
+ private _depositService: DepositService
+ ) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Lifecycle hooks
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * On init
+ */
+ ngOnInit(): void {
+ // Get the pagination
+ this._depositService.pagination$
+ .pipe(takeUntil(this._unsubscribeAll))
+ .subscribe((pagination: DepositPagination | undefined) => {
+ // Update the pagination
+ this.pagination = pagination;
+
+ // Mark for check
+ this._changeDetectorRef.markForCheck();
+ });
+
+ // Get the products
+ this.deposits$ = this._depositService.deposits$;
+ }
+
+ /**
+ * After view init
+ */
+ ngAfterViewInit(): void {
+ if (this._sort && this._paginator) {
+ // Set the initial sort
+ this._sort.sort({
+ id: 'nickname',
+ start: 'asc',
+ disableClear: true,
+ });
+
+ // Mark for check
+ this._changeDetectorRef.markForCheck();
+
+ // If the deposit 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._depositService.getDeposits(
+ 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
+ // -----------------------------------------------------------------------------------------------------
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ 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/bank/deposit/deposit.module.ts b/src/app/modules/admin/bank/deposit/deposit.module.ts
new file mode 100644
index 0000000..580e8a9
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/deposit.module.ts
@@ -0,0 +1,42 @@
+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 { TranslocoModule } from '@ngneat/transloco';
+
+import { SharedModule } from 'app/shared/shared.module';
+
+import { COMPONENTS } from './components';
+
+import { depositRoutes } from './deposit.routing';
+
+@NgModule({
+ declarations: [COMPONENTS],
+ imports: [
+ TranslocoModule,
+ SharedModule,
+ RouterModule.forChild(depositRoutes),
+
+ MatButtonModule,
+ MatFormFieldModule,
+ MatIconModule,
+ MatInputModule,
+ MatPaginatorModule,
+ MatProgressBarModule,
+ MatRippleModule,
+ MatSortModule,
+ MatSelectModule,
+ MatTooltipModule,
+ ],
+})
+export class DepositModule {}
diff --git a/src/app/modules/admin/bank/deposit/deposit.routing.ts b/src/app/modules/admin/bank/deposit/deposit.routing.ts
new file mode 100644
index 0000000..b370949
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/deposit.routing.ts
@@ -0,0 +1,15 @@
+import { Route } from '@angular/router';
+
+import { ListComponent } from './components/list.component';
+
+// import { DepositResolver } from './resolvers/deposit.resolver';
+
+export const depositRoutes: Route[] = [
+ {
+ path: '',
+ component: ListComponent,
+ // resolve: {
+ // deposits: DepositResolver,
+ // },
+ },
+];
diff --git a/src/app/modules/admin/bank/deposit/models/deposit-pagination.ts b/src/app/modules/admin/bank/deposit/models/deposit-pagination.ts
new file mode 100644
index 0000000..8f2f76a
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/models/deposit-pagination.ts
@@ -0,0 +1,8 @@
+export interface DepositPagination {
+ length: number;
+ size: number;
+ page: number;
+ lastPage: number;
+ startIndex: number;
+ endIndex: number;
+}
diff --git a/src/app/modules/admin/bank/deposit/models/deposit.ts b/src/app/modules/admin/bank/deposit/models/deposit.ts
new file mode 100644
index 0000000..cf85b38
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/models/deposit.ts
@@ -0,0 +1,21 @@
+export interface Deposit {
+ rank: string;
+ level: string;
+ id: string;
+ nickname: string;
+ paymentDue: number;
+ calculateType: string;
+ accountHolder: string;
+ note: string;
+ registrationDate: string;
+ processDate: string;
+ deposit: number;
+ withdrawal: number;
+ total: number;
+ gameMoney: number;
+ highRank: string;
+ state: string;
+ memberInformation: string;
+ bettingInformation: string;
+ delete: string;
+}
diff --git a/src/app/modules/admin/bank/deposit/resolvers/deposit.resolver.ts b/src/app/modules/admin/bank/deposit/resolvers/deposit.resolver.ts
new file mode 100644
index 0000000..97ebc7b
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/resolvers/deposit.resolver.ts
@@ -0,0 +1,87 @@
+import { Injectable } from '@angular/core';
+import {
+ ActivatedRouteSnapshot,
+ Resolve,
+ Router,
+ RouterStateSnapshot,
+} from '@angular/router';
+import { catchError, Observable, throwError } from 'rxjs';
+
+import { Deposit } from '../models/deposit';
+import { DepositPagination } from '../models/deposit-pagination';
+import { DepositService } from '../services/deposit.service';
+
+@Injectable({
+ providedIn: 'root',
+})
+export class DepositResolver implements Resolve {
+ /**
+ * Constructor
+ */
+ constructor(
+ private _depositService: DepositService,
+ private _router: Router
+ ) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Resolver
+ *
+ * @param route
+ * @param state
+ */
+ resolve(
+ route: ActivatedRouteSnapshot,
+ state: RouterStateSnapshot
+ ): Observable {
+ return this._depositService.getDepositById(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 DepositsResolver implements Resolve {
+ /**
+ * Constructor
+ */
+ constructor(private _depositService: DepositService) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Resolver
+ *
+ * @param route
+ * @param state
+ */
+ resolve(
+ route: ActivatedRouteSnapshot,
+ state: RouterStateSnapshot
+ ): Observable<{
+ pagination: DepositPagination;
+ deposits: Deposit[];
+ }> {
+ return this._depositService.getDeposits();
+ }
+}
diff --git a/src/app/modules/admin/bank/deposit/services/deposit.service.ts b/src/app/modules/admin/bank/deposit/services/deposit.service.ts
new file mode 100644
index 0000000..c785ba8
--- /dev/null
+++ b/src/app/modules/admin/bank/deposit/services/deposit.service.ts
@@ -0,0 +1,153 @@
+import { Injectable } from '@angular/core';
+import { HttpClient } from '@angular/common/http';
+import {
+ BehaviorSubject,
+ filter,
+ map,
+ Observable,
+ of,
+ switchMap,
+ take,
+ tap,
+ throwError,
+} from 'rxjs';
+
+import { Deposit } from '../models/deposit';
+import { DepositPagination } from '../models/deposit-pagination';
+
+@Injectable({
+ providedIn: 'root',
+})
+export class DepositService {
+ // Private
+ private __pagination = new BehaviorSubject(
+ undefined
+ );
+ private __deposit = new BehaviorSubject(undefined);
+ private __deposits = new BehaviorSubject(undefined);
+
+ /**
+ * Constructor
+ */
+ constructor(private _httpClient: HttpClient) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Accessors
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Getter for pagination
+ */
+ get pagination$(): Observable {
+ return this.__pagination.asObservable();
+ }
+
+ /**
+ * Getter for deposit
+ */
+ get deposit$(): Observable {
+ return this.__deposit.asObservable();
+ }
+
+ /**
+ * Getter for deposits
+ */
+ get deposits$(): Observable {
+ return this.__deposits.asObservable();
+ }
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Get deposits
+ *
+ *
+ * @param page
+ * @param size
+ * @param sort
+ * @param order
+ * @param search
+ */
+ getDeposits(
+ page: number = 0,
+ size: number = 10,
+ sort: string = 'nickname',
+ order: 'asc' | 'desc' | '' = 'asc',
+ search: string = ''
+ ): Observable<{
+ pagination: DepositPagination;
+ deposits: Deposit[];
+ }> {
+ return this._httpClient
+ .get<{ pagination: DepositPagination; deposits: Deposit[] }>(
+ 'api/apps/bank/deposit/deposits',
+ {
+ params: {
+ page: '' + page,
+ size: '' + size,
+ sort,
+ order,
+ search,
+ },
+ }
+ )
+ .pipe(
+ tap((response) => {
+ this.__pagination.next(response.pagination);
+ this.__deposits.next(response.deposits);
+ })
+ );
+ }
+
+ /**
+ * Get product by id
+ */
+ getDepositById(id: string | null): Observable {
+ return this.__deposits.pipe(
+ take(1),
+ map((deposits) => {
+ // Find the product
+ const deposit = deposits?.find((item) => item.id === id) || undefined;
+
+ // Update the product
+ this.__deposit.next(deposit);
+
+ // Return the product
+ return deposit;
+ }),
+ switchMap((product) => {
+ if (!product) {
+ return throwError('Could not found product with id of ' + id + '!');
+ }
+
+ return of(product);
+ })
+ );
+ }
+
+ /**
+ * Create product
+ */
+ createDeposit(): Observable {
+ return this.deposits$.pipe(
+ take(1),
+ switchMap((deposits) =>
+ this._httpClient
+ .post('api/apps/bank/deposit/product', {})
+ .pipe(
+ map((newDeposit) => {
+ // Update the deposits with the new product
+ if (!!deposits) {
+ this.__deposits.next([newDeposit, ...deposits]);
+ }
+
+ // Return the new product
+ return newDeposit;
+ })
+ )
+ )
+ );
+ }
+}
diff --git a/src/app/modules/admin/member/user/components/list.component.html b/src/app/modules/admin/member/user/components/list.component.html
index 5b8ba9d..b421973 100644
--- a/src/app/modules/admin/member/user/components/list.component.html
+++ b/src/app/modules/admin/member/user/components/list.component.html
@@ -183,15 +183,20 @@
-
+ 슬롯수징: 0%"
+ >
+ 요율
+