Merge branch 'feature/BETERAN-BACKEND-APP-BROWSER-init' of https://gitlab.loafle.net/bet/beteran-backend-app-browser into feature/BETERAN-BACKEND-APP-BROWSER-init
This commit is contained in:
commit
d09c29c051
|
@ -162,6 +162,13 @@ export const appRoutes: Route[] = [
|
|||
(m: any) => m.DepositModule
|
||||
),
|
||||
},
|
||||
{
|
||||
path: 'withdraw',
|
||||
loadChildren: () =>
|
||||
import('app/modules/admin/bank/withdraw/withdraw.module').then(
|
||||
(m: any) => m.WithdrawModule
|
||||
),
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
|
@ -79,7 +79,7 @@ export class BankDepositMockApi {
|
|||
|
||||
// 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
|
||||
// deposits but also send the last possible page so
|
||||
// the app can navigate to there
|
||||
if (page > lastPage) {
|
||||
deposits = null;
|
||||
|
@ -120,7 +120,7 @@ export class BankDepositMockApi {
|
|||
// Get the id from the params
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Clone the users
|
||||
// Clone the deposits
|
||||
const deposits = cloneDeep(this._deposits);
|
||||
|
||||
// Find the deposit
|
||||
|
|
212
src/app/mock-api/apps/bank/withdraw/api.ts
Normal file
212
src/app/mock-api/apps/bank/withdraw/api.ts
Normal file
|
@ -0,0 +1,212 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { assign, cloneDeep } from 'lodash-es';
|
||||
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||
import { withdraws as withdrawsData } from './data';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class BankWithdrawMockApi {
|
||||
private _withdraws: any[] = withdrawsData;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||
// Register Mock API handlers
|
||||
this.registerHandlers();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Register Mock API handlers
|
||||
*/
|
||||
registerHandlers(): void {
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Withdraws - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/bank/withdraw/withdraws', 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 withdraws
|
||||
let withdraws: any[] | null = cloneDeep(this._withdraws);
|
||||
|
||||
// Sort the withdraws
|
||||
if (sort === 'sku' || sort === 'name' || sort === 'active') {
|
||||
withdraws.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 {
|
||||
withdraws.sort((a, b) =>
|
||||
order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
|
||||
);
|
||||
}
|
||||
|
||||
// If search exists...
|
||||
if (search) {
|
||||
// Filter the withdraws
|
||||
withdraws = withdraws.filter(
|
||||
(contact: any) =>
|
||||
contact.name &&
|
||||
contact.name.toLowerCase().includes(search.toLowerCase())
|
||||
);
|
||||
}
|
||||
|
||||
// Paginate - Start
|
||||
const withdrawsLength = withdraws.length;
|
||||
|
||||
// Calculate pagination details
|
||||
const begin = page * size;
|
||||
const end = Math.min(size * (page + 1), withdrawsLength);
|
||||
const lastPage = Math.max(Math.ceil(withdrawsLength / 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) {
|
||||
withdraws = null;
|
||||
pagination = {
|
||||
lastPage,
|
||||
};
|
||||
} else {
|
||||
// Paginate the results by size
|
||||
withdraws = withdraws.slice(begin, end);
|
||||
|
||||
// Prepare the pagination mock-api
|
||||
pagination = {
|
||||
length: withdrawsLength,
|
||||
size: size,
|
||||
page: page,
|
||||
lastPage: lastPage,
|
||||
startIndex: begin,
|
||||
endIndex: end - 1,
|
||||
};
|
||||
}
|
||||
|
||||
// Return the response
|
||||
return [
|
||||
200,
|
||||
{
|
||||
withdraws,
|
||||
pagination,
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Withdraws - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/bank/withdraw/withdraw')
|
||||
.reply(({ request }) => {
|
||||
// Get the id from the params
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Clone the users
|
||||
const withdraws = cloneDeep(this._withdraws);
|
||||
|
||||
// Find the withdraw
|
||||
const withdraw = withdraws.find((item: any) => item.id === id);
|
||||
|
||||
// Return the response
|
||||
return [200, withdraw];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Withdraws - POST
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPost('api/apps/bank/withdraw/withdraw')
|
||||
.reply(() => {
|
||||
// Generate a new withdraw
|
||||
const newWithdraw = {
|
||||
id: FuseMockApiUtils.guid(),
|
||||
rank: '',
|
||||
nickname: '',
|
||||
exchangeApplication: '',
|
||||
calculateType: '',
|
||||
accountHolder: '',
|
||||
note: '',
|
||||
registrationDate: '',
|
||||
processDate: '',
|
||||
deposit: '',
|
||||
withdrawal: '',
|
||||
total: '',
|
||||
highRank: '',
|
||||
state: '',
|
||||
};
|
||||
|
||||
// Unshift the new withdraw
|
||||
this._withdraws.unshift(newWithdraw);
|
||||
|
||||
// Return the response
|
||||
return [200, newWithdraw];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Withdraw - PATCH
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPatch('api/apps/bank/withdraw/withdraw')
|
||||
.reply(({ request }) => {
|
||||
// Get the id and withdraw
|
||||
const id = request.body.id;
|
||||
const withdraw = cloneDeep(request.body.withdraw);
|
||||
|
||||
// Prepare the updated withdraw
|
||||
let updatedWithdraw = null;
|
||||
|
||||
// Find the withdraw and update it
|
||||
this._withdraws.forEach((item, index, withdraws) => {
|
||||
if (item.id === id) {
|
||||
// Update the withdraw
|
||||
withdraws[index] = assign({}, withdraws[index], withdraw);
|
||||
|
||||
// Store the updated withdraw
|
||||
updatedWithdraw = withdraws[index];
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, updatedWithdraw];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Withdraw - DELETE
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onDelete('api/apps/bank/withdraw/withdraw')
|
||||
.reply(({ request }) => {
|
||||
// Get the id
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Find the withdraw and delete it
|
||||
this._withdraws.forEach((item, index) => {
|
||||
if (item.id === id) {
|
||||
this._withdraws.splice(index, 1);
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, true];
|
||||
});
|
||||
}
|
||||
}
|
52
src/app/mock-api/apps/bank/withdraw/data.ts
Normal file
52
src/app/mock-api/apps/bank/withdraw/data.ts
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* eslint-disable */
|
||||
|
||||
export const withdraws = [
|
||||
{
|
||||
rank: '회원',
|
||||
id: 'aa100',
|
||||
nickname: 'aa100',
|
||||
exchangeApplication: 14000000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '광주은행121212121212sss',
|
||||
note: '@',
|
||||
registrationDate: '2022-06-10 16:51',
|
||||
processDate: '2022-06-10 16:51',
|
||||
deposit: 41200000,
|
||||
withdrawal: 19000000,
|
||||
total: 22200000,
|
||||
highRank: '[매장]kgon5',
|
||||
state: '완료',
|
||||
},
|
||||
{
|
||||
rank: '회원',
|
||||
id: 'aa100',
|
||||
nickname: 'aa100',
|
||||
exchangeApplication: 5000000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '광주은행121212121212sss',
|
||||
note: '@',
|
||||
registrationDate: '2022-06-08 18:31',
|
||||
processDate: '2022-06-08 20:13',
|
||||
deposit: 41200000,
|
||||
withdrawal: 19000000,
|
||||
total: 22200000,
|
||||
highRank: '[매장]kgon5',
|
||||
state: '완료',
|
||||
},
|
||||
{
|
||||
rank: '회원',
|
||||
id: 'qwer12',
|
||||
nickname: '하하하',
|
||||
exchangeApplication: 10000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '하나은행000210654151테스트',
|
||||
note: '',
|
||||
registrationDate: '2022-06-08 01:22',
|
||||
processDate: '2022-06-08 01:22',
|
||||
deposit: 10000000,
|
||||
withdrawal: 10000,
|
||||
total: 9990000,
|
||||
highRank: '[매장]kgon5',
|
||||
state: '완료',
|
||||
},
|
||||
];
|
|
@ -69,6 +69,13 @@ export const defaultNavigation: FuseNavigationItem[] = [
|
|||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/bank/deposit',
|
||||
},
|
||||
{
|
||||
id: 'bank.withdraw',
|
||||
title: 'Withdraw',
|
||||
type: 'basic',
|
||||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/bank/withdraw',
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<mat-select placeholder="내용">
|
||||
<mat-option value="">카지노콤프</mat-option>
|
||||
<mat-option value="">슬롯콤프</mat-option>
|
||||
<mat-option value="">배팅콤프</mat-option>
|
||||
<mat-option value="">베팅콤프</mat-option>
|
||||
<mat-option value="">첫충콤프</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
|
@ -135,7 +135,7 @@
|
|||
class="hidden sm:block"
|
||||
[mat-sort-header]="'bettingInfomation'"
|
||||
>
|
||||
배팅정보
|
||||
베팅정보
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'delete'">
|
||||
삭제
|
||||
|
@ -169,98 +169,99 @@
|
|||
<div class="hidden sm:block truncate">
|
||||
LV.{{ deposit.level }}
|
||||
</div>
|
||||
</div>
|
||||
<!-- id -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.id }}
|
||||
</div>
|
||||
<!-- id -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.id }}
|
||||
</div>
|
||||
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.nickname }}
|
||||
</div>
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.nickname }}
|
||||
</div>
|
||||
|
||||
<!-- paymentDue -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.paymentDue }}원
|
||||
</div>
|
||||
<!-- paymentDue -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.paymentDue }}원
|
||||
</div>
|
||||
|
||||
<!-- calculateType -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.calculateType }}
|
||||
</div>
|
||||
<!-- calculateType -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.calculateType }}
|
||||
</div>
|
||||
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.accountHolder }}
|
||||
</div>
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.accountHolder }}
|
||||
</div>
|
||||
|
||||
<!-- note -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.note }}
|
||||
</div>
|
||||
<!-- note -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.note }}
|
||||
</div>
|
||||
|
||||
<!-- registrationDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.registrationDate }}
|
||||
</div>
|
||||
<!-- registrationDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.registrationDate }}
|
||||
</div>
|
||||
|
||||
<!-- processDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.processDate }}
|
||||
</div>
|
||||
<!-- processDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.processDate }}
|
||||
</div>
|
||||
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.deposit }}원 {{ deposit.withdrawal }}원
|
||||
{{ deposit.total }}원
|
||||
</div>
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.deposit }}원 {{ deposit.withdrawal }}원
|
||||
{{ deposit.total }}원
|
||||
</div>
|
||||
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.gameMoney }}
|
||||
</div>
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.gameMoney }}
|
||||
</div>
|
||||
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ deposit.highRank }}
|
||||
</button>
|
||||
</div>
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ deposit.highRank }}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.state }}
|
||||
</div>
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ deposit.state }}
|
||||
</div>
|
||||
|
||||
<!-- memberInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">회원정보</button>
|
||||
</div>
|
||||
<!-- memberInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
회원정보
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
베팅리스트
|
||||
</button>
|
||||
</div>
|
||||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
베팅리스트
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- delete -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">취소</button>
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<!-- delete -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">취소</button>
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<div
|
||||
class="relative flex flex-0 items-center justify-center w-12 h-12 mr-6 rounded overflow-hidden border"
|
||||
>
|
||||
|
@ -279,40 +280,40 @@
|
|||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
{{ user.sku }}
|
||||
</div> -->
|
||||
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
{{ user.name }}
|
||||
</div> -->
|
||||
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
{{ user.price | currency: "USD":"symbol":"1.2-2" }}
|
||||
</div> -->
|
||||
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<div class="min-w-4">{{ user.stock }}</div> -->
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-red-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock < 20"
|
||||
>
|
||||
<div class="flex w-full h-1/3 bg-red-600"></div>
|
||||
</div> -->
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-orange-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 20 && user.stock < 30"
|
||||
>
|
||||
<div class="flex w-full h-2/4 bg-orange-400"></div>
|
||||
</div> -->
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-green-100 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 30"
|
||||
>
|
||||
|
@ -320,8 +321,8 @@
|
|||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<ng-container *ngIf="user.active">
|
||||
<mat-icon
|
||||
class="text-green-400 icon-size-5"
|
||||
|
@ -336,8 +337,8 @@
|
|||
</ng-container>
|
||||
</div> -->
|
||||
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<button
|
||||
class="min-w-10 min-h-7 h-7 px-2 leading-6"
|
||||
mat-stroked-button
|
||||
|
@ -353,6 +354,7 @@
|
|||
></mat-icon>
|
||||
</button>
|
||||
</div> -->
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
|
3
src/app/modules/admin/bank/withdraw/components/index.ts
Normal file
3
src/app/modules/admin/bank/withdraw/components/index.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { ListComponent } from './list.component';
|
||||
|
||||
export const COMPONENTS = [ListComponent];
|
|
@ -0,0 +1,363 @@
|
|||
<div
|
||||
class="sm:absolute sm:inset-0 flex flex-col flex-auto min-w-0 sm:overflow-hidden bg-card dark:bg-transparent"
|
||||
>
|
||||
<!-- Header -->
|
||||
<div
|
||||
class="relative flex flex-col sm:flex-row flex-0 sm:items-center sm:justify-between py-8 px-6 md:px-8 border-b"
|
||||
>
|
||||
<!-- Loader -->
|
||||
<div class="absolute inset-x-0 bottom-0" *ngIf="isLoading">
|
||||
<mat-progress-bar [mode]="'indeterminate'"></mat-progress-bar>
|
||||
</div>
|
||||
<!-- Title -->
|
||||
<div class="text-4xl font-extrabold tracking-tight">Withdraw</div>
|
||||
<!-- Actions -->
|
||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||
<!-- Memo -->
|
||||
<mat-form-field>
|
||||
<input matInput type="text" />
|
||||
</mat-form-field>
|
||||
<button mat-flat-button [color]="'primary'">메모저장</button>
|
||||
<!-- SelectBox -->
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="내용">
|
||||
<mat-option value="">카지노콤프</mat-option>
|
||||
<mat-option value="">슬롯콤프</mat-option>
|
||||
<mat-option value="">베팅콤프</mat-option>
|
||||
<mat-option value="">첫충콤프</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="아이디">
|
||||
<mat-option value="">아이디</mat-option>
|
||||
<mat-option value="">닉네임</mat-option>
|
||||
<mat-option value="">입금자이름</mat-option>
|
||||
<mat-option value="">상태</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<!-- Search -->
|
||||
<mat-form-field
|
||||
class="fuse-mat-dense fuse-mat-no-subscript fuse-mat-rounded min-w-64"
|
||||
>
|
||||
<mat-icon
|
||||
class="icon-size-5"
|
||||
matPrefix
|
||||
[svgIcon]="'heroicons_solid:search'"
|
||||
></mat-icon>
|
||||
<input
|
||||
matInput
|
||||
[formControl]="searchInputControl"
|
||||
[autocomplete]="'off'"
|
||||
[placeholder]="'Search'"
|
||||
/>
|
||||
</mat-form-field>
|
||||
<!-- Search button -->
|
||||
<button
|
||||
class="ml-4"
|
||||
mat-flat-button
|
||||
[color]="'primary'"
|
||||
(click)="__createProduct()"
|
||||
>
|
||||
<!-- <mat-icon [svgIcon]="'heroicons_outline:plus'"></mat-icon> -->
|
||||
<span class="ml-2 mr-1">검색하기</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Main -->
|
||||
<div class="flex flex-auto overflow-hidden">
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">환전 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">대기 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">환전 취소</button>
|
||||
</div>
|
||||
<!-- Products list -->
|
||||
<div
|
||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
||||
>
|
||||
<ng-container *ngIf="withdraws$ | async as withdraws">
|
||||
<ng-container *ngIf="withdraws.length > 0; else noWithdraw">
|
||||
<div class="grid">
|
||||
<!-- Header -->
|
||||
<div
|
||||
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
|
||||
matSort
|
||||
matSortDisableClear
|
||||
>
|
||||
<div></div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'rank'">등급</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'id'">아이디</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'nickname'">
|
||||
닉네임
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'calculateType'">
|
||||
정산종류
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'accountHolder'">
|
||||
회원정보
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'note'">비고</div>
|
||||
<div
|
||||
class="hidden sm:block"
|
||||
[mat-sort-header]="'registrationDate'"
|
||||
>
|
||||
등록날짜
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'processDate'">
|
||||
처리날짜
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="''">입금출금</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'highRank'">
|
||||
상위
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'state'">
|
||||
상태
|
||||
</div>
|
||||
<div
|
||||
class="hidden sm:block"
|
||||
[mat-sort-header]="'memberInfomation'"
|
||||
>
|
||||
회원정보
|
||||
</div>
|
||||
<div
|
||||
class="hidden sm:block"
|
||||
[mat-sort-header]="'bettingInfomation'"
|
||||
>
|
||||
베팅정보
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'delete'">
|
||||
삭제
|
||||
</div>
|
||||
<!-- <div class="hidden md:block" [mat-sort-header]="'sku'">SKU</div>
|
||||
<div [mat-sort-header]="'name'">Name</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'price'">
|
||||
Price
|
||||
</div>
|
||||
<div class="hidden lg:block" [mat-sort-header]="'stock'">
|
||||
Stock
|
||||
</div>
|
||||
<div class="hidden lg:block" [mat-sort-header]="'active'">
|
||||
Active
|
||||
</div>
|
||||
<div class="hidden sm:block">Details</div> -->
|
||||
</div>
|
||||
<!-- Rows -->
|
||||
<ng-container *ngIf="withdraws$ | async as withdraws">
|
||||
<ng-container
|
||||
*ngFor="let withdraw of withdraws; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<!-- rank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.rank }}
|
||||
</div>
|
||||
|
||||
<!-- id -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.id }}
|
||||
</div>
|
||||
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.nickname }}
|
||||
</div>
|
||||
|
||||
<!-- calculateType -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.calculateType }}
|
||||
</div>
|
||||
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.accountHolder }}
|
||||
</div>
|
||||
|
||||
<!-- note -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.note }}
|
||||
</div>
|
||||
|
||||
<!-- registrationDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.registrationDate }}
|
||||
</div>
|
||||
|
||||
<!-- processDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.processDate }}
|
||||
</div>
|
||||
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.deposit }}원 {{ withdraw.withdraw }}원
|
||||
{{ withdraw.total }}원
|
||||
</div>
|
||||
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ withdraw.highRank }}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ withdraw.state }}
|
||||
</div>
|
||||
|
||||
<!-- memberInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
회원정보
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
베팅리스트
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- delete -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">취소</button>
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<div
|
||||
class="relative flex flex-0 items-center justify-center w-12 h-12 mr-6 rounded overflow-hidden border"
|
||||
>
|
||||
<img
|
||||
class="w-8"
|
||||
*ngIf="user.thumbnail"
|
||||
[alt]="'Product thumbnail image'"
|
||||
[src]="user.thumbnail"
|
||||
/>
|
||||
<div
|
||||
class="flex items-center justify-center w-full h-full text-xs font-semibold leading-none text-center uppercase"
|
||||
*ngIf="!user.thumbnail"
|
||||
>
|
||||
NO THUMB
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
{{ user.sku }}
|
||||
</div> -->
|
||||
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
{{ user.name }}
|
||||
</div> -->
|
||||
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
{{ user.price | currency: "USD":"symbol":"1.2-2" }}
|
||||
</div> -->
|
||||
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<div class="min-w-4">{{ user.stock }}</div> -->
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-red-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock < 20"
|
||||
>
|
||||
<div class="flex w-full h-1/3 bg-red-600"></div>
|
||||
</div> -->
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-orange-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 20 && user.stock < 30"
|
||||
>
|
||||
<div class="flex w-full h-2/4 bg-orange-400"></div>
|
||||
</div> -->
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-green-100 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 30"
|
||||
>
|
||||
<div class="flex w-full h-full bg-green-400"></div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<ng-container *ngIf="user.active">
|
||||
<mat-icon
|
||||
class="text-green-400 icon-size-5"
|
||||
[svgIcon]="'heroicons_solid:check'"
|
||||
></mat-icon>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="!user.active">
|
||||
<mat-icon
|
||||
class="text-gray-400 icon-size-5"
|
||||
[svgIcon]="'heroicons_solid:x'"
|
||||
></mat-icon>
|
||||
</ng-container>
|
||||
</div> -->
|
||||
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<button
|
||||
class="min-w-10 min-h-7 h-7 px-2 leading-6"
|
||||
mat-stroked-button
|
||||
(click)="__toggleDetails(user.id)"
|
||||
>
|
||||
<mat-icon
|
||||
class="icon-size-5"
|
||||
[svgIcon]="
|
||||
selectedUser?.id === user.id
|
||||
? 'heroicons_solid:chevron-up'
|
||||
: 'heroicons_solid:chevron-down'
|
||||
"
|
||||
></mat-icon>
|
||||
</button>
|
||||
</div> -->
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
||||
<mat-paginator
|
||||
class="sm:absolute sm:inset-x-0 sm:bottom-0 border-b sm:border-t sm:border-b-0 z-10 bg-gray-50 dark:bg-transparent"
|
||||
[ngClass]="{ 'pointer-events-none': isLoading }"
|
||||
[length]="pagination?.length"
|
||||
[pageIndex]="pagination?.page"
|
||||
[pageSize]="pagination?.size"
|
||||
[pageSizeOptions]="[5, 10, 25, 100]"
|
||||
[showFirstLastButtons]="true"
|
||||
></mat-paginator>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
|
||||
<ng-template #noWithdraw>
|
||||
<div
|
||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||
>
|
||||
There are no withdraw!
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">환전 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">대기 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">환전 취소</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
190
src/app/modules/admin/bank/withdraw/components/list.component.ts
Normal file
190
src/app/modules/admin/bank/withdraw/components/list.component.ts
Normal file
|
@ -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 { Withdraw } from '../models/withdraw';
|
||||
import { WithdrawPagination } from '../models/withdraw-pagination';
|
||||
import { WithdrawService } from '../services/withdraw.service';
|
||||
|
||||
@Component({
|
||||
selector: 'withdraw-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;
|
||||
|
||||
withdraws$!: Observable<Withdraw[] | undefined>;
|
||||
|
||||
isLoading = false;
|
||||
searchInputControl = new FormControl();
|
||||
selectedWithdraw?: Withdraw;
|
||||
pagination?: WithdrawPagination;
|
||||
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _withdrawService: WithdrawService
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Lifecycle hooks
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* On init
|
||||
*/
|
||||
ngOnInit(): void {
|
||||
// Get the pagination
|
||||
this._withdrawService.pagination$
|
||||
.pipe(takeUntil(this._unsubscribeAll))
|
||||
.subscribe((pagination: WithdrawPagination | undefined) => {
|
||||
// Update the pagination
|
||||
this.pagination = pagination;
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
});
|
||||
|
||||
// Get the products
|
||||
this.withdraws$ = this._withdrawService.withdraws$;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 withdraw 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._withdrawService.getWithdraws(
|
||||
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;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
export interface WithdrawPagination {
|
||||
length: number;
|
||||
size: number;
|
||||
page: number;
|
||||
lastPage: number;
|
||||
startIndex: number;
|
||||
endIndex: number;
|
||||
}
|
19
src/app/modules/admin/bank/withdraw/models/withdraw.ts
Normal file
19
src/app/modules/admin/bank/withdraw/models/withdraw.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
export interface Withdraw {
|
||||
rank: string;
|
||||
id: string;
|
||||
nickname: string;
|
||||
exchangeApplication: number;
|
||||
calculateType: string;
|
||||
accountHolder: string;
|
||||
note: string;
|
||||
registrationDate: string;
|
||||
processDate: string;
|
||||
deposit: number;
|
||||
withdraw: number;
|
||||
total: number;
|
||||
highRank: string;
|
||||
state: string;
|
||||
memberInformation: string;
|
||||
bettingInformation: string;
|
||||
delete: string;
|
||||
}
|
|
@ -0,0 +1,87 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
ActivatedRouteSnapshot,
|
||||
Resolve,
|
||||
Router,
|
||||
RouterStateSnapshot,
|
||||
} from '@angular/router';
|
||||
import { catchError, Observable, throwError } from 'rxjs';
|
||||
|
||||
import { Withdraw } from '../models/withdraw';
|
||||
import { WithdrawPagination } from '../models/withdraw-pagination';
|
||||
import { WithdrawService } from '../services/withdraw.service';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class WithdrawResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _withdrawService: WithdrawService,
|
||||
private _router: Router
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<Withdraw | undefined> {
|
||||
return this._withdrawService.getWithdrawById(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 WithdrawsResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _withdrawService: WithdrawService) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<{
|
||||
pagination: WithdrawPagination;
|
||||
withdraws: Withdraw[];
|
||||
}> {
|
||||
return this._withdrawService.getWithdraws();
|
||||
}
|
||||
}
|
153
src/app/modules/admin/bank/withdraw/services/withdraw.service.ts
Normal file
153
src/app/modules/admin/bank/withdraw/services/withdraw.service.ts
Normal file
|
@ -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 { Withdraw } from '../models/withdraw';
|
||||
import { WithdrawPagination } from '../models/withdraw-pagination';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class WithdrawService {
|
||||
// Private
|
||||
private __pagination = new BehaviorSubject<WithdrawPagination | undefined>(
|
||||
undefined
|
||||
);
|
||||
private __withdraw = new BehaviorSubject<Withdraw | undefined>(undefined);
|
||||
private __withdraws = new BehaviorSubject<Withdraw[] | undefined>(undefined);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _httpClient: HttpClient) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Accessors
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Getter for pagination
|
||||
*/
|
||||
get pagination$(): Observable<WithdrawPagination | undefined> {
|
||||
return this.__pagination.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for withdraw
|
||||
*/
|
||||
get withdraw$(): Observable<Withdraw | undefined> {
|
||||
return this.__withdraw.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for withdraws
|
||||
*/
|
||||
get withdraws$(): Observable<Withdraw[] | undefined> {
|
||||
return this.__withdraws.asObservable();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get withdraws
|
||||
*
|
||||
*
|
||||
* @param page
|
||||
* @param size
|
||||
* @param sort
|
||||
* @param order
|
||||
* @param search
|
||||
*/
|
||||
getWithdraws(
|
||||
page: number = 0,
|
||||
size: number = 10,
|
||||
sort: string = 'nickname',
|
||||
order: 'asc' | 'desc' | '' = 'asc',
|
||||
search: string = ''
|
||||
): Observable<{
|
||||
pagination: WithdrawPagination;
|
||||
withdraws: Withdraw[];
|
||||
}> {
|
||||
return this._httpClient
|
||||
.get<{ pagination: WithdrawPagination; withdraws: Withdraw[] }>(
|
||||
'api/apps/bank/withdraw/withdraws',
|
||||
{
|
||||
params: {
|
||||
page: '' + page,
|
||||
size: '' + size,
|
||||
sort,
|
||||
order,
|
||||
search,
|
||||
},
|
||||
}
|
||||
)
|
||||
.pipe(
|
||||
tap((response) => {
|
||||
this.__pagination.next(response.pagination);
|
||||
this.__withdraws.next(response.withdraws);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get product by id
|
||||
*/
|
||||
getWithdrawById(id: string | null): Observable<Withdraw> {
|
||||
return this.__withdraws.pipe(
|
||||
take(1),
|
||||
map((withdraws) => {
|
||||
// Find the product
|
||||
const withdraw = withdraws?.find((item) => item.id === id) || undefined;
|
||||
|
||||
// Update the product
|
||||
this.__withdraw.next(withdraw);
|
||||
|
||||
// Return the product
|
||||
return withdraw;
|
||||
}),
|
||||
switchMap((product) => {
|
||||
if (!product) {
|
||||
return throwError('Could not found product with id of ' + id + '!');
|
||||
}
|
||||
|
||||
return of(product);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create product
|
||||
*/
|
||||
createWithdraw(): Observable<Withdraw> {
|
||||
return this.withdraws$.pipe(
|
||||
take(1),
|
||||
switchMap((withdraws) =>
|
||||
this._httpClient
|
||||
.post<Withdraw>('api/apps/bank/withdraw/product', {})
|
||||
.pipe(
|
||||
map((newWithdraw) => {
|
||||
// Update the withdraws with the new product
|
||||
if (!!withdraws) {
|
||||
this.__withdraws.next([newWithdraw, ...withdraws]);
|
||||
}
|
||||
|
||||
// Return the new product
|
||||
return newWithdraw;
|
||||
})
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
42
src/app/modules/admin/bank/withdraw/withdraw.module.ts
Normal file
42
src/app/modules/admin/bank/withdraw/withdraw.module.ts
Normal file
|
@ -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 { withdrawRoutes } from './withdraw.routing';
|
||||
|
||||
@NgModule({
|
||||
declarations: [COMPONENTS],
|
||||
imports: [
|
||||
TranslocoModule,
|
||||
SharedModule,
|
||||
RouterModule.forChild(withdrawRoutes),
|
||||
|
||||
MatButtonModule,
|
||||
MatFormFieldModule,
|
||||
MatIconModule,
|
||||
MatInputModule,
|
||||
MatPaginatorModule,
|
||||
MatProgressBarModule,
|
||||
MatRippleModule,
|
||||
MatSortModule,
|
||||
MatSelectModule,
|
||||
MatTooltipModule,
|
||||
],
|
||||
})
|
||||
export class WithdrawModule {}
|
15
src/app/modules/admin/bank/withdraw/withdraw.routing.ts
Normal file
15
src/app/modules/admin/bank/withdraw/withdraw.routing.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { Route } from '@angular/router';
|
||||
|
||||
import { ListComponent } from './components/list.component';
|
||||
|
||||
// import { DepositResolver } from './resolvers/deposit.resolver';
|
||||
|
||||
export const withdrawRoutes: Route[] = [
|
||||
{
|
||||
path: '',
|
||||
component: ListComponent,
|
||||
// resolve: {
|
||||
// deposits: DepositResolver,
|
||||
// },
|
||||
},
|
||||
];
|
|
@ -181,8 +181,8 @@
|
|||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<!-- management -->
|
||||
<!-- rate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<!-- rate -->
|
||||
<button
|
||||
mat-button
|
||||
color="primary"
|
||||
|
@ -193,7 +193,7 @@
|
|||
카지노-그외: 0%
|
||||
슬롯: 0%
|
||||
카지노루징: 0%
|
||||
슬롯수징: 0%"
|
||||
슬롯루징: 0%"
|
||||
>
|
||||
요율
|
||||
</button>
|
||||
|
@ -205,85 +205,88 @@
|
|||
<mat-option value="">콤프지급/회수</mat-option>
|
||||
<mat-option value="">쿠폰머니지급/회수</mat-option>
|
||||
<mat-option value="">쪽지보내기</mat-option>
|
||||
<mat-option value="">배팅리스트</mat-option>
|
||||
<mat-option value="">베팅리스트</mat-option>
|
||||
<mat-option value="">강제로그아웃</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
</button>
|
||||
<!-- highRank -->
|
||||
</div>
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.highRank }}
|
||||
<!-- rank -->
|
||||
</div>
|
||||
<!-- rank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.rank }}
|
||||
<!-- level -->
|
||||
</div>
|
||||
<!-- level -->
|
||||
<div class="hidden sm:block truncate">
|
||||
LV.{{ user.level }}
|
||||
</div>
|
||||
<!-- id -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.id }}
|
||||
</div>
|
||||
</div>
|
||||
<!-- id -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.id }}
|
||||
</div>
|
||||
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.nickname }}
|
||||
</div>
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.nickname }}
|
||||
</div>
|
||||
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.accountHolder }}
|
||||
</div>
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.accountHolder }}
|
||||
</div>
|
||||
|
||||
<!-- contact -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.contact }}
|
||||
</div>
|
||||
<!-- contact -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.contact }}
|
||||
</div>
|
||||
|
||||
<!-- reserve -->
|
||||
<div class="hidden sm:block truncate">
|
||||
캐쉬{{ user.cash }} 콤프{{ user.comp }} 쿠폰{{
|
||||
user.coupon
|
||||
}}
|
||||
</div>
|
||||
<!-- reserve -->
|
||||
<div class="hidden sm:block truncate">
|
||||
캐쉬{{ user.cash }} 콤프{{ user.comp }} 쿠폰{{ user.coupon }}
|
||||
</div>
|
||||
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.gameMoney }}
|
||||
</div>
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.gameMoney }}
|
||||
</div>
|
||||
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- todayComp -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.todayComp }}P
|
||||
</div>
|
||||
<!-- todayComp -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.todayComp }}P
|
||||
</div>
|
||||
|
||||
<!-- total -->
|
||||
<div class="hidden sm:block truncate">
|
||||
입금{{ user.deposit }} 출금{{ user.withdraw }} 차익{{
|
||||
user.margin
|
||||
}}
|
||||
</div>
|
||||
<!-- total -->
|
||||
<div class="hidden sm:block truncate">
|
||||
입금{{ user.deposit }} 출금{{ user.withdraw }} 차익{{
|
||||
user.margin
|
||||
}}
|
||||
</div>
|
||||
|
||||
<!-- log -->
|
||||
<div class="hidden sm:block truncate">
|
||||
가입{{ user.accession }} 최종{{ user.final }} IP{{
|
||||
user.ip
|
||||
}}
|
||||
</div>
|
||||
<!-- log -->
|
||||
<div class="hidden sm:block truncate">
|
||||
가입{{ user.accession }} 최종{{ user.final }} IP{{ user.ip }}
|
||||
</div>
|
||||
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.state }}
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ user.state }}
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<div
|
||||
class="relative flex flex-0 items-center justify-center w-12 h-12 mr-6 rounded overflow-hidden border"
|
||||
>
|
||||
|
@ -302,40 +305,40 @@
|
|||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
{{ user.sku }}
|
||||
</div> -->
|
||||
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
{{ user.name }}
|
||||
</div> -->
|
||||
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
{{ user.price | currency: "USD":"symbol":"1.2-2" }}
|
||||
</div> -->
|
||||
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<div class="min-w-4">{{ user.stock }}</div> -->
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-red-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock < 20"
|
||||
>
|
||||
<div class="flex w-full h-1/3 bg-red-600"></div>
|
||||
</div> -->
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-orange-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 20 && user.stock < 30"
|
||||
>
|
||||
<div class="flex w-full h-2/4 bg-orange-400"></div>
|
||||
</div> -->
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-green-100 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 30"
|
||||
>
|
||||
|
@ -343,8 +346,8 @@
|
|||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<ng-container *ngIf="user.active">
|
||||
<mat-icon
|
||||
class="text-green-400 icon-size-5"
|
||||
|
@ -359,8 +362,8 @@
|
|||
</ng-container>
|
||||
</div> -->
|
||||
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<button
|
||||
class="min-w-10 min-h-7 h-7 px-2 leading-6"
|
||||
mat-stroked-button
|
||||
|
@ -376,7 +379,6 @@
|
|||
></mat-icon>
|
||||
</button>
|
||||
</div> -->
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
|
|
@ -6,5 +6,7 @@
|
|||
"User-view": "User View",
|
||||
"Project": "Project",
|
||||
"Partner": "Partner",
|
||||
"Analytics": "Analytics"
|
||||
"Analytics": "Analytics",
|
||||
"Deposit": "Deposit",
|
||||
"Withdraw": "Withdraw"
|
||||
}
|
||||
|
|
|
@ -6,5 +6,7 @@
|
|||
"User-view": "사용자 상세보기",
|
||||
"Project": "프로젝트",
|
||||
"Partner": "파트너",
|
||||
"Analytics": "Analytics"
|
||||
"Analytics": "Analytics",
|
||||
"Deposit": "입금관리",
|
||||
"Withdraw": "출금관리"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user