forked from github/plane
a048e513b7
* chore: spreadsheet view context * chore: spreadsheet context provider * chore: spreadsheet view context * chore: display filters and properties added in workspace view and code refactor * fix: build error fix * chore: set sub-issue display option to false for global views --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
108 lines
2.7 KiB
TypeScript
108 lines
2.7 KiB
TypeScript
import { Properties } from "./workspace";
|
|
|
|
export type TIssueViewOptions = "list" | "kanban" | "calendar" | "spreadsheet" | "gantt_chart";
|
|
|
|
export type TIssueGroupByOptions =
|
|
| "state"
|
|
| "priority"
|
|
| "labels"
|
|
| "created_by"
|
|
| "state_detail.group"
|
|
| "project"
|
|
| "assignees"
|
|
| null;
|
|
|
|
export type TIssueOrderByOptions =
|
|
| "-created_at"
|
|
| "created_at"
|
|
| "updated_at"
|
|
| "-updated_at"
|
|
| "priority"
|
|
| "-priority"
|
|
| "sort_order"
|
|
| "state__name"
|
|
| "-state__name"
|
|
| "assignees__first_name"
|
|
| "-assignees__first_name"
|
|
| "labels__name"
|
|
| "-labels__name"
|
|
| "target_date"
|
|
| "-target_date"
|
|
| "estimate_point"
|
|
| "-estimate_point"
|
|
| "start_date"
|
|
| "-start_date";
|
|
|
|
export interface IIssueFilterOptions {
|
|
assignees?: string[] | null;
|
|
created_by?: string[] | null;
|
|
labels?: string[] | null;
|
|
priority?: string[] | null;
|
|
start_date?: TStateGroups[] | null;
|
|
state?: string[] | null;
|
|
state_group?: TStateGroups[] | null;
|
|
subscriber?: string[] | null;
|
|
target_date?: string[] | null;
|
|
}
|
|
|
|
export interface IIssueDisplayFilterOptions {
|
|
group_by?: TIssueGroupByOptions;
|
|
layout?: TIssueViewOptions;
|
|
order_by?: TIssueOrderByOptions;
|
|
show_empty_groups?: boolean;
|
|
start_target_date?: boolean;
|
|
sub_issue?: boolean;
|
|
type?: "active" | "backlog" | null;
|
|
}
|
|
|
|
export interface IWorkspaceIssueFilterOptions {
|
|
assignees?: string[] | null;
|
|
created_by?: string[] | null;
|
|
labels?: string[] | null;
|
|
priority?: string[] | null;
|
|
state_group?: string[] | null;
|
|
subscriber?: string[] | null;
|
|
start_date?: string[] | null;
|
|
target_date?: string[] | null;
|
|
project?: string[] | null;
|
|
}
|
|
|
|
export interface IWorkspaceGlobalViewDisplayFilterOptions {
|
|
order_by?: string | undefined;
|
|
type?: "active" | "backlog" | null;
|
|
sub_issue?: boolean;
|
|
layout?: TIssueViewOptions;
|
|
}
|
|
|
|
export interface IWorkspaceViewIssuesParams {
|
|
assignees?: string | undefined;
|
|
created_by?: string | undefined;
|
|
labels?: string | undefined;
|
|
priority?: string | undefined;
|
|
start_date?: string | undefined;
|
|
state?: string | undefined;
|
|
state_group?: string | undefined;
|
|
subscriber?: string | undefined;
|
|
target_date?: string | undefined;
|
|
project?: string | undefined;
|
|
order_by?: string | undefined;
|
|
type?: "active" | "backlog" | undefined;
|
|
sub_issue?: boolean;
|
|
}
|
|
|
|
export interface IProjectViewProps {
|
|
display_filters: IIssueDisplayFilterOptions | undefined;
|
|
filters: IIssueFilterOptions;
|
|
}
|
|
|
|
export interface IWorkspaceViewProps {
|
|
filters: IIssueFilterOptions;
|
|
display_filters: IIssueDisplayFilterOptions | undefined;
|
|
display_properties: Properties;
|
|
}
|
|
export interface IWorkspaceGlobalViewProps {
|
|
filters: IWorkspaceIssueFilterOptions;
|
|
display_filters: IWorkspaceIssueDisplayFilterOptions | undefined;
|
|
display_properties: Properties | undefined;
|
|
}
|