diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index b6b63ba..2db1604 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -150,6 +150,13 @@ export const appRoutes: Route[] = [ (m: any) => m.UserModule ), }, + { + path: 'casinomoney', + loadChildren: () => + import( + 'app/modules/admin/member/casinomoney/casinomoney.module' + ).then((m: any) => m.CasinomoneyModule), + }, ], }, { @@ -181,6 +188,27 @@ export const appRoutes: Route[] = [ (m: any) => m.PowerballModule ), }, + { + path: 'casino', + loadChildren: () => + import('app/modules/admin/game/casino/casino.module').then( + (m: any) => m.CasinoModule + ), + }, + { + path: 'evolution', + loadChildren: () => + import('app/modules/admin/game/evolution/evolution.module').then( + (m: any) => m.EvolutionModule + ), + }, + { + path: 'slot', + loadChildren: () => + import('app/modules/admin/game/slot/slot.module').then( + (m: any) => m.SlotModule + ), + }, ], }, ], diff --git a/src/app/mock-api/apps/bank/deposit/data.ts b/src/app/mock-api/apps/bank/deposit/data.ts index ad20a03..a19b987 100644 --- a/src/app/mock-api/apps/bank/deposit/data.ts +++ b/src/app/mock-api/apps/bank/deposit/data.ts @@ -13,7 +13,7 @@ export const deposits = [ registrationDate: '2022-06-18 13:14', processDate: '000-0-0 0:0', deposit: 41200000, - withdrawal: 19000000, + withdraw: 19000000, total: 22200000, gameMoney: 67131, highRank: '[매장]kgon5', @@ -31,7 +31,7 @@ export const deposits = [ registrationDate: '2022-06-13 12:57', processDate: '2022-06-13 12:58', deposit: 200000, - withdrawal: 0, + withdraw: 0, total: 200000, gameMoney: 0, highRank: '[매장]on04', @@ -49,7 +49,7 @@ export const deposits = [ registrationDate: '2022-06-13 12:56', processDate: '2022-06-13 12:57', deposit: 200000, - withdrawal: 0, + withdraw: 0, total: 200000, gameMoney: 0, highRank: '[매장]on04', diff --git a/src/app/mock-api/apps/bank/withdraw/data.ts b/src/app/mock-api/apps/bank/withdraw/data.ts index 29b1643..72ff135 100644 --- a/src/app/mock-api/apps/bank/withdraw/data.ts +++ b/src/app/mock-api/apps/bank/withdraw/data.ts @@ -12,7 +12,7 @@ export const withdraws = [ registrationDate: '2022-06-10 16:51', processDate: '2022-06-10 16:51', deposit: 41200000, - withdrawal: 19000000, + withdraw: 19000000, total: 22200000, highRank: '[매장]kgon5', state: '완료', @@ -28,7 +28,7 @@ export const withdraws = [ registrationDate: '2022-06-08 18:31', processDate: '2022-06-08 20:13', deposit: 41200000, - withdrawal: 19000000, + withdraw: 19000000, total: 22200000, highRank: '[매장]kgon5', state: '완료', @@ -44,7 +44,7 @@ export const withdraws = [ registrationDate: '2022-06-08 01:22', processDate: '2022-06-08 01:22', deposit: 10000000, - withdrawal: 10000, + withdraw: 10000, total: 9990000, highRank: '[매장]kgon5', state: '완료', diff --git a/src/app/mock-api/apps/game/casino/api.ts b/src/app/mock-api/apps/game/casino/api.ts new file mode 100644 index 0000000..0503056 --- /dev/null +++ b/src/app/mock-api/apps/game/casino/api.ts @@ -0,0 +1,214 @@ +import { Injectable } from '@angular/core'; +import { assign, cloneDeep } from 'lodash-es'; +import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api'; +import { 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]; + }); + } +} diff --git a/src/app/mock-api/apps/game/casino/data.ts b/src/app/mock-api/apps/game/casino/data.ts new file mode 100644 index 0000000..bb6b3d7 --- /dev/null +++ b/src/app/mock-api/apps/game/casino/data.ts @@ -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', + }, +]; diff --git a/src/app/mock-api/apps/game/evolution/api.ts b/src/app/mock-api/apps/game/evolution/api.ts new file mode 100644 index 0000000..6c959a4 --- /dev/null +++ b/src/app/mock-api/apps/game/evolution/api.ts @@ -0,0 +1,216 @@ +import { Injectable } from '@angular/core'; +import { assign, cloneDeep } from 'lodash-es'; +import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api'; +import { evolutions as evolutionsData } from './data'; + +@Injectable({ + providedIn: 'root', +}) +export class GameEvolutionMockApi { + private _evolutions: any[] = evolutionsData; + + /** + * Constructor + */ + constructor(private _fuseMockApiService: FuseMockApiService) { + // Register Mock API handlers + this.registerHandlers(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Register Mock API handlers + */ + registerHandlers(): void { + // ----------------------------------------------------------------------------------------------------- + // @ Evolutions - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/game/evolution/evolutions', 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 evolutions + let evolutions: any[] | null = cloneDeep(this._evolutions); + + // Sort the evolutions + if (sort === 'sku' || sort === 'name' || sort === 'active') { + evolutions.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 { + evolutions.sort((a, b) => + order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort] + ); + } + + // If search exists... + if (search) { + // Filter the evolutions + evolutions = evolutions.filter( + (contact: any) => + contact.name && + contact.name.toLowerCase().includes(search.toLowerCase()) + ); + } + + // Paginate - Start + const evolutionsLength = evolutions.length; + + // Calculate pagination details + const begin = page * size; + const end = Math.min(size * (page + 1), evolutionsLength); + const lastPage = Math.max(Math.ceil(evolutionsLength / size), 1); + + // Prepare the pagination object + let pagination = {}; + + // If the requested page number is bigger than + // the last possible page number, return null for + // evolutions but also send the last possible page so + // the app can navigate to there + if (page > lastPage) { + evolutions = null; + pagination = { + lastPage, + }; + } else { + // Paginate the results by size + evolutions = evolutions.slice(begin, end); + + // Prepare the pagination mock-api + pagination = { + length: evolutionsLength, + size: size, + page: page, + lastPage: lastPage, + startIndex: begin, + endIndex: end - 1, + }; + } + + // Return the response + return [ + 200, + { + evolutions, + pagination, + }, + ]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Evolution - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/game/evolution/evolution') + .reply(({ request }) => { + // Get the id from the params + const id = request.params.get('id'); + + // Clone the evolutions + const evolutions = cloneDeep(this._evolutions); + + // Find the evolution + const evolution = evolutions.find((item: any) => item.id === id); + + // Return the response + return [200, evolution]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Evolution - POST + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPost('api/apps/gmae/evolution/evolution') + .reply(() => { + // Generate a new evolution + const newEvolution = { + id: FuseMockApiUtils.guid(), + startDate: '', + finishDate: '', + totalBetting: '', + winningMoney: '', + proceedingMoney: '', + calculate: '', + index: '', + division: '', + rank: '', + nickname: '', + bettingProgress: '', + odds: '', + bettingMoney: '', + hitMoney: '', + bettingTime: '', + result: '', + delete: '', + }; + + // Unshift the new evolution + this._evolutions.unshift(newEvolution); + + // Return the response + return [200, newEvolution]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Evolution - PATCH + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPatch('api/apps/game/evolution/evolution') + .reply(({ request }) => { + // Get the id and evolution + const id = request.body.id; + const evolution = cloneDeep(request.body.evolution); + + // Prepare the updated evolution + let updatedEvolution = null; + + // Find the evolution and update it + this._evolutions.forEach((item, index, evolutions) => { + if (item.id === id) { + // Update the evolution + evolutions[index] = assign({}, evolutions[index], evolution); + + // Store the updated evolution + updatedEvolution = evolutions[index]; + } + }); + + // Return the response + return [200, updatedEvolution]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Evolution - DELETE + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onDelete('api/apps/game/evolution/evolution') + .reply(({ request }) => { + // Get the id + const id = request.params.get('id'); + + // Find the evolution and delete it + this._evolutions.forEach((item, index) => { + if (item.id === id) { + this._evolutions.splice(index, 1); + } + }); + + // Return the response + return [200, true]; + }); + } +} diff --git a/src/app/mock-api/apps/game/evolution/data.ts b/src/app/mock-api/apps/game/evolution/data.ts new file mode 100644 index 0000000..706e992 --- /dev/null +++ b/src/app/mock-api/apps/game/evolution/data.ts @@ -0,0 +1,62 @@ +/* eslint-disable */ + +export const evolutions = [ + { + startDate: '2022-06-01 00:00', + finishDate: '2022-06-21 23:59', + availableBetting: 11545000, + bettingMoney: 11811000, + winningMoney: 11405200, + cancel: 0, + betWinCancel: 405800, + mainofficeRolling: 58114, + branchRolling: 34514, + divisionRolling: 23058, + officeRolling: 22982, + storeRolling: 11787, + memberRolling: 80295, + totalrolling: 230750, + highRank: '[매장]kgon5', + gameId: 'ks1_1007', + id: 'aa100', + nickname: 'aa100', + gameName: '에볼류션 카지노', + gameInfo1: 'Speed Baccarat J', + gameInfo2: '', + gameInfo3: '62ae9bdd396a5971c3921033', + form: '', + betting: 8000, + profitLoss: -8000, + beforeWinning: 69831, + winning: 0, + afterWinning: 69831, + beforeBetting: 77831, + afterBetting: 69831, + finalMoney: 69831, + bettingInfo1: 'Banker', + bettingInfo2: 8000, + bettingInfo3: 0, + data: '데이터확인', + comp: 'Y', + mainofficeName: 'kgon1', + mainofficePercent: '0.50', + mainofficePoint: '40.00', + branchName: 'kgon2', + branchPercent: '0.30', + branchPoint: '24.00', + divisionName: 'kgon3', + divisionPercent: '0.20', + divisionPoint: '16.00', + officeName: 'kgon4', + officePercent: '0.20', + officePoint: '16.00', + storeName: 'kgon5', + storePercent: '0.10', + storePoint: '8.00', + memberName: 'aa100', + memberPercent: '0.70', + memberPoint: '56.00', + bettingTime: '2022-06-19 12:44:33', + registrationTime: '2022-06-19 12:47:02', + }, +]; diff --git a/src/app/mock-api/apps/game/slot/api.ts b/src/app/mock-api/apps/game/slot/api.ts new file mode 100644 index 0000000..8674385 --- /dev/null +++ b/src/app/mock-api/apps/game/slot/api.ts @@ -0,0 +1,214 @@ +import { Injectable } from '@angular/core'; +import { assign, cloneDeep } from 'lodash-es'; +import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api'; +import { slots as slotsData } from './data'; + +@Injectable({ + providedIn: 'root', +}) +export class GameSlotMockApi { + private _slots: any[] = slotsData; + + /** + * Constructor + */ + constructor(private _fuseMockApiService: FuseMockApiService) { + // Register Mock API handlers + this.registerHandlers(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Register Mock API handlers + */ + registerHandlers(): void { + // ----------------------------------------------------------------------------------------------------- + // @ Slots - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/game/slot/slots', 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 slots + let slots: any[] | null = cloneDeep(this._slots); + + // Sort the slots + if (sort === 'sku' || sort === 'name' || sort === 'active') { + slots.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 { + slots.sort((a, b) => + order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort] + ); + } + + // If search exists... + if (search) { + // Filter the slots + slots = slots.filter( + (contact: any) => + contact.name && + contact.name.toLowerCase().includes(search.toLowerCase()) + ); + } + + // Paginate - Start + const slotsLength = slots.length; + + // Calculate pagination details + const begin = page * size; + const end = Math.min(size * (page + 1), slotsLength); + const lastPage = Math.max(Math.ceil(slotsLength / size), 1); + + // Prepare the pagination object + let pagination = {}; + + // If the requested page number is bigger than + // the last possible page number, return null for + // slots but also send the last possible page so + // the app can navigate to there + if (page > lastPage) { + slots = null; + pagination = { + lastPage, + }; + } else { + // Paginate the results by size + slots = slots.slice(begin, end); + + // Prepare the pagination mock-api + pagination = { + length: slotsLength, + size: size, + page: page, + lastPage: lastPage, + startIndex: begin, + endIndex: end - 1, + }; + } + + // Return the response + return [ + 200, + { + slots, + pagination, + }, + ]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Slot - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/game/slot/slot') + .reply(({ request }) => { + // Get the id from the params + const id = request.params.get('id'); + + // Clone the slots + const slots = cloneDeep(this._slots); + + // Find the slot + const slot = slots.find((item: any) => item.id === id); + + // Return the response + return [200, slot]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Slot - POST + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService.onPost('api/apps/gmae/slot/slot').reply(() => { + // Generate a new slot + const newSlot = { + id: FuseMockApiUtils.guid(), + startDate: '', + finishDate: '', + totalBetting: '', + winningMoney: '', + proceedingMoney: '', + calculate: '', + index: '', + division: '', + rank: '', + nickname: '', + bettingProgress: '', + odds: '', + bettingMoney: '', + hitMoney: '', + bettingTime: '', + result: '', + delete: '', + }; + + // Unshift the new slot + this._slots.unshift(newSlot); + + // Return the response + return [200, newSlot]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Slot - PATCH + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPatch('api/apps/game/slot/slot') + .reply(({ request }) => { + // Get the id and slot + const id = request.body.id; + const slot = cloneDeep(request.body.slot); + + // Prepare the updated slot + let updatedSlot = null; + + // Find the slot and update it + this._slots.forEach((item, index, slots) => { + if (item.id === id) { + // Update the slot + slots[index] = assign({}, slots[index], slot); + + // Store the updated slot + updatedSlot = slots[index]; + } + }); + + // Return the response + return [200, updatedSlot]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Slot - DELETE + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onDelete('api/apps/game/slot/slot') + .reply(({ request }) => { + // Get the id + const id = request.params.get('id'); + + // Find the slot and delete it + this._slots.forEach((item, index) => { + if (item.id === id) { + this._slots.splice(index, 1); + } + }); + + // Return the response + return [200, true]; + }); + } +} diff --git a/src/app/mock-api/apps/game/slot/data.ts b/src/app/mock-api/apps/game/slot/data.ts new file mode 100644 index 0000000..7ff66da --- /dev/null +++ b/src/app/mock-api/apps/game/slot/data.ts @@ -0,0 +1,62 @@ +/* eslint-disable */ + +export const slots = [ + { + startDate: '2022-06-01 00:00', + finishDate: '2022-06-21 23:59', + availableBetting: 11545000, + bettingMoney: 11811000, + winningMoney: 11405200, + cancel: 0, + betWinCancel: 405800, + mainofficeRolling: 58114, + branchRolling: 34514, + divisionRolling: 23058, + officeRolling: 22982, + storeRolling: 11787, + memberRolling: 80295, + totalrolling: 230750, + highRank: '[매장]kgon5', + gameId: 'ks1_1007', + id: 'aa100', + nickname: 'aa100', + gameName: '프라그마틱슬롯', + gameInfo1: '스타라이트 프린세스', + gameInfo2: '', + gameInfo3: '62afded8114e77723a93caa2', + form: '배팅', + betting: 800, + profitLoss: 0, + beforeWinning: 69831, + winning: 0, + afterWinning: 69831, + beforeBetting: 187730, + afterBetting: 186903, + finalMoney: 69831, + bettingInfo1: 'Banker', + bettingInfo2: 8000, + bettingInfo3: 0, + data: '', + comp: 'Y', + mainofficeName: 'kgon1', + mainofficePercent: '2.80', + mainofficePoint: '22.40', + branchName: 'kgon2', + branchPercent: '0.20', + branchPoint: '1.60', + divisionName: 'kgon3', + divisionPercent: '0.20', + divisionPoint: '1.60', + officeName: 'kgon4', + officePercent: '0.30', + officePoint: '2.40', + storeName: 'kgon5', + storePercent: '1.50', + storePoint: '12.00', + memberName: '', + memberPercent: '', + memberPoint: '', + bettingTime: '2022-06-20 11:43:37', + registrationTime: '2022-06-20 11:45:02', + }, +]; diff --git a/src/app/mock-api/apps/member/casinomoney/api.ts b/src/app/mock-api/apps/member/casinomoney/api.ts new file mode 100644 index 0000000..95d6205 --- /dev/null +++ b/src/app/mock-api/apps/member/casinomoney/api.ts @@ -0,0 +1,217 @@ +import { Injectable } from '@angular/core'; +import { assign, cloneDeep } from 'lodash-es'; +import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api'; +import { casinomoneys as casinomoneysData } from './data'; + +@Injectable({ + providedIn: 'root', +}) +export class MemberCasinomoneyMockApi { + private _casinomoneys: any[] = casinomoneysData; + + /** + * Constructor + */ + constructor(private _fuseMockApiService: FuseMockApiService) { + // Register Mock API handlers + this.registerHandlers(); + } + + // ----------------------------------------------------------------------------------------------------- + // @ Public methods + // ----------------------------------------------------------------------------------------------------- + + /** + * Register Mock API handlers + */ + registerHandlers(): void { + // ----------------------------------------------------------------------------------------------------- + // @ Casinomoneys - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/member/casinomoney/casinomoneys', 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 casinomoneys + let casinomoneys: any[] | null = cloneDeep(this._casinomoneys); + + // Sort the casinomoneys + if (sort === 'sku' || sort === 'name' || sort === 'active') { + casinomoneys.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 { + casinomoneys.sort((a, b) => + order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort] + ); + } + + // If search exists... + if (search) { + // Filter the casinomoneys + casinomoneys = casinomoneys.filter( + (contact: any) => + contact.name && + contact.name.toLowerCase().includes(search.toLowerCase()) + ); + } + + // Paginate - Start + const casinomoneysLength = casinomoneys.length; + + // Calculate pagination details + const begin = page * size; + const end = Math.min(size * (page + 1), casinomoneysLength); + const lastPage = Math.max(Math.ceil(casinomoneysLength / size), 1); + + // Prepare the pagination object + let pagination = {}; + + // If the requested page number is bigger than + // the last possible page number, return null for + // casinomoneys but also send the last possible page so + // the app can navigate to there + if (page > lastPage) { + casinomoneys = null; + pagination = { + lastPage, + }; + } else { + // Paginate the results by size + casinomoneys = casinomoneys.slice(begin, end); + + // Prepare the pagination mock-api + pagination = { + length: casinomoneysLength, + size: size, + page: page, + lastPage: lastPage, + startIndex: begin, + endIndex: end - 1, + }; + } + + // Return the response + return [ + 200, + { + casinomoneys, + pagination, + }, + ]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Casinomoney - GET + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onGet('api/apps/member/casinomoney/casinomoney') + .reply(({ request }) => { + // Get the id from the params + const id = request.params.get('id'); + + // Clone the casinomoneys + const casinomoneys = cloneDeep(this._casinomoneys); + + // Find the casinomoney + const casinomoney = casinomoneys.find((item: any) => item.id === id); + + // Return the response + return [200, casinomoney]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Casinomoney - POST + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPost('api/apps/member/casinomoney/casinomoney') + .reply(() => { + // Generate a new casinomoney + const newCasinomoney = { + id: FuseMockApiUtils.guid(), + category: '', + name: 'A New User', + description: '', + tags: [], + sku: '', + barcode: '', + brand: '', + vendor: '', + stock: '', + reserved: '', + cost: '', + basePrice: '', + taxPercent: '', + price: '', + weight: '', + thumbnail: '', + images: [], + active: false, + }; + + // Unshift the new casinomoney + this._casinomoneys.unshift(newCasinomoney); + + // Return the response + return [200, newCasinomoney]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Casinomoney - PATCH + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onPatch('api/apps/member/casinomoney/casinomoney') + .reply(({ request }) => { + // Get the id and casinomoney + const id = request.body.id; + const casinomoney = cloneDeep(request.body.casinomoney); + + // Prepare the updated casinomoney + let updatedCasinomoney = null; + + // Find the casinomoney and update it + this._casinomoneys.forEach((item, index, casinomoneys) => { + if (item.id === id) { + // Update the casinomoney + casinomoneys[index] = assign({}, casinomoneys[index], casinomoney); + + // Store the updated casinomoney + updatedCasinomoney = casinomoneys[index]; + } + }); + + // Return the response + return [200, updatedCasinomoney]; + }); + + // ----------------------------------------------------------------------------------------------------- + // @ Casinomoney - DELETE + // ----------------------------------------------------------------------------------------------------- + this._fuseMockApiService + .onDelete('api/apps/member/casinomoney/casinomoney') + .reply(({ request }) => { + // Get the id + const id = request.params.get('id'); + + // Find the casinomoney and delete it + this._casinomoneys.forEach((item, index) => { + if (item.id === id) { + this._casinomoneys.splice(index, 1); + } + }); + + // Return the response + return [200, true]; + }); + } +} diff --git a/src/app/mock-api/apps/member/casinomoney/data.ts b/src/app/mock-api/apps/member/casinomoney/data.ts new file mode 100644 index 0000000..93925bc --- /dev/null +++ b/src/app/mock-api/apps/member/casinomoney/data.ts @@ -0,0 +1,714 @@ +/* eslint-disable */ + +export const casinomoneys = [ + { + id: 'dsa01233', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Benton Mens Automatic Watch 44mm 5 ATM', + description: + 'Velit irure deserunt aliqua officia. Eiusmod quis sunt magna laboris aliquip non dolor consequat cupidatat dolore esse. Consectetur mollit officia laborum fugiat nulla duis ad excepteur do aliqua fugiat. Fugiat non laboris exercitation ipsum in incididunt.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '2300ac48-f268-466a-b765-8b878b6e14a7', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ADH-1921', + barcode: '8808746892183', + brand: 'e1789f32-9475-43e7-9256-451d2e3a2282', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 30, + reserved: 3, + cost: 390.63, + basePrice: 950, + taxPercent: 10, + price: 1045, + weight: 0.76, + thumbnail: null, + images: [ + 'assets/images/apps/ecommerce/products/watch-03-01.jpg', + 'assets/images/apps/ecommerce/products/watch-03-02.jpg', + 'assets/images/apps/ecommerce/products/watch-03-03.jpg', + ], + active: false, + + highRank: '[매장]xcxc2233', + rank: '회원', + level: 1, + nickname: '아메리카노', + accountHolder: '홍길동', + contact: '01012341234', + cash: 0, + comp: 60020, + coupon: 0, + gameMoney: 364750, + todayComp: 0, + deposit: 500000, + withdraw: 0, + margin: 500000, + accession: '2022-04-23 15:42', + final: '', + ip: '', + state: '2022-06-07', + top: '정상', + }, + { + id: '8fcce528-d878-4cc8-99f7-bd3451ed5405', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Capmia Mens Chronograph Watch 44mm 10 ATM', + description: + 'Velit nisi proident cupidatat exercitation occaecat et adipisicing nostrud id ex nostrud sint. Qui fugiat velit minim amet reprehenderit voluptate velit exercitation proident Lorem nisi culpa. Commodo quis officia officia eiusmod mollit aute fugiat duis quis minim culpa in. Exercitation laborum fugiat ex excepteur officia reprehenderit magna ipsum. Laboris dolore nostrud id labore sint consectetur aliqua tempor ea aute do.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'EAP-7752', + barcode: '8866355574164', + brand: '61d52c2a-8947-4a2c-8c35-f36baef45b96', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 37, + reserved: 4, + cost: 395.37, + basePrice: 839, + taxPercent: 30, + price: 1090.7, + weight: 0.62, + thumbnail: 'assets/images/apps/ecommerce/products/watch-04-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-04-01.jpg', + 'assets/images/apps/ecommerce/products/watch-04-02.jpg', + 'assets/images/apps/ecommerce/products/watch-04-03.jpg', + ], + active: true, + }, + { + id: 'onon6', + category: '07986d93-d4eb-4de1-9448-2538407f7254', + name: 'Benton Ladies Automatic Watch 40mm 5 ATM', + description: + 'Pariatur proident labore commodo consequat qui et. Ad labore fugiat consectetur ea magna dolore mollit consequat reprehenderit laborum ad mollit eiusmod. Esse laboris voluptate ullamco occaecat labore esse laboris enim ipsum aliquip ipsum. Ea ea proident eu enim anim mollit non consequat enim nulla.', + tags: [ + '3baea410-a7d6-4916-b79a-bdce50c37f95', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '2300ac48-f268-466a-b765-8b878b6e14a7', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ADP-5745', + barcode: '8390590339828', + brand: 'e1789f32-9475-43e7-9256-451d2e3a2282', + vendor: '05ebb527-d733-46a9-acfb-a4e4ec960024', + stock: 12, + reserved: 3, + cost: 442.61, + basePrice: 961, + taxPercent: 20, + price: 1153.2, + weight: 0.67, + thumbnail: 'assets/images/apps/ecommerce/products/watch-05-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-05-01.jpg', + 'assets/images/apps/ecommerce/products/watch-05-02.jpg', + 'assets/images/apps/ecommerce/products/watch-05-03.jpg', + ], + active: false, + + highRank: '[총판]on03', + rank: '매장', + level: 1, + nickname: '가가가', + accountHolder: '가가가', + contact: '1111', + cash: 0, + comp: 0, + coupon: 0, + gameMoney: 0, + todayComp: 0, + deposit: 200000, + withdraw: 0, + margin: 200000, + accession: '2022-06-12 16:02', + final: '2022-06-20 15:41', + ip: '175.198.74.36', + }, + { + id: 'd7a47d7c-4cdf-4319-bbaa-37ade38c622c', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Benton Mens Chronograph Watch 44mm 10 ATM', + description: + 'Nulla enim reprehenderit proident ut Lorem laborum cillum eiusmod est ex anim. Nisi non non laboris excepteur ullamco elit do duis anim esse labore aliqua adipisicing velit. Deserunt magna exercitation cillum amet.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ATV-2569', + barcode: '8238990048137', + brand: 'e1789f32-9475-43e7-9256-451d2e3a2282', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 36, + reserved: 2, + cost: 563.43, + basePrice: 1370, + taxPercent: 30, + price: 1781, + weight: 0.62, + thumbnail: 'assets/images/apps/ecommerce/products/watch-06-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-06-01.jpg', + 'assets/images/apps/ecommerce/products/watch-06-02.jpg', + 'assets/images/apps/ecommerce/products/watch-06-03.jpg', + ], + active: true, + }, + { + id: 'ecf0b3df-38c3-45dc-972b-c509a3dc053e', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Benton Mens Chronograph Watch 44mm 10 ATM', + description: + 'Esse culpa ut ullamco dolore quis adipisicing. Minim veniam quis magna officia non. In pariatur nostrud nisi eiusmod minim anim id. Commodo ex incididunt dolor ad id aliqua incididunt minim in Lorem reprehenderit. Commodo ullamco consectetur aliqua Lorem cupidatat esse veniam consectetur sint veniam duis commodo.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'EAH-2563', + barcode: '8638426908385', + brand: 'e1789f32-9475-43e7-9256-451d2e3a2282', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 35, + reserved: 5, + cost: 705.26, + basePrice: 1721, + taxPercent: 20, + price: 2065.2, + weight: 0.67, + thumbnail: 'assets/images/apps/ecommerce/products/watch-07-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-07-01.jpg', + 'assets/images/apps/ecommerce/products/watch-07-02.jpg', + 'assets/images/apps/ecommerce/products/watch-07-03.jpg', + ], + active: false, + }, + { + id: '5765080a-aaee-40b9-86be-c18b9d79c73c', + category: 'ad12aa94-3863-47f8-acab-a638ef02a3e9', + name: 'Benton Unisex Automatic Watch 40mm 10 ATM', + description: + 'Anim duis nisi ut ex amet reprehenderit cillum consequat pariatur ipsum elit voluptate excepteur non. Anim enim proident laboris pariatur mollit quis incididunt labore. Incididunt tempor aliquip ex labore ad consequat cillum est sunt anim dolor. Dolore adipisicing non nulla cillum Lorem deserunt. Nostrud incididunt amet sint velit.', + tags: [ + '8ec8f60d-552f-4216-9f11-462b95b1d306', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ATH-6399', + barcode: '8881883828441', + brand: 'e1789f32-9475-43e7-9256-451d2e3a2282', + vendor: '05ebb527-d733-46a9-acfb-a4e4ec960024', + stock: 17, + reserved: 5, + cost: 624.12, + basePrice: 1448, + taxPercent: 10, + price: 1592.8, + weight: 0.55, + thumbnail: 'assets/images/apps/ecommerce/products/watch-08-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-08-01.jpg', + 'assets/images/apps/ecommerce/products/watch-08-02.jpg', + 'assets/images/apps/ecommerce/products/watch-08-03.jpg', + ], + active: false, + }, + { + id: '6e71be88-b225-474c-91e5-111ced7d6220', + category: '07986d93-d4eb-4de1-9448-2538407f7254', + name: 'Premera Ladies Chronograph Watch 40mm 5 ATM', + description: + 'Velit fugiat adipisicing ut quis anim deserunt ex culpa nostrud laborum. Consectetur duis velit esse commodo voluptate magna dolor in enim exercitation. Ea aliquip cupidatat aute dolor tempor magna id laboris nulla eiusmod ut amet. Veniam irure ex incididunt officia commodo eiusmod nostrud ad consequat commodo ad voluptate.', + tags: [ + '3baea410-a7d6-4916-b79a-bdce50c37f95', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '2300ac48-f268-466a-b765-8b878b6e14a7', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ELH-2495', + barcode: '8268777127281', + brand: '5913ee46-a497-41db-a118-ee506011529f', + vendor: '05ebb527-d733-46a9-acfb-a4e4ec960024', + stock: 49, + reserved: 5, + cost: 738.91, + basePrice: 1848, + taxPercent: 30, + price: 2402.4, + weight: 0.54, + thumbnail: 'assets/images/apps/ecommerce/products/watch-09-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-09-01.jpg', + 'assets/images/apps/ecommerce/products/watch-09-02.jpg', + 'assets/images/apps/ecommerce/products/watch-09-03.jpg', + ], + active: false, + }, + { + id: '51242500-6983-4a78-bff3-d278eb4e3a57', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Lara Mens Automatic Watch 44mm 10 ATM', + description: + 'Enim laboris ut non elit dolore est consectetur. Duis irure minim elit velit anim incididunt minim ipsum ullamco ad dolore sunt. Proident aute proident velit elit ex reprehenderit ut. Lorem laborum excepteur elit proident sunt ipsum incididunt id do. Occaecat proident proident qui aute officia cupidatat aliqua aliqua nostrud proident laboris est ad qui. Magna eiusmod amet ut pariatur esse nisi aliquip deserunt minim ad et ea occaecat. Sunt enim cupidatat id eiusmod ea aute quis excepteur irure commodo dolore excepteur.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ATT-6019', + barcode: '8452763551765', + brand: 'f9987124-7ada-4b93-bef7-35280b3ddbd7', + vendor: '998b0c07-abfd-4ba3-8de1-7563ef3c4d57', + stock: 24, + reserved: 4, + cost: 688.89, + basePrice: 1502, + taxPercent: 8, + price: 1622.16, + weight: 0.76, + thumbnail: 'assets/images/apps/ecommerce/products/watch-10-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-10-01.jpg', + 'assets/images/apps/ecommerce/products/watch-10-02.jpg', + 'assets/images/apps/ecommerce/products/watch-10-03.jpg', + ], + active: true, + }, + { + id: '844a4395-233f-4ffb-85bd-7baa0e490a88', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Lara Mens Chronograph Watch 44mm 5 ATM', + description: + 'Labore irure qui sunt consectetur. Elit nulla id cillum duis. Nulla nulla eu occaecat eiusmod duis irure id do esse. Ad eu incididunt voluptate amet nostrud ullamco mollit dolore occaecat cupidatat nisi reprehenderit. Proident fugiat laborum sit velit ea voluptate.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '2300ac48-f268-466a-b765-8b878b6e14a7', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ADH-2335', + barcode: '8385907318041', + brand: 'f9987124-7ada-4b93-bef7-35280b3ddbd7', + vendor: '05ebb527-d733-46a9-acfb-a4e4ec960024', + stock: 44, + reserved: 3, + cost: 708.41, + basePrice: 1467, + taxPercent: 18, + price: 1731.06, + weight: 0.7, + thumbnail: 'assets/images/apps/ecommerce/products/watch-11-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-11-01.jpg', + 'assets/images/apps/ecommerce/products/watch-11-02.jpg', + 'assets/images/apps/ecommerce/products/watch-11-03.jpg', + ], + active: false, + }, + { + id: '7520f1b6-3c45-46ef-a4d5-881971212d1e', + category: 'ad12aa94-3863-47f8-acab-a638ef02a3e9', + name: 'Benton Unisex Automatic Watch 40mm 10 ATM', + description: + 'Esse nisi amet occaecat culpa aliqua est ad ea velit. Consectetur in voluptate sit pariatur eiusmod exercitation eu aute occaecat in duis. Voluptate consectetur eu commodo proident id sunt labore irure.', + tags: [ + '8ec8f60d-552f-4216-9f11-462b95b1d306', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ATH-3064', + barcode: '8608510561856', + brand: 'e1789f32-9475-43e7-9256-451d2e3a2282', + vendor: '998b0c07-abfd-4ba3-8de1-7563ef3c4d57', + stock: 25, + reserved: 2, + cost: 731.94, + basePrice: 1743, + taxPercent: 10, + price: 1917.3, + weight: 0.47, + thumbnail: 'assets/images/apps/ecommerce/products/watch-12-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-12-01.jpg', + 'assets/images/apps/ecommerce/products/watch-12-02.jpg', + 'assets/images/apps/ecommerce/products/watch-12-03.jpg', + ], + active: false, + }, + { + id: '683e41d8-6ebc-4e6a-a7c1-9189ca52ef19', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Zeon Mens Chronograph Watch 44mm 10 ATM', + description: + 'Eu irure do cupidatat esse in. Aliqua laborum deserunt qui Lorem deserunt minim fugiat deserunt voluptate minim. Anim nulla tempor eiusmod ad exercitation reprehenderit officia. Nisi proident labore eu anim excepteur aliqua occaecat. Laboris nostrud ipsum commodo cupidatat.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ADV-3188', + barcode: '8334758988643', + brand: '2c4d98d8-f334-4125-9596-862515f5526b', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 14, + reserved: 5, + cost: 375.76, + basePrice: 786, + taxPercent: 30, + price: 1021.8, + weight: 0.53, + thumbnail: 'assets/images/apps/ecommerce/products/watch-13-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-13-01.jpg', + 'assets/images/apps/ecommerce/products/watch-13-02.jpg', + 'assets/images/apps/ecommerce/products/watch-13-03.jpg', + ], + active: false, + }, + { + id: 'd4e52238-292d-462b-b9bb-1751030132e2', + category: 'ad12aa94-3863-47f8-acab-a638ef02a3e9', + name: 'Lara Unisex Chronograph Watch 40mm 5 ATM', + description: + 'Nulla nostrud aliquip consequat laborum ut enim exercitation. Aute dolor duis aliquip consequat minim officia. Nisi labore et magna et sunt consectetur id anim pariatur officia et esse ut. Ullamco dolor cillum consequat velit eiusmod consectetur. Ullamco reprehenderit tempor minim dolore officia do nisi cupidatat adipisicing fugiat velit.', + tags: [ + '8ec8f60d-552f-4216-9f11-462b95b1d306', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '2300ac48-f268-466a-b765-8b878b6e14a7', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ATT-7423', + barcode: '8417153336369', + brand: 'f9987124-7ada-4b93-bef7-35280b3ddbd7', + vendor: '998b0c07-abfd-4ba3-8de1-7563ef3c4d57', + stock: 33, + reserved: 2, + cost: 743.93, + basePrice: 1793, + taxPercent: 8, + price: 1936.44, + weight: 0.86, + thumbnail: 'assets/images/apps/ecommerce/products/watch-14-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-14-01.jpg', + 'assets/images/apps/ecommerce/products/watch-14-02.jpg', + 'assets/images/apps/ecommerce/products/watch-14-03.jpg', + ], + active: false, + }, + { + id: '98861dfc-0d21-4fd5-81aa-49785d003d95', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Premera Mens Automatic Watch 44mm 10 ATM', + description: + 'Veniam sint aliquip aliquip aliquip amet Lorem irure proident laborum et eiusmod aliqua. Aliquip deserunt voluptate magna ut quis magna dolor in dolore. Commodo adipisicing excepteur occaecat aute nisi in. Est aute ad ut incididunt anim ea commodo. Sunt excepteur duis sunt est laborum magna Lorem ullamco exercitation dolore irure.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'AAT-6453', + barcode: '8501386761670', + brand: '5913ee46-a497-41db-a118-ee506011529f', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 38, + reserved: 3, + cost: 364.64, + basePrice: 806, + taxPercent: 18, + price: 951.08, + weight: 0.59, + thumbnail: 'assets/images/apps/ecommerce/products/watch-15-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-15-01.jpg', + 'assets/images/apps/ecommerce/products/watch-15-02.jpg', + 'assets/images/apps/ecommerce/products/watch-15-03.jpg', + ], + active: false, + }, + { + id: 'a71f9b10-e884-4aad-9810-29fe10ce6d42', + category: '07986d93-d4eb-4de1-9448-2538407f7254', + name: 'Lara Ladies Chronograph Watch 40mm 5 ATM', + description: + 'Deserunt non deserunt ut do labore cupidatat duis veniam in non adipisicing officia esse id. Adipisicing Lorem sint excepteur culpa labore consequat incididunt nulla minim amet. Sint do et fugiat laborum exercitation reprehenderit ut non nostrud occaecat nisi et qui dolore. Amet eiusmod nulla est officia ad magna cillum non dolor ullamco officia incididunt.', + tags: [ + '3baea410-a7d6-4916-b79a-bdce50c37f95', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '2300ac48-f268-466a-b765-8b878b6e14a7', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'AAP-4902', + barcode: '8847387136582', + brand: 'f9987124-7ada-4b93-bef7-35280b3ddbd7', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 40, + reserved: 3, + cost: 525.3, + basePrice: 1303, + taxPercent: 10, + price: 1433.3, + weight: 0.69, + thumbnail: 'assets/images/apps/ecommerce/products/watch-16-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-16-01.jpg', + 'assets/images/apps/ecommerce/products/watch-16-02.jpg', + 'assets/images/apps/ecommerce/products/watch-16-03.jpg', + ], + active: false, + }, + { + id: '149e6db5-4ecc-4021-bc56-08b27514a746', + category: '07986d93-d4eb-4de1-9448-2538407f7254', + name: 'Lara Ladies Chronograph Watch 40mm 5 ATM', + description: + 'Occaecat proident fugiat consectetur ullamco est. Duis non minim eiusmod magna dolor reprehenderit ad deserunt et qui amet. Tempor cillum dolore veniam Lorem sit ad pariatur et sint. Sunt anim et cupidatat Lorem proident fugiat incididunt incididunt minim non sint. Eiusmod quis et ullamco cillum et veniam do tempor officia sint.', + tags: [ + '3baea410-a7d6-4916-b79a-bdce50c37f95', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '2300ac48-f268-466a-b765-8b878b6e14a7', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ALV-194', + barcode: '8860845382207', + brand: 'f9987124-7ada-4b93-bef7-35280b3ddbd7', + vendor: '05ebb527-d733-46a9-acfb-a4e4ec960024', + stock: 20, + reserved: 2, + cost: 670.87, + basePrice: 1537, + taxPercent: 8, + price: 1659.96, + weight: 0.66, + thumbnail: 'assets/images/apps/ecommerce/products/watch-17-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-17-01.jpg', + 'assets/images/apps/ecommerce/products/watch-17-02.jpg', + 'assets/images/apps/ecommerce/products/watch-17-03.jpg', + ], + active: false, + }, + { + id: '655287de-2e24-41f3-a82f-8b08548ecc39', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Zeon Mens Automatic Watch 44mm 10 ATM', + description: + 'Eiusmod magna tempor est est quis eu. Minim irure magna anim mollit non adipisicing aute. Nostrud aute consectetur eu in non laboris excepteur esse esse occaecat officia.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ADH-5492', + barcode: '8611606513571', + brand: '2c4d98d8-f334-4125-9596-862515f5526b', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 47, + reserved: 2, + cost: 645.13, + basePrice: 1581, + taxPercent: 10, + price: 1739.1, + weight: 0.54, + thumbnail: 'assets/images/apps/ecommerce/products/watch-18-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-18-01.jpg', + 'assets/images/apps/ecommerce/products/watch-18-02.jpg', + 'assets/images/apps/ecommerce/products/watch-18-03.jpg', + ], + active: true, + }, + { + id: 'c215b427-d840-4537-aea1-a9bdfa49441b', + category: 'ad12aa94-3863-47f8-acab-a638ef02a3e9', + name: 'Lara Unisex Automatic Watch 40mm 10 ATM', + description: + 'Excepteur enim non qui consequat sunt exercitation laborum ipsum sunt. Sunt pariatur fugiat voluptate ipsum consectetur do magna culpa labore. Cupidatat non ex labore incididunt aliquip commodo est in. Consectetur mollit nisi aliquip cupidatat do laborum est ullamco velit aliqua fugiat qui adipisicing. Aute reprehenderit quis id sint nulla.', + tags: [ + '8ec8f60d-552f-4216-9f11-462b95b1d306', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'AAT-6702', + barcode: '8330223562386', + brand: 'f9987124-7ada-4b93-bef7-35280b3ddbd7', + vendor: '05ebb527-d733-46a9-acfb-a4e4ec960024', + stock: 21, + reserved: 3, + cost: 704.26, + basePrice: 1733, + taxPercent: 10, + price: 1906.3, + weight: 0.84, + thumbnail: 'assets/images/apps/ecommerce/products/watch-19-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-19-01.jpg', + 'assets/images/apps/ecommerce/products/watch-19-02.jpg', + 'assets/images/apps/ecommerce/products/watch-19-03.jpg', + ], + active: true, + }, + { + id: '8b1d9366-891e-49cd-aafb-ac65ce2741e2', + category: '07986d93-d4eb-4de1-9448-2538407f7254', + name: 'Zeon Ladies Automatic Watch 40mm 10 ATM', + description: + 'Reprehenderit magna reprehenderit ex mollit Lorem labore ut. Duis consectetur aliqua cillum occaecat quis ex excepteur fugiat nulla nisi dolor minim. Elit voluptate exercitation nulla et ut adipisicing esse eu nisi amet eu. Ut cillum ipsum quis fugiat proident Lorem est aute ipsum sint dolore consequat.', + tags: [ + '3baea410-a7d6-4916-b79a-bdce50c37f95', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'EDH-5599', + barcode: '8309212335274', + brand: '2c4d98d8-f334-4125-9596-862515f5526b', + vendor: '05ebb527-d733-46a9-acfb-a4e4ec960024', + stock: 35, + reserved: 2, + cost: 712.66, + basePrice: 1711, + taxPercent: 30, + price: 2224.3, + weight: 0.47, + thumbnail: 'assets/images/apps/ecommerce/products/watch-20-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-20-01.jpg', + 'assets/images/apps/ecommerce/products/watch-20-02.jpg', + 'assets/images/apps/ecommerce/products/watch-20-03.jpg', + ], + active: false, + }, + { + id: '54e29534-518b-4006-b72a-f21fac6c4d5e', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Lara Mens Chronograph Watch 44mm 10 ATM', + description: + 'Officia eu magna eu amet fugiat qui ullamco eu. Occaecat dolore minim ad tempor consequat adipisicing non Lorem consequat. In nostrud incididunt adipisicing in. Irure occaecat aliquip deserunt minim officia ad excepteur do commodo magna.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ADP-3719', + barcode: '8879167838673', + brand: 'f9987124-7ada-4b93-bef7-35280b3ddbd7', + vendor: '998b0c07-abfd-4ba3-8de1-7563ef3c4d57', + stock: 28, + reserved: 3, + cost: 374.38, + basePrice: 749, + taxPercent: 8, + price: 808.92, + weight: 0.52, + thumbnail: 'assets/images/apps/ecommerce/products/watch-21-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-21-01.jpg', + 'assets/images/apps/ecommerce/products/watch-21-02.jpg', + 'assets/images/apps/ecommerce/products/watch-21-03.jpg', + ], + active: false, + }, + { + id: '6a5726e8-c467-45ea-92ab-d83235a06405', + category: 'b899ec30-b85a-40ab-bb1f-18a596d5c6de', + name: 'Premera Mens Chronograph Watch 44mm 10 ATM', + description: + 'Duis id consequat ex officia nisi. Et reprehenderit tempor sunt nostrud. Duis dolore tempor anim non duis qui aute magna officia. Ullamco proident esse enim amet nostrud occaecat veniam. Nostrud ea eiusmod laborum id laborum veniam nulla. Voluptate proident ullamco exercitation id consequat dolore id pariatur esse nulla consectetur.', + tags: [ + '167190fa-51b4-45fc-a742-8ce1b33d24ea', + '7d6dd47e-7472-4f8b-93d4-46c114c44533', + '8837b93f-388b-43cc-851d-4ca8f23f3a61', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'ATH-3399', + barcode: '8356410903599', + brand: '5913ee46-a497-41db-a118-ee506011529f', + vendor: '987dd10a-43b1-49f9-bfd9-05bb2dbc7029', + stock: 20, + reserved: 2, + cost: 444.68, + basePrice: 1103, + taxPercent: 18, + price: 1301.54, + weight: 0.56, + thumbnail: 'assets/images/apps/ecommerce/products/watch-22-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-22-01.jpg', + 'assets/images/apps/ecommerce/products/watch-22-02.jpg', + 'assets/images/apps/ecommerce/products/watch-22-03.jpg', + ], + active: false, + }, + { + id: 'd7d1d6df-e91f-4c53-982a-2720bc2b4cdd', + category: 'ad12aa94-3863-47f8-acab-a638ef02a3e9', + name: 'Capmia Unisex Automatic Watch 40mm 10 ATM', + description: + 'Voluptate consectetur nisi aliquip cupidatat sunt labore. Adipisicing voluptate tempor sunt eu irure cupidatat laboris. Enim aliquip aute sit non laborum Lorem in enim duis eu deserunt. Laboris magna irure aute ut proident fugiat laborum aliquip tempor nostrud id. Et esse cupidatat sunt ullamco reprehenderit enim dolore ea in do esse esse id.', + tags: [ + '8ec8f60d-552f-4216-9f11-462b95b1d306', + '0fc39efd-f640-41f8-95a5-3f1d749df200', + '8f868ddb-d4a2-461d-bc3b-d7c8668687c3', + '0b11b742-3125-4d75-9a6f-84af7fde1969', + 'b1286f3a-e2d0-4237-882b-f0efc0819ec3', + ], + sku: 'EAV-4030', + barcode: '8545771786193', + brand: '61d52c2a-8947-4a2c-8c35-f36baef45b96', + vendor: '998b0c07-abfd-4ba3-8de1-7563ef3c4d57', + stock: 23, + reserved: 3, + cost: 538.72, + basePrice: 1213, + taxPercent: 10, + price: 1334.3, + weight: 0.75, + thumbnail: 'assets/images/apps/ecommerce/products/watch-23-thumb.jpg', + images: [ + 'assets/images/apps/ecommerce/products/watch-23-01.jpg', + 'assets/images/apps/ecommerce/products/watch-23-02.jpg', + 'assets/images/apps/ecommerce/products/watch-23-03.jpg', + ], + active: true, + }, +]; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index 4d377da..8f7028b 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -46,6 +46,13 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon: 'heroicons_outline:academic-cap', link: '/member/user', }, + { + id: 'member.casinomoney', + title: 'Casinomoney', + type: 'basic', + icon: 'heroicons_outline:academic-cap', + link: '/member/casinomoney', + }, ], }, { @@ -85,6 +92,27 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon: 'heroicons_outline:academic-cap', link: '/game/powerball', }, + { + id: 'game.casino', + title: 'Casino', + type: 'basic', + icon: 'heroicons_outline:academic-cap', + link: '/game/casino', + }, + { + id: 'game.evolution', + title: 'Evolution', + type: 'basic', + icon: 'heroicons_outline:academic-cap', + link: '/game/evolution', + }, + { + id: 'game.slot', + title: 'Slot', + type: 'basic', + icon: 'heroicons_outline:academic-cap', + link: '/game/slot', + }, ], }, ]; diff --git a/src/app/mock-api/index.ts b/src/app/mock-api/index.ts index 857e063..3ad9c6b 100644 --- a/src/app/mock-api/index.ts +++ b/src/app/mock-api/index.ts @@ -12,6 +12,7 @@ import { HelpCenterMockApi } from 'app/mock-api/apps/help-center/api'; import { IconsMockApi } from 'app/mock-api/ui/icons/api'; import { MailboxMockApi } from 'app/mock-api/apps/mailbox/api'; import { MemberUserMockApi } from 'app/mock-api/apps/member/user/api'; +import { MemberCasinomoneyMockApi } from './apps/member/casinomoney/api'; import { MessagesMockApi } from 'app/mock-api/common/messages/api'; import { NavigationMockApi } from 'app/mock-api/common/navigation/api'; import { NotesMockApi } from 'app/mock-api/apps/notes/api'; @@ -23,7 +24,11 @@ import { ShortcutsMockApi } from 'app/mock-api/common/shortcuts/api'; import { TasksMockApi } from 'app/mock-api/apps/tasks/api'; import { UserMockApi } from 'app/mock-api/common/user/api'; import { BankDepositMockApi } from './apps/bank/deposit/api'; +import { BankWithdrawMockApi } from './apps/bank/withdraw/api'; import { GamePowerballMockApi } from './apps/game/powerball/api'; +import { GameCasinoMockApi } from './apps/game/casino/api'; +import { GameEvolutionMockApi } from './apps/game/evolution/api'; +import { GameSlotMockApi } from './apps/game/slot/api'; export const mockApiServices = [ AcademyMockApi, @@ -40,6 +45,7 @@ export const mockApiServices = [ IconsMockApi, MailboxMockApi, MemberUserMockApi, + MemberCasinomoneyMockApi, MessagesMockApi, NavigationMockApi, NotesMockApi, @@ -51,5 +57,9 @@ export const mockApiServices = [ TasksMockApi, UserMockApi, BankDepositMockApi, + BankWithdrawMockApi, GamePowerballMockApi, + GameCasinoMockApi, + GameEvolutionMockApi, + GameSlotMockApi, ]; diff --git a/src/app/modules/admin/bank/deposit/components/list.component.html b/src/app/modules/admin/bank/deposit/components/list.component.html index 70379be..3e5f605 100644 --- a/src/app/modules/admin/bank/deposit/components/list.component.html +++ b/src/app/modules/admin/bank/deposit/components/list.component.html @@ -23,7 +23,7 @@ 카지노콤프 슬롯콤프 - 베팅콤프 + 배팅콤프 첫충콤프 @@ -135,7 +135,7 @@ class="hidden sm:block" [mat-sort-header]="'bettingInfomation'" > - 베팅정보 + 배팅정보