build out mock views
This commit is contained in:
parent
6dac3bfb02
commit
403b29a8b8
12 changed files with 1066 additions and 70 deletions
|
|
@ -14,6 +14,16 @@ class Api {
|
|||
// }
|
||||
// console.log("DEBUG: API - Fetched Client Details: ", data);
|
||||
const data = DataUtils.dummyClientData;
|
||||
console.log("DEBUG: API - getClientDetails result: ", data);
|
||||
return data;
|
||||
}
|
||||
|
||||
static async getJobDetails() {
|
||||
const data = DataUtils.dummyJobData.map((job) => ({
|
||||
...job,
|
||||
stepProgress: DataUtils.calculateStepProgress(job.steps),
|
||||
}));
|
||||
console.log("DEBUG: API - getJobDetails result: ", data);
|
||||
return data;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue