Merge branch 'feature/BETERAN-BACKEND-APP-BROWSER-init' of https://gitlab.loafle.net/bet/beteran-backend-app-browser into feature/BETERAN-BACKEND-APP-BROWSER-init
This commit is contained in:
commit
071ff89ff3
|
@ -260,6 +260,20 @@ export const appRoutes: Route[] = [
|
|||
(m: any) => m.WithdrawModule
|
||||
),
|
||||
},
|
||||
{
|
||||
path: 'web-calculate',
|
||||
loadChildren: () =>
|
||||
import(
|
||||
'app/modules/admin/bank/web-calculate/web-calculate.module'
|
||||
).then((m: any) => m.WebCalculateModule),
|
||||
},
|
||||
{
|
||||
path: 'partner-calculate',
|
||||
loadChildren: () =>
|
||||
import(
|
||||
'app/modules/admin/bank/partner-calculate/partner-calculate.module'
|
||||
).then((m: any) => m.PartnerCalculateModule),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -469,6 +483,20 @@ export const appRoutes: Route[] = [
|
|||
(m: any) => m.PopupModule
|
||||
),
|
||||
},
|
||||
{
|
||||
path: 'message',
|
||||
loadChildren: () =>
|
||||
import('app/modules/admin/board/message/message.module').then(
|
||||
(m: any) => m.MessageModule
|
||||
),
|
||||
},
|
||||
{
|
||||
path: 'service',
|
||||
loadChildren: () =>
|
||||
import('app/modules/admin/board/service/service.module').then(
|
||||
(m: any) => m.ServiceModule
|
||||
),
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
222
src/app/mock-api/apps/bank/partner-calculate/api.ts
Normal file
222
src/app/mock-api/apps/bank/partner-calculate/api.ts
Normal file
|
@ -0,0 +1,222 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { assign, cloneDeep } from 'lodash-es';
|
||||
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||
import { partnerCalculates as partnerCalculatesData } from './data';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class BankPartnerCalculateMockApi {
|
||||
private _partnerCalculates: any[] = partnerCalculatesData;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||
// Register Mock API handlers
|
||||
this.registerHandlers();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Register Mock API handlers
|
||||
*/
|
||||
registerHandlers(): void {
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ PartnerCalculates - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/bank/partner-calculate/partner-calculates', 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 partnerCalculates
|
||||
let partnerCalculates: any[] | null = cloneDeep(
|
||||
this._partnerCalculates
|
||||
);
|
||||
|
||||
// Sort the partnerCalculates
|
||||
if (sort === 'sku' || sort === 'name' || sort === 'active') {
|
||||
partnerCalculates.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 {
|
||||
partnerCalculates.sort((a, b) =>
|
||||
order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
|
||||
);
|
||||
}
|
||||
|
||||
// If search exists...
|
||||
if (search) {
|
||||
// Filter the partnerCalculates
|
||||
partnerCalculates = partnerCalculates.filter(
|
||||
(contact: any) =>
|
||||
contact.name &&
|
||||
contact.name.toLowerCase().includes(search.toLowerCase())
|
||||
);
|
||||
}
|
||||
|
||||
// Paginate - Start
|
||||
const partnerCalculatesLength = partnerCalculates.length;
|
||||
|
||||
// Calculate pagination details
|
||||
const begin = page * size;
|
||||
const end = Math.min(size * (page + 1), partnerCalculatesLength);
|
||||
const lastPage = Math.max(Math.ceil(partnerCalculatesLength / size), 1);
|
||||
|
||||
// Prepare the pagination object
|
||||
let pagination = {};
|
||||
|
||||
// If the requested page number is bigger than
|
||||
// the last possible page number, return null for
|
||||
// partnerCalculates but also send the last possible page so
|
||||
// the app can navigate to there
|
||||
if (page > lastPage) {
|
||||
partnerCalculates = null;
|
||||
pagination = {
|
||||
lastPage,
|
||||
};
|
||||
} else {
|
||||
// Paginate the results by size
|
||||
partnerCalculates = partnerCalculates.slice(begin, end);
|
||||
|
||||
// Prepare the pagination mock-api
|
||||
pagination = {
|
||||
length: partnerCalculatesLength,
|
||||
size: size,
|
||||
page: page,
|
||||
lastPage: lastPage,
|
||||
startIndex: begin,
|
||||
endIndex: end - 1,
|
||||
};
|
||||
}
|
||||
|
||||
// Return the response
|
||||
return [
|
||||
200,
|
||||
{
|
||||
partnerCalculates,
|
||||
pagination,
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ PartnerCalculate - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/bank/partner-calculate/partner-calculate')
|
||||
.reply(({ request }) => {
|
||||
// Get the id from the params
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Clone the partnerCalculates
|
||||
const partnerCalculates = cloneDeep(this._partnerCalculates);
|
||||
|
||||
// Find the partnerCalculate
|
||||
const partnerCalculate = partnerCalculates.find(
|
||||
(item: any) => item.id === id
|
||||
);
|
||||
|
||||
// Return the response
|
||||
return [200, partnerCalculate];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ PartnerCalculate - POST
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPost('api/apps/bank/partner-calculate/partner-calculate')
|
||||
.reply(() => {
|
||||
// Generate a new partnerCalculate
|
||||
const newPartnerCalculate = {
|
||||
id: FuseMockApiUtils.guid(),
|
||||
rank: '',
|
||||
level: '',
|
||||
nickname: '',
|
||||
paymentDue: '',
|
||||
calculateType: '',
|
||||
accountHolder: '',
|
||||
note: '',
|
||||
registrationDate: '',
|
||||
processDate: '',
|
||||
deposit: '',
|
||||
withdrawal: '',
|
||||
total: '',
|
||||
gameMoney: '',
|
||||
highRank: '',
|
||||
state: '',
|
||||
};
|
||||
|
||||
// Unshift the new partnerCalculate
|
||||
this._partnerCalculates.unshift(newPartnerCalculate);
|
||||
|
||||
// Return the response
|
||||
return [200, newPartnerCalculate];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ PartnerCalculate - PATCH
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPatch('api/apps/bank/partner-calculate/partner-calculate')
|
||||
.reply(({ request }) => {
|
||||
// Get the id and partnerCalculate
|
||||
const id = request.body.id;
|
||||
const partnerCalculate = cloneDeep(request.body.partnerCalculate);
|
||||
|
||||
// Prepare the updated partnerCalculate
|
||||
let updatedPartnerCalculate = null;
|
||||
|
||||
// Find the partnerCalculate and update it
|
||||
this._partnerCalculates.forEach((item, index, partnerCalculates) => {
|
||||
if (item.id === id) {
|
||||
// Update the partnerCalculate
|
||||
partnerCalculates[index] = assign(
|
||||
{},
|
||||
partnerCalculates[index],
|
||||
partnerCalculate
|
||||
);
|
||||
|
||||
// Store the updated partnerCalculate
|
||||
updatedPartnerCalculate = partnerCalculates[index];
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, updatedPartnerCalculate];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ PartnerCalculate - DELETE
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onDelete('api/apps/bank/partner-calculate/partner-calculate')
|
||||
.reply(({ request }) => {
|
||||
// Get the id
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Find the partnerCalculate and delete it
|
||||
this._partnerCalculates.forEach((item, index) => {
|
||||
if (item.id === id) {
|
||||
this._partnerCalculates.splice(index, 1);
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, true];
|
||||
});
|
||||
}
|
||||
}
|
58
src/app/mock-api/apps/bank/partner-calculate/data.ts
Normal file
58
src/app/mock-api/apps/bank/partner-calculate/data.ts
Normal file
|
@ -0,0 +1,58 @@
|
|||
/* eslint-disable */
|
||||
|
||||
export const partnerCalculates = [
|
||||
{
|
||||
rank: '회원',
|
||||
level: 4,
|
||||
id: 'aa100',
|
||||
nickname: 'aa100',
|
||||
paymentDue: 50000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '광주은행2sss',
|
||||
note: '@',
|
||||
registrationDate: '2022-06-18 13:14',
|
||||
processDate: '000-0-0 0:0',
|
||||
deposit: 41200000,
|
||||
withdraw: 19000000,
|
||||
total: 22200000,
|
||||
gameMoney: 67131,
|
||||
highRank: '[매장]kgon5',
|
||||
state: '신청',
|
||||
},
|
||||
{
|
||||
rank: '회원',
|
||||
level: 1,
|
||||
id: 'onon6',
|
||||
nickname: '가가가',
|
||||
paymentDue: 100000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '가가가',
|
||||
note: '',
|
||||
registrationDate: '2022-06-13 12:57',
|
||||
processDate: '2022-06-13 12:58',
|
||||
deposit: 200000,
|
||||
withdraw: 0,
|
||||
total: 200000,
|
||||
gameMoney: 0,
|
||||
highRank: '[매장]on04',
|
||||
state: '완료',
|
||||
},
|
||||
{
|
||||
rank: '회원',
|
||||
level: 1,
|
||||
id: 'onon6',
|
||||
nickname: '가가가',
|
||||
paymentDue: 100000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '가가가',
|
||||
note: '',
|
||||
registrationDate: '2022-06-13 12:56',
|
||||
processDate: '2022-06-13 12:57',
|
||||
deposit: 200000,
|
||||
withdraw: 0,
|
||||
total: 200000,
|
||||
gameMoney: 0,
|
||||
highRank: '[매장]on04',
|
||||
state: '완료',
|
||||
},
|
||||
];
|
218
src/app/mock-api/apps/bank/web-calculate/api.ts
Normal file
218
src/app/mock-api/apps/bank/web-calculate/api.ts
Normal file
|
@ -0,0 +1,218 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { assign, cloneDeep } from 'lodash-es';
|
||||
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||
import { webCalculates as webCalculatesData } from './data';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class BankWebCalculateMockApi {
|
||||
private _webCalculates: any[] = webCalculatesData;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||
// Register Mock API handlers
|
||||
this.registerHandlers();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Register Mock API handlers
|
||||
*/
|
||||
registerHandlers(): void {
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ WebCalculates - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/bank/web-calculate/web-calculates', 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 webCalculates
|
||||
let webCalculates: any[] | null = cloneDeep(this._webCalculates);
|
||||
|
||||
// Sort the webCalculates
|
||||
if (sort === 'sku' || sort === 'name' || sort === 'active') {
|
||||
webCalculates.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 {
|
||||
webCalculates.sort((a, b) =>
|
||||
order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
|
||||
);
|
||||
}
|
||||
|
||||
// If search exists...
|
||||
if (search) {
|
||||
// Filter the webCalculates
|
||||
webCalculates = webCalculates.filter(
|
||||
(contact: any) =>
|
||||
contact.name &&
|
||||
contact.name.toLowerCase().includes(search.toLowerCase())
|
||||
);
|
||||
}
|
||||
|
||||
// Paginate - Start
|
||||
const webCalculatesLength = webCalculates.length;
|
||||
|
||||
// Calculate pagination details
|
||||
const begin = page * size;
|
||||
const end = Math.min(size * (page + 1), webCalculatesLength);
|
||||
const lastPage = Math.max(Math.ceil(webCalculatesLength / size), 1);
|
||||
|
||||
// Prepare the pagination object
|
||||
let pagination = {};
|
||||
|
||||
// If the requested page number is bigger than
|
||||
// the last possible page number, return null for
|
||||
// webCalculates but also send the last possible page so
|
||||
// the app can navigate to there
|
||||
if (page > lastPage) {
|
||||
webCalculates = null;
|
||||
pagination = {
|
||||
lastPage,
|
||||
};
|
||||
} else {
|
||||
// Paginate the results by size
|
||||
webCalculates = webCalculates.slice(begin, end);
|
||||
|
||||
// Prepare the pagination mock-api
|
||||
pagination = {
|
||||
length: webCalculatesLength,
|
||||
size: size,
|
||||
page: page,
|
||||
lastPage: lastPage,
|
||||
startIndex: begin,
|
||||
endIndex: end - 1,
|
||||
};
|
||||
}
|
||||
|
||||
// Return the response
|
||||
return [
|
||||
200,
|
||||
{
|
||||
webCalculates,
|
||||
pagination,
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ WebCalculate - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/bank/web-calculate/web-calculate')
|
||||
.reply(({ request }) => {
|
||||
// Get the id from the params
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Clone the webCalculates
|
||||
const webCalculates = cloneDeep(this._webCalculates);
|
||||
|
||||
// Find the webCalculate
|
||||
const webCalculate = webCalculates.find((item: any) => item.id === id);
|
||||
|
||||
// Return the response
|
||||
return [200, webCalculate];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ WebCalculate - POST
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPost('api/apps/bank/web-calculate/web-calculate')
|
||||
.reply(() => {
|
||||
// Generate a new webCalculate
|
||||
const newWebCalculate = {
|
||||
id: FuseMockApiUtils.guid(),
|
||||
rank: '',
|
||||
level: '',
|
||||
nickname: '',
|
||||
paymentDue: '',
|
||||
calculateType: '',
|
||||
accountHolder: '',
|
||||
note: '',
|
||||
registrationDate: '',
|
||||
processDate: '',
|
||||
deposit: '',
|
||||
withdrawal: '',
|
||||
total: '',
|
||||
gameMoney: '',
|
||||
highRank: '',
|
||||
state: '',
|
||||
};
|
||||
|
||||
// Unshift the new webCalculate
|
||||
this._webCalculates.unshift(newWebCalculate);
|
||||
|
||||
// Return the response
|
||||
return [200, newWebCalculate];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ WebCalculate - PATCH
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPatch('api/apps/bank/web-calculate/web-calculate')
|
||||
.reply(({ request }) => {
|
||||
// Get the id and webCalculate
|
||||
const id = request.body.id;
|
||||
const webCalculate = cloneDeep(request.body.webCalculate);
|
||||
|
||||
// Prepare the updated webCalculate
|
||||
let updatedWebCalculate = null;
|
||||
|
||||
// Find the webCalculate and update it
|
||||
this._webCalculates.forEach((item, index, webCalculates) => {
|
||||
if (item.id === id) {
|
||||
// Update the webCalculate
|
||||
webCalculates[index] = assign(
|
||||
{},
|
||||
webCalculates[index],
|
||||
webCalculate
|
||||
);
|
||||
|
||||
// Store the updated webCalculate
|
||||
updatedWebCalculate = webCalculates[index];
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, updatedWebCalculate];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ WebCalculate - DELETE
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onDelete('api/apps/bank/web-calculate/web-calculate')
|
||||
.reply(({ request }) => {
|
||||
// Get the id
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Find the webCalculate and delete it
|
||||
this._webCalculates.forEach((item, index) => {
|
||||
if (item.id === id) {
|
||||
this._webCalculates.splice(index, 1);
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, true];
|
||||
});
|
||||
}
|
||||
}
|
58
src/app/mock-api/apps/bank/web-calculate/data.ts
Normal file
58
src/app/mock-api/apps/bank/web-calculate/data.ts
Normal file
|
@ -0,0 +1,58 @@
|
|||
/* eslint-disable */
|
||||
|
||||
export const webCalculates = [
|
||||
{
|
||||
rank: '회원',
|
||||
level: 4,
|
||||
id: 'aa100',
|
||||
nickname: 'aa100',
|
||||
paymentDue: 50000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '광주은행2sss',
|
||||
note: '@',
|
||||
registrationDate: '2022-06-18 13:14',
|
||||
processDate: '000-0-0 0:0',
|
||||
deposit: 41200000,
|
||||
withdraw: 19000000,
|
||||
total: 22200000,
|
||||
gameMoney: 67131,
|
||||
highRank: '[매장]kgon5',
|
||||
state: '신청',
|
||||
},
|
||||
{
|
||||
rank: '회원',
|
||||
level: 1,
|
||||
id: 'onon6',
|
||||
nickname: '가가가',
|
||||
paymentDue: 100000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '가가가',
|
||||
note: '',
|
||||
registrationDate: '2022-06-13 12:57',
|
||||
processDate: '2022-06-13 12:58',
|
||||
deposit: 200000,
|
||||
withdraw: 0,
|
||||
total: 200000,
|
||||
gameMoney: 0,
|
||||
highRank: '[매장]on04',
|
||||
state: '완료',
|
||||
},
|
||||
{
|
||||
rank: '회원',
|
||||
level: 1,
|
||||
id: 'onon6',
|
||||
nickname: '가가가',
|
||||
paymentDue: 100000,
|
||||
calculateType: '롤링',
|
||||
accountHolder: '가가가',
|
||||
note: '',
|
||||
registrationDate: '2022-06-13 12:56',
|
||||
processDate: '2022-06-13 12:57',
|
||||
deposit: 200000,
|
||||
withdraw: 0,
|
||||
total: 200000,
|
||||
gameMoney: 0,
|
||||
highRank: '[매장]on04',
|
||||
state: '완료',
|
||||
},
|
||||
];
|
217
src/app/mock-api/apps/board/message/api.ts
Normal file
217
src/app/mock-api/apps/board/message/api.ts
Normal file
|
@ -0,0 +1,217 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { assign, cloneDeep } from 'lodash-es';
|
||||
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||
import { messages as messagesData } from './data';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class BoardMessageMockApi {
|
||||
private _messages: any[] = messagesData;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||
// Register Mock API handlers
|
||||
this.registerHandlers();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Register Mock API handlers
|
||||
*/
|
||||
registerHandlers(): void {
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Messages - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/board/message/messages', 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 messages
|
||||
let messages: any[] | null = cloneDeep(this._messages);
|
||||
|
||||
// Sort the messages
|
||||
if (sort === 'sku' || sort === 'name' || sort === 'active') {
|
||||
messages.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 {
|
||||
messages.sort((a, b) =>
|
||||
order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
|
||||
);
|
||||
}
|
||||
|
||||
// If search exists...
|
||||
if (search) {
|
||||
// Filter the messages
|
||||
messages = messages.filter(
|
||||
(contact: any) =>
|
||||
contact.name &&
|
||||
contact.name.toLowerCase().includes(search.toLowerCase())
|
||||
);
|
||||
}
|
||||
|
||||
// Paginate - Start
|
||||
const messagesLength = messages.length;
|
||||
|
||||
// Calculate pagination details
|
||||
const begin = page * size;
|
||||
const end = Math.min(size * (page + 1), messagesLength);
|
||||
const lastPage = Math.max(Math.ceil(messagesLength / size), 1);
|
||||
|
||||
// Prepare the pagination object
|
||||
let pagination = {};
|
||||
|
||||
// If the requested page number is bigger than
|
||||
// the last possible page number, return null for
|
||||
// messages but also send the last possible page so
|
||||
// the app can navigate to there
|
||||
if (page > lastPage) {
|
||||
messages = null;
|
||||
pagination = {
|
||||
lastPage,
|
||||
};
|
||||
} else {
|
||||
// Paginate the results by size
|
||||
messages = messages.slice(begin, end);
|
||||
|
||||
// Prepare the pagination mock-api
|
||||
pagination = {
|
||||
length: messagesLength,
|
||||
size: size,
|
||||
page: page,
|
||||
lastPage: lastPage,
|
||||
startIndex: begin,
|
||||
endIndex: end - 1,
|
||||
};
|
||||
}
|
||||
|
||||
// Return the response
|
||||
return [
|
||||
200,
|
||||
{
|
||||
messages,
|
||||
pagination,
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Message - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/board/message/message')
|
||||
.reply(({ request }) => {
|
||||
// Get the id from the params
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Clone the messages
|
||||
const messages = cloneDeep(this._messages);
|
||||
|
||||
// Find the message
|
||||
const message = messages.find((item: any) => item.id === id);
|
||||
|
||||
// Return the response
|
||||
return [200, message];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Message - POST
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPost('api/apps/board/message/message')
|
||||
.reply(() => {
|
||||
// Generate a new message
|
||||
const newMessage = {
|
||||
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 message
|
||||
this._messages.unshift(newMessage);
|
||||
|
||||
// Return the response
|
||||
return [200, newMessage];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Message - PATCH
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPatch('api/apps/board/message/message')
|
||||
.reply(({ request }) => {
|
||||
// Get the id and message
|
||||
const id = request.body.id;
|
||||
const message = cloneDeep(request.body.message);
|
||||
|
||||
// Prepare the updated message
|
||||
let updatedMessage = null;
|
||||
|
||||
// Find the message and update it
|
||||
this._messages.forEach((item, index, messages) => {
|
||||
if (item.id === id) {
|
||||
// Update the message
|
||||
messages[index] = assign({}, messages[index], message);
|
||||
|
||||
// Store the updated Message
|
||||
updatedMessage = messages[index];
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, updatedMessage];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Message - DELETE
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onDelete('api/apps/board/message/message')
|
||||
.reply(({ request }) => {
|
||||
// Get the id
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Find the message and delete it
|
||||
this._messages.forEach((item, index) => {
|
||||
if (item.id === id) {
|
||||
this._messages.splice(index, 1);
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, true];
|
||||
});
|
||||
}
|
||||
}
|
33
src/app/mock-api/apps/board/message/data.ts
Normal file
33
src/app/mock-api/apps/board/message/data.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
/* eslint-disable */
|
||||
|
||||
export const messages = [
|
||||
{
|
||||
id: 'on00',
|
||||
totalPartnerCount: '5',
|
||||
totalHoldingMoney: 303675,
|
||||
totalComp: 108933,
|
||||
total: 412608,
|
||||
branchCount: 1,
|
||||
divisionCount: 1,
|
||||
officeCount: 1,
|
||||
storeCount: 1,
|
||||
memberCount: 1,
|
||||
nickname: 'on00',
|
||||
accountHolder: '11',
|
||||
phoneNumber: '010-1111-1111',
|
||||
calculateType: '롤링',
|
||||
ownCash: 50000,
|
||||
ownComp: 1711,
|
||||
ownCoupon: 50000,
|
||||
gameMoney: 0,
|
||||
todayComp: 0,
|
||||
totalDeposit: 0,
|
||||
totalWithdraw: 0,
|
||||
balance: 0,
|
||||
registDate: '2022-06-12 15:38',
|
||||
finalSigninDate: '',
|
||||
ip: '',
|
||||
state: '정상',
|
||||
note: '',
|
||||
},
|
||||
];
|
217
src/app/mock-api/apps/board/service/api.ts
Normal file
217
src/app/mock-api/apps/board/service/api.ts
Normal file
|
@ -0,0 +1,217 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { assign, cloneDeep } from 'lodash-es';
|
||||
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
|
||||
import { services as servicesData } from './data';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class BoardServiceMockApi {
|
||||
private _services: any[] = servicesData;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _fuseMockApiService: FuseMockApiService) {
|
||||
// Register Mock API handlers
|
||||
this.registerHandlers();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Register Mock API handlers
|
||||
*/
|
||||
registerHandlers(): void {
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Services - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/board/service/services', 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 services
|
||||
let services: any[] | null = cloneDeep(this._services);
|
||||
|
||||
// Sort the services
|
||||
if (sort === 'sku' || sort === 'name' || sort === 'active') {
|
||||
services.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 {
|
||||
services.sort((a, b) =>
|
||||
order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
|
||||
);
|
||||
}
|
||||
|
||||
// If search exists...
|
||||
if (search) {
|
||||
// Filter the services
|
||||
services = services.filter(
|
||||
(contact: any) =>
|
||||
contact.name &&
|
||||
contact.name.toLowerCase().includes(search.toLowerCase())
|
||||
);
|
||||
}
|
||||
|
||||
// Paginate - Start
|
||||
const servicesLength = services.length;
|
||||
|
||||
// Calculate pagination details
|
||||
const begin = page * size;
|
||||
const end = Math.min(size * (page + 1), servicesLength);
|
||||
const lastPage = Math.max(Math.ceil(servicesLength / size), 1);
|
||||
|
||||
// Prepare the pagination object
|
||||
let pagination = {};
|
||||
|
||||
// If the requested page number is bigger than
|
||||
// the last possible page number, return null for
|
||||
// services but also send the last possible page so
|
||||
// the app can navigate to there
|
||||
if (page > lastPage) {
|
||||
services = null;
|
||||
pagination = {
|
||||
lastPage,
|
||||
};
|
||||
} else {
|
||||
// Paginate the results by size
|
||||
services = services.slice(begin, end);
|
||||
|
||||
// Prepare the pagination mock-api
|
||||
pagination = {
|
||||
length: servicesLength,
|
||||
size: size,
|
||||
page: page,
|
||||
lastPage: lastPage,
|
||||
startIndex: begin,
|
||||
endIndex: end - 1,
|
||||
};
|
||||
}
|
||||
|
||||
// Return the response
|
||||
return [
|
||||
200,
|
||||
{
|
||||
services,
|
||||
pagination,
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Service - GET
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onGet('api/apps/board/service/service')
|
||||
.reply(({ request }) => {
|
||||
// Get the id from the params
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Clone the services
|
||||
const services = cloneDeep(this._services);
|
||||
|
||||
// Find the service
|
||||
const service = services.find((item: any) => item.id === id);
|
||||
|
||||
// Return the response
|
||||
return [200, service];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Service - POST
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPost('api/apps/board/service/service')
|
||||
.reply(() => {
|
||||
// Generate a new service
|
||||
const newService = {
|
||||
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 service
|
||||
this._services.unshift(newService);
|
||||
|
||||
// Return the response
|
||||
return [200, newService];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Service - PATCH
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onPatch('api/apps/board/service/service')
|
||||
.reply(({ request }) => {
|
||||
// Get the id and service
|
||||
const id = request.body.id;
|
||||
const service = cloneDeep(request.body.service);
|
||||
|
||||
// Prepare the updated service
|
||||
let updatedService = null;
|
||||
|
||||
// Find the service and update it
|
||||
this._services.forEach((item, index, services) => {
|
||||
if (item.id === id) {
|
||||
// Update the service
|
||||
services[index] = assign({}, services[index], service);
|
||||
|
||||
// Store the updated service
|
||||
updatedService = services[index];
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, updatedService];
|
||||
});
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Service - DELETE
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
this._fuseMockApiService
|
||||
.onDelete('api/apps/board/service/service')
|
||||
.reply(({ request }) => {
|
||||
// Get the id
|
||||
const id = request.params.get('id');
|
||||
|
||||
// Find the service and delete it
|
||||
this._services.forEach((item, index) => {
|
||||
if (item.id === id) {
|
||||
this._services.splice(index, 1);
|
||||
}
|
||||
});
|
||||
|
||||
// Return the response
|
||||
return [200, true];
|
||||
});
|
||||
}
|
||||
}
|
33
src/app/mock-api/apps/board/service/data.ts
Normal file
33
src/app/mock-api/apps/board/service/data.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
/* eslint-disable */
|
||||
|
||||
export const services = [
|
||||
{
|
||||
id: 'on00',
|
||||
totalPartnerCount: '5',
|
||||
totalHoldingMoney: 303675,
|
||||
totalComp: 108933,
|
||||
total: 412608,
|
||||
branchCount: 1,
|
||||
divisionCount: 1,
|
||||
officeCount: 1,
|
||||
storeCount: 1,
|
||||
memberCount: 1,
|
||||
nickname: 'on00',
|
||||
accountHolder: '11',
|
||||
phoneNumber: '010-1111-1111',
|
||||
calculateType: '롤링',
|
||||
ownCash: 50000,
|
||||
ownComp: 1711,
|
||||
ownCoupon: 50000,
|
||||
gameMoney: 0,
|
||||
todayComp: 0,
|
||||
totalDeposit: 0,
|
||||
totalWithdraw: 0,
|
||||
balance: 0,
|
||||
registDate: '2022-06-12 15:38',
|
||||
finalSigninDate: '',
|
||||
ip: '',
|
||||
state: '정상',
|
||||
note: '',
|
||||
},
|
||||
];
|
|
@ -160,6 +160,20 @@ export const defaultNavigation: FuseNavigationItem[] = [
|
|||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/bank/withdraw',
|
||||
},
|
||||
{
|
||||
id: 'bank.web-calculate',
|
||||
title: 'Web Calculate',
|
||||
type: 'basic',
|
||||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/bank/web-calculate',
|
||||
},
|
||||
{
|
||||
id: 'bank.partner-calculate',
|
||||
title: 'Partner Calculate',
|
||||
type: 'basic',
|
||||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/bank/partner-calculate',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -385,6 +399,20 @@ export const defaultNavigation: FuseNavigationItem[] = [
|
|||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/board/popup',
|
||||
},
|
||||
{
|
||||
id: 'board.message',
|
||||
title: 'Message',
|
||||
type: 'basic',
|
||||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/board/message',
|
||||
},
|
||||
{
|
||||
id: 'board.service',
|
||||
title: 'Service',
|
||||
type: 'basic',
|
||||
icon: 'heroicons_outline:academic-cap',
|
||||
link: '/board/service',
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
|
|
@ -36,6 +36,8 @@ 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 { BankWebCalculateMockApi } from './apps/bank/web-calculate/api';
|
||||
import { BankPartnerCalculateMockApi } from './apps/bank/partner-calculate/api';
|
||||
import { GamePowerballMockApi } from './apps/game/powerball/api';
|
||||
import { GameCasinoMockApi } from './apps/game/casino/api';
|
||||
import { GameEvolutionMockApi } from './apps/game/evolution/api';
|
||||
|
@ -63,6 +65,8 @@ import { ReportLoosingMockApi } from './apps/report/loosing/api';
|
|||
import { BoardNoticeMockApi } from './apps/board/notice/api';
|
||||
import { BoardNoticeOnelineMockApi } from './apps/board/notice-oneline/api';
|
||||
import { BoardPopupMockApi } from './apps/board/popup/api';
|
||||
import { BoardMessageMockApi } from './apps/board/message/api';
|
||||
import { BoardServiceMockApi } from './apps/board/service/api';
|
||||
|
||||
export const mockApiServices = [
|
||||
AcademyMockApi,
|
||||
|
@ -103,6 +107,8 @@ export const mockApiServices = [
|
|||
UserMockApi,
|
||||
BankDepositMockApi,
|
||||
BankWithdrawMockApi,
|
||||
BankWebCalculateMockApi,
|
||||
BankPartnerCalculateMockApi,
|
||||
GamePowerballMockApi,
|
||||
GameCasinoMockApi,
|
||||
GameEvolutionMockApi,
|
||||
|
@ -130,4 +136,6 @@ export const mockApiServices = [
|
|||
BoardNoticeMockApi,
|
||||
BoardNoticeOnelineMockApi,
|
||||
BoardPopupMockApi,
|
||||
BoardMessageMockApi,
|
||||
BoardServiceMockApi,
|
||||
];
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
import { ListComponent } from './list.component';
|
||||
|
||||
export const COMPONENTS = [ListComponent];
|
|
@ -0,0 +1,356 @@
|
|||
<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">파트너 입/출금정산</div>
|
||||
<!-- Actions -->
|
||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||
<!-- Memo -->
|
||||
<mat-form-field>
|
||||
<input matInput type="text" />
|
||||
</mat-form-field>
|
||||
<button mat-flat-button [color]="'primary'">메모저장</button>
|
||||
<!-- SelectBox -->
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="내용">
|
||||
<mat-option value="">카지노콤프</mat-option>
|
||||
<mat-option value="">슬롯콤프</mat-option>
|
||||
<mat-option value="">배팅콤프</mat-option>
|
||||
<mat-option value="">첫충콤프</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="아이디">
|
||||
<mat-option value="">아이디</mat-option>
|
||||
<mat-option value="">닉네임</mat-option>
|
||||
<mat-option value="">이름</mat-option>
|
||||
<mat-option value="">사이트</mat-option>
|
||||
<mat-option value="">파트너수동지급</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<!-- Search -->
|
||||
<mat-form-field
|
||||
class="fuse-mat-dense fuse-mat-no-subscript fuse-mat-rounded min-w-64"
|
||||
>
|
||||
<mat-icon
|
||||
class="icon-size-5"
|
||||
matPrefix
|
||||
[svgIcon]="'heroicons_solid:search'"
|
||||
></mat-icon>
|
||||
<input
|
||||
matInput
|
||||
[formControl]="searchInputControl"
|
||||
[autocomplete]="'off'"
|
||||
[placeholder]="'Search'"
|
||||
/>
|
||||
</mat-form-field>
|
||||
<!-- Search button -->
|
||||
<button
|
||||
class="ml-4"
|
||||
mat-flat-button
|
||||
[color]="'primary'"
|
||||
(click)="__createProduct()"
|
||||
>
|
||||
<!-- <mat-icon [svgIcon]="'heroicons_outline:plus'"></mat-icon> -->
|
||||
<span class="ml-2 mr-1">검색하기</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Main -->
|
||||
<div class="flex flex-auto overflow-hidden">
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">입금 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">대기 처리</button>
|
||||
</div>
|
||||
<!-- Products list -->
|
||||
<div
|
||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
||||
>
|
||||
<ng-container *ngIf="partnerCalculates$ | async as partnerCalculates">
|
||||
<ng-container
|
||||
*ngIf="partnerCalculates.length > 0; else noPartnerCalculate"
|
||||
>
|
||||
<div class="grid">
|
||||
<!-- Header -->
|
||||
<div
|
||||
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
|
||||
matSort
|
||||
matSortDisableClear
|
||||
>
|
||||
<div></div>
|
||||
<div class="hidden sm:block">등급</div>
|
||||
<div class="hidden sm:block">레벨</div>
|
||||
<div class="hidden sm:block">아이디</div>
|
||||
<div class="hidden sm:block">닉네임</div>
|
||||
<div class="hidden sm:block">입금예정금액</div>
|
||||
<div class="hidden sm:block">정산종류</div>
|
||||
<div class="hidden sm:block">회원정보</div>
|
||||
<div class="hidden sm:block">비고</div>
|
||||
<div class="hidden sm:block">등록날짜</div>
|
||||
<div class="hidden sm:block">처리날짜</div>
|
||||
<div class="hidden sm:block">입금출금</div>
|
||||
<div class="hidden sm:block">게임중머니</div>
|
||||
<div class="hidden sm:block">카지노->캐쉬</div>
|
||||
<div class="hidden sm:block">상위</div>
|
||||
<div class="hidden sm:block">상태</div>
|
||||
<div class="hidden sm:block">배팅정보</div>
|
||||
<div class="hidden sm:block">삭제</div>
|
||||
<!-- <div class="hidden md:block" [mat-sort-header]="'sku'">SKU</div>
|
||||
<div [mat-sort-header]="'name'">Name</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'price'">
|
||||
Price
|
||||
</div>
|
||||
<div class="hidden lg:block" [mat-sort-header]="'stock'">
|
||||
Stock
|
||||
</div>
|
||||
<div class="hidden lg:block" [mat-sort-header]="'active'">
|
||||
Active
|
||||
</div>
|
||||
<div class="hidden sm:block">Details</div> -->
|
||||
</div>
|
||||
<!-- Rows -->
|
||||
<ng-container
|
||||
*ngIf="partnerCalculates$ | async as partnerCalculates"
|
||||
>
|
||||
<ng-container
|
||||
*ngFor="
|
||||
let partnerCalculate of partnerCalculates;
|
||||
trackBy: __trackByFn
|
||||
"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<!-- rank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.rank }}
|
||||
</div>
|
||||
<!-- level -->
|
||||
<div class="hidden sm:block truncate">
|
||||
LV.{{ partnerCalculate.level }}
|
||||
</div>
|
||||
<!-- id -->
|
||||
<ng-container *ngIf="users$ | async as users">
|
||||
<ng-container
|
||||
*ngFor="let user of users; trackBy: __trackByFn"
|
||||
>
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.id }}
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.nickname }}
|
||||
</div>
|
||||
|
||||
<!-- paymentDue -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.paymentDue }}원
|
||||
</div>
|
||||
|
||||
<!-- calculateType -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.calculateType }}
|
||||
</div>
|
||||
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.accountHolder }}
|
||||
</div>
|
||||
|
||||
<!-- note -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.note }}
|
||||
</div>
|
||||
|
||||
<!-- registrationDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.registrationDate }}
|
||||
</div>
|
||||
|
||||
<!-- processDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.processDate }}
|
||||
</div>
|
||||
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.deposit }}원
|
||||
{{ partnerCalculate.withdraw }}원
|
||||
{{ partnerCalculate.total }}원
|
||||
</div>
|
||||
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.gameMoney }}
|
||||
</div>
|
||||
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ partnerCalculate.highRank }}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ partnerCalculate.state }}
|
||||
</div>
|
||||
|
||||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
배팅리스트
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- delete -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">취소</button>
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<div
|
||||
class="relative flex flex-0 items-center justify-center w-12 h-12 mr-6 rounded overflow-hidden border"
|
||||
>
|
||||
<img
|
||||
class="w-8"
|
||||
*ngIf="user.thumbnail"
|
||||
[alt]="'Product thumbnail image'"
|
||||
[src]="user.thumbnail"
|
||||
/>
|
||||
<div
|
||||
class="flex items-center justify-center w-full h-full text-xs font-semibold leading-none text-center uppercase"
|
||||
*ngIf="!user.thumbnail"
|
||||
>
|
||||
NO THUMB
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
{{ user.sku }}
|
||||
</div> -->
|
||||
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
{{ user.name }}
|
||||
</div> -->
|
||||
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
{{ user.price | currency: "USD":"symbol":"1.2-2" }}
|
||||
</div> -->
|
||||
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<div class="min-w-4">{{ user.stock }}</div> -->
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-red-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock < 20"
|
||||
>
|
||||
<div class="flex w-full h-1/3 bg-red-600"></div>
|
||||
</div> -->
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-orange-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 20 && user.stock < 30"
|
||||
>
|
||||
<div class="flex w-full h-2/4 bg-orange-400"></div>
|
||||
</div> -->
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-green-100 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 30"
|
||||
>
|
||||
<div class="flex w-full h-full bg-green-400"></div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<ng-container *ngIf="user.active">
|
||||
<mat-icon
|
||||
class="text-green-400 icon-size-5"
|
||||
[svgIcon]="'heroicons_solid:check'"
|
||||
></mat-icon>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="!user.active">
|
||||
<mat-icon
|
||||
class="text-gray-400 icon-size-5"
|
||||
[svgIcon]="'heroicons_solid:x'"
|
||||
></mat-icon>
|
||||
</ng-container>
|
||||
</div> -->
|
||||
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<button
|
||||
class="min-w-10 min-h-7 h-7 px-2 leading-6"
|
||||
mat-stroked-button
|
||||
(click)="__toggleDetails(user.id)"
|
||||
>
|
||||
<mat-icon
|
||||
class="icon-size-5"
|
||||
[svgIcon]="
|
||||
selectedUser?.id === user.id
|
||||
? 'heroicons_solid:chevron-up'
|
||||
: 'heroicons_solid:chevron-down'
|
||||
"
|
||||
></mat-icon>
|
||||
</button>
|
||||
</div> -->
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
||||
<mat-paginator
|
||||
class="sm:absolute sm:inset-x-0 sm:bottom-0 border-b sm:border-t sm:border-b-0 z-10 bg-gray-50 dark:bg-transparent"
|
||||
[ngClass]="{ 'pointer-events-none': isLoading }"
|
||||
[length]="pagination?.length"
|
||||
[pageIndex]="pagination?.page"
|
||||
[pageSize]="pagination?.size"
|
||||
[pageSizeOptions]="[5, 10, 25, 100]"
|
||||
[showFirstLastButtons]="true"
|
||||
></mat-paginator>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
|
||||
<ng-template #noPartnerCalculate>
|
||||
<div
|
||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||
>
|
||||
There are no Partner Calculate!
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">입금 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">대기 처리</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,192 @@
|
|||
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 { User } from 'app/modules/admin/member/user/models/user';
|
||||
import { PartnerCalculate } from '../models/partner-calculate';
|
||||
import { PartnerCalculatePagination } from '../models/partner-calculate-pagination';
|
||||
import { PartnerCalculateService } from '../services/partner-calculate.service';
|
||||
|
||||
@Component({
|
||||
selector: 'bank-list',
|
||||
templateUrl: './list.component.html',
|
||||
styles: [
|
||||
/* language=SCSS */
|
||||
`
|
||||
.inventory-grid {
|
||||
grid-template-columns: 60px auto 40px;
|
||||
|
||||
@screen sm {
|
||||
grid-template-columns: 60px auto 60px 72px;
|
||||
}
|
||||
|
||||
@screen md {
|
||||
grid-template-columns: 60px 60px auto 112px 72px;
|
||||
}
|
||||
|
||||
@screen lg {
|
||||
grid-template-columns: 60px 60px auto 112px 96px 96px 72px;
|
||||
}
|
||||
}
|
||||
`,
|
||||
],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
animations: fuseAnimations,
|
||||
})
|
||||
export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
||||
@ViewChild(MatSort) private _sort!: MatSort;
|
||||
|
||||
partnerCalculates$!: Observable<PartnerCalculate[] | undefined>;
|
||||
users$!: Observable<User[] | undefined>;
|
||||
|
||||
isLoading = false;
|
||||
searchInputControl = new FormControl();
|
||||
selectedPartnerCalculate?: PartnerCalculate;
|
||||
pagination?: PartnerCalculatePagination;
|
||||
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _partnerCalculateService: PartnerCalculateService
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Lifecycle hooks
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* On init
|
||||
*/
|
||||
ngOnInit(): void {
|
||||
// Get the pagination
|
||||
this._partnerCalculateService.pagination$
|
||||
.pipe(takeUntil(this._unsubscribeAll))
|
||||
.subscribe((pagination: PartnerCalculatePagination | undefined) => {
|
||||
// Update the pagination
|
||||
this.pagination = pagination;
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
});
|
||||
|
||||
// Get the products
|
||||
this.partnerCalculates$ = this._partnerCalculateService.partnerCalculates$;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 partnerCalculate 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._partnerCalculateService.getPartnerCalculates(
|
||||
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 PartnerCalculatePagination {
|
||||
length: number;
|
||||
size: number;
|
||||
page: number;
|
||||
lastPage: number;
|
||||
startIndex: number;
|
||||
endIndex: number;
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
export interface PartnerCalculate {
|
||||
id?: string;
|
||||
rank?: string;
|
||||
level?: string;
|
||||
nickname?: string;
|
||||
paymentDue?: number;
|
||||
calculateType?: string;
|
||||
accountHolder?: string;
|
||||
note?: string;
|
||||
registrationDate?: string;
|
||||
processDate?: string;
|
||||
deposit?: number;
|
||||
withdraw?: number;
|
||||
total?: number;
|
||||
gameMoney?: number;
|
||||
highRank?: string;
|
||||
state?: string;
|
||||
}
|
|
@ -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 { partnerCalculateRoutes } from './partner-calculate.routing';
|
||||
|
||||
@NgModule({
|
||||
declarations: [COMPONENTS],
|
||||
imports: [
|
||||
TranslocoModule,
|
||||
SharedModule,
|
||||
RouterModule.forChild(partnerCalculateRoutes),
|
||||
|
||||
MatButtonModule,
|
||||
MatFormFieldModule,
|
||||
MatIconModule,
|
||||
MatInputModule,
|
||||
MatPaginatorModule,
|
||||
MatProgressBarModule,
|
||||
MatRippleModule,
|
||||
MatSortModule,
|
||||
MatSelectModule,
|
||||
MatTooltipModule,
|
||||
],
|
||||
})
|
||||
export class PartnerCalculateModule {}
|
|
@ -0,0 +1,24 @@
|
|||
import { Route } from '@angular/router';
|
||||
|
||||
import { ListComponent } from './components/list.component';
|
||||
import { ViewComponent } from '../../member/user/components/view.component';
|
||||
|
||||
import { PartnerCalculatesResolver } from './resolvers/partner-calculate.resolver';
|
||||
import { UserResolver } from '../../dashboards/user/user.resolvers';
|
||||
|
||||
export const partnerCalculateRoutes: Route[] = [
|
||||
{
|
||||
path: '',
|
||||
component: ListComponent,
|
||||
resolve: {
|
||||
partnerCalculates: PartnerCalculatesResolver,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: ':id',
|
||||
component: ViewComponent,
|
||||
resolve: {
|
||||
users: UserResolver,
|
||||
},
|
||||
},
|
||||
];
|
|
@ -0,0 +1,89 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
ActivatedRouteSnapshot,
|
||||
Resolve,
|
||||
Router,
|
||||
RouterStateSnapshot,
|
||||
} from '@angular/router';
|
||||
import { catchError, Observable, throwError } from 'rxjs';
|
||||
|
||||
import { PartnerCalculate } from '../models/partner-calculate';
|
||||
import { PartnerCalculatePagination } from '../models/partner-calculate-pagination';
|
||||
import { PartnerCalculateService } from '../services/partner-calculate.service';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class PartnerCalculateResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _partnerCalculateService: PartnerCalculateService,
|
||||
private _router: Router
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<PartnerCalculate | undefined> {
|
||||
return this._partnerCalculateService
|
||||
.getPartnerCalculateById(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 PartnerCalculatesResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _partnerCalculateService: PartnerCalculateService) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<{
|
||||
pagination: PartnerCalculatePagination;
|
||||
partnerCalculates: PartnerCalculate[];
|
||||
}> {
|
||||
return this._partnerCalculateService.getPartnerCalculates();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,161 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import {
|
||||
BehaviorSubject,
|
||||
filter,
|
||||
map,
|
||||
Observable,
|
||||
of,
|
||||
switchMap,
|
||||
take,
|
||||
tap,
|
||||
throwError,
|
||||
} from 'rxjs';
|
||||
|
||||
import { PartnerCalculate } from '../models/partner-calculate';
|
||||
import { PartnerCalculatePagination } from '../models/partner-calculate-pagination';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class PartnerCalculateService {
|
||||
// Private
|
||||
private __pagination = new BehaviorSubject<
|
||||
PartnerCalculatePagination | undefined
|
||||
>(undefined);
|
||||
private __partnerCalculate = new BehaviorSubject<
|
||||
PartnerCalculate | undefined
|
||||
>(undefined);
|
||||
private __partnerCalculates = new BehaviorSubject<
|
||||
PartnerCalculate[] | undefined
|
||||
>(undefined);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _httpClient: HttpClient) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Accessors
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Getter for pagination
|
||||
*/
|
||||
get pagination$(): Observable<PartnerCalculatePagination | undefined> {
|
||||
return this.__pagination.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for partnerCalculate
|
||||
*/
|
||||
get partnerCalculate$(): Observable<PartnerCalculate | undefined> {
|
||||
return this.__partnerCalculate.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for partnerCalculates
|
||||
*/
|
||||
get partnerCalculates$(): Observable<PartnerCalculate[] | undefined> {
|
||||
return this.__partnerCalculates.asObservable();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get partnerCalculates
|
||||
*
|
||||
*
|
||||
* @param page
|
||||
* @param size
|
||||
* @param sort
|
||||
* @param order
|
||||
* @param search
|
||||
*/
|
||||
getPartnerCalculates(
|
||||
page: number = 0,
|
||||
size: number = 10,
|
||||
sort: string = 'nickname',
|
||||
order: 'asc' | 'desc' | '' = 'asc',
|
||||
search: string = ''
|
||||
): Observable<{
|
||||
pagination: PartnerCalculatePagination;
|
||||
partnerCalculates: PartnerCalculate[];
|
||||
}> {
|
||||
return this._httpClient
|
||||
.get<{
|
||||
pagination: PartnerCalculatePagination;
|
||||
partnerCalculates: PartnerCalculate[];
|
||||
}>('api/apps/bank/partner-calculate/partner-calculates', {
|
||||
params: {
|
||||
page: '' + page,
|
||||
size: '' + size,
|
||||
sort,
|
||||
order,
|
||||
search,
|
||||
},
|
||||
})
|
||||
.pipe(
|
||||
tap((response) => {
|
||||
this.__pagination.next(response.pagination);
|
||||
this.__partnerCalculates.next(response.partnerCalculates);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get product by id
|
||||
*/
|
||||
getPartnerCalculateById(id: string | null): Observable<PartnerCalculate> {
|
||||
return this.__partnerCalculates.pipe(
|
||||
take(1),
|
||||
map((partnerCalculates) => {
|
||||
// Find the product
|
||||
const partnerCalculate =
|
||||
partnerCalculates?.find((item) => item.id === id) || undefined;
|
||||
|
||||
// Update the product
|
||||
this.__partnerCalculate.next(partnerCalculate);
|
||||
|
||||
// Return the product
|
||||
return partnerCalculate;
|
||||
}),
|
||||
switchMap((product) => {
|
||||
if (!product) {
|
||||
return throwError('Could not found product with id of ' + id + '!');
|
||||
}
|
||||
|
||||
return of(product);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create product
|
||||
*/
|
||||
createPartnerCalculate(): Observable<PartnerCalculate> {
|
||||
return this.partnerCalculates$.pipe(
|
||||
take(1),
|
||||
switchMap((partnerCalculates) =>
|
||||
this._httpClient
|
||||
.post<PartnerCalculate>('api/apps/bank/partner-calculate/product', {})
|
||||
.pipe(
|
||||
map((newPartnerCalculate) => {
|
||||
// Update the partnerCalculates with the new product
|
||||
if (!!partnerCalculates) {
|
||||
this.__partnerCalculates.next([
|
||||
newPartnerCalculate,
|
||||
...partnerCalculates,
|
||||
]);
|
||||
}
|
||||
|
||||
// Return the new product
|
||||
return newPartnerCalculate;
|
||||
})
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
import { ListComponent } from './list.component';
|
||||
|
||||
export const COMPONENTS = [ListComponent];
|
|
@ -0,0 +1,348 @@
|
|||
<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">웹 입/출금정산</div>
|
||||
<!-- Actions -->
|
||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||
<!-- Memo -->
|
||||
<mat-form-field>
|
||||
<input matInput type="text" />
|
||||
</mat-form-field>
|
||||
<button mat-flat-button [color]="'primary'">메모저장</button>
|
||||
<!-- SelectBox -->
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="내용">
|
||||
<mat-option value="">카지노콤프</mat-option>
|
||||
<mat-option value="">슬롯콤프</mat-option>
|
||||
<mat-option value="">배팅콤프</mat-option>
|
||||
<mat-option value="">첫충콤프</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="아이디">
|
||||
<mat-option value="">아이디</mat-option>
|
||||
<mat-option value="">닉네임</mat-option>
|
||||
<mat-option value="">이름</mat-option>
|
||||
<mat-option value="">사이트</mat-option>
|
||||
<mat-option value="">파트너수동지급</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<!-- Search -->
|
||||
<mat-form-field
|
||||
class="fuse-mat-dense fuse-mat-no-subscript fuse-mat-rounded min-w-64"
|
||||
>
|
||||
<mat-icon
|
||||
class="icon-size-5"
|
||||
matPrefix
|
||||
[svgIcon]="'heroicons_solid:search'"
|
||||
></mat-icon>
|
||||
<input
|
||||
matInput
|
||||
[formControl]="searchInputControl"
|
||||
[autocomplete]="'off'"
|
||||
[placeholder]="'Search'"
|
||||
/>
|
||||
</mat-form-field>
|
||||
<!-- Search button -->
|
||||
<button
|
||||
class="ml-4"
|
||||
mat-flat-button
|
||||
[color]="'primary'"
|
||||
(click)="__createProduct()"
|
||||
>
|
||||
<!-- <mat-icon [svgIcon]="'heroicons_outline:plus'"></mat-icon> -->
|
||||
<span class="ml-2 mr-1">검색하기</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Main -->
|
||||
<div class="flex flex-auto overflow-hidden">
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">입금 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">대기 처리</button>
|
||||
</div>
|
||||
<!-- Products list -->
|
||||
<div
|
||||
class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
|
||||
>
|
||||
<ng-container *ngIf="webCalculates$ | async as webCalculates">
|
||||
<ng-container *ngIf="webCalculates.length > 0; else noWebCalculate">
|
||||
<div class="grid">
|
||||
<!-- Header -->
|
||||
<div
|
||||
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
|
||||
matSort
|
||||
matSortDisableClear
|
||||
>
|
||||
<div></div>
|
||||
<div class="hidden sm:block">등급</div>
|
||||
<div class="hidden sm:block">레벨</div>
|
||||
<div class="hidden sm:block">아이디</div>
|
||||
<div class="hidden sm:block">닉네임</div>
|
||||
<div class="hidden sm:block">입금예정금액</div>
|
||||
<div class="hidden sm:block">정산종류</div>
|
||||
<div class="hidden sm:block">회원정보</div>
|
||||
<div class="hidden sm:block">비고</div>
|
||||
<div class="hidden sm:block">등록날짜</div>
|
||||
<div class="hidden sm:block">처리날짜</div>
|
||||
<div class="hidden sm:block">입금출금</div>
|
||||
<div class="hidden sm:block">게임중머니</div>
|
||||
<div class="hidden sm:block">카지노->캐쉬</div>
|
||||
<div class="hidden sm:block">상위</div>
|
||||
<div class="hidden sm:block">상태</div>
|
||||
<div class="hidden sm:block">배팅정보</div>
|
||||
<div class="hidden sm:block">삭제</div>
|
||||
<!-- <div class="hidden md:block" [mat-sort-header]="'sku'">SKU</div>
|
||||
<div [mat-sort-header]="'name'">Name</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'price'">
|
||||
Price
|
||||
</div>
|
||||
<div class="hidden lg:block" [mat-sort-header]="'stock'">
|
||||
Stock
|
||||
</div>
|
||||
<div class="hidden lg:block" [mat-sort-header]="'active'">
|
||||
Active
|
||||
</div>
|
||||
<div class="hidden sm:block">Details</div> -->
|
||||
</div>
|
||||
<!-- Rows -->
|
||||
<ng-container *ngIf="webCalculates$ | async as webCalculates">
|
||||
<ng-container
|
||||
*ngFor="let webCalculate of webCalculates; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<!-- rank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.rank }}
|
||||
</div>
|
||||
<!-- level -->
|
||||
<div class="hidden sm:block truncate">
|
||||
LV.{{ webCalculate.level }}
|
||||
</div>
|
||||
<!-- id -->
|
||||
<ng-container *ngIf="users$ | async as users">
|
||||
<ng-container
|
||||
*ngFor="let user of users; trackBy: __trackByFn"
|
||||
>
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.id }}
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.nickname }}
|
||||
</div>
|
||||
|
||||
<!-- paymentDue -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.paymentDue }}원
|
||||
</div>
|
||||
|
||||
<!-- calculateType -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.calculateType }}
|
||||
</div>
|
||||
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.accountHolder }}
|
||||
</div>
|
||||
|
||||
<!-- note -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.note }}
|
||||
</div>
|
||||
|
||||
<!-- registrationDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.registrationDate }}
|
||||
</div>
|
||||
|
||||
<!-- processDate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.processDate }}
|
||||
</div>
|
||||
|
||||
<!-- depositWithdrawal -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.deposit }}원 {{ webCalculate.withdraw }}원
|
||||
{{ webCalculate.total }}원
|
||||
</div>
|
||||
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.gameMoney }}
|
||||
</div>
|
||||
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- highRank -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ webCalculate.highRank }}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ webCalculate.state }}
|
||||
</div>
|
||||
|
||||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
배팅리스트
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- delete -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">취소</button>
|
||||
</div>
|
||||
<!-- Image -->
|
||||
<!-- <div class="flex items-center">
|
||||
<div
|
||||
class="relative flex flex-0 items-center justify-center w-12 h-12 mr-6 rounded overflow-hidden border"
|
||||
>
|
||||
<img
|
||||
class="w-8"
|
||||
*ngIf="user.thumbnail"
|
||||
[alt]="'Product thumbnail image'"
|
||||
[src]="user.thumbnail"
|
||||
/>
|
||||
<div
|
||||
class="flex items-center justify-center w-full h-full text-xs font-semibold leading-none text-center uppercase"
|
||||
*ngIf="!user.thumbnail"
|
||||
>
|
||||
NO THUMB
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- SKU -->
|
||||
<!-- <div class="hidden md:block truncate">
|
||||
{{ user.sku }}
|
||||
</div> -->
|
||||
|
||||
<!-- Name -->
|
||||
<!-- <div class="truncate">
|
||||
{{ user.name }}
|
||||
</div> -->
|
||||
|
||||
<!-- Price -->
|
||||
<!-- <div class="hidden sm:block">
|
||||
{{ user.price | currency: "USD":"symbol":"1.2-2" }}
|
||||
</div> -->
|
||||
|
||||
<!-- Stock -->
|
||||
<!-- <div class="hidden lg:flex items-center">
|
||||
<div class="min-w-4">{{ user.stock }}</div> -->
|
||||
<!-- Low stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-red-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock < 20"
|
||||
>
|
||||
<div class="flex w-full h-1/3 bg-red-600"></div>
|
||||
</div> -->
|
||||
<!-- Medium stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-orange-200 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 20 && user.stock < 30"
|
||||
>
|
||||
<div class="flex w-full h-2/4 bg-orange-400"></div>
|
||||
</div> -->
|
||||
<!-- High stock -->
|
||||
<!-- <div
|
||||
class="flex items-end ml-2 w-1 h-4 bg-green-100 rounded overflow-hidden"
|
||||
*ngIf="user.stock >= 30"
|
||||
>
|
||||
<div class="flex w-full h-full bg-green-400"></div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<!-- Active -->
|
||||
<!-- <div class="hidden lg:block">
|
||||
<ng-container *ngIf="user.active">
|
||||
<mat-icon
|
||||
class="text-green-400 icon-size-5"
|
||||
[svgIcon]="'heroicons_solid:check'"
|
||||
></mat-icon>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="!user.active">
|
||||
<mat-icon
|
||||
class="text-gray-400 icon-size-5"
|
||||
[svgIcon]="'heroicons_solid:x'"
|
||||
></mat-icon>
|
||||
</ng-container>
|
||||
</div> -->
|
||||
|
||||
<!-- Details button -->
|
||||
<!-- <div>
|
||||
<button
|
||||
class="min-w-10 min-h-7 h-7 px-2 leading-6"
|
||||
mat-stroked-button
|
||||
(click)="__toggleDetails(user.id)"
|
||||
>
|
||||
<mat-icon
|
||||
class="icon-size-5"
|
||||
[svgIcon]="
|
||||
selectedUser?.id === user.id
|
||||
? 'heroicons_solid:chevron-up'
|
||||
: 'heroicons_solid:chevron-down'
|
||||
"
|
||||
></mat-icon>
|
||||
</button>
|
||||
</div> -->
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
||||
<mat-paginator
|
||||
class="sm:absolute sm:inset-x-0 sm:bottom-0 border-b sm:border-t sm:border-b-0 z-10 bg-gray-50 dark:bg-transparent"
|
||||
[ngClass]="{ 'pointer-events-none': isLoading }"
|
||||
[length]="pagination?.length"
|
||||
[pageIndex]="pagination?.page"
|
||||
[pageSize]="pagination?.size"
|
||||
[pageSizeOptions]="[5, 10, 25, 100]"
|
||||
[showFirstLastButtons]="true"
|
||||
></mat-paginator>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
|
||||
<ng-template #noWebCalculate>
|
||||
<div
|
||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||
>
|
||||
There are no Web Calculate!
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">입금 처리</button>
|
||||
<button mat-flat-button [color]="'primary'">대기 처리</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,192 @@
|
|||
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 { User } from 'app/modules/admin/member/user/models/user';
|
||||
import { WebCalculate } from '../models/web-calculate';
|
||||
import { WebCalculatePagination } from '../models/web-calculate-pagination';
|
||||
import { WebCalculateService } from '../services/web-calculate.service';
|
||||
|
||||
@Component({
|
||||
selector: 'bank-list',
|
||||
templateUrl: './list.component.html',
|
||||
styles: [
|
||||
/* language=SCSS */
|
||||
`
|
||||
.inventory-grid {
|
||||
grid-template-columns: 60px auto 40px;
|
||||
|
||||
@screen sm {
|
||||
grid-template-columns: 60px auto 60px 72px;
|
||||
}
|
||||
|
||||
@screen md {
|
||||
grid-template-columns: 60px 60px auto 112px 72px;
|
||||
}
|
||||
|
||||
@screen lg {
|
||||
grid-template-columns: 60px 60px auto 112px 96px 96px 72px;
|
||||
}
|
||||
}
|
||||
`,
|
||||
],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
animations: fuseAnimations,
|
||||
})
|
||||
export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
@ViewChild(MatPaginator) private _paginator!: MatPaginator;
|
||||
@ViewChild(MatSort) private _sort!: MatSort;
|
||||
|
||||
webCalculates$!: Observable<WebCalculate[] | undefined>;
|
||||
users$!: Observable<User[] | undefined>;
|
||||
|
||||
isLoading = false;
|
||||
searchInputControl = new FormControl();
|
||||
selectedWebCalculate?: WebCalculate;
|
||||
pagination?: WebCalculatePagination;
|
||||
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _webCalculateService: WebCalculateService
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Lifecycle hooks
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* On init
|
||||
*/
|
||||
ngOnInit(): void {
|
||||
// Get the pagination
|
||||
this._webCalculateService.pagination$
|
||||
.pipe(takeUntil(this._unsubscribeAll))
|
||||
.subscribe((pagination: WebCalculatePagination | undefined) => {
|
||||
// Update the pagination
|
||||
this.pagination = pagination;
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
});
|
||||
|
||||
// Get the products
|
||||
this.webCalculates$ = this._webCalculateService.webCalculates$;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 webCalculate 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._webCalculateService.getWebCalculates(
|
||||
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 WebCalculatePagination {
|
||||
length: number;
|
||||
size: number;
|
||||
page: number;
|
||||
lastPage: number;
|
||||
startIndex: number;
|
||||
endIndex: number;
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
export interface WebCalculate {
|
||||
id?: string;
|
||||
rank?: string;
|
||||
level?: string;
|
||||
nickname?: string;
|
||||
paymentDue?: number;
|
||||
calculateType?: string;
|
||||
accountHolder?: string;
|
||||
note?: string;
|
||||
registrationDate?: string;
|
||||
processDate?: string;
|
||||
deposit?: number;
|
||||
withdraw?: number;
|
||||
total?: number;
|
||||
gameMoney?: number;
|
||||
highRank?: string;
|
||||
state?: string;
|
||||
}
|
|
@ -0,0 +1,89 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
ActivatedRouteSnapshot,
|
||||
Resolve,
|
||||
Router,
|
||||
RouterStateSnapshot,
|
||||
} from '@angular/router';
|
||||
import { catchError, Observable, throwError } from 'rxjs';
|
||||
|
||||
import { WebCalculate } from '../models/web-calculate';
|
||||
import { WebCalculatePagination } from '../models/web-calculate-pagination';
|
||||
import { WebCalculateService } from '../services/web-calculate.service';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class WebCalculateResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _webCalculateService: WebCalculateService,
|
||||
private _router: Router
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<WebCalculate | undefined> {
|
||||
return this._webCalculateService
|
||||
.getWebCalculateById(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 WebCalculatesResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _webCalculateService: WebCalculateService) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<{
|
||||
pagination: WebCalculatePagination;
|
||||
webCalculates: WebCalculate[];
|
||||
}> {
|
||||
return this._webCalculateService.getWebCalculates();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,158 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import {
|
||||
BehaviorSubject,
|
||||
filter,
|
||||
map,
|
||||
Observable,
|
||||
of,
|
||||
switchMap,
|
||||
take,
|
||||
tap,
|
||||
throwError,
|
||||
} from 'rxjs';
|
||||
|
||||
import { WebCalculate } from '../models/web-calculate';
|
||||
import { WebCalculatePagination } from '../models/web-calculate-pagination';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class WebCalculateService {
|
||||
// Private
|
||||
private __pagination = new BehaviorSubject<
|
||||
WebCalculatePagination | undefined
|
||||
>(undefined);
|
||||
private __webCalculate = new BehaviorSubject<WebCalculate | undefined>(
|
||||
undefined
|
||||
);
|
||||
private __webCalculates = new BehaviorSubject<WebCalculate[] | undefined>(
|
||||
undefined
|
||||
);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _httpClient: HttpClient) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Accessors
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Getter for pagination
|
||||
*/
|
||||
get pagination$(): Observable<WebCalculatePagination | undefined> {
|
||||
return this.__pagination.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for webCalculate
|
||||
*/
|
||||
get webCalculate$(): Observable<WebCalculate | undefined> {
|
||||
return this.__webCalculate.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for webCalculates
|
||||
*/
|
||||
get webCalculates$(): Observable<WebCalculate[] | undefined> {
|
||||
return this.__webCalculates.asObservable();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get webCalculates
|
||||
*
|
||||
*
|
||||
* @param page
|
||||
* @param size
|
||||
* @param sort
|
||||
* @param order
|
||||
* @param search
|
||||
*/
|
||||
getWebCalculates(
|
||||
page: number = 0,
|
||||
size: number = 10,
|
||||
sort: string = 'nickname',
|
||||
order: 'asc' | 'desc' | '' = 'asc',
|
||||
search: string = ''
|
||||
): Observable<{
|
||||
pagination: WebCalculatePagination;
|
||||
webCalculates: WebCalculate[];
|
||||
}> {
|
||||
return this._httpClient
|
||||
.get<{
|
||||
pagination: WebCalculatePagination;
|
||||
webCalculates: WebCalculate[];
|
||||
}>('api/apps/bank/web-calculate/web-calculates', {
|
||||
params: {
|
||||
page: '' + page,
|
||||
size: '' + size,
|
||||
sort,
|
||||
order,
|
||||
search,
|
||||
},
|
||||
})
|
||||
.pipe(
|
||||
tap((response) => {
|
||||
this.__pagination.next(response.pagination);
|
||||
this.__webCalculates.next(response.webCalculates);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get product by id
|
||||
*/
|
||||
getWebCalculateById(id: string | null): Observable<WebCalculate> {
|
||||
return this.__webCalculates.pipe(
|
||||
take(1),
|
||||
map((webCalculates) => {
|
||||
// Find the product
|
||||
const webCalculate =
|
||||
webCalculates?.find((item) => item.id === id) || undefined;
|
||||
|
||||
// Update the product
|
||||
this.__webCalculate.next(webCalculate);
|
||||
|
||||
// Return the product
|
||||
return webCalculate;
|
||||
}),
|
||||
switchMap((product) => {
|
||||
if (!product) {
|
||||
return throwError('Could not found product with id of ' + id + '!');
|
||||
}
|
||||
|
||||
return of(product);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create product
|
||||
*/
|
||||
createWebCalculate(): Observable<WebCalculate> {
|
||||
return this.webCalculates$.pipe(
|
||||
take(1),
|
||||
switchMap((webCalculates) =>
|
||||
this._httpClient
|
||||
.post<WebCalculate>('api/apps/bank/web-calculate/product', {})
|
||||
.pipe(
|
||||
map((newWebCalculate) => {
|
||||
// Update the webCalculates with the new product
|
||||
if (!!webCalculates) {
|
||||
this.__webCalculates.next([newWebCalculate, ...webCalculates]);
|
||||
}
|
||||
|
||||
// Return the new product
|
||||
return newWebCalculate;
|
||||
})
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
|
@ -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 { webCalculateRoutes } from './web-calculate.routing';
|
||||
|
||||
@NgModule({
|
||||
declarations: [COMPONENTS],
|
||||
imports: [
|
||||
TranslocoModule,
|
||||
SharedModule,
|
||||
RouterModule.forChild(webCalculateRoutes),
|
||||
|
||||
MatButtonModule,
|
||||
MatFormFieldModule,
|
||||
MatIconModule,
|
||||
MatInputModule,
|
||||
MatPaginatorModule,
|
||||
MatProgressBarModule,
|
||||
MatRippleModule,
|
||||
MatSortModule,
|
||||
MatSelectModule,
|
||||
MatTooltipModule,
|
||||
],
|
||||
})
|
||||
export class WebCalculateModule {}
|
|
@ -0,0 +1,24 @@
|
|||
import { Route } from '@angular/router';
|
||||
|
||||
import { ListComponent } from './components/list.component';
|
||||
import { ViewComponent } from '../../member/user/components/view.component';
|
||||
|
||||
import { WebCalculatesResolver } from './resolvers/web-calculate.resolver';
|
||||
import { UserResolver } from '../../dashboards/user/user.resolvers';
|
||||
|
||||
export const webCalculateRoutes: Route[] = [
|
||||
{
|
||||
path: '',
|
||||
component: ListComponent,
|
||||
resolve: {
|
||||
webCalculates: WebCalculatesResolver,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: ':id',
|
||||
component: ViewComponent,
|
||||
resolve: {
|
||||
users: UserResolver,
|
||||
},
|
||||
},
|
||||
];
|
3
src/app/modules/admin/board/message/components/index.ts
Normal file
3
src/app/modules/admin/board/message/components/index.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { ListComponent } from './list.component';
|
||||
|
||||
export const COMPONENTS = [ListComponent];
|
|
@ -0,0 +1,355 @@
|
|||
<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">쪽지함</div>
|
||||
<!-- Actions -->
|
||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||
<!-- Memo -->
|
||||
<!-- <mat-form-field>
|
||||
<ng-container *ngIf="messages$ | async as messages">
|
||||
<ng-container
|
||||
*ngFor="let message of messages; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<fieldset>
|
||||
총 파트너수:{{ message.totalPartnerCount }} 총 보유머니:{{
|
||||
message.totalHoldingMoney
|
||||
}}
|
||||
총 콤프:{{ message.totalComp }} 총 합계:{{
|
||||
message.total
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</mat-form-field> -->
|
||||
|
||||
<!-- SelectBox -->
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="리스트수">
|
||||
<mat-option value="40">40</mat-option>
|
||||
<mat-option value="60">60</mat-option>
|
||||
<mat-option value="80">80</mat-option>
|
||||
<mat-option value="100">100</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="레벨">
|
||||
<mat-option value="level1">LV.1</mat-option>
|
||||
<mat-option value="level2">LV.2</mat-option>
|
||||
<mat-option value="level3">LV.3</mat-option>
|
||||
<mat-option value="level4">LV.4</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-select>
|
||||
</mat-form-field>
|
||||
<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-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>
|
||||
<!-- <mat-form-field>
|
||||
<mat-select placeholder="입금">
|
||||
<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-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="가입일 정렬">
|
||||
<mat-option value="">가입일 정렬</mat-option>
|
||||
<mat-option value="">아이디 정렬</mat-option>
|
||||
<mat-option value="">닉네임 정렬</mat-option>
|
||||
<mat-option value="">캐쉬 정렬</mat-option>
|
||||
<mat-option value="">콤프 정렬</mat-option>
|
||||
<mat-option value="">쿠폰 정렬</mat-option>
|
||||
<mat-option value="">입금 정렬</mat-option>
|
||||
<mat-option value="">출금 정렬</mat-option>
|
||||
<mat-option value="">차익 정렬</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="내림차순">
|
||||
<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>
|
||||
<!-- Add user 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>
|
||||
<button>엑셀저장</button>
|
||||
<button>카지노머니확인</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="messages$ | async as messages">
|
||||
<ng-container *ngIf="messages.length > 0; else noMessage">
|
||||
<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 class="hidden sm:block"><mat-checkbox></mat-checkbox></div>
|
||||
<div class="hidden sm:block">요율</div>
|
||||
<div class="hidden sm:block">상부트리</div>
|
||||
<div class="hidden sm:block">관리</div>
|
||||
<div class="hidden sm:block">매장수</div>
|
||||
<div class="hidden sm:block">회원수</div>
|
||||
<div class="hidden sm:block">아이디</div>
|
||||
<div class="hidden sm:block">닉네임</div>
|
||||
<div class="hidden sm:block">예금주</div>
|
||||
<div class="hidden sm:block">연락처</div>
|
||||
<div class="hidden sm:block">정산</div>
|
||||
<div class="hidden sm:block">보유금</div>
|
||||
<div class="hidden sm:block">게임중머니</div>
|
||||
<div class="hidden sm:block">카지노->캐쉬</div>
|
||||
<div class="hidden sm:block">금일콤프</div>
|
||||
<div class="hidden sm:block">총입출</div>
|
||||
<div class="hidden sm:block">로그</div>
|
||||
<div class="hidden sm:block">상태</div>
|
||||
<div class="hidden sm:block">회원수</div>
|
||||
<div class="hidden sm:block">비고</div>
|
||||
</div>
|
||||
<!-- Rows -->
|
||||
<ng-container *ngIf="messages$ | async as messages">
|
||||
<ng-container
|
||||
*ngFor="let message of messages; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<div class="hidden sm:block truncate">
|
||||
<mat-checkbox></mat-checkbox>
|
||||
</div>
|
||||
<!-- rate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button
|
||||
mat-button
|
||||
color="primary"
|
||||
matTooltip="요율확인
|
||||
카지노-바카라: 0%
|
||||
카지노-룰렛: 0%
|
||||
카지노-드레곤타이거: 0%
|
||||
카지노-그외: 0%
|
||||
슬롯: 0%
|
||||
카지노루징: 0%
|
||||
슬롯루징: 0%"
|
||||
>
|
||||
요율
|
||||
</button>
|
||||
<div class="hidden sm:block truncate">
|
||||
<!-- 관리 -->
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="관리">
|
||||
<mat-option value="">보유금지급/회수</mat-option>
|
||||
<mat-option value="">수수료설정</mat-option>
|
||||
<mat-option value="">콤프지급/회수</mat-option>
|
||||
<mat-option value="">쿠폰머니지급/회수</mat-option>
|
||||
<mat-option value="">쪽지보내기</mat-option>
|
||||
<mat-option value="">베팅리스트</mat-option>
|
||||
<mat-option value="">강제로그아웃</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 매장수 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ message.branchCount }}
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ message.divisionCount }}
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ message.officeCount }}
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ message.storeCount }}
|
||||
</button>
|
||||
</div>
|
||||
<!-- 회원수 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ message.memberCount }}
|
||||
</button>
|
||||
</div>
|
||||
<!-- id -->
|
||||
<ng-container *ngIf="users$ | async as users">
|
||||
<ng-container
|
||||
*ngFor="let user of users; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="hidden sm:block truncate"
|
||||
(click)="viewUserDetail(user.id!)"
|
||||
>
|
||||
{{ message.id }}
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.nickname }}
|
||||
</div>
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.accountHolder }}
|
||||
</div>
|
||||
<!-- 연락처 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.phoneNumber }}
|
||||
</div>
|
||||
<!-- 정산 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.calculateType }}
|
||||
</div>
|
||||
<!-- 보유금 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
캐쉬{{ message.ownCash }} 콤프{{ message.ownComp }} 쿠폰{{
|
||||
message.ownCoupon
|
||||
}}
|
||||
</div>
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.gameMoney }}
|
||||
</div>
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
<!-- todayComp -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.todayComp }}P
|
||||
</div>
|
||||
<!-- 총입출 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
입금{{ message.totalDeposit }} 출금{{
|
||||
message.totalWithdraw
|
||||
}}
|
||||
차익{{ message.balance }}
|
||||
</div>
|
||||
<!-- log -->
|
||||
<div class="hidden sm:block truncate">
|
||||
가입{{ message.registDate }} 최종{{
|
||||
message.finalSigninDate
|
||||
}}
|
||||
IP{{ message.ip }}
|
||||
</div>
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.state }}
|
||||
</div>
|
||||
<!-- 회원수 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ message.memberCount }}
|
||||
</div>
|
||||
<!-- 비고 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ message.note }}
|
||||
</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 #noMessage>
|
||||
<div
|
||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||
>
|
||||
There are no messages!
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
198
src/app/modules/admin/board/message/components/list.component.ts
Normal file
198
src/app/modules/admin/board/message/components/list.component.ts
Normal file
|
@ -0,0 +1,198 @@
|
|||
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 { User } from '../../../member/user/models/user';
|
||||
import { Message } from '../models/message';
|
||||
import { MessagePagination } from '../models/message-pagination';
|
||||
import { MessageService } from '../services/message.service';
|
||||
import { Router } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'message-list',
|
||||
templateUrl: './list.component.html',
|
||||
styles: [
|
||||
/* language=SCSS */
|
||||
`
|
||||
.inventory-grid {
|
||||
grid-template-columns: 60px auto 40px;
|
||||
|
||||
@screen sm {
|
||||
grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px;
|
||||
}
|
||||
|
||||
@screen md {
|
||||
grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px 60px;
|
||||
}
|
||||
|
||||
@screen lg {
|
||||
grid-template-columns: 60px 70px 70px 70px 70px 100px 60px 60px auto 60px 60px 60px 60px;
|
||||
}
|
||||
}
|
||||
`,
|
||||
],
|
||||
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;
|
||||
|
||||
messages$!: Observable<Message[] | undefined>;
|
||||
users$!: Observable<User[] | undefined>;
|
||||
|
||||
isLoading = false;
|
||||
searchInputControl = new FormControl();
|
||||
selectedMessage?: Message;
|
||||
pagination?: MessagePagination;
|
||||
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _messageService: MessageService,
|
||||
private router: Router
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Lifecycle hooks
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* On init
|
||||
*/
|
||||
ngOnInit(): void {
|
||||
// Get the pagination
|
||||
this._messageService.pagination$
|
||||
.pipe(takeUntil(this._unsubscribeAll))
|
||||
.subscribe((pagination: MessagePagination | undefined) => {
|
||||
// Update the pagination
|
||||
this.pagination = pagination;
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
});
|
||||
|
||||
// Get the products
|
||||
this.messages$ = this._messageService.messages$;
|
||||
}
|
||||
|
||||
/**
|
||||
* After view init
|
||||
*/
|
||||
ngAfterViewInit(): void {
|
||||
if (this._sort && this._paginator) {
|
||||
// Set the initial sort
|
||||
this._sort.sort({
|
||||
id: 'name',
|
||||
start: 'asc',
|
||||
disableClear: true,
|
||||
});
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
|
||||
// If the message 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._messageService.getMessages(
|
||||
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
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
viewUserDetail(id: string): void {
|
||||
let url: string = 'member/user/' + id;
|
||||
this.router.navigateByUrl(url);
|
||||
}
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ 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;
|
||||
}
|
||||
}
|
50
src/app/modules/admin/board/message/message.module.ts
Normal file
50
src/app/modules/admin/board/message/message.module.ts
Normal file
|
@ -0,0 +1,50 @@
|
|||
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 { MatGridListModule } from '@angular/material/grid-list';
|
||||
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import { MatCheckboxModule } from '@angular/material/checkbox';
|
||||
|
||||
import { TranslocoModule } from '@ngneat/transloco';
|
||||
|
||||
import { SharedModule } from 'app/shared/shared.module';
|
||||
|
||||
import { COMPONENTS } from './components';
|
||||
|
||||
import { messageRoutes } from './message.routing';
|
||||
|
||||
@NgModule({
|
||||
declarations: [COMPONENTS],
|
||||
imports: [
|
||||
TranslocoModule,
|
||||
SharedModule,
|
||||
RouterModule.forChild(messageRoutes),
|
||||
|
||||
MatButtonModule,
|
||||
MatFormFieldModule,
|
||||
MatIconModule,
|
||||
MatInputModule,
|
||||
MatPaginatorModule,
|
||||
MatProgressBarModule,
|
||||
MatRippleModule,
|
||||
MatSortModule,
|
||||
MatSelectModule,
|
||||
MatTooltipModule,
|
||||
MatGridListModule,
|
||||
MatSlideToggleModule,
|
||||
MatRadioModule,
|
||||
MatCheckboxModule,
|
||||
],
|
||||
})
|
||||
export class MessageModule {}
|
24
src/app/modules/admin/board/message/message.routing.ts
Normal file
24
src/app/modules/admin/board/message/message.routing.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
import { Route } from '@angular/router';
|
||||
|
||||
import { ListComponent } from './components/list.component';
|
||||
import { ViewComponent } from '../../member/user/components/view.component';
|
||||
|
||||
import { MessagesResolver } from './resolvers/message.resolver';
|
||||
import { UserResolver } from '../../member/user/resolvers/user.resolver';
|
||||
|
||||
export const messageRoutes: Route[] = [
|
||||
{
|
||||
path: '',
|
||||
component: ListComponent,
|
||||
resolve: {
|
||||
messages: MessagesResolver,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: ':id',
|
||||
component: ViewComponent,
|
||||
resolve: {
|
||||
users: UserResolver,
|
||||
},
|
||||
},
|
||||
];
|
|
@ -0,0 +1,8 @@
|
|||
export interface MessagePagination {
|
||||
length: number;
|
||||
size: number;
|
||||
page: number;
|
||||
lastPage: number;
|
||||
startIndex: number;
|
||||
endIndex: number;
|
||||
}
|
29
src/app/modules/admin/board/message/models/message.ts
Normal file
29
src/app/modules/admin/board/message/models/message.ts
Normal file
|
@ -0,0 +1,29 @@
|
|||
export interface Message {
|
||||
id?: string;
|
||||
totalPartnerCount?: number;
|
||||
totalHoldingMoney?: number;
|
||||
totalComp?: number;
|
||||
total?: number;
|
||||
branchCount?: number;
|
||||
divisionCount?: number;
|
||||
officeCount?: number;
|
||||
storeCount?: number;
|
||||
memberCount?: number;
|
||||
nickname?: string;
|
||||
accountHolder?: string;
|
||||
phoneNumber?: string;
|
||||
calculateType?: string;
|
||||
ownCash?: number;
|
||||
ownComp?: number;
|
||||
ownCoupon?: number;
|
||||
gameMoney?: number;
|
||||
todayComp?: number;
|
||||
totalDeposit?: number;
|
||||
totalWithdraw?: number;
|
||||
balance?: number;
|
||||
registDate?: string;
|
||||
finalSigninDate?: string;
|
||||
ip?: string;
|
||||
state?: string;
|
||||
note?: string;
|
||||
}
|
|
@ -0,0 +1,87 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
ActivatedRouteSnapshot,
|
||||
Resolve,
|
||||
Router,
|
||||
RouterStateSnapshot,
|
||||
} from '@angular/router';
|
||||
import { catchError, Observable, throwError } from 'rxjs';
|
||||
|
||||
import { Message } from '../models/message';
|
||||
import { MessagePagination } from '../models/message-pagination';
|
||||
import { MessageService } from '../services/message.service';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class MessageResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _messageService: MessageService,
|
||||
private _router: Router
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<Message | undefined> {
|
||||
return this._messageService.getMessageById(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 MessagesResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _messageService: MessageService) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<{
|
||||
pagination: MessagePagination;
|
||||
messages: Message[];
|
||||
}> {
|
||||
return this._messageService.getMessages();
|
||||
}
|
||||
}
|
153
src/app/modules/admin/board/message/services/message.service.ts
Normal file
153
src/app/modules/admin/board/message/services/message.service.ts
Normal file
|
@ -0,0 +1,153 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import {
|
||||
BehaviorSubject,
|
||||
filter,
|
||||
map,
|
||||
Observable,
|
||||
of,
|
||||
switchMap,
|
||||
take,
|
||||
tap,
|
||||
throwError,
|
||||
} from 'rxjs';
|
||||
|
||||
import { Message } from '../models/message';
|
||||
import { MessagePagination } from '../models/message-pagination';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class MessageService {
|
||||
// Private
|
||||
private __pagination = new BehaviorSubject<MessagePagination | undefined>(
|
||||
undefined
|
||||
);
|
||||
private __message = new BehaviorSubject<Message | undefined>(undefined);
|
||||
private __messages = new BehaviorSubject<Message[] | undefined>(undefined);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _httpClient: HttpClient) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Accessors
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Getter for pagination
|
||||
*/
|
||||
get pagination$(): Observable<MessagePagination | undefined> {
|
||||
return this.__pagination.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for message
|
||||
*/
|
||||
get message$(): Observable<Message | undefined> {
|
||||
return this.__message.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for messages
|
||||
*/
|
||||
get messages$(): Observable<Message[] | undefined> {
|
||||
return this.__messages.asObservable();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get Messages
|
||||
*
|
||||
*
|
||||
* @param page
|
||||
* @param size
|
||||
* @param sort
|
||||
* @param order
|
||||
* @param search
|
||||
*/
|
||||
getMessages(
|
||||
page: number = 0,
|
||||
size: number = 10,
|
||||
sort: string = 'name',
|
||||
order: 'asc' | 'desc' | '' = 'asc',
|
||||
search: string = ''
|
||||
): Observable<{
|
||||
pagination: MessagePagination;
|
||||
messages: Message[];
|
||||
}> {
|
||||
return this._httpClient
|
||||
.get<{
|
||||
pagination: MessagePagination;
|
||||
messages: Message[];
|
||||
}>('api/apps/board/message/messages', {
|
||||
params: {
|
||||
page: '' + page,
|
||||
size: '' + size,
|
||||
sort,
|
||||
order,
|
||||
search,
|
||||
},
|
||||
})
|
||||
.pipe(
|
||||
tap((response) => {
|
||||
this.__pagination.next(response.pagination);
|
||||
this.__messages.next(response.messages);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get product by id
|
||||
*/
|
||||
getMessageById(id: string | null): Observable<Message> {
|
||||
return this.__messages.pipe(
|
||||
take(1),
|
||||
map((messages) => {
|
||||
// Find the product
|
||||
const message = messages?.find((item) => item.id === id) || undefined;
|
||||
|
||||
// Update the product
|
||||
this.__message.next(message);
|
||||
|
||||
// Return the product
|
||||
return message;
|
||||
}),
|
||||
switchMap((product) => {
|
||||
if (!product) {
|
||||
return throwError('Could not found product with id of ' + id + '!');
|
||||
}
|
||||
|
||||
return of(product);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create product
|
||||
*/
|
||||
createMessage(): Observable<Message> {
|
||||
return this.messages$.pipe(
|
||||
take(1),
|
||||
switchMap((messages) =>
|
||||
this._httpClient
|
||||
.post<Message>('api/apps/board/message/product', {})
|
||||
.pipe(
|
||||
map((newMessage) => {
|
||||
// Update the messages with the new product
|
||||
if (!!messages) {
|
||||
this.__messages.next([newMessage, ...messages]);
|
||||
}
|
||||
|
||||
// Return the new product
|
||||
return newMessage;
|
||||
})
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
|
@ -15,19 +15,19 @@
|
|||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||
<!-- Memo -->
|
||||
<!-- <mat-form-field>
|
||||
<ng-container *ngIf="dailys$ | async as dailys">
|
||||
<ng-container *ngIf="notices$ | async as notices">
|
||||
<ng-container
|
||||
*ngFor="let daily of dailys; trackBy: __trackByFn"
|
||||
*ngFor="let notice of notices; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<fieldset>
|
||||
총 파트너수:{{ daily.totalPartnerCount }} 총 보유머니:{{
|
||||
daily.totalHoldingMoney
|
||||
총 파트너수:{{ notice.totalPartnerCount }} 총 보유머니:{{
|
||||
notice.totalHoldingMoney
|
||||
}}
|
||||
총 콤프:{{ daily.totalComp }} 총 합계:{{
|
||||
daily.total
|
||||
총 콤프:{{ notice.totalComp }} 총 합계:{{
|
||||
notice.total
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
|
3
src/app/modules/admin/board/service/components/index.ts
Normal file
3
src/app/modules/admin/board/service/components/index.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { ListComponent } from './list.component';
|
||||
|
||||
export const COMPONENTS = [ListComponent];
|
|
@ -0,0 +1,355 @@
|
|||
<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">고객센터</div>
|
||||
<!-- Actions -->
|
||||
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
|
||||
<!-- Memo -->
|
||||
<!-- <mat-form-field>
|
||||
<ng-container *ngIf="services$ | async as services">
|
||||
<ng-container
|
||||
*ngFor="let service of services; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<fieldset>
|
||||
총 파트너수:{{ service.totalPartnerCount }} 총 보유머니:{{
|
||||
service.totalHoldingMoney
|
||||
}}
|
||||
총 콤프:{{ service.totalComp }} 총 합계:{{
|
||||
service.total
|
||||
}}
|
||||
</fieldset>
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
</mat-form-field> -->
|
||||
|
||||
<!-- SelectBox -->
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="리스트수">
|
||||
<mat-option value="40">40</mat-option>
|
||||
<mat-option value="60">60</mat-option>
|
||||
<mat-option value="80">80</mat-option>
|
||||
<mat-option value="100">100</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="레벨">
|
||||
<mat-option value="level1">LV.1</mat-option>
|
||||
<mat-option value="level2">LV.2</mat-option>
|
||||
<mat-option value="level3">LV.3</mat-option>
|
||||
<mat-option value="level4">LV.4</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-select>
|
||||
</mat-form-field>
|
||||
<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-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>
|
||||
<!-- <mat-form-field>
|
||||
<mat-select placeholder="입금">
|
||||
<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-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="가입일 정렬">
|
||||
<mat-option value="">가입일 정렬</mat-option>
|
||||
<mat-option value="">아이디 정렬</mat-option>
|
||||
<mat-option value="">닉네임 정렬</mat-option>
|
||||
<mat-option value="">캐쉬 정렬</mat-option>
|
||||
<mat-option value="">콤프 정렬</mat-option>
|
||||
<mat-option value="">쿠폰 정렬</mat-option>
|
||||
<mat-option value="">입금 정렬</mat-option>
|
||||
<mat-option value="">출금 정렬</mat-option>
|
||||
<mat-option value="">차익 정렬</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="내림차순">
|
||||
<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>
|
||||
<!-- Add user 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>
|
||||
<button>엑셀저장</button>
|
||||
<button>카지노머니확인</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="services$ | async as services">
|
||||
<ng-container *ngIf="services.length > 0; else noService">
|
||||
<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 class="hidden sm:block"><mat-checkbox></mat-checkbox></div>
|
||||
<div class="hidden sm:block">요율</div>
|
||||
<div class="hidden sm:block">상부트리</div>
|
||||
<div class="hidden sm:block">관리</div>
|
||||
<div class="hidden sm:block">매장수</div>
|
||||
<div class="hidden sm:block">회원수</div>
|
||||
<div class="hidden sm:block">아이디</div>
|
||||
<div class="hidden sm:block">닉네임</div>
|
||||
<div class="hidden sm:block">예금주</div>
|
||||
<div class="hidden sm:block">연락처</div>
|
||||
<div class="hidden sm:block">정산</div>
|
||||
<div class="hidden sm:block">보유금</div>
|
||||
<div class="hidden sm:block">게임중머니</div>
|
||||
<div class="hidden sm:block">카지노->캐쉬</div>
|
||||
<div class="hidden sm:block">금일콤프</div>
|
||||
<div class="hidden sm:block">총입출</div>
|
||||
<div class="hidden sm:block">로그</div>
|
||||
<div class="hidden sm:block">상태</div>
|
||||
<div class="hidden sm:block">회원수</div>
|
||||
<div class="hidden sm:block">비고</div>
|
||||
</div>
|
||||
<!-- Rows -->
|
||||
<ng-container *ngIf="services$ | async as services">
|
||||
<ng-container
|
||||
*ngFor="let service of services; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
|
||||
>
|
||||
<div class="hidden sm:block truncate">
|
||||
<mat-checkbox></mat-checkbox>
|
||||
</div>
|
||||
<!-- rate -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button
|
||||
mat-button
|
||||
color="primary"
|
||||
matTooltip="요율확인
|
||||
카지노-바카라: 0%
|
||||
카지노-룰렛: 0%
|
||||
카지노-드레곤타이거: 0%
|
||||
카지노-그외: 0%
|
||||
슬롯: 0%
|
||||
카지노루징: 0%
|
||||
슬롯루징: 0%"
|
||||
>
|
||||
요율
|
||||
</button>
|
||||
<div class="hidden sm:block truncate">
|
||||
<!-- 관리 -->
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
<mat-form-field>
|
||||
<mat-select placeholder="관리">
|
||||
<mat-option value="">보유금지급/회수</mat-option>
|
||||
<mat-option value="">수수료설정</mat-option>
|
||||
<mat-option value="">콤프지급/회수</mat-option>
|
||||
<mat-option value="">쿠폰머니지급/회수</mat-option>
|
||||
<mat-option value="">쪽지보내기</mat-option>
|
||||
<mat-option value="">베팅리스트</mat-option>
|
||||
<mat-option value="">강제로그아웃</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 매장수 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ service.branchCount }}
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ service.divisionCount }}
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ service.officeCount }}
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ service.storeCount }}
|
||||
</button>
|
||||
</div>
|
||||
<!-- 회원수 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ service.memberCount }}
|
||||
</button>
|
||||
</div>
|
||||
<!-- id -->
|
||||
<ng-container *ngIf="users$ | async as users">
|
||||
<ng-container
|
||||
*ngFor="let user of users; trackBy: __trackByFn"
|
||||
>
|
||||
<div
|
||||
class="hidden sm:block truncate"
|
||||
(click)="viewUserDetail(user.id!)"
|
||||
>
|
||||
{{ service.id }}
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
<!-- nickname -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.nickname }}
|
||||
</div>
|
||||
<!-- accountHolder -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.accountHolder }}
|
||||
</div>
|
||||
<!-- 연락처 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.phoneNumber }}
|
||||
</div>
|
||||
<!-- 정산 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.calculateType }}
|
||||
</div>
|
||||
<!-- 보유금 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
캐쉬{{ service.ownCash }} 콤프{{ service.ownComp }} 쿠폰{{
|
||||
service.ownCoupon
|
||||
}}
|
||||
</div>
|
||||
<!-- gameMoney -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.gameMoney }}
|
||||
</div>
|
||||
<!-- casinoCash -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니확인
|
||||
</button>
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
게임머니회수
|
||||
</button>
|
||||
</div>
|
||||
<!-- todayComp -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.todayComp }}P
|
||||
</div>
|
||||
<!-- 총입출 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
입금{{ service.totalDeposit }} 출금{{
|
||||
service.totalWithdraw
|
||||
}}
|
||||
차익{{ service.balance }}
|
||||
</div>
|
||||
<!-- log -->
|
||||
<div class="hidden sm:block truncate">
|
||||
가입{{ service.registDate }} 최종{{
|
||||
service.finalSigninDate
|
||||
}}
|
||||
IP{{ service.ip }}
|
||||
</div>
|
||||
<!-- state -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.state }}
|
||||
</div>
|
||||
<!-- 회원수 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
{{ service.memberCount }}
|
||||
</div>
|
||||
<!-- 비고 -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
{{ service.note }}
|
||||
</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 #noService>
|
||||
<div
|
||||
class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
|
||||
>
|
||||
There are no services!
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
198
src/app/modules/admin/board/service/components/list.component.ts
Normal file
198
src/app/modules/admin/board/service/components/list.component.ts
Normal file
|
@ -0,0 +1,198 @@
|
|||
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 { User } from '../../../member/user/models/user';
|
||||
import { Service } from '../models/service';
|
||||
import { ServicePagination } from '../models/service-pagination';
|
||||
import { ServiceService } from '../services/service.service';
|
||||
import { Router } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'service-list',
|
||||
templateUrl: './list.component.html',
|
||||
styles: [
|
||||
/* language=SCSS */
|
||||
`
|
||||
.inventory-grid {
|
||||
grid-template-columns: 60px auto 40px;
|
||||
|
||||
@screen sm {
|
||||
grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px;
|
||||
}
|
||||
|
||||
@screen md {
|
||||
grid-template-columns: 60px 60px 60px 60px 60px 60px auto 60px 60px;
|
||||
}
|
||||
|
||||
@screen lg {
|
||||
grid-template-columns: 60px 70px 70px 70px 70px 100px 60px 60px auto 60px 60px 60px 60px;
|
||||
}
|
||||
}
|
||||
`,
|
||||
],
|
||||
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;
|
||||
|
||||
services$!: Observable<Service[] | undefined>;
|
||||
users$!: Observable<User[] | undefined>;
|
||||
|
||||
isLoading = false;
|
||||
searchInputControl = new FormControl();
|
||||
selectedService?: Service;
|
||||
pagination?: ServicePagination;
|
||||
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _serviceService: ServiceService,
|
||||
private router: Router
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Lifecycle hooks
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* On init
|
||||
*/
|
||||
ngOnInit(): void {
|
||||
// Get the pagination
|
||||
this._serviceService.pagination$
|
||||
.pipe(takeUntil(this._unsubscribeAll))
|
||||
.subscribe((pagination: ServicePagination | undefined) => {
|
||||
// Update the pagination
|
||||
this.pagination = pagination;
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
});
|
||||
|
||||
// Get the products
|
||||
this.services$ = this._serviceService.services$;
|
||||
}
|
||||
|
||||
/**
|
||||
* After view init
|
||||
*/
|
||||
ngAfterViewInit(): void {
|
||||
if (this._sort && this._paginator) {
|
||||
// Set the initial sort
|
||||
this._sort.sort({
|
||||
id: 'name',
|
||||
start: 'asc',
|
||||
disableClear: true,
|
||||
});
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
|
||||
// If the service 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._serviceService.getServices(
|
||||
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
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
viewUserDetail(id: string): void {
|
||||
let url: string = 'member/user/' + id;
|
||||
this.router.navigateByUrl(url);
|
||||
}
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ 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 ServicePagination {
|
||||
length: number;
|
||||
size: number;
|
||||
page: number;
|
||||
lastPage: number;
|
||||
startIndex: number;
|
||||
endIndex: number;
|
||||
}
|
29
src/app/modules/admin/board/service/models/service.ts
Normal file
29
src/app/modules/admin/board/service/models/service.ts
Normal file
|
@ -0,0 +1,29 @@
|
|||
export interface Service {
|
||||
id?: string;
|
||||
totalPartnerCount?: number;
|
||||
totalHoldingMoney?: number;
|
||||
totalComp?: number;
|
||||
total?: number;
|
||||
branchCount?: number;
|
||||
divisionCount?: number;
|
||||
officeCount?: number;
|
||||
storeCount?: number;
|
||||
memberCount?: number;
|
||||
nickname?: string;
|
||||
accountHolder?: string;
|
||||
phoneNumber?: string;
|
||||
calculateType?: string;
|
||||
ownCash?: number;
|
||||
ownComp?: number;
|
||||
ownCoupon?: number;
|
||||
gameMoney?: number;
|
||||
todayComp?: number;
|
||||
totalDeposit?: number;
|
||||
totalWithdraw?: number;
|
||||
balance?: number;
|
||||
registDate?: string;
|
||||
finalSigninDate?: string;
|
||||
ip?: string;
|
||||
state?: string;
|
||||
note?: string;
|
||||
}
|
|
@ -0,0 +1,87 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
ActivatedRouteSnapshot,
|
||||
Resolve,
|
||||
Router,
|
||||
RouterStateSnapshot,
|
||||
} from '@angular/router';
|
||||
import { catchError, Observable, throwError } from 'rxjs';
|
||||
|
||||
import { Service } from '../models/service';
|
||||
import { ServicePagination } from '../models/service-pagination';
|
||||
import { ServiceService } from '../services/service.service';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class ServiceResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _serviceService: ServiceService,
|
||||
private _router: Router
|
||||
) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<Service | undefined> {
|
||||
return this._serviceService.getServiceById(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 ServicesResolver implements Resolve<any> {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _serviceService: ServiceService) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Resolver
|
||||
*
|
||||
* @param route
|
||||
* @param state
|
||||
*/
|
||||
resolve(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<{
|
||||
pagination: ServicePagination;
|
||||
services: Service[];
|
||||
}> {
|
||||
return this._serviceService.getServices();
|
||||
}
|
||||
}
|
50
src/app/modules/admin/board/service/service.module.ts
Normal file
50
src/app/modules/admin/board/service/service.module.ts
Normal file
|
@ -0,0 +1,50 @@
|
|||
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 { MatGridListModule } from '@angular/material/grid-list';
|
||||
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
||||
import { MatRadioModule } from '@angular/material/radio';
|
||||
import { MatCheckboxModule } from '@angular/material/checkbox';
|
||||
|
||||
import { TranslocoModule } from '@ngneat/transloco';
|
||||
|
||||
import { SharedModule } from 'app/shared/shared.module';
|
||||
|
||||
import { COMPONENTS } from './components';
|
||||
|
||||
import { serviceRoutes } from './service.routing';
|
||||
|
||||
@NgModule({
|
||||
declarations: [COMPONENTS],
|
||||
imports: [
|
||||
TranslocoModule,
|
||||
SharedModule,
|
||||
RouterModule.forChild(serviceRoutes),
|
||||
|
||||
MatButtonModule,
|
||||
MatFormFieldModule,
|
||||
MatIconModule,
|
||||
MatInputModule,
|
||||
MatPaginatorModule,
|
||||
MatProgressBarModule,
|
||||
MatRippleModule,
|
||||
MatSortModule,
|
||||
MatSelectModule,
|
||||
MatTooltipModule,
|
||||
MatGridListModule,
|
||||
MatSlideToggleModule,
|
||||
MatRadioModule,
|
||||
MatCheckboxModule,
|
||||
],
|
||||
})
|
||||
export class ServiceModule {}
|
24
src/app/modules/admin/board/service/service.routing.ts
Normal file
24
src/app/modules/admin/board/service/service.routing.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
import { Route } from '@angular/router';
|
||||
|
||||
import { ListComponent } from './components/list.component';
|
||||
import { ViewComponent } from '../../member/user/components/view.component';
|
||||
|
||||
import { ServicesResolver } from './resolvers/service.resolver';
|
||||
import { UserResolver } from '../../member/user/resolvers/user.resolver';
|
||||
|
||||
export const serviceRoutes: Route[] = [
|
||||
{
|
||||
path: '',
|
||||
component: ListComponent,
|
||||
resolve: {
|
||||
services: ServicesResolver,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: ':id',
|
||||
component: ViewComponent,
|
||||
resolve: {
|
||||
users: UserResolver,
|
||||
},
|
||||
},
|
||||
];
|
153
src/app/modules/admin/board/service/services/service.service.ts
Normal file
153
src/app/modules/admin/board/service/services/service.service.ts
Normal file
|
@ -0,0 +1,153 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import {
|
||||
BehaviorSubject,
|
||||
filter,
|
||||
map,
|
||||
Observable,
|
||||
of,
|
||||
switchMap,
|
||||
take,
|
||||
tap,
|
||||
throwError,
|
||||
} from 'rxjs';
|
||||
|
||||
import { Service } from '../models/service';
|
||||
import { ServicePagination } from '../models/service-pagination';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class ServiceService {
|
||||
// Private
|
||||
private __pagination = new BehaviorSubject<ServicePagination | undefined>(
|
||||
undefined
|
||||
);
|
||||
private __service = new BehaviorSubject<Service | undefined>(undefined);
|
||||
private __services = new BehaviorSubject<Service[] | undefined>(undefined);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _httpClient: HttpClient) {}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Accessors
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Getter for pagination
|
||||
*/
|
||||
get pagination$(): Observable<ServicePagination | undefined> {
|
||||
return this.__pagination.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for service
|
||||
*/
|
||||
get service$(): Observable<Service | undefined> {
|
||||
return this.__service.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for services
|
||||
*/
|
||||
get services$(): Observable<Service[] | undefined> {
|
||||
return this.__services.asObservable();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Public methods
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Get Services
|
||||
*
|
||||
*
|
||||
* @param page
|
||||
* @param size
|
||||
* @param sort
|
||||
* @param order
|
||||
* @param search
|
||||
*/
|
||||
getServices(
|
||||
page: number = 0,
|
||||
size: number = 10,
|
||||
sort: string = 'name',
|
||||
order: 'asc' | 'desc' | '' = 'asc',
|
||||
search: string = ''
|
||||
): Observable<{
|
||||
pagination: ServicePagination;
|
||||
services: Service[];
|
||||
}> {
|
||||
return this._httpClient
|
||||
.get<{
|
||||
pagination: ServicePagination;
|
||||
services: Service[];
|
||||
}>('api/apps/board/service/services', {
|
||||
params: {
|
||||
page: '' + page,
|
||||
size: '' + size,
|
||||
sort,
|
||||
order,
|
||||
search,
|
||||
},
|
||||
})
|
||||
.pipe(
|
||||
tap((response) => {
|
||||
this.__pagination.next(response.pagination);
|
||||
this.__services.next(response.services);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get product by id
|
||||
*/
|
||||
getServiceById(id: string | null): Observable<Service> {
|
||||
return this.__services.pipe(
|
||||
take(1),
|
||||
map((services) => {
|
||||
// Find the product
|
||||
const service = services?.find((item) => item.id === id) || undefined;
|
||||
|
||||
// Update the product
|
||||
this.__service.next(service);
|
||||
|
||||
// Return the product
|
||||
return service;
|
||||
}),
|
||||
switchMap((product) => {
|
||||
if (!product) {
|
||||
return throwError('Could not found product with id of ' + id + '!');
|
||||
}
|
||||
|
||||
return of(product);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create product
|
||||
*/
|
||||
createService(): Observable<Service> {
|
||||
return this.services$.pipe(
|
||||
take(1),
|
||||
switchMap((services) =>
|
||||
this._httpClient
|
||||
.post<Service>('api/apps/board/service/product', {})
|
||||
.pipe(
|
||||
map((newService) => {
|
||||
// Update the services with the new product
|
||||
if (!!services) {
|
||||
this.__services.next([newService, ...services]);
|
||||
}
|
||||
|
||||
// Return the new product
|
||||
return newService;
|
||||
})
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
|
@ -19,6 +19,8 @@
|
|||
"Analytics": "Analytics",
|
||||
"Deposit": "Deposit",
|
||||
"Withdraw": "Withdraw",
|
||||
"Web Calculate": "Web Calculate",
|
||||
"Partner Calculate": "Partner Calculate",
|
||||
"Powerball": "Powerball",
|
||||
"Casino": "Casino",
|
||||
"Evolution": "Evolution",
|
||||
|
@ -40,5 +42,7 @@
|
|||
"Loosing": "Loosing Management",
|
||||
"Notice": "Notice",
|
||||
"Notice Oneline": "Notice Oneline",
|
||||
"Popup": "Pop Up"
|
||||
"Popup": "Pop Up",
|
||||
"Message": "Message",
|
||||
"Service": "Service Center"
|
||||
}
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
"Analytics": "Analytics",
|
||||
"Deposit": "입금관리",
|
||||
"Withdraw": "출금관리",
|
||||
"Web Calculate": "웹 입/출금 정산",
|
||||
"Partner Calculate": "파트너 입/출금 정산",
|
||||
"Powerball": "파워볼",
|
||||
"Casino": "카지노배팅리스트",
|
||||
"Evolution": "에볼루션배팅리스트",
|
||||
|
@ -46,5 +48,7 @@
|
|||
"Loosing": "루징관리",
|
||||
"Notice": "공지사항",
|
||||
"Notice Oneline": "한줄공지",
|
||||
"Popup": "팝업"
|
||||
"Popup": "팝업",
|
||||
"Message": "쪽지함",
|
||||
"Service": "고객센터"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user