fix(core): update

This commit is contained in:
2020-06-21 18:41:04 +00:00
parent 273821b732
commit 765e56076d
8 changed files with 179 additions and 17 deletions

View File

@@ -1,12 +1,33 @@
import * as plugins from './ora.plugins';
import { OraProject } from './ora.classes.project';
import { OraTask } from './ora.classes.task';
export class OraList {
/**
* the interface for an ora list
*/
export interface IOraList {
actions: number;
archived: false;
color: string;
id: number;
list_type: number;
position: number;
project_id: number;
public: boolean;
title: string;
updated_at: string;
view_id: number;
}
export class OraList implements IOraList {
// ======
// STATIC
// ======
public static async getAllLists(oraProjectRef: OraProject) {
const response = await oraProjectRef.oraOrganizationRef.oraRef.request(`/projects/${oraProjectRef.id}/lists`, 'GET');
const response = await oraProjectRef.oraOrganizationRef.oraRef.request(
`/projects/${oraProjectRef.id}/lists`,
'GET'
);
const oraLists: OraList[] = [];
for (const dataObject of response.data) {
oraLists.push(new OraList(oraProjectRef, dataObject));
@@ -17,6 +38,17 @@ export class OraList {
// ========
// INSTANCE
// ========
public actions: number;
public archived: false;
public color: string;
public id: number;
public list_type: number;
public position: number;
public project_id: number;
public public: boolean;
public title: string;
public updated_at: string;
public view_id: number;
public oraProjectObjectRef: OraProject;
@@ -24,4 +56,8 @@ export class OraList {
this.oraProjectObjectRef = oraProjectRefArg;
Object.assign(this, creationObjectArg);
}
}
public async getTasks() {
return OraTask.getAllOraTasks(this);
}
}