설정 페이지 추가
This commit is contained in:
parent
0b7ed6a7e7
commit
08b6c8721d
|
@ -305,6 +305,41 @@ export const appRoutes: Route[] = [
|
||||||
(m: any) => m.BasicModule
|
(m: any) => m.BasicModule
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'ladder',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('app/modules/admin/settings/ladder/ladder.module').then(
|
||||||
|
(m: any) => m.LadderModule
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'game',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('app/modules/admin/settings/game/game.module').then(
|
||||||
|
(m: any) => m.GameModule
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'evo',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('app/modules/admin/settings/evo/evo.module').then(
|
||||||
|
(m: any) => m.EvoModule
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'branch',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('app/modules/admin/settings/branch/branch.module').then(
|
||||||
|
(m: any) => m.BranchModule
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'indexing',
|
||||||
|
loadChildren: () =>
|
||||||
|
import(
|
||||||
|
'app/modules/admin/settings/indexing/indexing.module'
|
||||||
|
).then((m: any) => m.IndexingModule),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
74
src/app/mock-api/apps/settings/branch/api.ts
Normal file
74
src/app/mock-api/apps/settings/branch/api.ts
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { assign, cloneDeep } from 'lodash-es';
|
||||||
|
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||||
|
import { basicSetting as basicSettingData } from './data';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class BranchSettingMockApi {
|
||||||
|
private _basicSetting: any = basicSettingData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||||
|
// Register Mock API handlers
|
||||||
|
this.registerHandlers();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register Mock API handlers
|
||||||
|
*/
|
||||||
|
registerHandlers(): void {
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - GET
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onGet('api/apps/settings/branch', 300)
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Clone the deposits
|
||||||
|
let basicSetting: any | null = cloneDeep(this._basicSetting);
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [
|
||||||
|
200,
|
||||||
|
{
|
||||||
|
basicSetting,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - PATCH
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onPatch('api/apps/settings/branch')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id and deposit
|
||||||
|
const id = request.body.id;
|
||||||
|
const basicSetting = cloneDeep(request.body.basicSetting);
|
||||||
|
|
||||||
|
// Prepare the updated basicSetting
|
||||||
|
let updatedBasicSetting = null;
|
||||||
|
|
||||||
|
// Find the deposit and update it
|
||||||
|
// this._basicSetting.forEach((item, index, bs) => {
|
||||||
|
// if (item.id === id) {
|
||||||
|
// // Update the deposit
|
||||||
|
// basicSetting[index] = assign({}, basicSetting[index], deposit);
|
||||||
|
|
||||||
|
// // Store the updated deposit
|
||||||
|
// updatedDeposit = deposits[index];
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, basicSetting];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
102
src/app/mock-api/apps/settings/branch/data.ts
Normal file
102
src/app/mock-api/apps/settings/branch/data.ts
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
|
||||||
|
import { SiteStatusType } from 'app/modules/admin/settings/basic/types/site-status.type';
|
||||||
|
|
||||||
|
export const basicSetting = {
|
||||||
|
infos: [
|
||||||
|
{
|
||||||
|
name: '사이트 ON/OFF 설정',
|
||||||
|
content: SiteStatusType.joinAvailable,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '메모',
|
||||||
|
content: '메모 테스트',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
earnSettings: [
|
||||||
|
{
|
||||||
|
level: 'LV1',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV2',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV3',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV4',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
gameSetting: [
|
||||||
|
{
|
||||||
|
name: '스포츠게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠게임 결과 가져오기',
|
||||||
|
isUse: false,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기결과 가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '하루한번 21시50분에 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 결과처리/정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분 단위로 체크(4분35초, 40초, 54초, 50초, 55초 정각)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠실시간 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '10초마다 완료된 경기 포인트 정산',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 로그 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '20초마다 마지막 로그 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분마다 정산내용 DB저장',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
// siteStatus?: SiteStatusType;
|
||||||
|
// memo?: string;
|
||||||
|
// earnSetting?: any;
|
||||||
|
// gameSetting?: any;
|
74
src/app/mock-api/apps/settings/evo/api.ts
Normal file
74
src/app/mock-api/apps/settings/evo/api.ts
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { assign, cloneDeep } from 'lodash-es';
|
||||||
|
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||||
|
import { basicSetting as basicSettingData } from './data';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class EvoSettingMockApi {
|
||||||
|
private _basicSetting: any = basicSettingData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||||
|
// Register Mock API handlers
|
||||||
|
this.registerHandlers();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register Mock API handlers
|
||||||
|
*/
|
||||||
|
registerHandlers(): void {
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - GET
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onGet('api/apps/settings/evo', 300)
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Clone the deposits
|
||||||
|
let basicSetting: any | null = cloneDeep(this._basicSetting);
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [
|
||||||
|
200,
|
||||||
|
{
|
||||||
|
basicSetting,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - PATCH
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onPatch('api/apps/settings/evo')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id and deposit
|
||||||
|
const id = request.body.id;
|
||||||
|
const basicSetting = cloneDeep(request.body.basicSetting);
|
||||||
|
|
||||||
|
// Prepare the updated basicSetting
|
||||||
|
let updatedBasicSetting = null;
|
||||||
|
|
||||||
|
// Find the deposit and update it
|
||||||
|
// this._basicSetting.forEach((item, index, bs) => {
|
||||||
|
// if (item.id === id) {
|
||||||
|
// // Update the deposit
|
||||||
|
// basicSetting[index] = assign({}, basicSetting[index], deposit);
|
||||||
|
|
||||||
|
// // Store the updated deposit
|
||||||
|
// updatedDeposit = deposits[index];
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, basicSetting];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
102
src/app/mock-api/apps/settings/evo/data.ts
Normal file
102
src/app/mock-api/apps/settings/evo/data.ts
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
|
||||||
|
import { SiteStatusType } from 'app/modules/admin/settings/basic/types/site-status.type';
|
||||||
|
|
||||||
|
export const basicSetting = {
|
||||||
|
infos: [
|
||||||
|
{
|
||||||
|
name: '사이트 ON/OFF 설정',
|
||||||
|
content: SiteStatusType.joinAvailable,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '메모',
|
||||||
|
content: '메모 테스트',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
earnSettings: [
|
||||||
|
{
|
||||||
|
level: 'LV1',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV2',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV3',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV4',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
gameSetting: [
|
||||||
|
{
|
||||||
|
name: '스포츠게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠게임 결과 가져오기',
|
||||||
|
isUse: false,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기결과 가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '하루한번 21시50분에 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 결과처리/정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분 단위로 체크(4분35초, 40초, 54초, 50초, 55초 정각)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠실시간 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '10초마다 완료된 경기 포인트 정산',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 로그 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '20초마다 마지막 로그 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분마다 정산내용 DB저장',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
// siteStatus?: SiteStatusType;
|
||||||
|
// memo?: string;
|
||||||
|
// earnSetting?: any;
|
||||||
|
// gameSetting?: any;
|
74
src/app/mock-api/apps/settings/game/api.ts
Normal file
74
src/app/mock-api/apps/settings/game/api.ts
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { assign, cloneDeep } from 'lodash-es';
|
||||||
|
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||||
|
import { basicSetting as basicSettingData } from './data';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class GameSettingMockApi {
|
||||||
|
private _basicSetting: any = basicSettingData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||||
|
// Register Mock API handlers
|
||||||
|
this.registerHandlers();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register Mock API handlers
|
||||||
|
*/
|
||||||
|
registerHandlers(): void {
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - GET
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onGet('api/apps/settings/game', 300)
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Clone the deposits
|
||||||
|
let basicSetting: any | null = cloneDeep(this._basicSetting);
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [
|
||||||
|
200,
|
||||||
|
{
|
||||||
|
basicSetting,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - PATCH
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onPatch('api/apps/settings/game')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id and deposit
|
||||||
|
const id = request.body.id;
|
||||||
|
const basicSetting = cloneDeep(request.body.basicSetting);
|
||||||
|
|
||||||
|
// Prepare the updated basicSetting
|
||||||
|
let updatedBasicSetting = null;
|
||||||
|
|
||||||
|
// Find the deposit and update it
|
||||||
|
// this._basicSetting.forEach((item, index, bs) => {
|
||||||
|
// if (item.id === id) {
|
||||||
|
// // Update the deposit
|
||||||
|
// basicSetting[index] = assign({}, basicSetting[index], deposit);
|
||||||
|
|
||||||
|
// // Store the updated deposit
|
||||||
|
// updatedDeposit = deposits[index];
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, basicSetting];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
102
src/app/mock-api/apps/settings/game/data.ts
Normal file
102
src/app/mock-api/apps/settings/game/data.ts
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
|
||||||
|
import { SiteStatusType } from 'app/modules/admin/settings/basic/types/site-status.type';
|
||||||
|
|
||||||
|
export const basicSetting = {
|
||||||
|
infos: [
|
||||||
|
{
|
||||||
|
name: '사이트 ON/OFF 설정',
|
||||||
|
content: SiteStatusType.joinAvailable,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '메모',
|
||||||
|
content: '메모 테스트',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
earnSettings: [
|
||||||
|
{
|
||||||
|
level: 'LV1',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV2',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV3',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV4',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
gameSetting: [
|
||||||
|
{
|
||||||
|
name: '스포츠게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠게임 결과 가져오기',
|
||||||
|
isUse: false,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기결과 가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '하루한번 21시50분에 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 결과처리/정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분 단위로 체크(4분35초, 40초, 54초, 50초, 55초 정각)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠실시간 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '10초마다 완료된 경기 포인트 정산',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 로그 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '20초마다 마지막 로그 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분마다 정산내용 DB저장',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
// siteStatus?: SiteStatusType;
|
||||||
|
// memo?: string;
|
||||||
|
// earnSetting?: any;
|
||||||
|
// gameSetting?: any;
|
74
src/app/mock-api/apps/settings/indexing/api.ts
Normal file
74
src/app/mock-api/apps/settings/indexing/api.ts
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { assign, cloneDeep } from 'lodash-es';
|
||||||
|
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||||
|
import { basicSetting as basicSettingData } from './data';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class IndexingSettingMockApi {
|
||||||
|
private _basicSetting: any = basicSettingData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||||
|
// Register Mock API handlers
|
||||||
|
this.registerHandlers();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register Mock API handlers
|
||||||
|
*/
|
||||||
|
registerHandlers(): void {
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - GET
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onGet('api/apps/settings/indexing', 300)
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Clone the deposits
|
||||||
|
let basicSetting: any | null = cloneDeep(this._basicSetting);
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [
|
||||||
|
200,
|
||||||
|
{
|
||||||
|
basicSetting,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - PATCH
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onPatch('api/apps/settings/indexing')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id and deposit
|
||||||
|
const id = request.body.id;
|
||||||
|
const basicSetting = cloneDeep(request.body.basicSetting);
|
||||||
|
|
||||||
|
// Prepare the updated basicSetting
|
||||||
|
let updatedBasicSetting = null;
|
||||||
|
|
||||||
|
// Find the deposit and update it
|
||||||
|
// this._basicSetting.forEach((item, index, bs) => {
|
||||||
|
// if (item.id === id) {
|
||||||
|
// // Update the deposit
|
||||||
|
// basicSetting[index] = assign({}, basicSetting[index], deposit);
|
||||||
|
|
||||||
|
// // Store the updated deposit
|
||||||
|
// updatedDeposit = deposits[index];
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, basicSetting];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
102
src/app/mock-api/apps/settings/indexing/data.ts
Normal file
102
src/app/mock-api/apps/settings/indexing/data.ts
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
|
||||||
|
import { SiteStatusType } from 'app/modules/admin/settings/basic/types/site-status.type';
|
||||||
|
|
||||||
|
export const basicSetting = {
|
||||||
|
infos: [
|
||||||
|
{
|
||||||
|
name: '사이트 ON/OFF 설정',
|
||||||
|
content: SiteStatusType.joinAvailable,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '메모',
|
||||||
|
content: '메모 테스트',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
earnSettings: [
|
||||||
|
{
|
||||||
|
level: 'LV1',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV2',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV3',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV4',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
gameSetting: [
|
||||||
|
{
|
||||||
|
name: '스포츠게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠게임 결과 가져오기',
|
||||||
|
isUse: false,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기결과 가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '하루한번 21시50분에 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 결과처리/정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분 단위로 체크(4분35초, 40초, 54초, 50초, 55초 정각)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠실시간 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '10초마다 완료된 경기 포인트 정산',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 로그 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '20초마다 마지막 로그 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분마다 정산내용 DB저장',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
// siteStatus?: SiteStatusType;
|
||||||
|
// memo?: string;
|
||||||
|
// earnSetting?: any;
|
||||||
|
// gameSetting?: any;
|
74
src/app/mock-api/apps/settings/ladder/api.ts
Normal file
74
src/app/mock-api/apps/settings/ladder/api.ts
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { assign, cloneDeep } from 'lodash-es';
|
||||||
|
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||||
|
import { basicSetting as basicSettingData } from './data';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class LadderSettingMockApi {
|
||||||
|
private _basicSetting: any = basicSettingData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||||
|
// Register Mock API handlers
|
||||||
|
this.registerHandlers();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register Mock API handlers
|
||||||
|
*/
|
||||||
|
registerHandlers(): void {
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - GET
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onGet('api/apps/settings/ladder', 300)
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Clone the deposits
|
||||||
|
let basicSetting: any | null = cloneDeep(this._basicSetting);
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [
|
||||||
|
200,
|
||||||
|
{
|
||||||
|
basicSetting,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ BasicSetting - PATCH
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onPatch('api/apps/settings/ladder')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id and deposit
|
||||||
|
const id = request.body.id;
|
||||||
|
const basicSetting = cloneDeep(request.body.basicSetting);
|
||||||
|
|
||||||
|
// Prepare the updated basicSetting
|
||||||
|
let updatedBasicSetting = null;
|
||||||
|
|
||||||
|
// Find the deposit and update it
|
||||||
|
// this._basicSetting.forEach((item, index, bs) => {
|
||||||
|
// if (item.id === id) {
|
||||||
|
// // Update the deposit
|
||||||
|
// basicSetting[index] = assign({}, basicSetting[index], deposit);
|
||||||
|
|
||||||
|
// // Store the updated deposit
|
||||||
|
// updatedDeposit = deposits[index];
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, basicSetting];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
102
src/app/mock-api/apps/settings/ladder/data.ts
Normal file
102
src/app/mock-api/apps/settings/ladder/data.ts
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
|
||||||
|
import { SiteStatusType } from 'app/modules/admin/settings/basic/types/site-status.type';
|
||||||
|
|
||||||
|
export const basicSetting = {
|
||||||
|
infos: [
|
||||||
|
{
|
||||||
|
name: '사이트 ON/OFF 설정',
|
||||||
|
content: SiteStatusType.joinAvailable,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '메모',
|
||||||
|
content: '메모 테스트',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
earnSettings: [
|
||||||
|
{
|
||||||
|
level: 'LV1',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV2',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV3',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
level: 'LV4',
|
||||||
|
firstRate: '15',
|
||||||
|
firstIsUse: true,
|
||||||
|
firstMaxEarnMoney: '10000',
|
||||||
|
everyRate: '15',
|
||||||
|
everyIsUse: true,
|
||||||
|
everyMaxEarnMoney: '10000',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
gameSetting: [
|
||||||
|
{
|
||||||
|
name: '스포츠게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠게임 결과 가져오기',
|
||||||
|
isUse: false,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '다른서버에서 경기결과 가져오고 있음(5분)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '하루한번 21시50분에 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '실시간게임 결과처리/정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분 단위로 체크(4분35초, 40초, 54초, 50초, 55초 정각)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '스포츠실시간 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '10초마다 완료된 경기 포인트 정산',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 로그 가져오기',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '20초마다 마지막 로그 가져옴',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '카지노 포인트 정산',
|
||||||
|
isUse: true,
|
||||||
|
memo: '슬롯 사이트 메모',
|
||||||
|
description: '5분마다 정산내용 DB저장',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
// siteStatus?: SiteStatusType;
|
||||||
|
// memo?: string;
|
||||||
|
// earnSetting?: any;
|
||||||
|
// gameSetting?: any;
|
|
@ -1,212 +0,0 @@
|
||||||
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];
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,52 +0,0 @@
|
||||||
/* 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,
|
|
||||||
withdraw: 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,
|
|
||||||
withdraw: 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,
|
|
||||||
withdraw: 10000,
|
|
||||||
total: 9990000,
|
|
||||||
highRank: '[매장]kgon5',
|
|
||||||
state: '완료',
|
|
||||||
},
|
|
||||||
];
|
|
|
@ -213,6 +213,41 @@ export const defaultNavigation: FuseNavigationItem[] = [
|
||||||
icon: 'heroicons_outline:cog',
|
icon: 'heroicons_outline:cog',
|
||||||
link: '/settings/basic',
|
link: '/settings/basic',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'settings.ladder',
|
||||||
|
title: 'Ladder-Setting',
|
||||||
|
type: 'basic',
|
||||||
|
icon: 'heroicons_outline:cog',
|
||||||
|
link: '/settings/ladder',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'settings.game',
|
||||||
|
title: 'Game-Setting',
|
||||||
|
type: 'basic',
|
||||||
|
icon: 'heroicons_outline:cog',
|
||||||
|
link: '/settings/game',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'settings.evo',
|
||||||
|
title: 'Evo-Setting',
|
||||||
|
type: 'basic',
|
||||||
|
icon: 'heroicons_outline:cog',
|
||||||
|
link: '/settings/evo',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'settings.branch',
|
||||||
|
title: 'Branch-Setting',
|
||||||
|
type: 'basic',
|
||||||
|
icon: 'heroicons_outline:cog',
|
||||||
|
link: '/settings/branch',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'settings.indexing',
|
||||||
|
title: 'Indexing-Setting',
|
||||||
|
type: 'basic',
|
||||||
|
icon: 'heroicons_outline:cog',
|
||||||
|
link: '/settings/indexing',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,14 +18,14 @@ import { SharedModule } from 'app/shared/shared.module';
|
||||||
|
|
||||||
import { COMPONENTS } from './components';
|
import { COMPONENTS } from './components';
|
||||||
|
|
||||||
import { evolutionRoutes } from './evolution.routing';
|
import { branchRoutes } from './branch.routing';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [COMPONENTS],
|
declarations: [COMPONENTS],
|
||||||
imports: [
|
imports: [
|
||||||
TranslocoModule,
|
TranslocoModule,
|
||||||
SharedModule,
|
SharedModule,
|
||||||
RouterModule.forChild(evolutionRoutes),
|
RouterModule.forChild(branchRoutes),
|
||||||
|
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
MatFormFieldModule,
|
MatFormFieldModule,
|
||||||
|
@ -39,4 +39,4 @@ import { evolutionRoutes } from './evolution.routing';
|
||||||
MatTooltipModule,
|
MatTooltipModule,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class EvolutionModule {}
|
export class BranchModule {}
|
15
src/app/modules/admin/settings/branch/branch.routing.ts
Normal file
15
src/app/modules/admin/settings/branch/branch.routing.ts
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import { Route } from '@angular/router';
|
||||||
|
|
||||||
|
import { ListComponent } from './components/list.component';
|
||||||
|
|
||||||
|
import { BranchResolver } from './resolvers/branch.resolver';
|
||||||
|
|
||||||
|
export const branchRoutes: Route[] = [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: ListComponent,
|
||||||
|
// resolve: {
|
||||||
|
// // branch: BranchResolver,
|
||||||
|
// },
|
||||||
|
},
|
||||||
|
];
|
|
@ -1,350 +1 @@
|
||||||
<div
|
<p>branch account setting page</p>
|
||||||
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">Evolution</div>
|
|
||||||
<!-- Actions -->
|
|
||||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
|
||||||
<!-- Memo -->
|
|
||||||
<!-- <mat-form-field>
|
|
||||||
<ng-container *ngIf="evolutions$ | async as evolutions">
|
|
||||||
<ng-container *ngFor="let evolution of evolutions; trackBy: __trackByFn">
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<fieldset>
|
|
||||||
{{ evolution.startDate }}~{{ evolution.finishDate }}까지의 총
|
|
||||||
유효배팅:{{ evolution.availableBetting }}원, 배팅금액:{{
|
|
||||||
evolution.bettingMoney
|
|
||||||
}}원, 당첨:{{ evolution.winning }}원, 취소:{{ evolution.cancel }}원,
|
|
||||||
배팅-당첨-취소:{{ evolution.betWinCancel }}원, 본사롤링:{{
|
|
||||||
evolution.mainofficeRolling
|
|
||||||
}}원, 대본롤링:{{ evolution.branchRolling }}원, 부본롤링:{{
|
|
||||||
evolution.divisionRolling
|
|
||||||
}}원, 총판롤링:{{ evolution.officeRolling }}원, 매장롤링:{{
|
|
||||||
evolution.storeRolling
|
|
||||||
}}원, 회원롤링:{{ evolution.memberRolling }}원, 롤링합계:{{
|
|
||||||
evolution.totalrolling
|
|
||||||
}}원
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
</mat-form-field> -->
|
|
||||||
|
|
||||||
<!-- SelectBox -->
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="전체금액">
|
|
||||||
<mat-option value="">전체금액</mat-option>
|
|
||||||
<mat-option value="">배팅100만미만</mat-option>
|
|
||||||
<mat-option value="">배팅100-300만</mat-option>
|
|
||||||
<mat-option value="">배팅300-500만</mat-option>
|
|
||||||
<mat-option value="">배팅500만이상</mat-option>
|
|
||||||
<mat-option value="">당첨1000만초과</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">
|
|
||||||
<!-- Products list -->
|
|
||||||
<div
|
|
||||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
|
||||||
>
|
|
||||||
<ng-container *ngIf="evolutions$ | async as evolutions">
|
|
||||||
<ng-container *ngIf="evolutions.length > 0; else noEvolution">
|
|
||||||
<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">상위</div>
|
|
||||||
<div class="hidden sm:block">유저</div>
|
|
||||||
<div class="hidden sm:block">게임</div>
|
|
||||||
<div class="hidden sm:block">형식</div>
|
|
||||||
<div class="hidden sm:block">금액</div>
|
|
||||||
<div class="hidden sm:block">최종금액</div>
|
|
||||||
<div class="hidden sm:block">배팅</div>
|
|
||||||
<div class="hidden sm:block">데이터</div>
|
|
||||||
<div class="hidden sm:block">콤프</div>
|
|
||||||
<div class="hidden sm:block">롤링</div>
|
|
||||||
<div class="hidden sm:block">배팅시간 등록시간</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="evolutions$ | async as evolutions">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let evolution of evolutions; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<!-- highRank -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ evolution.highRank }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<!-- userInfo -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.gameId }}
|
|
||||||
{{ evolution.id }}
|
|
||||||
{{ evolution.nickname }}
|
|
||||||
</div>
|
|
||||||
<!-- game -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ evolution.gameName }}
|
|
||||||
</button>
|
|
||||||
{{ evolution.gameInfo1 }}
|
|
||||||
{{ evolution.gameInfo2 }}
|
|
||||||
{{ evolution.gameInfo3 }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- form -->
|
|
||||||
<!-- <div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.form }}
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<!-- money -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
배팅{{ evolution.betting }} 당첨{{
|
|
||||||
evolution.winning
|
|
||||||
}}
|
|
||||||
손익{{ evolution.profitLoss }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- finalMoney -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
배팅 전{{ evolution.beforeBetting }} 배팅 후{{
|
|
||||||
evolution.afterBetting
|
|
||||||
}}
|
|
||||||
최종금액{{ evolution.finalMoney }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- betting -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.bettingInfo1 }}
|
|
||||||
{{ evolution.bettingInfo2 }}
|
|
||||||
{{ evolution.bettingInfo3 }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- data -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ evolution.data }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- comp -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.comp }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- rolling -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
본사:{{ evolution.mainofficeName }}({{
|
|
||||||
evolution.mainofficePercent
|
|
||||||
}}%,{{ evolution.mainofficePoint }}P) 대본:{{
|
|
||||||
evolution.branchName
|
|
||||||
}}({{ evolution.branchPercent }}%,{{
|
|
||||||
evolution.branchPoint
|
|
||||||
}}P) 부본:{{ evolution.divisionName }}({{
|
|
||||||
evolution.divisionPercent
|
|
||||||
}}%,{{ evolution.divisionPoint }}P) 총판:{{
|
|
||||||
evolution.officeName
|
|
||||||
}}({{ evolution.officePercent }}%,{{
|
|
||||||
evolution.officePoint
|
|
||||||
}}P) 매장:{{ evolution.storeName }}({{
|
|
||||||
evolution.storePercent
|
|
||||||
}}%,{{ evolution.storePoint }}P) 회원:{{
|
|
||||||
evolution.memberName
|
|
||||||
}}({{ evolution.memberPercent }}%,{{
|
|
||||||
evolution.memberPoint
|
|
||||||
}}P)
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- bettingTime -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.bettingTime }}
|
|
||||||
{{ evolution.registrationTime }}
|
|
||||||
</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 #noEvolution>
|
|
||||||
<div
|
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
|
||||||
>
|
|
||||||
There are no evolution!
|
|
||||||
</div>
|
|
||||||
</ng-template>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -29,12 +29,8 @@ import {
|
||||||
import { fuseAnimations } from '@fuse/animations';
|
import { fuseAnimations } from '@fuse/animations';
|
||||||
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
||||||
|
|
||||||
import { Evolution } from '../models/evolution';
|
|
||||||
import { EvolutionPagination } from '../models/evolution-pagination';
|
|
||||||
import { EvolutionService } from '../services/evolution.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'evolution-list',
|
selector: 'settings-branch-list',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
styles: [
|
styles: [
|
||||||
/* language=SCSS */
|
/* language=SCSS */
|
||||||
|
@ -64,13 +60,6 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
||||||
@ViewChild(MatSort) private _sort!: MatSort;
|
@ViewChild(MatSort) private _sort!: MatSort;
|
||||||
|
|
||||||
evolutions$!: Observable<Evolution[] | undefined>;
|
|
||||||
|
|
||||||
isLoading = false;
|
|
||||||
searchInputControl = new FormControl();
|
|
||||||
selectedEvolution?: Evolution;
|
|
||||||
pagination?: EvolutionPagination;
|
|
||||||
|
|
||||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -79,8 +68,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
constructor(
|
constructor(
|
||||||
private _changeDetectorRef: ChangeDetectorRef,
|
private _changeDetectorRef: ChangeDetectorRef,
|
||||||
private _fuseConfirmationService: FuseConfirmationService,
|
private _fuseConfirmationService: FuseConfirmationService,
|
||||||
private _formBuilder: FormBuilder,
|
private _formBuilder: FormBuilder
|
||||||
private _evolutionService: EvolutionService
|
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
@ -90,64 +78,12 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
/**
|
/**
|
||||||
* On init
|
* On init
|
||||||
*/
|
*/
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {}
|
||||||
// Get the pagination
|
|
||||||
this._evolutionService.pagination$
|
|
||||||
.pipe(takeUntil(this._unsubscribeAll))
|
|
||||||
.subscribe((pagination: EvolutionPagination | undefined) => {
|
|
||||||
// Update the pagination
|
|
||||||
this.pagination = pagination;
|
|
||||||
|
|
||||||
// Mark for check
|
|
||||||
this._changeDetectorRef.markForCheck();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Get the products
|
|
||||||
this.evolutions$ = this._evolutionService.evolutions$;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* After view init
|
* After view init
|
||||||
*/
|
*/
|
||||||
ngAfterViewInit(): void {
|
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 evolution 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._evolutionService.getEvolutions(
|
|
||||||
this._paginator.pageIndex,
|
|
||||||
this._paginator.pageSize,
|
|
||||||
this._sort.active,
|
|
||||||
this._sort.direction
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
map(() => {
|
|
||||||
this.isLoading = false;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.subscribe();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* On destroy
|
* On destroy
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
import { Route } from '@angular/router';
|
|
||||||
|
|
||||||
import { ListComponent } from './components/list.component';
|
|
||||||
|
|
||||||
import { EvolutionsResolver } from './resolvers/evolution.resolver';
|
|
||||||
|
|
||||||
export const evolutionRoutes: Route[] = [
|
|
||||||
{
|
|
||||||
path: '',
|
|
||||||
component: ListComponent,
|
|
||||||
resolve: {
|
|
||||||
deposits: EvolutionsResolver,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
];
|
|
|
@ -1,8 +0,0 @@
|
||||||
export interface EvolutionPagination {
|
|
||||||
length: number;
|
|
||||||
size: number;
|
|
||||||
page: number;
|
|
||||||
lastPage: number;
|
|
||||||
startIndex: number;
|
|
||||||
endIndex: number;
|
|
||||||
}
|
|
|
@ -1,58 +0,0 @@
|
||||||
export interface Evolution {
|
|
||||||
id?: string;
|
|
||||||
startDate?: string;
|
|
||||||
finishDate?: string;
|
|
||||||
availableBetting?: number;
|
|
||||||
bettingMoney?: number;
|
|
||||||
winningMoney?: number;
|
|
||||||
cancel?: number;
|
|
||||||
betWinCancel?: number;
|
|
||||||
mainofficeRolling?: number;
|
|
||||||
branchRolling?: number;
|
|
||||||
divisionRolling?: number;
|
|
||||||
officeRolling?: number;
|
|
||||||
storeRolling?: number;
|
|
||||||
memberRolling?: number;
|
|
||||||
totalrolling?: number;
|
|
||||||
highRank?: string;
|
|
||||||
gameId?: string;
|
|
||||||
nickname?: string;
|
|
||||||
gameName?: string;
|
|
||||||
gameInfo1?: string;
|
|
||||||
gameInfo2?: string;
|
|
||||||
gameInfo3?: string;
|
|
||||||
form?: string;
|
|
||||||
betting?: number;
|
|
||||||
profitLoss?: number;
|
|
||||||
beforeWinning?: number;
|
|
||||||
winning?: number;
|
|
||||||
afterWinning?: number;
|
|
||||||
beforeBetting?: number;
|
|
||||||
afterBetting?: number;
|
|
||||||
finalMoney?: number;
|
|
||||||
bettingInfo1?: string;
|
|
||||||
bettingInfo2?: number;
|
|
||||||
bettingInfo3?: number;
|
|
||||||
data?: string;
|
|
||||||
comp?: string;
|
|
||||||
mainofficeName?: string;
|
|
||||||
mainofficePercent?: number;
|
|
||||||
mainofficePoint?: number;
|
|
||||||
branchName?: string;
|
|
||||||
branchPercent?: number;
|
|
||||||
branchPoint?: number;
|
|
||||||
divisionName?: string;
|
|
||||||
divisionPercent?: number;
|
|
||||||
divisionPoint?: number;
|
|
||||||
officeName?: string;
|
|
||||||
officePercent?: number;
|
|
||||||
officePoint?: number;
|
|
||||||
storeName?: string;
|
|
||||||
storePercent?: number;
|
|
||||||
storePoint?: number;
|
|
||||||
memberName?: string;
|
|
||||||
memberPercent?: number;
|
|
||||||
memberPoint?: number;
|
|
||||||
bettingTime?: string;
|
|
||||||
registrationTime?: string;
|
|
||||||
}
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import {
|
||||||
|
ActivatedRouteSnapshot,
|
||||||
|
Resolve,
|
||||||
|
Router,
|
||||||
|
RouterStateSnapshot,
|
||||||
|
} from '@angular/router';
|
||||||
|
import { catchError, Observable, throwError } from 'rxjs';
|
||||||
|
|
||||||
|
import { BranchService } from '../services/branch.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class BranchResolver implements Resolve<any> {
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _branchService: BranchService) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolver
|
||||||
|
*
|
||||||
|
* @param route
|
||||||
|
* @param state
|
||||||
|
*/
|
||||||
|
resolve(
|
||||||
|
route: ActivatedRouteSnapshot,
|
||||||
|
state: RouterStateSnapshot
|
||||||
|
): Observable<{
|
||||||
|
branchSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._branchService.getBranchSetting();
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,89 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import {
|
|
||||||
ActivatedRouteSnapshot,
|
|
||||||
Resolve,
|
|
||||||
Router,
|
|
||||||
RouterStateSnapshot,
|
|
||||||
} from '@angular/router';
|
|
||||||
import { catchError, Observable, throwError } from 'rxjs';
|
|
||||||
|
|
||||||
import { Evolution } from '../models/evolution';
|
|
||||||
import { EvolutionPagination } from '../models/evolution-pagination';
|
|
||||||
import { EvolutionService } from '../services/evolution.service';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class EvolutionResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(
|
|
||||||
private _evolutionService: EvolutionService,
|
|
||||||
private _router: Router
|
|
||||||
) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<Evolution | undefined> {
|
|
||||||
return this._evolutionService
|
|
||||||
.getEvolutionById(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 EvolutionsResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _evolutionService: EvolutionService) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<{
|
|
||||||
pagination: EvolutionPagination;
|
|
||||||
evolutions: Evolution[];
|
|
||||||
}> {
|
|
||||||
return this._evolutionService.getEvolutions();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import {
|
||||||
|
BehaviorSubject,
|
||||||
|
filter,
|
||||||
|
map,
|
||||||
|
Observable,
|
||||||
|
of,
|
||||||
|
switchMap,
|
||||||
|
take,
|
||||||
|
tap,
|
||||||
|
throwError,
|
||||||
|
} from 'rxjs';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class BranchService {
|
||||||
|
// Private
|
||||||
|
private __branchSetting = new BehaviorSubject<any | undefined>(undefined);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _httpClient: HttpClient) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Accessors
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for game
|
||||||
|
*/
|
||||||
|
get branchSetting$(): Observable<any | undefined> {
|
||||||
|
return this.__branchSetting.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get powerballs
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
getBranchSetting(): Observable<{
|
||||||
|
branchSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._httpClient
|
||||||
|
.get<{ branchSetting: any }>('api/apps/settings/branch')
|
||||||
|
.pipe(
|
||||||
|
tap((response) => {
|
||||||
|
this.__branchSetting.next(response.branchSetting);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,156 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import {
|
|
||||||
BehaviorSubject,
|
|
||||||
filter,
|
|
||||||
map,
|
|
||||||
Observable,
|
|
||||||
of,
|
|
||||||
switchMap,
|
|
||||||
take,
|
|
||||||
tap,
|
|
||||||
throwError,
|
|
||||||
} from 'rxjs';
|
|
||||||
|
|
||||||
import { Evolution } from '../models/evolution';
|
|
||||||
import { EvolutionPagination } from '../models/evolution-pagination';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class EvolutionService {
|
|
||||||
// Private
|
|
||||||
private __pagination = new BehaviorSubject<EvolutionPagination | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
private __evolution = new BehaviorSubject<Evolution | undefined>(undefined);
|
|
||||||
private __evolutions = new BehaviorSubject<Evolution[] | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _httpClient: HttpClient) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Accessors
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for pagination
|
|
||||||
*/
|
|
||||||
get pagination$(): Observable<EvolutionPagination | undefined> {
|
|
||||||
return this.__pagination.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for evolution
|
|
||||||
*/
|
|
||||||
get evolution$(): Observable<Evolution | undefined> {
|
|
||||||
return this.__evolution.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for evolutions
|
|
||||||
*/
|
|
||||||
get evolutions$(): Observable<Evolution[] | undefined> {
|
|
||||||
return this.__evolutions.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get evolutions
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param page
|
|
||||||
* @param size
|
|
||||||
* @param sort
|
|
||||||
* @param order
|
|
||||||
* @param search
|
|
||||||
*/
|
|
||||||
getEvolutions(
|
|
||||||
page: number = 0,
|
|
||||||
size: number = 10,
|
|
||||||
sort: string = 'nickname',
|
|
||||||
order: 'asc' | 'desc' | '' = 'asc',
|
|
||||||
search: string = ''
|
|
||||||
): Observable<{
|
|
||||||
pagination: EvolutionPagination;
|
|
||||||
evolutions: Evolution[];
|
|
||||||
}> {
|
|
||||||
return this._httpClient
|
|
||||||
.get<{ pagination: EvolutionPagination; evolutions: Evolution[] }>(
|
|
||||||
'api/apps/game/evolution/evolutions',
|
|
||||||
{
|
|
||||||
params: {
|
|
||||||
page: '' + page,
|
|
||||||
size: '' + size,
|
|
||||||
sort,
|
|
||||||
order,
|
|
||||||
search,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.pipe(
|
|
||||||
tap((response) => {
|
|
||||||
this.__pagination.next(response.pagination);
|
|
||||||
this.__evolutions.next(response.evolutions);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get product by id
|
|
||||||
*/
|
|
||||||
getEvolutionById(id: string | null): Observable<Evolution> {
|
|
||||||
return this.__evolutions.pipe(
|
|
||||||
take(1),
|
|
||||||
map((evolutions) => {
|
|
||||||
// Find the product
|
|
||||||
const evolution =
|
|
||||||
evolutions?.find((item) => item.id === id) || undefined;
|
|
||||||
|
|
||||||
// Update the product
|
|
||||||
this.__evolution.next(evolution);
|
|
||||||
|
|
||||||
// Return the product
|
|
||||||
return evolution;
|
|
||||||
}),
|
|
||||||
switchMap((product) => {
|
|
||||||
if (!product) {
|
|
||||||
return throwError('Could not found product with id of ' + id + '!');
|
|
||||||
}
|
|
||||||
|
|
||||||
return of(product);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create product
|
|
||||||
*/
|
|
||||||
createEvolution(): Observable<Evolution> {
|
|
||||||
return this.evolutions$.pipe(
|
|
||||||
take(1),
|
|
||||||
switchMap((evolutions) =>
|
|
||||||
this._httpClient
|
|
||||||
.post<Evolution>('api/apps/game/evolution/product', {})
|
|
||||||
.pipe(
|
|
||||||
map((newEvolution) => {
|
|
||||||
// Update the evolutions with the new product
|
|
||||||
if (!!evolutions) {
|
|
||||||
this.__evolutions.next([newEvolution, ...evolutions]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the new product
|
|
||||||
return newEvolution;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,372 +1 @@
|
||||||
<div
|
<p>evo game setting page</p>
|
||||||
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">Slot</div>
|
|
||||||
<!-- Actions -->
|
|
||||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
|
||||||
<!-- Memo -->
|
|
||||||
<!-- <mat-form-field>
|
|
||||||
<ng-container *ngIf="slots$ | async as slots">
|
|
||||||
<ng-container *ngFor="let slot of slots; trackBy: __trackByFn">
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<fieldset>
|
|
||||||
{{ slot.startDate }}~{{ slot.finishDate }}까지의 총
|
|
||||||
유효배팅:{{ slot.availableBetting }}원, 배팅금액:{{
|
|
||||||
slot.bettingMoney
|
|
||||||
}}원, 당첨:{{ slot.winning }}원, 취소:{{ slot.cancel }}원,
|
|
||||||
배팅-당첨-취소:{{ slot.betWinCancel }}원, 본사롤링:{{
|
|
||||||
slot.mainofficeRolling
|
|
||||||
}}원, 대본롤링:{{ slot.branchRolling }}원, 부본롤링:{{
|
|
||||||
slot.divisionRolling
|
|
||||||
}}원, 총판롤링:{{ slot.officeRolling }}원, 매장롤링:{{
|
|
||||||
slot.storeRolling
|
|
||||||
}}원, 회원롤링:{{ slot.memberRolling }}원, 롤링합계:{{
|
|
||||||
slot.totalrolling
|
|
||||||
}}원
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
</mat-form-field> -->
|
|
||||||
|
|
||||||
<!-- SelectBox -->
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="슬롯">
|
|
||||||
<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-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-option value="">레드레이크</mat-option>
|
|
||||||
<mat-option value="">릴렉스</mat-option>
|
|
||||||
<mat-option value="">블루프린트</mat-option>
|
|
||||||
<mat-option value="">ELK</mat-option>
|
|
||||||
<mat-option value="">아시안게이밍 슬롯</mat-option>
|
|
||||||
<mat-option value="">CQ9 슬롯</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>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="전체금액">
|
|
||||||
<mat-option value="">전체금액</mat-option>
|
|
||||||
<mat-option value="">배팅100만미만</mat-option>
|
|
||||||
<mat-option value="">배팅100-300만</mat-option>
|
|
||||||
<mat-option value="">배팅300-500만</mat-option>
|
|
||||||
<mat-option value="">배팅500만이상</mat-option>
|
|
||||||
<mat-option value="">당첨1000만초과</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">
|
|
||||||
<!-- Products list -->
|
|
||||||
<div
|
|
||||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
|
||||||
>
|
|
||||||
<ng-container *ngIf="slots$ | async as slots">
|
|
||||||
<ng-container *ngIf="slots.length > 0; else noSlot">
|
|
||||||
<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">상위</div>
|
|
||||||
<div class="hidden sm:block">유저</div>
|
|
||||||
<div class="hidden sm:block">게임</div>
|
|
||||||
<div class="hidden sm:block">형식</div>
|
|
||||||
<div class="hidden sm:block">금액</div>
|
|
||||||
<div class="hidden sm:block">최종금액</div>
|
|
||||||
<div class="hidden sm:block">배팅</div>
|
|
||||||
<div class="hidden sm:block">데이터</div>
|
|
||||||
<div class="hidden sm:block">콤프</div>
|
|
||||||
<div class="hidden sm:block">롤링</div>
|
|
||||||
<div class="hidden sm:block">배팅시간 등록시간</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="slots$ | async as slots">
|
|
||||||
<ng-container *ngFor="let slot of slots; trackBy: __trackByFn">
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<!-- highRank -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ slot.highRank }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<!-- userInfo -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ slot.gameId }}
|
|
||||||
{{ slot.id }}
|
|
||||||
{{ slot.nickname }}
|
|
||||||
</div>
|
|
||||||
<!-- game -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ slot.gameName }}
|
|
||||||
</button>
|
|
||||||
{{ slot.gameInfo1 }}
|
|
||||||
{{ slot.gameInfo2 }}
|
|
||||||
{{ slot.gameInfo3 }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- form -->
|
|
||||||
<!-- <div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.form }}
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<!-- money -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
배팅{{ slot.betting }} 당첨{{ slot.winning }} 손익{{
|
|
||||||
slot.profitLoss
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- finalMoney -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
배팅 전{{ slot.beforeBetting }} 배팅 후{{
|
|
||||||
slot.afterBetting
|
|
||||||
}}
|
|
||||||
최종금액{{ slot.finalMoney }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- betting -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ slot.bettingInfo1 }}
|
|
||||||
{{ slot.bettingInfo2 }}
|
|
||||||
{{ slot.bettingInfo3 }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- data -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ slot.data }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- comp -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ slot.comp }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- rolling -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
본사:{{ slot.mainofficeName }}({{
|
|
||||||
slot.mainofficePercent
|
|
||||||
}}%,{{ slot.mainofficePoint }}P) 대본:{{
|
|
||||||
slot.branchName
|
|
||||||
}}({{ slot.branchPercent }}%,{{ slot.branchPoint }}P)
|
|
||||||
부본:{{ slot.divisionName }}({{ slot.divisionPercent }}%,{{
|
|
||||||
slot.divisionPoint
|
|
||||||
}}P) 총판:{{ slot.officeName }}({{ slot.officePercent }}%,{{
|
|
||||||
slot.officePoint
|
|
||||||
}}P) 매장:{{ slot.storeName }}({{ slot.storePercent }}%,{{
|
|
||||||
slot.storePoint
|
|
||||||
}}P) 회원:{{ slot.memberName }}({{ slot.memberPercent }}%,{{
|
|
||||||
slot.memberPoint
|
|
||||||
}}P)
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- bettingTime -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ slot.bettingTime }}
|
|
||||||
{{ slot.registrationTime }}
|
|
||||||
</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 #noSlot>
|
|
||||||
<div
|
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
|
||||||
>
|
|
||||||
There are no slot!
|
|
||||||
</div>
|
|
||||||
</ng-template>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -29,12 +29,8 @@ import {
|
||||||
import { fuseAnimations } from '@fuse/animations';
|
import { fuseAnimations } from '@fuse/animations';
|
||||||
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
||||||
|
|
||||||
import { Slot } from '../models/slot';
|
|
||||||
import { SlotPagination } from '../models/slot-pagination';
|
|
||||||
import { SlotService } from '../services/slot.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'slot-list',
|
selector: 'settings-evo-list',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
styles: [
|
styles: [
|
||||||
/* language=SCSS */
|
/* language=SCSS */
|
||||||
|
@ -64,13 +60,6 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
||||||
@ViewChild(MatSort) private _sort!: MatSort;
|
@ViewChild(MatSort) private _sort!: MatSort;
|
||||||
|
|
||||||
slots$!: Observable<Slot[] | undefined>;
|
|
||||||
|
|
||||||
isLoading = false;
|
|
||||||
searchInputControl = new FormControl();
|
|
||||||
selectedSlot?: Slot;
|
|
||||||
pagination?: SlotPagination;
|
|
||||||
|
|
||||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -79,8 +68,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
constructor(
|
constructor(
|
||||||
private _changeDetectorRef: ChangeDetectorRef,
|
private _changeDetectorRef: ChangeDetectorRef,
|
||||||
private _fuseConfirmationService: FuseConfirmationService,
|
private _fuseConfirmationService: FuseConfirmationService,
|
||||||
private _formBuilder: FormBuilder,
|
private _formBuilder: FormBuilder
|
||||||
private _slotService: SlotService
|
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
@ -90,64 +78,12 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
/**
|
/**
|
||||||
* On init
|
* On init
|
||||||
*/
|
*/
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {}
|
||||||
// Get the pagination
|
|
||||||
this._slotService.pagination$
|
|
||||||
.pipe(takeUntil(this._unsubscribeAll))
|
|
||||||
.subscribe((pagination: SlotPagination | undefined) => {
|
|
||||||
// Update the pagination
|
|
||||||
this.pagination = pagination;
|
|
||||||
|
|
||||||
// Mark for check
|
|
||||||
this._changeDetectorRef.markForCheck();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Get the products
|
|
||||||
this.slots$ = this._slotService.slots$;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* After view init
|
* After view init
|
||||||
*/
|
*/
|
||||||
ngAfterViewInit(): void {
|
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 slot 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._slotService.getSlots(
|
|
||||||
this._paginator.pageIndex,
|
|
||||||
this._paginator.pageSize,
|
|
||||||
this._sort.active,
|
|
||||||
this._sort.direction
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
map(() => {
|
|
||||||
this.isLoading = false;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.subscribe();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* On destroy
|
* On destroy
|
||||||
|
|
|
@ -18,14 +18,14 @@ import { SharedModule } from 'app/shared/shared.module';
|
||||||
|
|
||||||
import { COMPONENTS } from './components';
|
import { COMPONENTS } from './components';
|
||||||
|
|
||||||
import { slotRoutes } from './slot.routing';
|
import { evoRoutes } from './evo.routing';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [COMPONENTS],
|
declarations: [COMPONENTS],
|
||||||
imports: [
|
imports: [
|
||||||
TranslocoModule,
|
TranslocoModule,
|
||||||
SharedModule,
|
SharedModule,
|
||||||
RouterModule.forChild(slotRoutes),
|
RouterModule.forChild(evoRoutes),
|
||||||
|
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
MatFormFieldModule,
|
MatFormFieldModule,
|
||||||
|
@ -39,4 +39,4 @@ import { slotRoutes } from './slot.routing';
|
||||||
MatTooltipModule,
|
MatTooltipModule,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class SlotModule {}
|
export class EvoModule {}
|
|
@ -2,14 +2,14 @@ import { Route } from '@angular/router';
|
||||||
|
|
||||||
import { ListComponent } from './components/list.component';
|
import { ListComponent } from './components/list.component';
|
||||||
|
|
||||||
import { SlotsResolver } from './resolvers/slot.resolver';
|
import { EvoResolver } from './resolvers/evo.resolver';
|
||||||
|
|
||||||
export const slotRoutes: Route[] = [
|
export const evoRoutes: Route[] = [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
component: ListComponent,
|
component: ListComponent,
|
||||||
resolve: {
|
// resolve: {
|
||||||
deposits: SlotsResolver,
|
// evo: EvoResolver,
|
||||||
},
|
// },
|
||||||
},
|
},
|
||||||
];
|
];
|
|
@ -1,8 +0,0 @@
|
||||||
export interface SlotPagination {
|
|
||||||
length: number;
|
|
||||||
size: number;
|
|
||||||
page: number;
|
|
||||||
lastPage: number;
|
|
||||||
startIndex: number;
|
|
||||||
endIndex: number;
|
|
||||||
}
|
|
|
@ -1,58 +0,0 @@
|
||||||
export interface Slot {
|
|
||||||
id?: string;
|
|
||||||
startDate?: string;
|
|
||||||
finishDate?: string;
|
|
||||||
availableBetting?: number;
|
|
||||||
bettingMoney?: number;
|
|
||||||
winningMoney?: number;
|
|
||||||
cancel?: number;
|
|
||||||
betWinCancel?: number;
|
|
||||||
mainofficeRolling?: number;
|
|
||||||
branchRolling?: number;
|
|
||||||
divisionRolling?: number;
|
|
||||||
officeRolling?: number;
|
|
||||||
storeRolling?: number;
|
|
||||||
memberRolling?: number;
|
|
||||||
totalrolling?: number;
|
|
||||||
highRank?: string;
|
|
||||||
gameId?: string;
|
|
||||||
nickname?: string;
|
|
||||||
gameName?: string;
|
|
||||||
gameInfo1?: string;
|
|
||||||
gameInfo2?: string;
|
|
||||||
gameInfo3?: string;
|
|
||||||
form?: string;
|
|
||||||
betting?: number;
|
|
||||||
profitLoss?: number;
|
|
||||||
beforeWinning?: number;
|
|
||||||
winning?: number;
|
|
||||||
afterWinning?: number;
|
|
||||||
beforeBetting?: number;
|
|
||||||
afterBetting?: number;
|
|
||||||
finalMoney?: number;
|
|
||||||
bettingInfo1?: string;
|
|
||||||
bettingInfo2?: number;
|
|
||||||
bettingInfo3?: number;
|
|
||||||
data?: string;
|
|
||||||
comp?: string;
|
|
||||||
mainofficeName?: string;
|
|
||||||
mainofficePercent?: number;
|
|
||||||
mainofficePoint?: number;
|
|
||||||
branchName?: string;
|
|
||||||
branchPercent?: number;
|
|
||||||
branchPoint?: number;
|
|
||||||
divisionName?: string;
|
|
||||||
divisionPercent?: number;
|
|
||||||
divisionPoint?: number;
|
|
||||||
officeName?: string;
|
|
||||||
officePercent?: number;
|
|
||||||
officePoint?: number;
|
|
||||||
storeName?: string;
|
|
||||||
storePercent?: number;
|
|
||||||
storePoint?: number;
|
|
||||||
memberName?: string;
|
|
||||||
memberPercent?: number;
|
|
||||||
memberPoint?: number;
|
|
||||||
bettingTime?: string;
|
|
||||||
registrationTime?: string;
|
|
||||||
}
|
|
39
src/app/modules/admin/settings/evo/resolvers/evo.resolver.ts
Normal file
39
src/app/modules/admin/settings/evo/resolvers/evo.resolver.ts
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import {
|
||||||
|
ActivatedRouteSnapshot,
|
||||||
|
Resolve,
|
||||||
|
Router,
|
||||||
|
RouterStateSnapshot,
|
||||||
|
} from '@angular/router';
|
||||||
|
import { catchError, Observable, throwError } from 'rxjs';
|
||||||
|
|
||||||
|
import { EvoService } from '../services/evo.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class EvoResolver implements Resolve<any> {
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _evoService: EvoService) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolver
|
||||||
|
*
|
||||||
|
* @param route
|
||||||
|
* @param state
|
||||||
|
*/
|
||||||
|
resolve(
|
||||||
|
route: ActivatedRouteSnapshot,
|
||||||
|
state: RouterStateSnapshot
|
||||||
|
): Observable<{
|
||||||
|
evoSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._evoService.getEvoSetting();
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,84 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import {
|
|
||||||
ActivatedRouteSnapshot,
|
|
||||||
Resolve,
|
|
||||||
Router,
|
|
||||||
RouterStateSnapshot,
|
|
||||||
} from '@angular/router';
|
|
||||||
import { catchError, Observable, throwError } from 'rxjs';
|
|
||||||
|
|
||||||
import { Slot } from '../models/slot';
|
|
||||||
import { SlotPagination } from '../models/slot-pagination';
|
|
||||||
import { SlotService } from '../services/slot.service';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class SlotResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _slotService: SlotService, private _router: Router) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<Slot | undefined> {
|
|
||||||
return this._slotService.getSlotById(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 SlotsResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _slotService: SlotService) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<{
|
|
||||||
pagination: SlotPagination;
|
|
||||||
slots: Slot[];
|
|
||||||
}> {
|
|
||||||
return this._slotService.getSlots();
|
|
||||||
}
|
|
||||||
}
|
|
58
src/app/modules/admin/settings/evo/services/evo.service.ts
Normal file
58
src/app/modules/admin/settings/evo/services/evo.service.ts
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import {
|
||||||
|
BehaviorSubject,
|
||||||
|
filter,
|
||||||
|
map,
|
||||||
|
Observable,
|
||||||
|
of,
|
||||||
|
switchMap,
|
||||||
|
take,
|
||||||
|
tap,
|
||||||
|
throwError,
|
||||||
|
} from 'rxjs';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class EvoService {
|
||||||
|
// Private
|
||||||
|
private __evoSetting = new BehaviorSubject<any | undefined>(undefined);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _httpClient: HttpClient) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Accessors
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for game
|
||||||
|
*/
|
||||||
|
get evoSetting$(): Observable<any | undefined> {
|
||||||
|
return this.__evoSetting.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get powerballs
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
getEvoSetting(): Observable<{
|
||||||
|
evoSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._httpClient
|
||||||
|
.get<{ evoSetting: any }>('api/apps/settings/ladder')
|
||||||
|
.pipe(
|
||||||
|
tap((response) => {
|
||||||
|
this.__evoSetting.next(response.evoSetting);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,151 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import {
|
|
||||||
BehaviorSubject,
|
|
||||||
filter,
|
|
||||||
map,
|
|
||||||
Observable,
|
|
||||||
of,
|
|
||||||
switchMap,
|
|
||||||
take,
|
|
||||||
tap,
|
|
||||||
throwError,
|
|
||||||
} from 'rxjs';
|
|
||||||
|
|
||||||
import { Slot } from '../models/slot';
|
|
||||||
import { SlotPagination } from '../models/slot-pagination';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class SlotService {
|
|
||||||
// Private
|
|
||||||
private __pagination = new BehaviorSubject<SlotPagination | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
private __slot = new BehaviorSubject<Slot | undefined>(undefined);
|
|
||||||
private __slots = new BehaviorSubject<Slot[] | undefined>(undefined);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _httpClient: HttpClient) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Accessors
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for pagination
|
|
||||||
*/
|
|
||||||
get pagination$(): Observable<SlotPagination | undefined> {
|
|
||||||
return this.__pagination.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for slot
|
|
||||||
*/
|
|
||||||
get slot$(): Observable<Slot | undefined> {
|
|
||||||
return this.__slot.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for slots
|
|
||||||
*/
|
|
||||||
get slots$(): Observable<Slot[] | undefined> {
|
|
||||||
return this.__slots.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get slots
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param page
|
|
||||||
* @param size
|
|
||||||
* @param sort
|
|
||||||
* @param order
|
|
||||||
* @param search
|
|
||||||
*/
|
|
||||||
getSlots(
|
|
||||||
page: number = 0,
|
|
||||||
size: number = 10,
|
|
||||||
sort: string = 'nickname',
|
|
||||||
order: 'asc' | 'desc' | '' = 'asc',
|
|
||||||
search: string = ''
|
|
||||||
): Observable<{
|
|
||||||
pagination: SlotPagination;
|
|
||||||
slots: Slot[];
|
|
||||||
}> {
|
|
||||||
return this._httpClient
|
|
||||||
.get<{ pagination: SlotPagination; slots: Slot[] }>(
|
|
||||||
'api/apps/game/slot/slots',
|
|
||||||
{
|
|
||||||
params: {
|
|
||||||
page: '' + page,
|
|
||||||
size: '' + size,
|
|
||||||
sort,
|
|
||||||
order,
|
|
||||||
search,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.pipe(
|
|
||||||
tap((response) => {
|
|
||||||
this.__pagination.next(response.pagination);
|
|
||||||
this.__slots.next(response.slots);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get product by id
|
|
||||||
*/
|
|
||||||
getSlotById(id: string | null): Observable<Slot> {
|
|
||||||
return this.__slots.pipe(
|
|
||||||
take(1),
|
|
||||||
map((slots) => {
|
|
||||||
// Find the product
|
|
||||||
const slot = slots?.find((item) => item.id === id) || undefined;
|
|
||||||
|
|
||||||
// Update the product
|
|
||||||
this.__slot.next(slot);
|
|
||||||
|
|
||||||
// Return the product
|
|
||||||
return slot;
|
|
||||||
}),
|
|
||||||
switchMap((product) => {
|
|
||||||
if (!product) {
|
|
||||||
return throwError('Could not found product with id of ' + id + '!');
|
|
||||||
}
|
|
||||||
|
|
||||||
return of(product);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create product
|
|
||||||
*/
|
|
||||||
createSlot(): Observable<Slot> {
|
|
||||||
return this.slots$.pipe(
|
|
||||||
take(1),
|
|
||||||
switchMap((slots) =>
|
|
||||||
this._httpClient.post<Slot>('api/apps/game/slot/product', {}).pipe(
|
|
||||||
map((newSlot) => {
|
|
||||||
// Update the slots with the new product
|
|
||||||
if (!!slots) {
|
|
||||||
this.__slots.next([newSlot, ...slots]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the new product
|
|
||||||
return newSlot;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,355 +1 @@
|
||||||
<div
|
<p>powerball game setting page</p>
|
||||||
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">Powerball</div>
|
|
||||||
<!-- Actions -->
|
|
||||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
|
||||||
<!-- Memo -->
|
|
||||||
<!-- <mat-form-field>
|
|
||||||
<ng-container *ngIf="powerballs$ | async as powerballs">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let powerball of powerballs; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<fieldset>
|
|
||||||
{{ powerball.startDate }}~{{ powerball.finishDate }}까지의 총
|
|
||||||
배팅금액:{{ powerball.totalBetting }}원, 당첨금액:{{
|
|
||||||
powerball.totalWinning
|
|
||||||
}}원, 진행중금액:{{ powerball.proceedingMoney }}원, 정산:{{
|
|
||||||
powerball.calculate
|
|
||||||
}}원
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
</mat-form-field> -->
|
|
||||||
|
|
||||||
<!-- SelectBox -->
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="파워볼">
|
|
||||||
<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-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="리스트수">
|
|
||||||
<mat-option value="">리스트수</mat-option>
|
|
||||||
<mat-option value="">40</mat-option>
|
|
||||||
<mat-option value="">60</mat-option>
|
|
||||||
<mat-option value="">80</mat-option>
|
|
||||||
<mat-option value="">100</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="전체금액">
|
|
||||||
<mat-option value="">전체금액</mat-option>
|
|
||||||
<mat-option value="">100-50만미만</mat-option>
|
|
||||||
<mat-option value="">50만-100만미만</mat-option>
|
|
||||||
<mat-option value="">100만-200만이하</mat-option>
|
|
||||||
<mat-option value="">300만초과</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-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">
|
|
||||||
<!-- Products list -->
|
|
||||||
<div
|
|
||||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
|
||||||
>
|
|
||||||
<ng-container *ngIf="powerballs$ | async as powerballs">
|
|
||||||
<ng-container *ngIf="powerballs.length > 0; else noPowerball">
|
|
||||||
<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">번호</div>
|
|
||||||
<div class="hidden sm:block">구분</div>
|
|
||||||
<div class="hidden sm:block">등급</div>
|
|
||||||
<div class="hidden sm:block">아이디</div>
|
|
||||||
<div
|
|
||||||
class="hidden sm:block"
|
|
||||||
[mat-sort-header]="'bettingProgress'"
|
|
||||||
>
|
|
||||||
배팅진행내역
|
|
||||||
</div>
|
|
||||||
<div class="hidden sm:block">배당률</div>
|
|
||||||
<div class="hidden sm:block">배팅액</div>
|
|
||||||
<div class="hidden sm:block">배당적중금</div>
|
|
||||||
<div class="hidden sm:block">배팅시간</div>
|
|
||||||
<div class="hidden sm:block">결과</div>
|
|
||||||
<div class="hidden sm:block">취소/삭제 여부</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="powerballs$ | async as powerballs">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let powerball of powerballs; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<!-- index -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.index }}
|
|
||||||
</div>
|
|
||||||
<!-- division -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
LV.{{ powerball.way }}
|
|
||||||
</div>
|
|
||||||
<!-- rank -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ powerball.rank }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- id, nickname -->
|
|
||||||
<ng-container *ngIf="users$ | async as users">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let user of users; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.id }}
|
|
||||||
({{ powerball.nickname }})
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<!-- bettingProgress -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.bettingProgress }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- odds -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.odds }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- bettingMoney -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.bettingMoney }}원
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- hitMoney -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.hitMoney }}원
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- bettingTime -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.bettingTime }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- result -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ powerball.result }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- delete -->
|
|
||||||
<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>
|
|
||||||
<!-- 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 #noPowerball>
|
|
||||||
<div
|
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
|
||||||
>
|
|
||||||
There are no powerball!
|
|
||||||
</div>
|
|
||||||
</ng-template>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -29,13 +29,8 @@ import {
|
||||||
import { fuseAnimations } from '@fuse/animations';
|
import { fuseAnimations } from '@fuse/animations';
|
||||||
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
||||||
|
|
||||||
import { User } from 'app/modules/admin/member/user/models/user';
|
|
||||||
import { Powerball } from '../models/powerball';
|
|
||||||
import { PowerballPagination } from '../models/powerball-pagination';
|
|
||||||
import { PowerballService } from '../services/powerball.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'powerball-list',
|
selector: 'settings-game-list',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
styles: [
|
styles: [
|
||||||
/* language=SCSS */
|
/* language=SCSS */
|
||||||
|
@ -65,14 +60,6 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
||||||
@ViewChild(MatSort) private _sort!: MatSort;
|
@ViewChild(MatSort) private _sort!: MatSort;
|
||||||
|
|
||||||
powerballs$!: Observable<Powerball[] | undefined>;
|
|
||||||
users$!: Observable<User[] | undefined>;
|
|
||||||
|
|
||||||
isLoading = false;
|
|
||||||
searchInputControl = new FormControl();
|
|
||||||
selectedPowerball?: Powerball;
|
|
||||||
pagination?: PowerballPagination;
|
|
||||||
|
|
||||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -81,8 +68,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
constructor(
|
constructor(
|
||||||
private _changeDetectorRef: ChangeDetectorRef,
|
private _changeDetectorRef: ChangeDetectorRef,
|
||||||
private _fuseConfirmationService: FuseConfirmationService,
|
private _fuseConfirmationService: FuseConfirmationService,
|
||||||
private _formBuilder: FormBuilder,
|
private _formBuilder: FormBuilder
|
||||||
private _powerballService: PowerballService
|
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
@ -92,64 +78,12 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
/**
|
/**
|
||||||
* On init
|
* On init
|
||||||
*/
|
*/
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {}
|
||||||
// Get the pagination
|
|
||||||
this._powerballService.pagination$
|
|
||||||
.pipe(takeUntil(this._unsubscribeAll))
|
|
||||||
.subscribe((pagination: PowerballPagination | undefined) => {
|
|
||||||
// Update the pagination
|
|
||||||
this.pagination = pagination;
|
|
||||||
|
|
||||||
// Mark for check
|
|
||||||
this._changeDetectorRef.markForCheck();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Get the products
|
|
||||||
this.powerballs$ = this._powerballService.powerballs$;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* After view init
|
* After view init
|
||||||
*/
|
*/
|
||||||
ngAfterViewInit(): void {
|
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 powerball 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._powerballService.getPowerballs(
|
|
||||||
this._paginator.pageIndex,
|
|
||||||
this._paginator.pageSize,
|
|
||||||
this._sort.active,
|
|
||||||
this._sort.direction
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
map(() => {
|
|
||||||
this.isLoading = false;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.subscribe();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* On destroy
|
* On destroy
|
||||||
|
|
|
@ -18,14 +18,14 @@ import { SharedModule } from 'app/shared/shared.module';
|
||||||
|
|
||||||
import { COMPONENTS } from './components';
|
import { COMPONENTS } from './components';
|
||||||
|
|
||||||
import { evolutionRoutes } from './evolution.routing';
|
import { gameRoutes } from './game.routing';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [COMPONENTS],
|
declarations: [COMPONENTS],
|
||||||
imports: [
|
imports: [
|
||||||
TranslocoModule,
|
TranslocoModule,
|
||||||
SharedModule,
|
SharedModule,
|
||||||
RouterModule.forChild(evolutionRoutes),
|
RouterModule.forChild(gameRoutes),
|
||||||
|
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
MatFormFieldModule,
|
MatFormFieldModule,
|
||||||
|
@ -39,4 +39,4 @@ import { evolutionRoutes } from './evolution.routing';
|
||||||
MatTooltipModule,
|
MatTooltipModule,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class EvolutionModule {}
|
export class GameModule {}
|
15
src/app/modules/admin/settings/game/game.routing.ts
Normal file
15
src/app/modules/admin/settings/game/game.routing.ts
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import { Route } from '@angular/router';
|
||||||
|
|
||||||
|
import { ListComponent } from './components/list.component';
|
||||||
|
|
||||||
|
import { GameResolver } from './resolvers/game.resolver';
|
||||||
|
|
||||||
|
export const gameRoutes: Route[] = [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: ListComponent,
|
||||||
|
// resolve: {
|
||||||
|
// deposits: GameResolver,
|
||||||
|
// },
|
||||||
|
},
|
||||||
|
];
|
|
@ -1,8 +0,0 @@
|
||||||
export interface PowerballPagination {
|
|
||||||
length: number;
|
|
||||||
size: number;
|
|
||||||
page: number;
|
|
||||||
lastPage: number;
|
|
||||||
startIndex: number;
|
|
||||||
endIndex: number;
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
export interface Powerball {
|
|
||||||
id?: string;
|
|
||||||
nickname?: string;
|
|
||||||
startDate?: string;
|
|
||||||
finishDate?: string;
|
|
||||||
totalBetting?: string;
|
|
||||||
totalWinning?: number;
|
|
||||||
proceedingMoney?: number;
|
|
||||||
calculate?: number;
|
|
||||||
index?: string;
|
|
||||||
way?: string;
|
|
||||||
rank?: string;
|
|
||||||
bettingProgress?: string;
|
|
||||||
odds?: number;
|
|
||||||
bettingMoney?: number;
|
|
||||||
hitMoney?: number;
|
|
||||||
bettingTime?: string;
|
|
||||||
result?: string;
|
|
||||||
}
|
|
|
@ -1,24 +0,0 @@
|
||||||
import { Route } from '@angular/router';
|
|
||||||
|
|
||||||
import { ListComponent } from './components/list.component';
|
|
||||||
import { ViewComponent } from '../../member/user/components/view.component';
|
|
||||||
|
|
||||||
import { PowerballsResolver } from './resolvers/powerball.resolver';
|
|
||||||
import { UserResolver } from '../../dashboards/user/user.resolvers';
|
|
||||||
|
|
||||||
export const powerballRoutes: Route[] = [
|
|
||||||
{
|
|
||||||
path: '',
|
|
||||||
component: ListComponent,
|
|
||||||
resolve: {
|
|
||||||
deposits: PowerballsResolver,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: ':id',
|
|
||||||
component: ViewComponent,
|
|
||||||
resolve: {
|
|
||||||
users: UserResolver,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
];
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import {
|
||||||
|
ActivatedRouteSnapshot,
|
||||||
|
Resolve,
|
||||||
|
Router,
|
||||||
|
RouterStateSnapshot,
|
||||||
|
} from '@angular/router';
|
||||||
|
import { catchError, Observable, throwError } from 'rxjs';
|
||||||
|
|
||||||
|
import { GameService } from '../services/game.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class GameResolver implements Resolve<any> {
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _gameService: GameService) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolver
|
||||||
|
*
|
||||||
|
* @param route
|
||||||
|
* @param state
|
||||||
|
*/
|
||||||
|
resolve(
|
||||||
|
route: ActivatedRouteSnapshot,
|
||||||
|
state: RouterStateSnapshot
|
||||||
|
): Observable<{
|
||||||
|
gameSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._gameService.getGameSetting();
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,89 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import {
|
|
||||||
ActivatedRouteSnapshot,
|
|
||||||
Resolve,
|
|
||||||
Router,
|
|
||||||
RouterStateSnapshot,
|
|
||||||
} from '@angular/router';
|
|
||||||
import { catchError, Observable, throwError } from 'rxjs';
|
|
||||||
|
|
||||||
import { Powerball } from '../models/powerball';
|
|
||||||
import { PowerballPagination } from '../models/powerball-pagination';
|
|
||||||
import { PowerballService } from '../services/powerball.service';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class PowerballResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(
|
|
||||||
private _powerballService: PowerballService,
|
|
||||||
private _router: Router
|
|
||||||
) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<Powerball | undefined> {
|
|
||||||
return this._powerballService
|
|
||||||
.getPowerballById(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 PowerballsResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _powerballService: PowerballService) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<{
|
|
||||||
pagination: PowerballPagination;
|
|
||||||
powerballs: Powerball[];
|
|
||||||
}> {
|
|
||||||
return this._powerballService.getPowerballs();
|
|
||||||
}
|
|
||||||
}
|
|
58
src/app/modules/admin/settings/game/services/game.service.ts
Normal file
58
src/app/modules/admin/settings/game/services/game.service.ts
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import {
|
||||||
|
BehaviorSubject,
|
||||||
|
filter,
|
||||||
|
map,
|
||||||
|
Observable,
|
||||||
|
of,
|
||||||
|
switchMap,
|
||||||
|
take,
|
||||||
|
tap,
|
||||||
|
throwError,
|
||||||
|
} from 'rxjs';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class GameService {
|
||||||
|
// Private
|
||||||
|
private __gameSetting = new BehaviorSubject<any | undefined>(undefined);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _httpClient: HttpClient) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Accessors
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for game
|
||||||
|
*/
|
||||||
|
get gameSetting$(): Observable<any | undefined> {
|
||||||
|
return this.__gameSetting.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get powerballs
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
getGameSetting(): Observable<{
|
||||||
|
gameSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._httpClient
|
||||||
|
.get<{ gameSetting: any }>('api/apps/settings/game')
|
||||||
|
.pipe(
|
||||||
|
tap((response) => {
|
||||||
|
this.__gameSetting.next(response.gameSetting);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,156 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import {
|
|
||||||
BehaviorSubject,
|
|
||||||
filter,
|
|
||||||
map,
|
|
||||||
Observable,
|
|
||||||
of,
|
|
||||||
switchMap,
|
|
||||||
take,
|
|
||||||
tap,
|
|
||||||
throwError,
|
|
||||||
} from 'rxjs';
|
|
||||||
|
|
||||||
import { Powerball } from '../models/powerball';
|
|
||||||
import { PowerballPagination } from '../models/powerball-pagination';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class PowerballService {
|
|
||||||
// Private
|
|
||||||
private __pagination = new BehaviorSubject<PowerballPagination | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
private __powerball = new BehaviorSubject<Powerball | undefined>(undefined);
|
|
||||||
private __powerballs = new BehaviorSubject<Powerball[] | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _httpClient: HttpClient) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Accessors
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for pagination
|
|
||||||
*/
|
|
||||||
get pagination$(): Observable<PowerballPagination | undefined> {
|
|
||||||
return this.__pagination.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for powerball
|
|
||||||
*/
|
|
||||||
get powerball$(): Observable<Powerball | undefined> {
|
|
||||||
return this.__powerball.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for powerballs
|
|
||||||
*/
|
|
||||||
get powerballs$(): Observable<Powerball[] | undefined> {
|
|
||||||
return this.__powerballs.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get powerballs
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param page
|
|
||||||
* @param size
|
|
||||||
* @param sort
|
|
||||||
* @param order
|
|
||||||
* @param search
|
|
||||||
*/
|
|
||||||
getPowerballs(
|
|
||||||
page: number = 0,
|
|
||||||
size: number = 10,
|
|
||||||
sort: string = 'nickname',
|
|
||||||
order: 'asc' | 'desc' | '' = 'asc',
|
|
||||||
search: string = ''
|
|
||||||
): Observable<{
|
|
||||||
pagination: PowerballPagination;
|
|
||||||
powerballs: Powerball[];
|
|
||||||
}> {
|
|
||||||
return this._httpClient
|
|
||||||
.get<{ pagination: PowerballPagination; powerballs: Powerball[] }>(
|
|
||||||
'api/apps/game/powerball/powerballs',
|
|
||||||
{
|
|
||||||
params: {
|
|
||||||
page: '' + page,
|
|
||||||
size: '' + size,
|
|
||||||
sort,
|
|
||||||
order,
|
|
||||||
search,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.pipe(
|
|
||||||
tap((response) => {
|
|
||||||
this.__pagination.next(response.pagination);
|
|
||||||
this.__powerballs.next(response.powerballs);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get product by id
|
|
||||||
*/
|
|
||||||
getPowerballById(id: string | null): Observable<Powerball> {
|
|
||||||
return this.__powerballs.pipe(
|
|
||||||
take(1),
|
|
||||||
map((powerballs) => {
|
|
||||||
// Find the product
|
|
||||||
const powerball =
|
|
||||||
powerballs?.find((item) => item.id === id) || undefined;
|
|
||||||
|
|
||||||
// Update the product
|
|
||||||
this.__powerball.next(powerball);
|
|
||||||
|
|
||||||
// Return the product
|
|
||||||
return powerball;
|
|
||||||
}),
|
|
||||||
switchMap((product) => {
|
|
||||||
if (!product) {
|
|
||||||
return throwError('Could not found product with id of ' + id + '!');
|
|
||||||
}
|
|
||||||
|
|
||||||
return of(product);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create product
|
|
||||||
*/
|
|
||||||
createPowerball(): Observable<Powerball> {
|
|
||||||
return this.powerballs$.pipe(
|
|
||||||
take(1),
|
|
||||||
switchMap((powerballs) =>
|
|
||||||
this._httpClient
|
|
||||||
.post<Powerball>('api/apps/game/powerball/product', {})
|
|
||||||
.pipe(
|
|
||||||
map((newPowerball) => {
|
|
||||||
// Update the powerballs with the new product
|
|
||||||
if (!!powerballs) {
|
|
||||||
this.__powerballs.next([newPowerball, ...powerballs]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the new product
|
|
||||||
return newPowerball;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
import { ListComponent } from './list.component';
|
||||||
|
|
||||||
|
export const COMPONENTS = [ListComponent];
|
|
@ -0,0 +1 @@
|
||||||
|
<p>indexing server setting page</p>
|
|
@ -0,0 +1,126 @@
|
||||||
|
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';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'settings-indexing-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;
|
||||||
|
|
||||||
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(
|
||||||
|
private _changeDetectorRef: ChangeDetectorRef,
|
||||||
|
private _fuseConfirmationService: FuseConfirmationService,
|
||||||
|
private _formBuilder: FormBuilder
|
||||||
|
) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Lifecycle hooks
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* On init
|
||||||
|
*/
|
||||||
|
ngOnInit(): void {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* After view init
|
||||||
|
*/
|
||||||
|
ngAfterViewInit(): void {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -18,14 +18,14 @@ import { SharedModule } from 'app/shared/shared.module';
|
||||||
|
|
||||||
import { COMPONENTS } from './components';
|
import { COMPONENTS } from './components';
|
||||||
|
|
||||||
import { powerballRoutes } from './powerball.routing';
|
import { indexingRoutes } from './indexing.routing';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [COMPONENTS],
|
declarations: [COMPONENTS],
|
||||||
imports: [
|
imports: [
|
||||||
TranslocoModule,
|
TranslocoModule,
|
||||||
SharedModule,
|
SharedModule,
|
||||||
RouterModule.forChild(powerballRoutes),
|
RouterModule.forChild(indexingRoutes),
|
||||||
|
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
MatFormFieldModule,
|
MatFormFieldModule,
|
||||||
|
@ -39,4 +39,4 @@ import { powerballRoutes } from './powerball.routing';
|
||||||
MatTooltipModule,
|
MatTooltipModule,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class PowerballModule {}
|
export class IndexingModule {}
|
12
src/app/modules/admin/settings/indexing/indexing.routing.ts
Normal file
12
src/app/modules/admin/settings/indexing/indexing.routing.ts
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
import { Route } from '@angular/router';
|
||||||
|
|
||||||
|
import { ListComponent } from './components/list.component';
|
||||||
|
|
||||||
|
import { IndexingResolver } from './resolvers/indexing.resolver';
|
||||||
|
|
||||||
|
export const indexingRoutes: Route[] = [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: ListComponent,
|
||||||
|
},
|
||||||
|
];
|
|
@ -0,0 +1,37 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import {
|
||||||
|
ActivatedRouteSnapshot,
|
||||||
|
Resolve,
|
||||||
|
Router,
|
||||||
|
RouterStateSnapshot,
|
||||||
|
} from '@angular/router';
|
||||||
|
import { catchError, Observable, throwError } from 'rxjs';
|
||||||
|
|
||||||
|
import { IndexingService } from '../services/indexing.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class IndexingResolver implements Resolve<any> {
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _indexingService: IndexingService) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolver
|
||||||
|
*
|
||||||
|
* @param route
|
||||||
|
* @param state
|
||||||
|
*/
|
||||||
|
resolve(
|
||||||
|
route: ActivatedRouteSnapshot,
|
||||||
|
state: RouterStateSnapshot
|
||||||
|
): Observable<void> {
|
||||||
|
return this._indexingService.getIndexingSetting();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import {
|
||||||
|
BehaviorSubject,
|
||||||
|
filter,
|
||||||
|
map,
|
||||||
|
Observable,
|
||||||
|
of,
|
||||||
|
switchMap,
|
||||||
|
take,
|
||||||
|
tap,
|
||||||
|
throwError,
|
||||||
|
} from 'rxjs';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class IndexingService {
|
||||||
|
// Private
|
||||||
|
private __indexingSetting = new BehaviorSubject<any | undefined>(undefined);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _httpClient: HttpClient) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Accessors
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for game
|
||||||
|
*/
|
||||||
|
get indexingSetting$(): Observable<any | undefined> {
|
||||||
|
return this.__indexingSetting.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get powerballs
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
getIndexingSetting(): Observable<void> {
|
||||||
|
return this._httpClient.get<void>('api/apps/settings/indexing').pipe(
|
||||||
|
tap((response) => {
|
||||||
|
// this.__gameSetting.next(response.gameSetting);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,350 +1 @@
|
||||||
<div
|
<p>ladder game setting page</p>
|
||||||
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">Evolution</div>
|
|
||||||
<!-- Actions -->
|
|
||||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
|
||||||
<!-- Memo -->
|
|
||||||
<!-- <mat-form-field>
|
|
||||||
<ng-container *ngIf="evolutions$ | async as evolutions">
|
|
||||||
<ng-container *ngFor="let evolution of evolutions; trackBy: __trackByFn">
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<fieldset>
|
|
||||||
{{ evolution.startDate }}~{{ evolution.finishDate }}까지의 총
|
|
||||||
유효배팅:{{ evolution.availableBetting }}원, 배팅금액:{{
|
|
||||||
evolution.bettingMoney
|
|
||||||
}}원, 당첨:{{ evolution.winning }}원, 취소:{{ evolution.cancel }}원,
|
|
||||||
배팅-당첨-취소:{{ evolution.betWinCancel }}원, 본사롤링:{{
|
|
||||||
evolution.mainofficeRolling
|
|
||||||
}}원, 대본롤링:{{ evolution.branchRolling }}원, 부본롤링:{{
|
|
||||||
evolution.divisionRolling
|
|
||||||
}}원, 총판롤링:{{ evolution.officeRolling }}원, 매장롤링:{{
|
|
||||||
evolution.storeRolling
|
|
||||||
}}원, 회원롤링:{{ evolution.memberRolling }}원, 롤링합계:{{
|
|
||||||
evolution.totalrolling
|
|
||||||
}}원
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
</mat-form-field> -->
|
|
||||||
|
|
||||||
<!-- SelectBox -->
|
|
||||||
<mat-form-field>
|
|
||||||
<mat-select placeholder="전체금액">
|
|
||||||
<mat-option value="">전체금액</mat-option>
|
|
||||||
<mat-option value="">배팅100만미만</mat-option>
|
|
||||||
<mat-option value="">배팅100-300만</mat-option>
|
|
||||||
<mat-option value="">배팅300-500만</mat-option>
|
|
||||||
<mat-option value="">배팅500만이상</mat-option>
|
|
||||||
<mat-option value="">당첨1000만초과</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">
|
|
||||||
<!-- Products list -->
|
|
||||||
<div
|
|
||||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
|
||||||
>
|
|
||||||
<ng-container *ngIf="evolutions$ | async as evolutions">
|
|
||||||
<ng-container *ngIf="evolutions.length > 0; else noEvolution">
|
|
||||||
<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">상위</div>
|
|
||||||
<div class="hidden sm:block">유저</div>
|
|
||||||
<div class="hidden sm:block">게임</div>
|
|
||||||
<div class="hidden sm:block">형식</div>
|
|
||||||
<div class="hidden sm:block">금액</div>
|
|
||||||
<div class="hidden sm:block">최종금액</div>
|
|
||||||
<div class="hidden sm:block">배팅</div>
|
|
||||||
<div class="hidden sm:block">데이터</div>
|
|
||||||
<div class="hidden sm:block">콤프</div>
|
|
||||||
<div class="hidden sm:block">롤링</div>
|
|
||||||
<div class="hidden sm:block">배팅시간 등록시간</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="evolutions$ | async as evolutions">
|
|
||||||
<ng-container
|
|
||||||
*ngFor="let evolution of evolutions; trackBy: __trackByFn"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
|
||||||
>
|
|
||||||
<!-- highRank -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ evolution.highRank }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<!-- userInfo -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.gameId }}
|
|
||||||
{{ evolution.id }}
|
|
||||||
{{ evolution.nickname }}
|
|
||||||
</div>
|
|
||||||
<!-- game -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ evolution.gameName }}
|
|
||||||
</button>
|
|
||||||
{{ evolution.gameInfo1 }}
|
|
||||||
{{ evolution.gameInfo2 }}
|
|
||||||
{{ evolution.gameInfo3 }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- form -->
|
|
||||||
<!-- <div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.form }}
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<!-- money -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
배팅{{ evolution.betting }} 당첨{{
|
|
||||||
evolution.winning
|
|
||||||
}}
|
|
||||||
손익{{ evolution.profitLoss }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- finalMoney -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
배팅 전{{ evolution.beforeBetting }} 배팅 후{{
|
|
||||||
evolution.afterBetting
|
|
||||||
}}
|
|
||||||
최종금액{{ evolution.finalMoney }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- betting -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.bettingInfo1 }}
|
|
||||||
{{ evolution.bettingInfo2 }}
|
|
||||||
{{ evolution.bettingInfo3 }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- data -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
<button mat-flat-button [color]="'primary'">
|
|
||||||
{{ evolution.data }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- comp -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.comp }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- rolling -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
본사:{{ evolution.mainofficeName }}({{
|
|
||||||
evolution.mainofficePercent
|
|
||||||
}}%,{{ evolution.mainofficePoint }}P) 대본:{{
|
|
||||||
evolution.branchName
|
|
||||||
}}({{ evolution.branchPercent }}%,{{
|
|
||||||
evolution.branchPoint
|
|
||||||
}}P) 부본:{{ evolution.divisionName }}({{
|
|
||||||
evolution.divisionPercent
|
|
||||||
}}%,{{ evolution.divisionPoint }}P) 총판:{{
|
|
||||||
evolution.officeName
|
|
||||||
}}({{ evolution.officePercent }}%,{{
|
|
||||||
evolution.officePoint
|
|
||||||
}}P) 매장:{{ evolution.storeName }}({{
|
|
||||||
evolution.storePercent
|
|
||||||
}}%,{{ evolution.storePoint }}P) 회원:{{
|
|
||||||
evolution.memberName
|
|
||||||
}}({{ evolution.memberPercent }}%,{{
|
|
||||||
evolution.memberPoint
|
|
||||||
}}P)
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- bettingTime -->
|
|
||||||
<div class="hidden sm:block truncate">
|
|
||||||
{{ evolution.bettingTime }}
|
|
||||||
{{ evolution.registrationTime }}
|
|
||||||
</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 #noEvolution>
|
|
||||||
<div
|
|
||||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
|
||||||
>
|
|
||||||
There are no evolution!
|
|
||||||
</div>
|
|
||||||
</ng-template>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -29,12 +29,8 @@ import {
|
||||||
import { fuseAnimations } from '@fuse/animations';
|
import { fuseAnimations } from '@fuse/animations';
|
||||||
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
||||||
|
|
||||||
import { Evolution } from '../models/evolution';
|
|
||||||
import { EvolutionPagination } from '../models/evolution-pagination';
|
|
||||||
import { EvolutionService } from '../services/evolution.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'evolution-list',
|
selector: 'settings-ladder-list',
|
||||||
templateUrl: './list.component.html',
|
templateUrl: './list.component.html',
|
||||||
styles: [
|
styles: [
|
||||||
/* language=SCSS */
|
/* language=SCSS */
|
||||||
|
@ -64,13 +60,6 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
||||||
@ViewChild(MatSort) private _sort!: MatSort;
|
@ViewChild(MatSort) private _sort!: MatSort;
|
||||||
|
|
||||||
evolutions$!: Observable<Evolution[] | undefined>;
|
|
||||||
|
|
||||||
isLoading = false;
|
|
||||||
searchInputControl = new FormControl();
|
|
||||||
selectedEvolution?: Evolution;
|
|
||||||
pagination?: EvolutionPagination;
|
|
||||||
|
|
||||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -79,8 +68,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
constructor(
|
constructor(
|
||||||
private _changeDetectorRef: ChangeDetectorRef,
|
private _changeDetectorRef: ChangeDetectorRef,
|
||||||
private _fuseConfirmationService: FuseConfirmationService,
|
private _fuseConfirmationService: FuseConfirmationService,
|
||||||
private _formBuilder: FormBuilder,
|
private _formBuilder: FormBuilder
|
||||||
private _evolutionService: EvolutionService
|
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
@ -90,64 +78,12 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||||
/**
|
/**
|
||||||
* On init
|
* On init
|
||||||
*/
|
*/
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {}
|
||||||
// Get the pagination
|
|
||||||
this._evolutionService.pagination$
|
|
||||||
.pipe(takeUntil(this._unsubscribeAll))
|
|
||||||
.subscribe((pagination: EvolutionPagination | undefined) => {
|
|
||||||
// Update the pagination
|
|
||||||
this.pagination = pagination;
|
|
||||||
|
|
||||||
// Mark for check
|
|
||||||
this._changeDetectorRef.markForCheck();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Get the products
|
|
||||||
this.evolutions$ = this._evolutionService.evolutions$;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* After view init
|
* After view init
|
||||||
*/
|
*/
|
||||||
ngAfterViewInit(): void {
|
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 evolution 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._evolutionService.getEvolutions(
|
|
||||||
this._paginator.pageIndex,
|
|
||||||
this._paginator.pageSize,
|
|
||||||
this._sort.active,
|
|
||||||
this._sort.direction
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
map(() => {
|
|
||||||
this.isLoading = false;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.subscribe();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* On destroy
|
* On destroy
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
import { Route } from '@angular/router';
|
|
||||||
|
|
||||||
import { ListComponent } from './components/list.component';
|
|
||||||
|
|
||||||
import { EvolutionsResolver } from './resolvers/evolution.resolver';
|
|
||||||
|
|
||||||
export const evolutionRoutes: Route[] = [
|
|
||||||
{
|
|
||||||
path: '',
|
|
||||||
component: ListComponent,
|
|
||||||
resolve: {
|
|
||||||
deposits: EvolutionsResolver,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
];
|
|
42
src/app/modules/admin/settings/ladder/ladder.module.ts
Normal file
42
src/app/modules/admin/settings/ladder/ladder.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 { ladderRoutes } from './ladder.routing';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
declarations: [COMPONENTS],
|
||||||
|
imports: [
|
||||||
|
TranslocoModule,
|
||||||
|
SharedModule,
|
||||||
|
RouterModule.forChild(ladderRoutes),
|
||||||
|
|
||||||
|
MatButtonModule,
|
||||||
|
MatFormFieldModule,
|
||||||
|
MatIconModule,
|
||||||
|
MatInputModule,
|
||||||
|
MatPaginatorModule,
|
||||||
|
MatProgressBarModule,
|
||||||
|
MatRippleModule,
|
||||||
|
MatSortModule,
|
||||||
|
MatSelectModule,
|
||||||
|
MatTooltipModule,
|
||||||
|
],
|
||||||
|
})
|
||||||
|
export class LadderModule {}
|
15
src/app/modules/admin/settings/ladder/ladder.routing.ts
Normal file
15
src/app/modules/admin/settings/ladder/ladder.routing.ts
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import { Route } from '@angular/router';
|
||||||
|
|
||||||
|
import { ListComponent } from './components/list.component';
|
||||||
|
|
||||||
|
import { LadderResolver } from './resolvers/ladder.resolver';
|
||||||
|
|
||||||
|
export const ladderRoutes: Route[] = [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: ListComponent,
|
||||||
|
// resolve: {
|
||||||
|
// ladder: LadderResolver,
|
||||||
|
// },
|
||||||
|
},
|
||||||
|
];
|
|
@ -1,8 +0,0 @@
|
||||||
export interface EvolutionPagination {
|
|
||||||
length: number;
|
|
||||||
size: number;
|
|
||||||
page: number;
|
|
||||||
lastPage: number;
|
|
||||||
startIndex: number;
|
|
||||||
endIndex: number;
|
|
||||||
}
|
|
|
@ -1,58 +0,0 @@
|
||||||
export interface Evolution {
|
|
||||||
id?: string;
|
|
||||||
startDate?: string;
|
|
||||||
finishDate?: string;
|
|
||||||
availableBetting?: number;
|
|
||||||
bettingMoney?: number;
|
|
||||||
winningMoney?: number;
|
|
||||||
cancel?: number;
|
|
||||||
betWinCancel?: number;
|
|
||||||
mainofficeRolling?: number;
|
|
||||||
branchRolling?: number;
|
|
||||||
divisionRolling?: number;
|
|
||||||
officeRolling?: number;
|
|
||||||
storeRolling?: number;
|
|
||||||
memberRolling?: number;
|
|
||||||
totalrolling?: number;
|
|
||||||
highRank?: string;
|
|
||||||
gameId?: string;
|
|
||||||
nickname?: string;
|
|
||||||
gameName?: string;
|
|
||||||
gameInfo1?: string;
|
|
||||||
gameInfo2?: string;
|
|
||||||
gameInfo3?: string;
|
|
||||||
form?: string;
|
|
||||||
betting?: number;
|
|
||||||
profitLoss?: number;
|
|
||||||
beforeWinning?: number;
|
|
||||||
winning?: number;
|
|
||||||
afterWinning?: number;
|
|
||||||
beforeBetting?: number;
|
|
||||||
afterBetting?: number;
|
|
||||||
finalMoney?: number;
|
|
||||||
bettingInfo1?: string;
|
|
||||||
bettingInfo2?: number;
|
|
||||||
bettingInfo3?: number;
|
|
||||||
data?: string;
|
|
||||||
comp?: string;
|
|
||||||
mainofficeName?: string;
|
|
||||||
mainofficePercent?: number;
|
|
||||||
mainofficePoint?: number;
|
|
||||||
branchName?: string;
|
|
||||||
branchPercent?: number;
|
|
||||||
branchPoint?: number;
|
|
||||||
divisionName?: string;
|
|
||||||
divisionPercent?: number;
|
|
||||||
divisionPoint?: number;
|
|
||||||
officeName?: string;
|
|
||||||
officePercent?: number;
|
|
||||||
officePoint?: number;
|
|
||||||
storeName?: string;
|
|
||||||
storePercent?: number;
|
|
||||||
storePoint?: number;
|
|
||||||
memberName?: string;
|
|
||||||
memberPercent?: number;
|
|
||||||
memberPoint?: number;
|
|
||||||
bettingTime?: string;
|
|
||||||
registrationTime?: string;
|
|
||||||
}
|
|
|
@ -1,89 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import {
|
|
||||||
ActivatedRouteSnapshot,
|
|
||||||
Resolve,
|
|
||||||
Router,
|
|
||||||
RouterStateSnapshot,
|
|
||||||
} from '@angular/router';
|
|
||||||
import { catchError, Observable, throwError } from 'rxjs';
|
|
||||||
|
|
||||||
import { Evolution } from '../models/evolution';
|
|
||||||
import { EvolutionPagination } from '../models/evolution-pagination';
|
|
||||||
import { EvolutionService } from '../services/evolution.service';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class EvolutionResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(
|
|
||||||
private _evolutionService: EvolutionService,
|
|
||||||
private _router: Router
|
|
||||||
) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<Evolution | undefined> {
|
|
||||||
return this._evolutionService
|
|
||||||
.getEvolutionById(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 EvolutionsResolver implements Resolve<any> {
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _evolutionService: EvolutionService) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Resolver
|
|
||||||
*
|
|
||||||
* @param route
|
|
||||||
* @param state
|
|
||||||
*/
|
|
||||||
resolve(
|
|
||||||
route: ActivatedRouteSnapshot,
|
|
||||||
state: RouterStateSnapshot
|
|
||||||
): Observable<{
|
|
||||||
pagination: EvolutionPagination;
|
|
||||||
evolutions: Evolution[];
|
|
||||||
}> {
|
|
||||||
return this._evolutionService.getEvolutions();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import {
|
||||||
|
ActivatedRouteSnapshot,
|
||||||
|
Resolve,
|
||||||
|
Router,
|
||||||
|
RouterStateSnapshot,
|
||||||
|
} from '@angular/router';
|
||||||
|
import { catchError, Observable, throwError } from 'rxjs';
|
||||||
|
|
||||||
|
import { LadderService } from '../services/ladder.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class LadderResolver implements Resolve<any> {
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _ladderService: LadderService) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolver
|
||||||
|
*
|
||||||
|
* @param route
|
||||||
|
* @param state
|
||||||
|
*/
|
||||||
|
resolve(
|
||||||
|
route: ActivatedRouteSnapshot,
|
||||||
|
state: RouterStateSnapshot
|
||||||
|
): Observable<{
|
||||||
|
ladderSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._ladderService.getLadderSetting();
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,156 +0,0 @@
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import {
|
|
||||||
BehaviorSubject,
|
|
||||||
filter,
|
|
||||||
map,
|
|
||||||
Observable,
|
|
||||||
of,
|
|
||||||
switchMap,
|
|
||||||
take,
|
|
||||||
tap,
|
|
||||||
throwError,
|
|
||||||
} from 'rxjs';
|
|
||||||
|
|
||||||
import { Evolution } from '../models/evolution';
|
|
||||||
import { EvolutionPagination } from '../models/evolution-pagination';
|
|
||||||
|
|
||||||
@Injectable({
|
|
||||||
providedIn: 'root',
|
|
||||||
})
|
|
||||||
export class EvolutionService {
|
|
||||||
// Private
|
|
||||||
private __pagination = new BehaviorSubject<EvolutionPagination | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
private __evolution = new BehaviorSubject<Evolution | undefined>(undefined);
|
|
||||||
private __evolutions = new BehaviorSubject<Evolution[] | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*/
|
|
||||||
constructor(private _httpClient: HttpClient) {}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Accessors
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for pagination
|
|
||||||
*/
|
|
||||||
get pagination$(): Observable<EvolutionPagination | undefined> {
|
|
||||||
return this.__pagination.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for evolution
|
|
||||||
*/
|
|
||||||
get evolution$(): Observable<Evolution | undefined> {
|
|
||||||
return this.__evolution.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for evolutions
|
|
||||||
*/
|
|
||||||
get evolutions$(): Observable<Evolution[] | undefined> {
|
|
||||||
return this.__evolutions.asObservable();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
// @ Public methods
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get evolutions
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param page
|
|
||||||
* @param size
|
|
||||||
* @param sort
|
|
||||||
* @param order
|
|
||||||
* @param search
|
|
||||||
*/
|
|
||||||
getEvolutions(
|
|
||||||
page: number = 0,
|
|
||||||
size: number = 10,
|
|
||||||
sort: string = 'nickname',
|
|
||||||
order: 'asc' | 'desc' | '' = 'asc',
|
|
||||||
search: string = ''
|
|
||||||
): Observable<{
|
|
||||||
pagination: EvolutionPagination;
|
|
||||||
evolutions: Evolution[];
|
|
||||||
}> {
|
|
||||||
return this._httpClient
|
|
||||||
.get<{ pagination: EvolutionPagination; evolutions: Evolution[] }>(
|
|
||||||
'api/apps/game/evolution/evolutions',
|
|
||||||
{
|
|
||||||
params: {
|
|
||||||
page: '' + page,
|
|
||||||
size: '' + size,
|
|
||||||
sort,
|
|
||||||
order,
|
|
||||||
search,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.pipe(
|
|
||||||
tap((response) => {
|
|
||||||
this.__pagination.next(response.pagination);
|
|
||||||
this.__evolutions.next(response.evolutions);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get product by id
|
|
||||||
*/
|
|
||||||
getEvolutionById(id: string | null): Observable<Evolution> {
|
|
||||||
return this.__evolutions.pipe(
|
|
||||||
take(1),
|
|
||||||
map((evolutions) => {
|
|
||||||
// Find the product
|
|
||||||
const evolution =
|
|
||||||
evolutions?.find((item) => item.id === id) || undefined;
|
|
||||||
|
|
||||||
// Update the product
|
|
||||||
this.__evolution.next(evolution);
|
|
||||||
|
|
||||||
// Return the product
|
|
||||||
return evolution;
|
|
||||||
}),
|
|
||||||
switchMap((product) => {
|
|
||||||
if (!product) {
|
|
||||||
return throwError('Could not found product with id of ' + id + '!');
|
|
||||||
}
|
|
||||||
|
|
||||||
return of(product);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create product
|
|
||||||
*/
|
|
||||||
createEvolution(): Observable<Evolution> {
|
|
||||||
return this.evolutions$.pipe(
|
|
||||||
take(1),
|
|
||||||
switchMap((evolutions) =>
|
|
||||||
this._httpClient
|
|
||||||
.post<Evolution>('api/apps/game/evolution/product', {})
|
|
||||||
.pipe(
|
|
||||||
map((newEvolution) => {
|
|
||||||
// Update the evolutions with the new product
|
|
||||||
if (!!evolutions) {
|
|
||||||
this.__evolutions.next([newEvolution, ...evolutions]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the new product
|
|
||||||
return newEvolution;
|
|
||||||
})
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import {
|
||||||
|
BehaviorSubject,
|
||||||
|
filter,
|
||||||
|
map,
|
||||||
|
Observable,
|
||||||
|
of,
|
||||||
|
switchMap,
|
||||||
|
take,
|
||||||
|
tap,
|
||||||
|
throwError,
|
||||||
|
} from 'rxjs';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class LadderService {
|
||||||
|
// Private
|
||||||
|
private __ladderSetting = new BehaviorSubject<any | undefined>(undefined);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _httpClient: HttpClient) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Accessors
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for game
|
||||||
|
*/
|
||||||
|
get ladderSetting$(): Observable<any | undefined> {
|
||||||
|
return this.__ladderSetting.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get powerballs
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
getLadderSetting(): Observable<{
|
||||||
|
ladderSetting: any;
|
||||||
|
}> {
|
||||||
|
return this._httpClient
|
||||||
|
.get<{ ladderSetting: any }>('api/apps/settings/ladder')
|
||||||
|
.pipe(
|
||||||
|
tap((response) => {
|
||||||
|
this.__ladderSetting.next(response.ladderSetting);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -25,6 +25,11 @@
|
||||||
"Slot": "슬롯배팅리스트",
|
"Slot": "슬롯배팅리스트",
|
||||||
"Current User": "현재접속자 & 쪽지전송",
|
"Current User": "현재접속자 & 쪽지전송",
|
||||||
"Basic-Setting": "사이트 기본설정",
|
"Basic-Setting": "사이트 기본설정",
|
||||||
|
"Ladder-Setting": "게임 ON/OFF",
|
||||||
|
"Game-Setting": "게임설정",
|
||||||
|
"Evo-Setting": "에볼류션/보타 금액설정",
|
||||||
|
"Branch-Setting": "대본벌 계좌 설정",
|
||||||
|
"Indexing-Setting": "서버 인덱싱",
|
||||||
"Daily": "일일현황",
|
"Daily": "일일현황",
|
||||||
"Monthly": "월 현황",
|
"Monthly": "월 현황",
|
||||||
"Daily Partner": "파트너 일일현황",
|
"Daily Partner": "파트너 일일현황",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user