카지노배팅리스트 페이지 추가
This commit is contained in:
parent
457bfae6da
commit
1426cb91bb
|
@ -181,6 +181,13 @@ export const appRoutes: Route[] = [
|
||||||
(m: any) => m.PowerballModule
|
(m: any) => m.PowerballModule
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'casino',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('app/modules/admin/game/casino/casino.module').then(
|
||||||
|
(m: any) => m.CasinoModule
|
||||||
|
),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
214
src/app/mock-api/apps/game/casino/api.ts
Normal file
214
src/app/mock-api/apps/game/casino/api.ts
Normal file
|
@ -0,0 +1,214 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { assign, cloneDeep } from 'lodash-es';
|
||||||
|
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||||
|
import { casinos as casinosData } from './data';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class GameCasinoMockApi {
|
||||||
|
private _casinos: any[] = casinosData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||||
|
// Register Mock API handlers
|
||||||
|
this.registerHandlers();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register Mock API handlers
|
||||||
|
*/
|
||||||
|
registerHandlers(): void {
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Casinos - GET
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onGet('api/apps/game/casino/casinos', 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 casinos
|
||||||
|
let casinos: any[] | null = cloneDeep(this._casinos);
|
||||||
|
|
||||||
|
// Sort the casinos
|
||||||
|
if (sort === 'sku' || sort === 'name' || sort === 'active') {
|
||||||
|
casinos.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 {
|
||||||
|
casinos.sort((a, b) =>
|
||||||
|
order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If search exists...
|
||||||
|
if (search) {
|
||||||
|
// Filter the casinos
|
||||||
|
casinos = casinos.filter(
|
||||||
|
(contact: any) =>
|
||||||
|
contact.name &&
|
||||||
|
contact.name.toLowerCase().includes(search.toLowerCase())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Paginate - Start
|
||||||
|
const casinosLength = casinos.length;
|
||||||
|
|
||||||
|
// Calculate pagination details
|
||||||
|
const begin = page * size;
|
||||||
|
const end = Math.min(size * (page + 1), casinosLength);
|
||||||
|
const lastPage = Math.max(Math.ceil(casinosLength / size), 1);
|
||||||
|
|
||||||
|
// Prepare the pagination object
|
||||||
|
let pagination = {};
|
||||||
|
|
||||||
|
// If the requested page number is bigger than
|
||||||
|
// the last possible page number, return null for
|
||||||
|
// casinos but also send the last possible page so
|
||||||
|
// the app can navigate to there
|
||||||
|
if (page > lastPage) {
|
||||||
|
casinos = null;
|
||||||
|
pagination = {
|
||||||
|
lastPage,
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
// Paginate the results by size
|
||||||
|
casinos = casinos.slice(begin, end);
|
||||||
|
|
||||||
|
// Prepare the pagination mock-api
|
||||||
|
pagination = {
|
||||||
|
length: casinosLength,
|
||||||
|
size: size,
|
||||||
|
page: page,
|
||||||
|
lastPage: lastPage,
|
||||||
|
startIndex: begin,
|
||||||
|
endIndex: end - 1,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [
|
||||||
|
200,
|
||||||
|
{
|
||||||
|
casinos,
|
||||||
|
pagination,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Casino - GET
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onGet('api/apps/game/casino/casino')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id from the params
|
||||||
|
const id = request.params.get('id');
|
||||||
|
|
||||||
|
// Clone the casinos
|
||||||
|
const casinos = cloneDeep(this._casinos);
|
||||||
|
|
||||||
|
// Find the casino
|
||||||
|
const casino = casinos.find((item: any) => item.id === id);
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, casino];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Casino - POST
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService.onPost('api/apps/gmae/casino/casino').reply(() => {
|
||||||
|
// Generate a new casino
|
||||||
|
const newCasino = {
|
||||||
|
id: FuseMockApiUtils.guid(),
|
||||||
|
startDate: '',
|
||||||
|
finishDate: '',
|
||||||
|
totalBetting: '',
|
||||||
|
winningMoney: '',
|
||||||
|
proceedingMoney: '',
|
||||||
|
calculate: '',
|
||||||
|
index: '',
|
||||||
|
division: '',
|
||||||
|
rank: '',
|
||||||
|
nickname: '',
|
||||||
|
bettingProgress: '',
|
||||||
|
odds: '',
|
||||||
|
bettingMoney: '',
|
||||||
|
hitMoney: '',
|
||||||
|
bettingTime: '',
|
||||||
|
result: '',
|
||||||
|
delete: '',
|
||||||
|
};
|
||||||
|
|
||||||
|
// Unshift the new casino
|
||||||
|
this._casinos.unshift(newCasino);
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, newCasino];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Casino - PATCH
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onPatch('api/apps/game/casino/casino')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id and casino
|
||||||
|
const id = request.body.id;
|
||||||
|
const casino = cloneDeep(request.body.casino);
|
||||||
|
|
||||||
|
// Prepare the updated casino
|
||||||
|
let updatedCasino = null;
|
||||||
|
|
||||||
|
// Find the casino and update it
|
||||||
|
this._casinos.forEach((item, index, casinos) => {
|
||||||
|
if (item.id === id) {
|
||||||
|
// Update the casino
|
||||||
|
casinos[index] = assign({}, casinos[index], casino);
|
||||||
|
|
||||||
|
// Store the updated casino
|
||||||
|
updatedCasino = casinos[index];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, updatedCasino];
|
||||||
|
});
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Casino - DELETE
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
this._fuseMockApiService
|
||||||
|
.onDelete('api/apps/game/casino/casino')
|
||||||
|
.reply(({ request }) => {
|
||||||
|
// Get the id
|
||||||
|
const id = request.params.get('id');
|
||||||
|
|
||||||
|
// Find the casino and delete it
|
||||||
|
this._casinos.forEach((item, index) => {
|
||||||
|
if (item.id === id) {
|
||||||
|
this._casinos.splice(index, 1);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Return the response
|
||||||
|
return [200, true];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
57
src/app/mock-api/apps/game/casino/data.ts
Normal file
57
src/app/mock-api/apps/game/casino/data.ts
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
|
||||||
|
export const casinos = [
|
||||||
|
{
|
||||||
|
startDate: '2022-06-01 00:00',
|
||||||
|
finishDate: '2022-06-21 23:59',
|
||||||
|
availableBetting: 12440000,
|
||||||
|
bettingMoney: 12751000,
|
||||||
|
winningMoney: 12198950,
|
||||||
|
cancel: 10000,
|
||||||
|
betWinCancel: 542050,
|
||||||
|
mainofficeRolling: 60202,
|
||||||
|
branchRolling: 36390,
|
||||||
|
divisionRolling: 24828,
|
||||||
|
officeRolling: 24752,
|
||||||
|
storeRolling: 13451,
|
||||||
|
memberRolling: 81037,
|
||||||
|
totalrolling: 240660,
|
||||||
|
highRank: '[매장]kgon5',
|
||||||
|
gameId: 'ks1_1007',
|
||||||
|
siteId: 'aa100',
|
||||||
|
nickname: 'aa100',
|
||||||
|
gameName: '에볼류션 카지노',
|
||||||
|
gameInfo1: 'Speed Baccarat J',
|
||||||
|
gameInfo2: '62ae9beb396a5971c3921297',
|
||||||
|
gameInfo3: '62ae9bdd396a5971c3921033',
|
||||||
|
form: '패',
|
||||||
|
beforeWinning: 69831,
|
||||||
|
winning: 0,
|
||||||
|
afterWinning: 69831,
|
||||||
|
bettingInfo1: 'Banker',
|
||||||
|
bettingInfo2: 8000,
|
||||||
|
bettingInfo3: 0,
|
||||||
|
data: '데이터확인',
|
||||||
|
comp: '-',
|
||||||
|
mainofficeName: '',
|
||||||
|
mainofficePercent: '',
|
||||||
|
mainofficePoint: '',
|
||||||
|
branchName: '',
|
||||||
|
branchPercent: '',
|
||||||
|
branchPoint: '',
|
||||||
|
divisionName: '',
|
||||||
|
divisionPercent: '',
|
||||||
|
divisionPoint: '',
|
||||||
|
officeName: '',
|
||||||
|
officePercent: '',
|
||||||
|
officePoint: '',
|
||||||
|
storeName: '',
|
||||||
|
storePercent: '',
|
||||||
|
storePoint: '',
|
||||||
|
memberName: '',
|
||||||
|
memberPercent: '',
|
||||||
|
memberPoint: '',
|
||||||
|
bettingTime: '2022-06-01 23:22',
|
||||||
|
registrationTime: '2022-06-01 23:22',
|
||||||
|
},
|
||||||
|
];
|
|
@ -85,6 +85,13 @@ export const defaultNavigation: FuseNavigationItem[] = [
|
||||||
icon: 'heroicons_outline:academic-cap',
|
icon: 'heroicons_outline:academic-cap',
|
||||||
link: '/game/powerball',
|
link: '/game/powerball',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'game.casino',
|
||||||
|
title: 'Casino',
|
||||||
|
type: 'basic',
|
||||||
|
icon: 'heroicons_outline:academic-cap',
|
||||||
|
link: '/game/casino',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -24,6 +24,7 @@ import { TasksMockApi } from 'app/mock-api/apps/tasks/api';
|
||||||
import { UserMockApi } from 'app/mock-api/common/user/api';
|
import { UserMockApi } from 'app/mock-api/common/user/api';
|
||||||
import { BankDepositMockApi } from './apps/bank/deposit/api';
|
import { BankDepositMockApi } from './apps/bank/deposit/api';
|
||||||
import { GamePowerballMockApi } from './apps/game/powerball/api';
|
import { GamePowerballMockApi } from './apps/game/powerball/api';
|
||||||
|
import { GameCasinoMockApi } from './apps/game/casino/api';
|
||||||
|
|
||||||
export const mockApiServices = [
|
export const mockApiServices = [
|
||||||
AcademyMockApi,
|
AcademyMockApi,
|
||||||
|
@ -52,4 +53,5 @@ export const mockApiServices = [
|
||||||
UserMockApi,
|
UserMockApi,
|
||||||
BankDepositMockApi,
|
BankDepositMockApi,
|
||||||
GamePowerballMockApi,
|
GamePowerballMockApi,
|
||||||
|
GameCasinoMockApi,
|
||||||
];
|
];
|
||||||
|
|
42
src/app/modules/admin/game/casino/casino.module.ts
Normal file
42
src/app/modules/admin/game/casino/casino.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 { casinoRoutes } from './casino.routing';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
declarations: [COMPONENTS],
|
||||||
|
imports: [
|
||||||
|
TranslocoModule,
|
||||||
|
SharedModule,
|
||||||
|
RouterModule.forChild(casinoRoutes),
|
||||||
|
|
||||||
|
MatButtonModule,
|
||||||
|
MatFormFieldModule,
|
||||||
|
MatIconModule,
|
||||||
|
MatInputModule,
|
||||||
|
MatPaginatorModule,
|
||||||
|
MatProgressBarModule,
|
||||||
|
MatRippleModule,
|
||||||
|
MatSortModule,
|
||||||
|
MatSelectModule,
|
||||||
|
MatTooltipModule,
|
||||||
|
],
|
||||||
|
})
|
||||||
|
export class CasinoModule {}
|
15
src/app/modules/admin/game/casino/casino.routing.ts
Normal file
15
src/app/modules/admin/game/casino/casino.routing.ts
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import { Route } from '@angular/router';
|
||||||
|
|
||||||
|
import { ListComponent } from './components/list.component';
|
||||||
|
|
||||||
|
import { CasinosResolver } from './resolvers/casino.resolver';
|
||||||
|
|
||||||
|
export const casinoRoutes: Route[] = [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: ListComponent,
|
||||||
|
resolve: {
|
||||||
|
deposits: CasinosResolver,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
3
src/app/modules/admin/game/casino/components/index.ts
Normal file
3
src/app/modules/admin/game/casino/components/index.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import { ListComponent } from './list.component';
|
||||||
|
|
||||||
|
export const COMPONENTS = [ListComponent];
|
369
src/app/modules/admin/game/casino/components/list.component.html
Normal file
369
src/app/modules/admin/game/casino/components/list.component.html
Normal file
|
@ -0,0 +1,369 @@
|
||||||
|
<div
|
||||||
|
class="sm:absolute sm:inset-0 flex flex-col flex-auto min-w-0 sm:overflow-hidden bg-card dark:bg-transparent"
|
||||||
|
>
|
||||||
|
<!-- Header -->
|
||||||
|
<div
|
||||||
|
class="relative flex flex-col sm:flex-row flex-0 sm:items-center sm:justify-between py-8 px-6 md:px-8 border-b"
|
||||||
|
>
|
||||||
|
<!-- Loader -->
|
||||||
|
<div class="absolute inset-x-0 bottom-0" *ngIf="isLoading">
|
||||||
|
<mat-progress-bar [mode]="'indeterminate'"></mat-progress-bar>
|
||||||
|
</div>
|
||||||
|
<!-- Title -->
|
||||||
|
<div class="text-4xl font-extrabold tracking-tight">Casino</div>
|
||||||
|
<!-- Actions -->
|
||||||
|
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||||
|
<!-- Memo -->
|
||||||
|
<!-- <mat-form-field>
|
||||||
|
<ng-container *ngIf="casinos$ | async as casinos">
|
||||||
|
<ng-container *ngFor="let casino of casinos; trackBy: __trackByFn">
|
||||||
|
<div
|
||||||
|
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||||
|
>
|
||||||
|
<fieldset>
|
||||||
|
{{ casino.startDate }}~{{ casino.finishDate }}까지의 총
|
||||||
|
유효배팅:{{ casino.availableBetting }}원, 배팅금액:{{
|
||||||
|
casino.bettingMoney
|
||||||
|
}}원, 당첨:{{ casino.winning }}원, 취소:{{ casino.cancel }}원,
|
||||||
|
배팅-당첨-취소:{{ casino.betWinCancel }}원, 본사롤링:{{
|
||||||
|
casino.mainofficeRolling
|
||||||
|
}}원, 대본롤링:{{ casino.branchRolling }}원, 부본롤링:{{
|
||||||
|
casino.divisionRolling
|
||||||
|
}}원, 총판롤링:{{ casino.officeRolling }}원, 매장롤링:{{
|
||||||
|
casino.storeRolling
|
||||||
|
}}원, 회원롤링:{{ casino.memberRolling }}원, 롤링합계:{{
|
||||||
|
casino.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="">CQ9 카지노</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="casinos$ | async as casinos">
|
||||||
|
<ng-container *ngIf="casinos.length > 0; else noCasino">
|
||||||
|
<div class="grid">
|
||||||
|
<!-- Header -->
|
||||||
|
<div
|
||||||
|
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
|
||||||
|
matSort
|
||||||
|
matSortDisableClear
|
||||||
|
>
|
||||||
|
<div></div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'highRank'">
|
||||||
|
상위
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'userInfo'">
|
||||||
|
유저
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'gameInfo'">
|
||||||
|
게임
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'form'">형식</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'money'">
|
||||||
|
금액
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'betting'">
|
||||||
|
배팅
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'data'">
|
||||||
|
데이터
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'comp'">콤프</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'rolling'">
|
||||||
|
롤링
|
||||||
|
</div>
|
||||||
|
<div class="hidden sm:block" [mat-sort-header]="'time'">
|
||||||
|
배팅시간 등록시간
|
||||||
|
</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="casinos$ | async as casinos">
|
||||||
|
<ng-container
|
||||||
|
*ngFor="let casino of casinos; 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">
|
||||||
|
{{ casino.highRank }}
|
||||||
|
</div>
|
||||||
|
<!-- userInfo -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
{{ casino.id }}
|
||||||
|
{{ casino.siteId }}
|
||||||
|
{{ casino.nickname }}
|
||||||
|
</div>
|
||||||
|
<!-- game -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
<button mat-flat-button [color]="'primary'">
|
||||||
|
{{ casino.gameName }}
|
||||||
|
</button>
|
||||||
|
{{ casino.gameInfo1 }}
|
||||||
|
{{ casino.gameInfo2 }}
|
||||||
|
{{ casino.gameInfo3 }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- form -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
{{ casino.form }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- money -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
당첨전{{ casino.beforeWinning }} 당첨{{
|
||||||
|
casino.winning
|
||||||
|
}}
|
||||||
|
당첨후{{ casino.afterWinning }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- betting -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
{{ casino.bettingInfo1 }}
|
||||||
|
{{ casino.bettingInfo2 }}
|
||||||
|
{{ casino.bettingInfo3 }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- data -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
{{ casino.data }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- comp -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
{{ casino.comp }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- rolling -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
본사:{{ casino.mainofficeName }}({{
|
||||||
|
casino.mainofficePercent
|
||||||
|
}}%,{{ casino.mainofficePoint }}P) 대본:{{
|
||||||
|
casino.branchName
|
||||||
|
}}({{ casino.branchPercent }}%,{{ casino.branchPoint }}P)
|
||||||
|
부본:{{ casino.divisionName }}({{
|
||||||
|
casino.divisionPercent
|
||||||
|
}}%,{{ casino.divisionPoint }}P) 총판:{{
|
||||||
|
casino.officeName
|
||||||
|
}}({{ casino.officePercent }}%,{{ casino.officePoint }}P)
|
||||||
|
매장:{{ casino.storeName }}({{ casino.storePercent }}%,{{
|
||||||
|
casino.storePoint
|
||||||
|
}}P) 회원:{{ casino.memberName }}({{
|
||||||
|
casino.memberPercent
|
||||||
|
}}%,{{ casino.memberPoint }}P)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- bettingTime -->
|
||||||
|
<div class="hidden sm:block truncate">
|
||||||
|
{{ casino.bettingTime }}
|
||||||
|
{{ casino.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 #noCasino>
|
||||||
|
<div
|
||||||
|
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||||
|
>
|
||||||
|
There are no casino!
|
||||||
|
</div>
|
||||||
|
</ng-template>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
190
src/app/modules/admin/game/casino/components/list.component.ts
Normal file
190
src/app/modules/admin/game/casino/components/list.component.ts
Normal file
|
@ -0,0 +1,190 @@
|
||||||
|
import {
|
||||||
|
AfterViewInit,
|
||||||
|
ChangeDetectionStrategy,
|
||||||
|
ChangeDetectorRef,
|
||||||
|
Component,
|
||||||
|
OnDestroy,
|
||||||
|
OnInit,
|
||||||
|
ViewChild,
|
||||||
|
ViewEncapsulation,
|
||||||
|
} from '@angular/core';
|
||||||
|
import {
|
||||||
|
FormBuilder,
|
||||||
|
FormControl,
|
||||||
|
FormGroup,
|
||||||
|
Validators,
|
||||||
|
} from '@angular/forms';
|
||||||
|
import { MatCheckboxChange } from '@angular/material/checkbox';
|
||||||
|
import { MatPaginator } from '@angular/material/paginator';
|
||||||
|
import { MatSort } from '@angular/material/sort';
|
||||||
|
import {
|
||||||
|
debounceTime,
|
||||||
|
map,
|
||||||
|
merge,
|
||||||
|
Observable,
|
||||||
|
Subject,
|
||||||
|
switchMap,
|
||||||
|
takeUntil,
|
||||||
|
} from 'rxjs';
|
||||||
|
import { fuseAnimations } from '@fuse/animations';
|
||||||
|
import { FuseConfirmationService } from '@fuse/services/confirmation';
|
||||||
|
|
||||||
|
import { Casino } from '../models/casino';
|
||||||
|
import { CasinoPagination } from '../models/casino-pagination';
|
||||||
|
import { CasinoService } from '../services/casino.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'casino-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;
|
||||||
|
|
||||||
|
casinos$!: Observable<Casino[] | undefined>;
|
||||||
|
|
||||||
|
isLoading = false;
|
||||||
|
searchInputControl = new FormControl();
|
||||||
|
selectedCasino?: Casino;
|
||||||
|
pagination?: CasinoPagination;
|
||||||
|
|
||||||
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(
|
||||||
|
private _changeDetectorRef: ChangeDetectorRef,
|
||||||
|
private _fuseConfirmationService: FuseConfirmationService,
|
||||||
|
private _formBuilder: FormBuilder,
|
||||||
|
private _casinoService: CasinoService
|
||||||
|
) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Lifecycle hooks
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* On init
|
||||||
|
*/
|
||||||
|
ngOnInit(): void {
|
||||||
|
// Get the pagination
|
||||||
|
this._casinoService.pagination$
|
||||||
|
.pipe(takeUntil(this._unsubscribeAll))
|
||||||
|
.subscribe((pagination: CasinoPagination | undefined) => {
|
||||||
|
// Update the pagination
|
||||||
|
this.pagination = pagination;
|
||||||
|
|
||||||
|
// Mark for check
|
||||||
|
this._changeDetectorRef.markForCheck();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Get the products
|
||||||
|
this.casinos$ = this._casinoService.casinos$;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* After view init
|
||||||
|
*/
|
||||||
|
ngAfterViewInit(): void {
|
||||||
|
if (this._sort && this._paginator) {
|
||||||
|
// Set the initial sort
|
||||||
|
this._sort.sort({
|
||||||
|
id: 'nickname',
|
||||||
|
start: 'asc',
|
||||||
|
disableClear: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Mark for check
|
||||||
|
this._changeDetectorRef.markForCheck();
|
||||||
|
|
||||||
|
// If the casino 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._casinoService.getCasinos(
|
||||||
|
this._paginator.pageIndex,
|
||||||
|
this._paginator.pageSize,
|
||||||
|
this._sort.active,
|
||||||
|
this._sort.direction
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
map(() => {
|
||||||
|
this.isLoading = false;
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.subscribe();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* On destroy
|
||||||
|
*/
|
||||||
|
ngOnDestroy(): void {
|
||||||
|
// Unsubscribe from all subscriptions
|
||||||
|
this._unsubscribeAll.next(null);
|
||||||
|
this._unsubscribeAll.complete();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Private methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create product
|
||||||
|
*/
|
||||||
|
__createProduct(): void {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggle product details
|
||||||
|
*
|
||||||
|
* @param productId
|
||||||
|
*/
|
||||||
|
__toggleDetails(productId: string): void {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Track by function for ngFor loops
|
||||||
|
*
|
||||||
|
* @param index
|
||||||
|
* @param item
|
||||||
|
*/
|
||||||
|
__trackByFn(index: number, item: any): any {
|
||||||
|
return item.id || index;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
export interface CasinoPagination {
|
||||||
|
length: number;
|
||||||
|
size: number;
|
||||||
|
page: number;
|
||||||
|
lastPage: number;
|
||||||
|
startIndex: number;
|
||||||
|
endIndex: number;
|
||||||
|
}
|
53
src/app/modules/admin/game/casino/models/casino.ts
Normal file
53
src/app/modules/admin/game/casino/models/casino.ts
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
export interface Casino {
|
||||||
|
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;
|
||||||
|
siteId?: string;
|
||||||
|
nickname?: string;
|
||||||
|
gameName?: string;
|
||||||
|
gameInfo1?: string;
|
||||||
|
gameInfo2?: string;
|
||||||
|
gameInfo3?: string;
|
||||||
|
form?: string;
|
||||||
|
beforeWinning?: number;
|
||||||
|
winning?: number;
|
||||||
|
afterWinning?: 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,84 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import {
|
||||||
|
ActivatedRouteSnapshot,
|
||||||
|
Resolve,
|
||||||
|
Router,
|
||||||
|
RouterStateSnapshot,
|
||||||
|
} from '@angular/router';
|
||||||
|
import { catchError, Observable, throwError } from 'rxjs';
|
||||||
|
|
||||||
|
import { Casino } from '../models/casino';
|
||||||
|
import { CasinoPagination } from '../models/casino-pagination';
|
||||||
|
import { CasinoService } from '../services/casino.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class CasinoResolver implements Resolve<any> {
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _casinoService: CasinoService, private _router: Router) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolver
|
||||||
|
*
|
||||||
|
* @param route
|
||||||
|
* @param state
|
||||||
|
*/
|
||||||
|
resolve(
|
||||||
|
route: ActivatedRouteSnapshot,
|
||||||
|
state: RouterStateSnapshot
|
||||||
|
): Observable<Casino | undefined> {
|
||||||
|
return this._casinoService.getCasinoById(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 CasinosResolver implements Resolve<any> {
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _casinoService: CasinoService) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolver
|
||||||
|
*
|
||||||
|
* @param route
|
||||||
|
* @param state
|
||||||
|
*/
|
||||||
|
resolve(
|
||||||
|
route: ActivatedRouteSnapshot,
|
||||||
|
state: RouterStateSnapshot
|
||||||
|
): Observable<{
|
||||||
|
pagination: CasinoPagination;
|
||||||
|
casinos: Casino[];
|
||||||
|
}> {
|
||||||
|
return this._casinoService.getCasinos();
|
||||||
|
}
|
||||||
|
}
|
151
src/app/modules/admin/game/casino/services/casino.service.ts
Normal file
151
src/app/modules/admin/game/casino/services/casino.service.ts
Normal file
|
@ -0,0 +1,151 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import {
|
||||||
|
BehaviorSubject,
|
||||||
|
filter,
|
||||||
|
map,
|
||||||
|
Observable,
|
||||||
|
of,
|
||||||
|
switchMap,
|
||||||
|
take,
|
||||||
|
tap,
|
||||||
|
throwError,
|
||||||
|
} from 'rxjs';
|
||||||
|
|
||||||
|
import { Casino } from '../models/casino';
|
||||||
|
import { CasinoPagination } from '../models/casino-pagination';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class CasinoService {
|
||||||
|
// Private
|
||||||
|
private __pagination = new BehaviorSubject<CasinoPagination | undefined>(
|
||||||
|
undefined
|
||||||
|
);
|
||||||
|
private __casino = new BehaviorSubject<Casino | undefined>(undefined);
|
||||||
|
private __casinos = new BehaviorSubject<Casino[] | undefined>(undefined);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*/
|
||||||
|
constructor(private _httpClient: HttpClient) {}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Accessors
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for pagination
|
||||||
|
*/
|
||||||
|
get pagination$(): Observable<CasinoPagination | undefined> {
|
||||||
|
return this.__pagination.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for casino
|
||||||
|
*/
|
||||||
|
get casino$(): Observable<Casino | undefined> {
|
||||||
|
return this.__casino.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for casinos
|
||||||
|
*/
|
||||||
|
get casinos$(): Observable<Casino[] | undefined> {
|
||||||
|
return this.__casinos.asObservable();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
// @ Public methods
|
||||||
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get casinos
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param page
|
||||||
|
* @param size
|
||||||
|
* @param sort
|
||||||
|
* @param order
|
||||||
|
* @param search
|
||||||
|
*/
|
||||||
|
getCasinos(
|
||||||
|
page: number = 0,
|
||||||
|
size: number = 10,
|
||||||
|
sort: string = 'nickname',
|
||||||
|
order: 'asc' | 'desc' | '' = 'asc',
|
||||||
|
search: string = ''
|
||||||
|
): Observable<{
|
||||||
|
pagination: CasinoPagination;
|
||||||
|
casinos: Casino[];
|
||||||
|
}> {
|
||||||
|
return this._httpClient
|
||||||
|
.get<{ pagination: CasinoPagination; casinos: Casino[] }>(
|
||||||
|
'api/apps/game/casino/casinos',
|
||||||
|
{
|
||||||
|
params: {
|
||||||
|
page: '' + page,
|
||||||
|
size: '' + size,
|
||||||
|
sort,
|
||||||
|
order,
|
||||||
|
search,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.pipe(
|
||||||
|
tap((response) => {
|
||||||
|
this.__pagination.next(response.pagination);
|
||||||
|
this.__casinos.next(response.casinos);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get product by id
|
||||||
|
*/
|
||||||
|
getCasinoById(id: string | null): Observable<Casino> {
|
||||||
|
return this.__casinos.pipe(
|
||||||
|
take(1),
|
||||||
|
map((casinos) => {
|
||||||
|
// Find the product
|
||||||
|
const casino = casinos?.find((item) => item.id === id) || undefined;
|
||||||
|
|
||||||
|
// Update the product
|
||||||
|
this.__casino.next(casino);
|
||||||
|
|
||||||
|
// Return the product
|
||||||
|
return casino;
|
||||||
|
}),
|
||||||
|
switchMap((product) => {
|
||||||
|
if (!product) {
|
||||||
|
return throwError('Could not found product with id of ' + id + '!');
|
||||||
|
}
|
||||||
|
|
||||||
|
return of(product);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create product
|
||||||
|
*/
|
||||||
|
createCasino(): Observable<Casino> {
|
||||||
|
return this.casinos$.pipe(
|
||||||
|
take(1),
|
||||||
|
switchMap((casinos) =>
|
||||||
|
this._httpClient.post<Casino>('api/apps/game/casino/product', {}).pipe(
|
||||||
|
map((newCasino) => {
|
||||||
|
// Update the casinos with the new product
|
||||||
|
if (!!casinos) {
|
||||||
|
this.__casinos.next([newCasino, ...casinos]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the new product
|
||||||
|
return newCasino;
|
||||||
|
})
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,5 +8,6 @@
|
||||||
"Analytics": "Analytics",
|
"Analytics": "Analytics",
|
||||||
"Deposit": "Deposit",
|
"Deposit": "Deposit",
|
||||||
"Withdraw": "Withdraw",
|
"Withdraw": "Withdraw",
|
||||||
"Powerball": "Powerball"
|
"Powerball": "Powerball",
|
||||||
|
"Casino": "Casino"
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,5 +8,6 @@
|
||||||
"Analytics": "Analytics",
|
"Analytics": "Analytics",
|
||||||
"Deposit": "입금관리",
|
"Deposit": "입금관리",
|
||||||
"Withdraw": "출금관리",
|
"Withdraw": "출금관리",
|
||||||
"Powerball": "파워볼"
|
"Powerball": "파워볼",
|
||||||
|
"Casino": "카지노배팅리스트"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user