cafa6db971
This change allows users to view and interact with their project member invitations from within the All Projects Dashboard. References #5855 Change-Id: If5b4af46924530c91f8a5c16bfb5134de313dc90
76 lines
2.0 KiB
TypeScript
76 lines
2.0 KiB
TypeScript
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import {
|
|
Project,
|
|
ProjectFields,
|
|
ProjectInvitation,
|
|
ProjectInvitationResponse,
|
|
ProjectLimits,
|
|
ProjectsApi,
|
|
ProjectsCursor,
|
|
ProjectsPage,
|
|
ProjectsStorageBandwidthDaily,
|
|
} from '@/types/projects';
|
|
|
|
/**
|
|
* Mock for ProjectsApi
|
|
*/
|
|
export class ProjectsApiMock implements ProjectsApi {
|
|
private mockProjects: Project[] = [];
|
|
private mockLimits: ProjectLimits;
|
|
private mockProjectsPage: ProjectsPage;
|
|
|
|
public setMockProjects(mockProjects: Project[]): void {
|
|
this.mockProjects = mockProjects;
|
|
}
|
|
|
|
public setMockLimits(mockLimits: ProjectLimits): void {
|
|
this.mockLimits = mockLimits;
|
|
}
|
|
|
|
create(_createProjectFields: ProjectFields): Promise<Project> {
|
|
throw new Error('not implemented');
|
|
}
|
|
|
|
delete(_projectId: string): Promise<void> {
|
|
throw new Error('not implemented');
|
|
}
|
|
|
|
get(): Promise<Project[]> {
|
|
return Promise.resolve(this.mockProjects);
|
|
}
|
|
|
|
getOwnedProjects(_cursor: ProjectsCursor): Promise<ProjectsPage> {
|
|
return Promise.resolve(this.mockProjectsPage);
|
|
}
|
|
|
|
update(_projectId: string, _projectFields: ProjectFields, _projectLimits: ProjectLimits): Promise<void> {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
getLimits(_projectId: string): Promise<ProjectLimits> {
|
|
return Promise.resolve(this.mockLimits);
|
|
}
|
|
|
|
getTotalLimits(): Promise<ProjectLimits> {
|
|
return Promise.resolve(this.mockLimits);
|
|
}
|
|
|
|
getSalt(): Promise<string> {
|
|
throw new Error('not implemented');
|
|
}
|
|
|
|
getDailyUsage(_projectId: string, _start: Date, _end: Date): Promise<ProjectsStorageBandwidthDaily> {
|
|
throw new Error('not implemented');
|
|
}
|
|
|
|
getUserInvitations(): Promise<ProjectInvitation[]> {
|
|
throw new Error('not implemented');
|
|
}
|
|
|
|
respondToInvitation(_projectID: string, _response: ProjectInvitationResponse): Promise<void> {
|
|
throw new Error('not implemented');
|
|
}
|
|
}
|