blob: 99f760641b153ec914a614706fa2cbd60fed4fa2 [file] [log] [blame]
Tao Zhou4fd32d52020-04-06 17:23:10 +02001/**
2 * @license
Ben Rohlfs94fcbbc2022-05-27 10:45:03 +02003 * Copyright 2020 Google LLC
4 * SPDX-License-Identifier: Apache-2.0
Tao Zhou4fd32d52020-04-06 17:23:10 +02005 */
6
7/**
Ben Rohlfsf00a6cc2022-03-02 12:03:41 +01008 * Tab names for primary tabs on change view page.
Tao Zhou4fd32d52020-04-06 17:23:10 +02009 */
Ole Rehmsenc24795b2020-12-10 10:09:36 +010010import {DiffViewMode} from '../api/diff';
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +010011import {DiffPreferencesInfo} from '../types/diff';
12import {EditPreferencesInfo, PreferencesInfo} from '../types/common';
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020013import {
Ben Rohlfsc830b272021-07-09 12:32:00 +020014 AuthType,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020015 ChangeStatus,
Ben Rohlfscab94212021-07-08 12:51:56 +020016 ConfigParameterInfoType,
Ben Rohlfsc830b272021-07-09 12:32:00 +020017 DefaultDisplayNameConfig,
18 EditableAccountField,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020019 FileInfoStatus,
20 GpgKeyInfoStatus,
21 HttpMethod,
Ben Rohlfscab94212021-07-08 12:51:56 +020022 InheritedBooleanInfoConfiguredValue,
Ben Rohlfsc830b272021-07-09 12:32:00 +020023 MergeabilityComputationBehavior,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020024 ProblemInfoStatus,
Ben Rohlfscab94212021-07-08 12:51:56 +020025 ProjectState,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020026 RequirementStatus,
27 ReviewerState,
28 RevisionKind,
29 SubmitType,
30} from '../api/rest-api';
31
32export {
Ben Rohlfsc830b272021-07-09 12:32:00 +020033 AuthType,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020034 ChangeStatus,
Ben Rohlfscab94212021-07-08 12:51:56 +020035 ConfigParameterInfoType,
Ben Rohlfsc830b272021-07-09 12:32:00 +020036 DefaultDisplayNameConfig,
37 EditableAccountField,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020038 FileInfoStatus,
39 GpgKeyInfoStatus,
40 HttpMethod,
Ben Rohlfscab94212021-07-08 12:51:56 +020041 InheritedBooleanInfoConfiguredValue,
Ben Rohlfsc830b272021-07-09 12:32:00 +020042 MergeabilityComputationBehavior,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020043 ProblemInfoStatus,
Ben Rohlfscab94212021-07-08 12:51:56 +020044 ProjectState,
Ben Rohlfs9ec190e2021-07-05 17:11:13 +020045 RequirementStatus,
46 ReviewerState,
47 RevisionKind,
48 SubmitType,
49};
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +010050
frankborden2@gmail.comc1ef1272021-09-03 15:42:38 +020051export enum AccountTag {
52 SERVICE_USER = 'SERVICE_USER',
53}
54
Ben Rohlfs132bf282022-08-15 19:29:22 +020055export enum Tab {
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +020056 FILES = 'files',
Gal Paikine6d6e1d2020-05-07 18:31:22 +020057 /**
Ben Rohlfs44496602020-11-20 16:58:45 +010058 * When renaming 'comments' or 'findings', UrlFormatter.java must be updated.
Gal Paikine6d6e1d2020-05-07 18:31:22 +020059 */
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +020060 COMMENT_THREADS = 'comments',
61 FINDINGS = 'findings',
Ben Rohlfs44496602020-11-20 16:58:45 +010062 CHECKS = 'checks',
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +020063}
Tao Zhou4fd32d52020-04-06 17:23:10 +020064
65/**
Ben Rohlfsf00a6cc2022-03-02 12:03:41 +010066 * Tag names of change log messages.
Tao Zhou0ae75962020-04-27 14:34:10 +020067 */
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +020068export enum MessageTag {
69 TAG_DELETE_REVIEWER = 'autogenerated:gerrit:deleteReviewer',
70 TAG_NEW_PATCHSET = 'autogenerated:gerrit:newPatchSet',
Ben Rohlfsc6449212022-09-05 10:37:53 +020071 TAG_NEW_PATCHSET_OUTDATED_VOTES = 'autogenerated:gerrit:newPatchSetOutdatedVotes',
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +020072 TAG_NEW_WIP_PATCHSET = 'autogenerated:gerrit:newWipPatchSet',
73 TAG_REVIEWER_UPDATE = 'autogenerated:gerrit:reviewerUpdate',
74 TAG_SET_PRIVATE = 'autogenerated:gerrit:setPrivate',
75 TAG_UNSET_PRIVATE = 'autogenerated:gerrit:unsetPrivate',
76 TAG_SET_READY = 'autogenerated:gerrit:setReadyForReview',
77 TAG_SET_WIP = 'autogenerated:gerrit:setWorkInProgress',
Dhruv Srivastavae5485712021-02-03 11:03:56 +010078 TAG_MERGED = 'autogenerated:gerrit:merged',
Dhruv Srivastava36158ca2021-03-16 13:53:29 +010079 TAG_REVERT = 'autogenerated:gerrit:revert',
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +020080}
Dhruv Srivastava9c853fc2020-05-05 13:48:25 +020081
82/**
Dhruv Srivastava310622d2022-02-23 11:21:26 +010083 * @description These values are directly displayed in the dialog to show progress of
84 * change.
85 */
86export enum ProgressStatus {
87 RUNNING = 'RUNNING',
88 FAILED = 'FAILED',
89 NOT_STARTED = 'NOT STARTED',
90 SUCCESSFUL = 'SUCCESSFUL',
91}
92
Dhruv980b9102022-05-05 14:22:24 +020093export enum ColumnNames {
94 SUBJECT = 'Subject',
95 // TODO(milutin) - remove once Submit Requirements are rolled out.
96 STATUS = 'Status',
97 OWNER = 'Owner',
98 REVIEWERS = 'Reviewers',
99 COMMENTS = 'Comments',
100 REPO = 'Repo',
101 BRANCH = 'Branch',
102 UPDATED = 'Updated',
103 SIZE = 'Size',
104 STATUS2 = ' Status ', // spaces to differentiate from old 'Status'
105}
106
Dhruv Srivastava310622d2022-02-23 11:21:26 +0100107/**
108 * @description Modes for gr-diff-cursor
Dhruv Srivastava9c853fc2020-05-05 13:48:25 +0200109 * The scroll behavior for the cursor. Values are 'never' and
110 * 'keep-visible'. 'keep-visible' will only scroll if the cursor is beyond
111 * the viewport.
112 */
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +0200113export enum ScrollMode {
114 KEEP_VISIBLE = 'keep-visible',
115 NEVER = 'never',
116}
Dmitrii Filippov4e4522e2020-05-06 12:50:49 +0200117
118/**
Ben Rohlfsf00a6cc2022-03-02 12:03:41 +0100119 * Special file paths
Dhruv Srivastavadc6739b2020-05-06 17:24:31 +0200120 */
Dmitrii Filippova1ae1ba2020-07-28 14:01:25 +0200121export enum SpecialFilePath {
122 PATCHSET_LEVEL_COMMENTS = '/PATCHSET_LEVEL',
123 COMMIT_MESSAGE = '/COMMIT_MSG',
124 MERGE_LIST = '/MERGE_LIST',
125}
Dmitrii Filippovbfbd2752020-07-28 14:51:25 +0200126
Ole Rehmsen2e08f5e2021-01-14 14:20:19 +0100127export {Side} from '../api/diff';
Ben Rohlfs322b13e2020-08-07 21:41:44 +0200128
129/**
Milutin Kristoficbec88f12020-10-13 16:53:28 +0200130 * https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#mergeable-info
131 */
132export enum MergeStrategy {
133 RECURSIVE = 'recursive',
134 RESOLVE = 'resolve',
135 SIMPLE_TWO_WAY_IN_CORE = 'simple-two-way-in-core',
136 OURS = 'ours',
137 THEIRS = 'theirs',
138}
139
Dmitrii Filippovd5b1dc72020-08-11 11:06:03 +0200140/**
141 * Enum for possible PermissionRuleInfo actions
142 * https://gerrit-review.googlesource.com/Documentation/rest-api-access.html#permission-info
143 */
144export enum PermissionAction {
145 ALLOW = 'ALLOW',
146 DENY = 'DENY',
147 BLOCK = 'BLOCK',
148 // Special values for global capabilities
149 INTERACTIVE = 'INTERACTIVE',
150 BATCH = 'BATCH',
151}
152
153/**
154 * This capability allows users to use the thread pool reserved for 'Non-Interactive Users'.
155 * https://gerrit-review.googlesource.com/Documentation/access-control.html#capability_priority
156 */
157export enum UserPriority {
158 BATCH = 'BATCH',
159 INTERACTIVE = 'INTERACTIVE',
160}
161
162/**
Dmitrii Filippovd5b1dc72020-08-11 11:06:03 +0200163 * The side on which the comment was added
164 * https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#comment-info
165 */
166export enum CommentSide {
167 REVISION = 'REVISION',
168 PARENT = 'PARENT',
169}
170
171/**
172 * Allowed app themes
173 * https://gerrit-review.googlesource.com/Documentation/rest-api-accounts.html#preferences-input
174 */
175export enum AppTheme {
Milutin Kristofic1a311a42022-05-18 22:20:03 +0200176 AUTO = 'AUTO',
Dmitrii Filippovd5b1dc72020-08-11 11:06:03 +0200177 DARK = 'DARK',
178 LIGHT = 'LIGHT',
179}
180
181/**
182 * Date formats in preferences
183 * https://gerrit-review.googlesource.com/Documentation/rest-api-accounts.html#preferences-input
184 */
185export enum DateFormat {
186 STD = 'STD',
187 US = 'US',
188 ISO = 'ISO',
189 EURO = 'EURO',
190 UK = 'UK',
191}
192
193/**
194 * Time formats in preferences
195 * https://gerrit-review.googlesource.com/Documentation/rest-api-accounts.html#preferences-input
196 */
197export enum TimeFormat {
198 HHMM_12 = 'HHMM_12',
199 HHMM_24 = 'HHMM_24',
200}
201
Ole Rehmsenc24795b2020-12-10 10:09:36 +0100202export {DiffViewMode};
Dmitrii Filippovd5b1dc72020-08-11 11:06:03 +0200203
204/**
205 * The type of email strategy to use.
206 * https://gerrit-review.googlesource.com/Documentation/rest-api-accounts.html#preferences-input
207 */
208export enum EmailStrategy {
209 ENABLED = 'ENABLED',
210 CC_ON_OWN_COMMENTS = 'CC_ON_OWN_COMMENTS',
Ben Rohlfs868fad42020-10-13 11:40:50 +0200211 ATTENTION_SET_ONLY = 'ATTENTION_SET_ONLY',
Dmitrii Filippovd5b1dc72020-08-11 11:06:03 +0200212 DISABLED = 'DISABLED',
213}
214
215/**
Dmitrii Filippovd883c792020-10-09 16:10:51 +0200216 * The type of email format to use.
217 * Doesn't mentioned in doc, but exists in Java class GeneralPreferencesInfo.
218 */
219
220export enum EmailFormat {
221 PLAINTEXT = 'PLAINTEXT',
222 HTML_PLAINTEXT = 'HTML_PLAINTEXT',
223}
224
225/**
Dmitrii Filippovd5b1dc72020-08-11 11:06:03 +0200226 * The base which should be pre-selected in the 'Diff Against' drop-down list when the change screen is opened for a merge commit
227 * https://gerrit-review.googlesource.com/Documentation/rest-api-accounts.html#preferences-input
228 */
229export enum DefaultBase {
230 AUTO_MERGE = 'AUTO_MERGE',
231 FIRST_PARENT = 'FIRST_PARENT',
232}
233
234/**
Dmitrii Filippovd5b1dc72020-08-11 11:06:03 +0200235 * how draft comments are handled
236 */
237export enum DraftsAction {
238 PUBLISH = 'PUBLISH',
239 PUBLISH_ALL_REVISIONS = 'PUBLISH_ALL_REVISIONS',
240 KEEP = 'KEEP',
241}
242
243export enum NotifyType {
244 NONE = 'NONE',
245 OWNER = 'OWNER',
246 OWNER_REVIEWERS = 'OWNER_REVIEWERS',
247 ALL = 'ALL',
248}
Dmitrii Filippovad72bf92020-10-14 10:37:58 +0200249
250/**
Dmitrii Filippov78448cd2020-10-26 17:39:11 +0100251 * Controls visibility of other users' dashboard pages and completion suggestions to web users
252 * https://gerrit-review.googlesource.com/Documentation/config-gerrit.html#accounts.visibility
253 */
254export enum AccountsVisibility {
255 ALL = 'ALL',
256 SAME_GROUP = 'SAME_GROUP',
257 VISIBLE_GROUP = 'VISIBLE_GROUP',
258 NONE = 'NONE',
259}
260
Ben Rohlfs75b390c2022-04-04 14:56:06 +0200261export function createDefaultPreferences(): PreferencesInfo {
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +0100262 return {
263 changes_per_page: 25,
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +0100264 diff_view: DiffViewMode.SIDE_BY_SIDE,
265 size_bar_in_change_table: true,
Ben Rohlfs75b390c2022-04-04 14:56:06 +0200266 my: [],
Milutin Kristofic9f86cc02022-09-15 23:04:58 +0200267 theme: AppTheme.AUTO,
Ben Rohlfs75b390c2022-04-04 14:56:06 +0200268 date_format: DateFormat.EURO,
269 time_format: TimeFormat.HHMM_24,
270 change_table: [],
271 email_strategy: EmailStrategy.ATTENTION_SET_ONLY,
272 default_base_for_merges: DefaultBase.AUTO_MERGE,
273 };
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +0100274}
275
276// These defaults should match the defaults in
277// java/com/google/gerrit/extensions/client/DiffPreferencesInfo.java
278// NOTE: There are some settings that don't apply to PolyGerrit
279// (Render mode being at least one of them).
280export function createDefaultDiffPrefs(): DiffPreferencesInfo {
281 return {
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +0100282 context: 10,
283 cursor_blink_rate: 0,
284 font_size: 12,
285 ignore_whitespace: 'IGNORE_NONE',
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +0100286 line_length: 100,
287 line_wrapping: false,
288 show_line_endings: true,
289 show_tabs: true,
290 show_whitespace_errors: true,
291 syntax_highlighting: true,
292 tab_size: 8,
Ben Rohlfs3a6ff7e2021-01-18 14:08:39 +0100293 };
294}
295
296// These defaults should match the defaults in
297// java/com/google/gerrit/extensions/client/EditPreferencesInfo.java
298export function createDefaultEditPrefs(): EditPreferencesInfo {
299 return {
300 auto_close_brackets: false,
301 cursor_blink_rate: 0,
302 hide_line_numbers: false,
303 hide_top_menu: false,
304 indent_unit: 2,
305 indent_with_tabs: false,
306 key_map_type: 'DEFAULT',
307 line_length: 100,
308 line_wrapping: false,
309 match_brackets: true,
310 show_base: false,
311 show_tabs: true,
312 show_whitespace_errors: true,
313 syntax_highlighting: true,
314 tab_size: 8,
315 theme: 'DEFAULT',
316 };
317}
Dhruv Srivastava36ff29d2021-09-22 18:31:02 +0200318
319export const RELOAD_DASHBOARD_INTERVAL_MS = 10 * 1000;
Frank Borden949a17d2021-09-28 11:30:41 +0000320
321export const SHOWN_ITEMS_COUNT = 25;
Dhruv Srivastavac01b0872022-02-02 10:33:00 +0000322
323export const WAITING = 'Waiting';