* use common getIssues from issue service instead of multiple different services for modules and cycles * add group by to server constants * change issue detail's overview's is loading logic to the loader from the store * add extra method in local storage * Kanban render 10 issues by default per column * fix height in group virtualization * remove debounced code for Kanban fetching more issues per column * fix lint errors
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
export const ALL_ISSUES = "All Issues";
|
|
|
|
export enum EIssueGroupByToServerOptions {
|
|
"state" = "state_id",
|
|
"priority" = "priority",
|
|
"labels" = "labels__id",
|
|
"state_detail.group" = "state__group",
|
|
"assignees" = "assignees__id",
|
|
"cycle" = "cycle_id",
|
|
"module" = "issue_module__module_id",
|
|
"target_date" = "target_date",
|
|
"project" = "project_id",
|
|
"created_by" = "created_by",
|
|
}
|
|
|
|
export enum EIssueGroupBYServerToProperty {
|
|
"state_id" = "state_id",
|
|
"priority" = "priority",
|
|
"labels__id" = "label_ids",
|
|
"state__group" = "state__group",
|
|
"assignees__id" = "assignee_ids",
|
|
"cycle_id" = "cycle_id",
|
|
"issue_module__module_id" = "module_ids",
|
|
"target_date" = "target_date",
|
|
"project_id" = "project_id",
|
|
"created_by" = "created_by",
|
|
}
|
|
|
|
export enum EServerGroupByToFilterOptions {
|
|
"state_id" = "state",
|
|
"priority" = "priority",
|
|
"labels__id" = "labels",
|
|
"state__group" = "state_group",
|
|
"assignees__id" = "assignees",
|
|
"cycle_id" = "cycle",
|
|
"issue_module__module_id" = "module",
|
|
"target_date" = "target_date",
|
|
"project_id" = "project",
|
|
"created_by" = "created_by",
|
|
}
|