2021-06-08 01:23:25 +05:30
|
|
|
import boardListsQuery from 'ee_else_ce/boards/graphql/board_lists.query.graphql';
|
2021-03-11 19:13:27 +05:30
|
|
|
import { __ } from '~/locale';
|
2021-04-29 21:17:54 +05:30
|
|
|
import updateEpicSubscriptionMutation from '~/sidebar/queries/update_epic_subscription.mutation.graphql';
|
|
|
|
import updateEpicTitleMutation from '~/sidebar/queries/update_epic_title.mutation.graphql';
|
|
|
|
import boardBlockingIssuesQuery from './graphql/board_blocking_issues.query.graphql';
|
2021-06-08 01:23:25 +05:30
|
|
|
import destroyBoardListMutation from './graphql/board_list_destroy.mutation.graphql';
|
|
|
|
import updateBoardListMutation from './graphql/board_list_update.mutation.graphql';
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
import issueSetSubscriptionMutation from './graphql/issue_set_subscription.mutation.graphql';
|
|
|
|
import issueSetTitleMutation from './graphql/issue_set_title.mutation.graphql';
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
/* eslint-disable-next-line @gitlab/require-i18n-strings */
|
|
|
|
export const AssigneeIdParamValues = ['Any', 'None'];
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
export const issuableTypes = {
|
|
|
|
issue: 'issue',
|
|
|
|
epic: 'epic',
|
|
|
|
};
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
export const BoardType = {
|
|
|
|
project: 'project',
|
|
|
|
group: 'group',
|
|
|
|
};
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
export const ListType = {
|
|
|
|
assignee: 'assignee',
|
|
|
|
milestone: 'milestone',
|
2021-03-11 19:13:27 +05:30
|
|
|
iteration: 'iteration',
|
2019-12-21 20:55:43 +05:30
|
|
|
backlog: 'backlog',
|
|
|
|
closed: 'closed',
|
|
|
|
label: 'label',
|
|
|
|
};
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
export const ListTypeTitles = {
|
|
|
|
assignee: __('Assignee'),
|
|
|
|
milestone: __('Milestone'),
|
|
|
|
iteration: __('Iteration'),
|
|
|
|
label: __('Label'),
|
2021-09-04 01:27:46 +05:30
|
|
|
backlog: __('Open'),
|
2021-03-11 19:13:27 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
export const formType = {
|
|
|
|
new: 'new',
|
|
|
|
delete: 'delete',
|
|
|
|
edit: 'edit',
|
|
|
|
};
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
export const toggleFormEventPrefix = {
|
|
|
|
epic: 'toggle-epic-form-',
|
|
|
|
issue: 'toggle-issue-form-',
|
|
|
|
};
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
export const inactiveId = 0;
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
export const ISSUABLE = 'issuable';
|
|
|
|
export const LIST = 'list';
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
export const flashAnimationDuration = 2000;
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
export const listsQuery = {
|
|
|
|
[issuableTypes.issue]: {
|
|
|
|
query: boardListsQuery,
|
|
|
|
},
|
2019-12-21 20:55:43 +05:30
|
|
|
};
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
export const blockingIssuablesQueries = {
|
|
|
|
[issuableTypes.issue]: {
|
|
|
|
query: boardBlockingIssuesQuery,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
export const updateListQueries = {
|
|
|
|
[issuableTypes.issue]: {
|
|
|
|
mutation: updateBoardListMutation,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const deleteListQueries = {
|
|
|
|
[issuableTypes.issue]: {
|
|
|
|
mutation: destroyBoardListMutation,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
export const titleQueries = {
|
|
|
|
[issuableTypes.issue]: {
|
|
|
|
mutation: issueSetTitleMutation,
|
|
|
|
},
|
|
|
|
[issuableTypes.epic]: {
|
|
|
|
mutation: updateEpicTitleMutation,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const subscriptionQueries = {
|
|
|
|
[issuableTypes.issue]: {
|
|
|
|
mutation: issueSetSubscriptionMutation,
|
|
|
|
},
|
|
|
|
[issuableTypes.epic]: {
|
|
|
|
mutation: updateEpicSubscriptionMutation,
|
|
|
|
},
|
|
|
|
};
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
export const FilterFields = {
|
|
|
|
[issuableTypes.issue]: [
|
|
|
|
'assigneeUsername',
|
|
|
|
'assigneeWildcardId',
|
|
|
|
'authorUsername',
|
2022-01-26 12:08:38 +05:30
|
|
|
'confidential',
|
2021-09-04 01:27:46 +05:30
|
|
|
'labelName',
|
|
|
|
'milestoneTitle',
|
2022-01-26 12:08:38 +05:30
|
|
|
'milestoneWildcardId',
|
2021-09-04 01:27:46 +05:30
|
|
|
'myReactionEmoji',
|
|
|
|
'releaseTag',
|
|
|
|
'search',
|
2021-10-27 15:23:28 +05:30
|
|
|
'types',
|
|
|
|
'weight',
|
2021-09-04 01:27:46 +05:30
|
|
|
],
|
|
|
|
};
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
/* eslint-disable @gitlab/require-i18n-strings */
|
|
|
|
export const AssigneeFilterType = {
|
|
|
|
any: 'Any',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const MilestoneFilterType = {
|
|
|
|
any: 'Any',
|
|
|
|
none: 'None',
|
|
|
|
started: 'Started',
|
|
|
|
upcoming: 'Upcoming',
|
|
|
|
};
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
export const DraggableItemTypes = {
|
|
|
|
card: 'card',
|
|
|
|
list: 'list',
|
|
|
|
};
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
export const MilestoneIDs = {
|
|
|
|
NONE: 0,
|
|
|
|
ANY: -1,
|
|
|
|
};
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
export default {
|
|
|
|
BoardType,
|
|
|
|
ListType,
|
|
|
|
};
|