diff --git a/src/app/mock-api/apps/report/excel-log/api.ts b/src/app/mock-api/apps/report/excel-log/api.ts
new file mode 100644
index 0000000..feae824
--- /dev/null
+++ b/src/app/mock-api/apps/report/excel-log/api.ts
@@ -0,0 +1,217 @@
+import { Injectable } from '@angular/core';
+import { assign, cloneDeep } from 'lodash-es';
+import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
+import { excelLogs as excelLogsData } from './data';
+
+@Injectable({
+ providedIn: 'root',
+})
+export class ReportExcelLogMockApi {
+ private _excelLogs: any[] = excelLogsData;
+
+ /**
+ * Constructor
+ */
+ constructor(private _fuseMockApiService: FuseMockApiService) {
+ // Register Mock API handlers
+ this.registerHandlers();
+ }
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Register Mock API handlers
+ */
+ registerHandlers(): void {
+ // -----------------------------------------------------------------------------------------------------
+ // @ ExcelLogs - GET
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onGet('api/apps/report/excel-log/excel-logs', 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 excelLogs
+ let excelLogs: any[] | null = cloneDeep(this._excelLogs);
+
+ // Sort the excelLogs
+ if (sort === 'sku' || sort === 'name' || sort === 'active') {
+ excelLogs.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 {
+ excelLogs.sort((a, b) =>
+ order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
+ );
+ }
+
+ // If search exists...
+ if (search) {
+ // Filter the excelLogs
+ excelLogs = excelLogs.filter(
+ (contact: any) =>
+ contact.name &&
+ contact.name.toLowerCase().includes(search.toLowerCase())
+ );
+ }
+
+ // Paginate - Start
+ const excelLogsLength = excelLogs.length;
+
+ // Calculate pagination details
+ const begin = page * size;
+ const end = Math.min(size * (page + 1), excelLogsLength);
+ const lastPage = Math.max(Math.ceil(excelLogsLength / size), 1);
+
+ // Prepare the pagination object
+ let pagination = {};
+
+ // If the requested page number is bigger than
+ // the last possible page number, return null for
+ // excelLogs but also send the last possible page so
+ // the app can navigate to there
+ if (page > lastPage) {
+ excelLogs = null;
+ pagination = {
+ lastPage,
+ };
+ } else {
+ // Paginate the results by size
+ excelLogs = excelLogs.slice(begin, end);
+
+ // Prepare the pagination mock-api
+ pagination = {
+ length: excelLogsLength,
+ size: size,
+ page: page,
+ lastPage: lastPage,
+ startIndex: begin,
+ endIndex: end - 1,
+ };
+ }
+
+ // Return the response
+ return [
+ 200,
+ {
+ excelLogs,
+ pagination,
+ },
+ ];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ ExcelLog - GET
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onGet('api/apps/report/excel-log/excel-log')
+ .reply(({ request }) => {
+ // Get the id from the params
+ const id = request.params.get('id');
+
+ // Clone the excelLogs
+ const excelLogs = cloneDeep(this._excelLogs);
+
+ // Find the excelLog
+ const excelLog = excelLogs.find((item: any) => item.id === id);
+
+ // Return the response
+ return [200, excelLog];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ ExcelLog - POST
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onPost('api/apps/report/excel-log/excel-log')
+ .reply(() => {
+ // Generate a new excelLog
+ const newExcelLog = {
+ 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 excelLog
+ this._excelLogs.unshift(newExcelLog);
+
+ // Return the response
+ return [200, newExcelLog];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ ExcelLog - PATCH
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onPatch('api/apps/report/excel-log/excel-log')
+ .reply(({ request }) => {
+ // Get the id and excelLog
+ const id = request.body.id;
+ const excelLog = cloneDeep(request.body.excelLog);
+
+ // Prepare the updated excelLog
+ let updatedExcelLog = null;
+
+ // Find the excelLog and update it
+ this._excelLogs.forEach((item, index, excelLogs) => {
+ if (item.id === id) {
+ // Update the excelLog
+ excelLogs[index] = assign({}, excelLogs[index], excelLog);
+
+ // Store the updated excelLog
+ updatedExcelLog = excelLogs[index];
+ }
+ });
+
+ // Return the response
+ return [200, updatedExcelLog];
+ });
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ ExcelLog - DELETE
+ // -----------------------------------------------------------------------------------------------------
+ this._fuseMockApiService
+ .onDelete('api/apps/report/excel-log/excel-log')
+ .reply(({ request }) => {
+ // Get the id
+ const id = request.params.get('id');
+
+ // Find the excelLog and delete it
+ this._excelLogs.forEach((item, index) => {
+ if (item.id === id) {
+ this._excelLogs.splice(index, 1);
+ }
+ });
+
+ // Return the response
+ return [200, true];
+ });
+ }
+}
diff --git a/src/app/mock-api/apps/report/excel-log/data.ts b/src/app/mock-api/apps/report/excel-log/data.ts
new file mode 100644
index 0000000..57f7aee
--- /dev/null
+++ b/src/app/mock-api/apps/report/excel-log/data.ts
@@ -0,0 +1,33 @@
+/* eslint-disable */
+
+export const excelLogs = [
+ {
+ 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: '',
+ },
+];
diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts
index e879f51..5c09b93 100644
--- a/src/app/mock-api/common/navigation/data.ts
+++ b/src/app/mock-api/common/navigation/data.ts
@@ -285,6 +285,13 @@ export const defaultNavigation: FuseNavigationItem[] = [
icon: 'heroicons_outline:academic-cap',
link: '/report/payment-log',
},
+ {
+ id: 'report.excel-log',
+ title: 'Excel Log',
+ type: 'basic',
+ icon: 'heroicons_outline:academic-cap',
+ link: '/report/excel-log',
+ },
],
},
];
diff --git a/src/app/mock-api/index.ts b/src/app/mock-api/index.ts
index 7c0c28d..47cff6e 100644
--- a/src/app/mock-api/index.ts
+++ b/src/app/mock-api/index.ts
@@ -50,6 +50,7 @@ import { ReportMoneyLogMockApi } from './apps/report/money-log/api';
import { ReportCompLogMockApi } from './apps/report/comp-log/api';
import { ReportModificationLogMockApi } from './apps/report/modification-log/api';
import { ReportPaymentLogMockApi } from './apps/report/payment-log/api';
+import { ReportExcelLogMockApi } from './apps/report/excel-log/api';
export const mockApiServices = [
AcademyMockApi,
@@ -104,4 +105,5 @@ export const mockApiServices = [
ReportCompLogMockApi,
ReportModificationLogMockApi,
ReportPaymentLogMockApi,
+ ReportExcelLogMockApi,
];
diff --git a/src/app/modules/admin/report/excel-log/components/index.ts b/src/app/modules/admin/report/excel-log/components/index.ts
new file mode 100644
index 0000000..04759eb
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/components/index.ts
@@ -0,0 +1,3 @@
+import { ListComponent } from './list.component';
+
+export const COMPONENTS = [ListComponent];
diff --git a/src/app/modules/admin/report/excel-log/components/list.component.html b/src/app/modules/admin/report/excel-log/components/list.component.html
new file mode 100644
index 0000000..10d018c
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/components/list.component.html
@@ -0,0 +1,361 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 40
+ 60
+ 80
+ 100
+
+
+
+
+ LV.1
+ LV.2
+ LV.3
+ LV.4
+
+
+
+
+ 정상
+ 대기
+ 탈퇴
+ 휴면
+ 블랙
+ 정지
+
+
+
+
+ 카지노제한
+ 슬롯제한
+
+
+
+
+ 계좌입금
+
+
+
+
+ 카지노콤프
+ 슬롯콤프
+ 배팅콤프
+ 첫충콤프
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0; else noModificationLog"
+ >
+
+
+
+
+
요율
+
상부트리
+
관리
+
매장수
+
회원수
+
아이디
+
닉네임
+
예금주
+
연락처
+
정산
+
보유금
+
게임중머니
+
카지노->캐쉬
+
금일콤프
+
총입출
+
로그
+
상태
+
회원수
+
비고
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ modificationLog.id }}
+
+
+
+
+
+ {{ modificationLog.nickname }}
+
+
+
+ {{ modificationLog.accountHolder }}
+
+
+
+ {{ modificationLog.phoneNumber }}
+
+
+
+ {{ modificationLog.calculateType }}
+
+
+
+ 캐쉬{{ modificationLog.ownCash }} 콤프{{
+ modificationLog.ownComp
+ }}
+ 쿠폰{{ modificationLog.ownCoupon }}
+
+
+
+ {{ modificationLog.gameMoney }}
+
+
+
+
+
+
+
+
+ {{ modificationLog.todayComp }}P
+
+
+
+ 입금{{ modificationLog.totalDeposit }} 출금{{
+ modificationLog.totalWithdraw
+ }}
+ 차익{{ modificationLog.balance }}
+
+
+
+ 가입{{ modificationLog.registDate }} 최종{{
+ modificationLog.finalSigninDate
+ }}
+ IP{{ modificationLog.ip }}
+
+
+
+ {{ modificationLog.state }}
+
+
+
+ {{ modificationLog.memberCount }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ There are no modificationLogs!
+
+
+
+
+
diff --git a/src/app/modules/admin/report/excel-log/components/list.component.ts b/src/app/modules/admin/report/excel-log/components/list.component.ts
new file mode 100644
index 0000000..133cb9f
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/components/list.component.ts
@@ -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 { ExcelLog } from '../models/excel-log';
+import { ExcelLogPagination } from '../models/excel-log-pagination';
+import { ExcelLogService } from '../services/excel-log.service';
+import { Router } from '@angular/router';
+
+@Component({
+ selector: 'excel-log-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;
+
+ excelLogs$!: Observable;
+ users$!: Observable;
+
+ isLoading = false;
+ searchInputControl = new FormControl();
+ selectedExcelLog?: ExcelLog;
+ pagination?: ExcelLogPagination;
+
+ private _unsubscribeAll: Subject = new Subject();
+
+ /**
+ * Constructor
+ */
+ constructor(
+ private _changeDetectorRef: ChangeDetectorRef,
+ private _fuseConfirmationService: FuseConfirmationService,
+ private _formBuilder: FormBuilder,
+ private _excelLogService: ExcelLogService,
+ private router: Router
+ ) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Lifecycle hooks
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * On init
+ */
+ ngOnInit(): void {
+ // Get the pagination
+ this._excelLogService.pagination$
+ .pipe(takeUntil(this._unsubscribeAll))
+ .subscribe((pagination: ExcelLogPagination | undefined) => {
+ // Update the pagination
+ this.pagination = pagination;
+
+ // Mark for check
+ this._changeDetectorRef.markForCheck();
+ });
+
+ // Get the products
+ this.excelLogs$ = this._excelLogService.excelLogs$;
+ }
+
+ /**
+ * 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 excelLog 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._excelLogService.getExcelLogs(
+ 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;
+ }
+}
diff --git a/src/app/modules/admin/report/excel-log/excel-log.module.ts b/src/app/modules/admin/report/excel-log/excel-log.module.ts
new file mode 100644
index 0000000..6ef4e58
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/excel-log.module.ts
@@ -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 { excelLogRoutes } from './excel-log.routing';
+
+@NgModule({
+ declarations: [COMPONENTS],
+ imports: [
+ TranslocoModule,
+ SharedModule,
+ RouterModule.forChild(excelLogRoutes),
+
+ MatButtonModule,
+ MatFormFieldModule,
+ MatIconModule,
+ MatInputModule,
+ MatPaginatorModule,
+ MatProgressBarModule,
+ MatRippleModule,
+ MatSortModule,
+ MatSelectModule,
+ MatTooltipModule,
+ MatGridListModule,
+ MatSlideToggleModule,
+ MatRadioModule,
+ MatCheckboxModule,
+ ],
+})
+export class ExcelLogModule {}
diff --git a/src/app/modules/admin/report/excel-log/excel-log.routing.ts b/src/app/modules/admin/report/excel-log/excel-log.routing.ts
new file mode 100644
index 0000000..39f1f2d
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/excel-log.routing.ts
@@ -0,0 +1,24 @@
+import { Route } from '@angular/router';
+
+import { ListComponent } from './components/list.component';
+import { ViewComponent } from '../../member/user/components/view.component';
+
+import { ExcelLogsResolver } from './resolvers/excel-log.resolver';
+import { UserResolver } from '../../member/user/resolvers/user.resolver';
+
+export const excelLogRoutes: Route[] = [
+ {
+ path: '',
+ component: ListComponent,
+ resolve: {
+ excelLogs: ExcelLogsResolver,
+ },
+ },
+ {
+ path: ':id',
+ component: ViewComponent,
+ resolve: {
+ users: UserResolver,
+ },
+ },
+];
diff --git a/src/app/modules/admin/report/excel-log/models/excel-log-pagination.ts b/src/app/modules/admin/report/excel-log/models/excel-log-pagination.ts
new file mode 100644
index 0000000..20b415d
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/models/excel-log-pagination.ts
@@ -0,0 +1,8 @@
+export interface ExcelLogPagination {
+ length: number;
+ size: number;
+ page: number;
+ lastPage: number;
+ startIndex: number;
+ endIndex: number;
+}
diff --git a/src/app/modules/admin/report/excel-log/models/excel-log.ts b/src/app/modules/admin/report/excel-log/models/excel-log.ts
new file mode 100644
index 0000000..fc6cb61
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/models/excel-log.ts
@@ -0,0 +1,29 @@
+export interface ExcelLog {
+ 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;
+}
diff --git a/src/app/modules/admin/report/excel-log/resolvers/excel-log.resolver.ts b/src/app/modules/admin/report/excel-log/resolvers/excel-log.resolver.ts
new file mode 100644
index 0000000..b1c44ce
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/resolvers/excel-log.resolver.ts
@@ -0,0 +1,87 @@
+import { Injectable } from '@angular/core';
+import {
+ ActivatedRouteSnapshot,
+ Resolve,
+ Router,
+ RouterStateSnapshot,
+} from '@angular/router';
+import { catchError, Observable, throwError } from 'rxjs';
+
+import { ExcelLog } from '../models/excel-log';
+import { ExcelLogPagination } from '../models/excel-log-pagination';
+import { ExcelLogService } from '../services/excel-log.service';
+
+@Injectable({
+ providedIn: 'root',
+})
+export class ExcelLogResolver implements Resolve {
+ /**
+ * Constructor
+ */
+ constructor(
+ private _excelLogService: ExcelLogService,
+ private _router: Router
+ ) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Resolver
+ *
+ * @param route
+ * @param state
+ */
+ resolve(
+ route: ActivatedRouteSnapshot,
+ state: RouterStateSnapshot
+ ): Observable {
+ return this._excelLogService.getExcelLogById(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 ExcelLogsResolver implements Resolve {
+ /**
+ * Constructor
+ */
+ constructor(private _excelLogService: ExcelLogService) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Resolver
+ *
+ * @param route
+ * @param state
+ */
+ resolve(
+ route: ActivatedRouteSnapshot,
+ state: RouterStateSnapshot
+ ): Observable<{
+ pagination: ExcelLogPagination;
+ excelLogs: ExcelLog[];
+ }> {
+ return this._excelLogService.getExcelLogs();
+ }
+}
diff --git a/src/app/modules/admin/report/excel-log/services/excel-log.service.ts b/src/app/modules/admin/report/excel-log/services/excel-log.service.ts
new file mode 100644
index 0000000..9dc9ff4
--- /dev/null
+++ b/src/app/modules/admin/report/excel-log/services/excel-log.service.ts
@@ -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 { ExcelLog } from '../models/excel-log';
+import { ExcelLogPagination } from '../models/excel-log-pagination';
+
+@Injectable({
+ providedIn: 'root',
+})
+export class ExcelLogService {
+ // Private
+ private __pagination = new BehaviorSubject(
+ undefined
+ );
+ private __excelLog = new BehaviorSubject(undefined);
+ private __excelLogs = new BehaviorSubject(undefined);
+
+ /**
+ * Constructor
+ */
+ constructor(private _httpClient: HttpClient) {}
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Accessors
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Getter for pagination
+ */
+ get pagination$(): Observable {
+ return this.__pagination.asObservable();
+ }
+
+ /**
+ * Getter for excelLog
+ */
+ get excelLog$(): Observable {
+ return this.__excelLog.asObservable();
+ }
+
+ /**
+ * Getter for excelLogs
+ */
+ get excelLogs$(): Observable {
+ return this.__excelLogs.asObservable();
+ }
+
+ // -----------------------------------------------------------------------------------------------------
+ // @ Public methods
+ // -----------------------------------------------------------------------------------------------------
+
+ /**
+ * Get excelLogs
+ *
+ *
+ * @param page
+ * @param size
+ * @param sort
+ * @param order
+ * @param search
+ */
+ getExcelLogs(
+ page: number = 0,
+ size: number = 10,
+ sort: string = 'name',
+ order: 'asc' | 'desc' | '' = 'asc',
+ search: string = ''
+ ): Observable<{
+ pagination: ExcelLogPagination;
+ excelLogs: ExcelLog[];
+ }> {
+ return this._httpClient
+ .get<{
+ pagination: ExcelLogPagination;
+ excelLogs: ExcelLog[];
+ }>('api/apps/report/excel-log/excel-logs', {
+ params: {
+ page: '' + page,
+ size: '' + size,
+ sort,
+ order,
+ search,
+ },
+ })
+ .pipe(
+ tap((response) => {
+ this.__pagination.next(response.pagination);
+ this.__excelLogs.next(response.excelLogs);
+ })
+ );
+ }
+
+ /**
+ * Get product by id
+ */
+ getExcelLogById(id: string | null): Observable {
+ return this.__excelLogs.pipe(
+ take(1),
+ map((excelLogs) => {
+ // Find the product
+ const excelLog = excelLogs?.find((item) => item.id === id) || undefined;
+
+ // Update the product
+ this.__excelLog.next(excelLog);
+
+ // Return the product
+ return excelLog;
+ }),
+ switchMap((product) => {
+ if (!product) {
+ return throwError('Could not found product with id of ' + id + '!');
+ }
+
+ return of(product);
+ })
+ );
+ }
+
+ /**
+ * Create product
+ */
+ createExcelLog(): Observable {
+ return this.excelLogs$.pipe(
+ take(1),
+ switchMap((excelLogs) =>
+ this._httpClient
+ .post('api/apps/report/excel-log/product', {})
+ .pipe(
+ map((newExcelLog) => {
+ // Update the excelLogs with the new product
+ if (!!excelLogs) {
+ this.__excelLogs.next([newExcelLog, ...excelLogs]);
+ }
+
+ // Return the new product
+ return newExcelLog;
+ })
+ )
+ )
+ );
+ }
+}
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 2388385..5686ca7 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -32,5 +32,6 @@
"Money Log": "Money Logs",
"Comp Log": "Comp Logs",
"Modification Log": "Member Modification Logs",
- "Payment Log": "Manual Payment Logs"
+ "Payment Log": "Manual Payment Logs",
+ "Excel Log": "Excel Download Logs"
}
diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json
index eee5785..7413680 100644
--- a/src/assets/i18n/ko.json
+++ b/src/assets/i18n/ko.json
@@ -32,6 +32,7 @@
"Statistics": "종목별매출통계",
"Money Log": "머니활동 Logs",
"Comp Log": "콤프사용 Logs",
- "Modification Log": "회원수정로그",
- "Payment Log": "수동지급/회수 로그"
+ "Modification Log": "회원수정 로그",
+ "Payment Log": "수동지급/회수 로그",
+ "Excel Log": "엑셀다운 로그"
}