2022-07-14 06:07:40 +00:00

75 lines
2.4 KiB
TypeScript

import { Injectable } from '@angular/core';
import { assign, cloneDeep } from 'lodash-es';
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
import { basicSetting as basicSettingData } from './data';
@Injectable({
providedIn: 'root',
})
export class BranchSettingMockApi {
private _basicSetting: any = basicSettingData;
/**
* Constructor
*/
constructor(private _fuseMockApiService: FuseMockApiService) {
// Register Mock API handlers
this.registerHandlers();
}
// -----------------------------------------------------------------------------------------------------
// @ Public methods
// -----------------------------------------------------------------------------------------------------
/**
* Register Mock API handlers
*/
registerHandlers(): void {
// -----------------------------------------------------------------------------------------------------
// @ BasicSetting - GET
// -----------------------------------------------------------------------------------------------------
this._fuseMockApiService
.onGet('api/apps/settings/branch', 300)
.reply(({ request }) => {
// Clone the deposits
let basicSetting: any | null = cloneDeep(this._basicSetting);
// Return the response
return [
200,
{
basicSetting,
},
];
});
// -----------------------------------------------------------------------------------------------------
// @ BasicSetting - PATCH
// -----------------------------------------------------------------------------------------------------
this._fuseMockApiService
.onPatch('api/apps/settings/branch')
.reply(({ request }) => {
// Get the id and deposit
const id = request.body.id;
const basicSetting = cloneDeep(request.body.basicSetting);
// Prepare the updated basicSetting
let updatedBasicSetting = null;
// Find the deposit and update it
// this._basicSetting.forEach((item, index, bs) => {
// if (item.id === id) {
// // Update the deposit
// basicSetting[index] = assign({}, basicSetting[index], deposit);
// // Store the updated deposit
// updatedDeposit = deposits[index];
// }
// });
// Return the response
return [200, basicSetting];
});
}
}