Tao Zhou | 4fd32d5 | 2020-04-06 17:23:10 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @license |
Ben Rohlfs | 94fcbbc | 2022-05-27 10:45:03 +0200 | [diff] [blame] | 3 | * Copyright 2020 Google LLC |
| 4 | * SPDX-License-Identifier: Apache-2.0 |
Tao Zhou | 4fd32d5 | 2020-04-06 17:23:10 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /** |
Ben Rohlfs | f00a6cc | 2022-03-02 12:03:41 +0100 | [diff] [blame] | 8 | * Tab names for primary tabs on change view page. |
Tao Zhou | 4fd32d5 | 2020-04-06 17:23:10 +0200 | [diff] [blame] | 9 | */ |
Ole Rehmsen | c24795b | 2020-12-10 10:09:36 +0100 | [diff] [blame] | 10 | import {DiffViewMode} from '../api/diff'; |
Ben Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 11 | import {DiffPreferencesInfo} from '../types/diff'; |
| 12 | import {EditPreferencesInfo, PreferencesInfo} from '../types/common'; |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 13 | import { |
Ben Rohlfs | c830b27 | 2021-07-09 12:32:00 +0200 | [diff] [blame] | 14 | AuthType, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 15 | ChangeStatus, |
Ben Rohlfs | cab9421 | 2021-07-08 12:51:56 +0200 | [diff] [blame] | 16 | ConfigParameterInfoType, |
Ben Rohlfs | c830b27 | 2021-07-09 12:32:00 +0200 | [diff] [blame] | 17 | DefaultDisplayNameConfig, |
| 18 | EditableAccountField, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 19 | FileInfoStatus, |
| 20 | GpgKeyInfoStatus, |
| 21 | HttpMethod, |
Ben Rohlfs | cab9421 | 2021-07-08 12:51:56 +0200 | [diff] [blame] | 22 | InheritedBooleanInfoConfiguredValue, |
Ben Rohlfs | c830b27 | 2021-07-09 12:32:00 +0200 | [diff] [blame] | 23 | MergeabilityComputationBehavior, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 24 | ProblemInfoStatus, |
Ben Rohlfs | cab9421 | 2021-07-08 12:51:56 +0200 | [diff] [blame] | 25 | ProjectState, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 26 | RequirementStatus, |
| 27 | ReviewerState, |
| 28 | RevisionKind, |
| 29 | SubmitType, |
| 30 | } from '../api/rest-api'; |
| 31 | |
| 32 | export { |
Ben Rohlfs | c830b27 | 2021-07-09 12:32:00 +0200 | [diff] [blame] | 33 | AuthType, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 34 | ChangeStatus, |
Ben Rohlfs | cab9421 | 2021-07-08 12:51:56 +0200 | [diff] [blame] | 35 | ConfigParameterInfoType, |
Ben Rohlfs | c830b27 | 2021-07-09 12:32:00 +0200 | [diff] [blame] | 36 | DefaultDisplayNameConfig, |
| 37 | EditableAccountField, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 38 | FileInfoStatus, |
| 39 | GpgKeyInfoStatus, |
| 40 | HttpMethod, |
Ben Rohlfs | cab9421 | 2021-07-08 12:51:56 +0200 | [diff] [blame] | 41 | InheritedBooleanInfoConfiguredValue, |
Ben Rohlfs | c830b27 | 2021-07-09 12:32:00 +0200 | [diff] [blame] | 42 | MergeabilityComputationBehavior, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 43 | ProblemInfoStatus, |
Ben Rohlfs | cab9421 | 2021-07-08 12:51:56 +0200 | [diff] [blame] | 44 | ProjectState, |
Ben Rohlfs | 9ec190e | 2021-07-05 17:11:13 +0200 | [diff] [blame] | 45 | RequirementStatus, |
| 46 | ReviewerState, |
| 47 | RevisionKind, |
| 48 | SubmitType, |
| 49 | }; |
Ben Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 50 | |
frankborden2@gmail.com | c1ef127 | 2021-09-03 15:42:38 +0200 | [diff] [blame] | 51 | export enum AccountTag { |
| 52 | SERVICE_USER = 'SERVICE_USER', |
| 53 | } |
| 54 | |
Ben Rohlfs | 132bf28 | 2022-08-15 19:29:22 +0200 | [diff] [blame] | 55 | export enum Tab { |
Dmitrii Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 56 | FILES = 'files', |
Gal Paikin | e6d6e1d | 2020-05-07 18:31:22 +0200 | [diff] [blame] | 57 | /** |
Ben Rohlfs | 4449660 | 2020-11-20 16:58:45 +0100 | [diff] [blame] | 58 | * When renaming 'comments' or 'findings', UrlFormatter.java must be updated. |
Gal Paikin | e6d6e1d | 2020-05-07 18:31:22 +0200 | [diff] [blame] | 59 | */ |
Dmitrii Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 60 | COMMENT_THREADS = 'comments', |
| 61 | FINDINGS = 'findings', |
Ben Rohlfs | 4449660 | 2020-11-20 16:58:45 +0100 | [diff] [blame] | 62 | CHECKS = 'checks', |
Dmitrii Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 63 | } |
Tao Zhou | 4fd32d5 | 2020-04-06 17:23:10 +0200 | [diff] [blame] | 64 | |
| 65 | /** |
Ben Rohlfs | f00a6cc | 2022-03-02 12:03:41 +0100 | [diff] [blame] | 66 | * Tag names of change log messages. |
Tao Zhou | 0ae7596 | 2020-04-27 14:34:10 +0200 | [diff] [blame] | 67 | */ |
Dmitrii Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 68 | export enum MessageTag { |
| 69 | TAG_DELETE_REVIEWER = 'autogenerated:gerrit:deleteReviewer', |
| 70 | TAG_NEW_PATCHSET = 'autogenerated:gerrit:newPatchSet', |
Ben Rohlfs | c644921 | 2022-09-05 10:37:53 +0200 | [diff] [blame] | 71 | TAG_NEW_PATCHSET_OUTDATED_VOTES = 'autogenerated:gerrit:newPatchSetOutdatedVotes', |
Dmitrii Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 72 | 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 Srivastava | e548571 | 2021-02-03 11:03:56 +0100 | [diff] [blame] | 78 | TAG_MERGED = 'autogenerated:gerrit:merged', |
Dhruv Srivastava | 36158ca | 2021-03-16 13:53:29 +0100 | [diff] [blame] | 79 | TAG_REVERT = 'autogenerated:gerrit:revert', |
Dmitrii Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 80 | } |
Dhruv Srivastava | 9c853fc | 2020-05-05 13:48:25 +0200 | [diff] [blame] | 81 | |
| 82 | /** |
Dhruv Srivastava | 310622d | 2022-02-23 11:21:26 +0100 | [diff] [blame] | 83 | * @description These values are directly displayed in the dialog to show progress of |
| 84 | * change. |
| 85 | */ |
| 86 | export enum ProgressStatus { |
| 87 | RUNNING = 'RUNNING', |
| 88 | FAILED = 'FAILED', |
| 89 | NOT_STARTED = 'NOT STARTED', |
| 90 | SUCCESSFUL = 'SUCCESSFUL', |
| 91 | } |
| 92 | |
Dhruv | 980b910 | 2022-05-05 14:22:24 +0200 | [diff] [blame] | 93 | export 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 Srivastava | 310622d | 2022-02-23 11:21:26 +0100 | [diff] [blame] | 107 | /** |
| 108 | * @description Modes for gr-diff-cursor |
Dhruv Srivastava | 9c853fc | 2020-05-05 13:48:25 +0200 | [diff] [blame] | 109 | * 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 Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 113 | export enum ScrollMode { |
| 114 | KEEP_VISIBLE = 'keep-visible', |
| 115 | NEVER = 'never', |
| 116 | } |
Dmitrii Filippov | 4e4522e | 2020-05-06 12:50:49 +0200 | [diff] [blame] | 117 | |
| 118 | /** |
Ben Rohlfs | f00a6cc | 2022-03-02 12:03:41 +0100 | [diff] [blame] | 119 | * Special file paths |
Dhruv Srivastava | dc6739b | 2020-05-06 17:24:31 +0200 | [diff] [blame] | 120 | */ |
Dmitrii Filippov | a1ae1ba | 2020-07-28 14:01:25 +0200 | [diff] [blame] | 121 | export enum SpecialFilePath { |
| 122 | PATCHSET_LEVEL_COMMENTS = '/PATCHSET_LEVEL', |
| 123 | COMMIT_MESSAGE = '/COMMIT_MSG', |
| 124 | MERGE_LIST = '/MERGE_LIST', |
| 125 | } |
Dmitrii Filippov | bfbd275 | 2020-07-28 14:51:25 +0200 | [diff] [blame] | 126 | |
Ole Rehmsen | 2e08f5e | 2021-01-14 14:20:19 +0100 | [diff] [blame] | 127 | export {Side} from '../api/diff'; |
Ben Rohlfs | 322b13e | 2020-08-07 21:41:44 +0200 | [diff] [blame] | 128 | |
| 129 | /** |
Milutin Kristofic | bec88f1 | 2020-10-13 16:53:28 +0200 | [diff] [blame] | 130 | * https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#mergeable-info |
| 131 | */ |
| 132 | export 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 Filippov | d5b1dc7 | 2020-08-11 11:06:03 +0200 | [diff] [blame] | 140 | /** |
| 141 | * Enum for possible PermissionRuleInfo actions |
| 142 | * https://gerrit-review.googlesource.com/Documentation/rest-api-access.html#permission-info |
| 143 | */ |
| 144 | export 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 | */ |
| 157 | export enum UserPriority { |
| 158 | BATCH = 'BATCH', |
| 159 | INTERACTIVE = 'INTERACTIVE', |
| 160 | } |
| 161 | |
| 162 | /** |
Dmitrii Filippov | d5b1dc7 | 2020-08-11 11:06:03 +0200 | [diff] [blame] | 163 | * The side on which the comment was added |
| 164 | * https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#comment-info |
| 165 | */ |
| 166 | export 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 | */ |
| 175 | export enum AppTheme { |
Milutin Kristofic | 1a311a4 | 2022-05-18 22:20:03 +0200 | [diff] [blame] | 176 | AUTO = 'AUTO', |
Dmitrii Filippov | d5b1dc7 | 2020-08-11 11:06:03 +0200 | [diff] [blame] | 177 | 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 | */ |
| 185 | export 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 | */ |
| 197 | export enum TimeFormat { |
| 198 | HHMM_12 = 'HHMM_12', |
| 199 | HHMM_24 = 'HHMM_24', |
| 200 | } |
| 201 | |
Ole Rehmsen | c24795b | 2020-12-10 10:09:36 +0100 | [diff] [blame] | 202 | export {DiffViewMode}; |
Dmitrii Filippov | d5b1dc7 | 2020-08-11 11:06:03 +0200 | [diff] [blame] | 203 | |
| 204 | /** |
| 205 | * The type of email strategy to use. |
| 206 | * https://gerrit-review.googlesource.com/Documentation/rest-api-accounts.html#preferences-input |
| 207 | */ |
| 208 | export enum EmailStrategy { |
| 209 | ENABLED = 'ENABLED', |
| 210 | CC_ON_OWN_COMMENTS = 'CC_ON_OWN_COMMENTS', |
Ben Rohlfs | 868fad4 | 2020-10-13 11:40:50 +0200 | [diff] [blame] | 211 | ATTENTION_SET_ONLY = 'ATTENTION_SET_ONLY', |
Dmitrii Filippov | d5b1dc7 | 2020-08-11 11:06:03 +0200 | [diff] [blame] | 212 | DISABLED = 'DISABLED', |
| 213 | } |
| 214 | |
| 215 | /** |
Dmitrii Filippov | d883c79 | 2020-10-09 16:10:51 +0200 | [diff] [blame] | 216 | * The type of email format to use. |
| 217 | * Doesn't mentioned in doc, but exists in Java class GeneralPreferencesInfo. |
| 218 | */ |
| 219 | |
| 220 | export enum EmailFormat { |
| 221 | PLAINTEXT = 'PLAINTEXT', |
| 222 | HTML_PLAINTEXT = 'HTML_PLAINTEXT', |
| 223 | } |
| 224 | |
| 225 | /** |
Dmitrii Filippov | d5b1dc7 | 2020-08-11 11:06:03 +0200 | [diff] [blame] | 226 | * 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 | */ |
| 229 | export enum DefaultBase { |
| 230 | AUTO_MERGE = 'AUTO_MERGE', |
| 231 | FIRST_PARENT = 'FIRST_PARENT', |
| 232 | } |
| 233 | |
| 234 | /** |
Dmitrii Filippov | d5b1dc7 | 2020-08-11 11:06:03 +0200 | [diff] [blame] | 235 | * how draft comments are handled |
| 236 | */ |
| 237 | export enum DraftsAction { |
| 238 | PUBLISH = 'PUBLISH', |
| 239 | PUBLISH_ALL_REVISIONS = 'PUBLISH_ALL_REVISIONS', |
| 240 | KEEP = 'KEEP', |
| 241 | } |
| 242 | |
| 243 | export enum NotifyType { |
| 244 | NONE = 'NONE', |
| 245 | OWNER = 'OWNER', |
| 246 | OWNER_REVIEWERS = 'OWNER_REVIEWERS', |
| 247 | ALL = 'ALL', |
| 248 | } |
Dmitrii Filippov | ad72bf9 | 2020-10-14 10:37:58 +0200 | [diff] [blame] | 249 | |
| 250 | /** |
Dmitrii Filippov | 78448cd | 2020-10-26 17:39:11 +0100 | [diff] [blame] | 251 | * 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 | */ |
| 254 | export enum AccountsVisibility { |
| 255 | ALL = 'ALL', |
| 256 | SAME_GROUP = 'SAME_GROUP', |
| 257 | VISIBLE_GROUP = 'VISIBLE_GROUP', |
| 258 | NONE = 'NONE', |
| 259 | } |
| 260 | |
Ben Rohlfs | 75b390c | 2022-04-04 14:56:06 +0200 | [diff] [blame] | 261 | export function createDefaultPreferences(): PreferencesInfo { |
Ben Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 262 | return { |
| 263 | changes_per_page: 25, |
Ben Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 264 | diff_view: DiffViewMode.SIDE_BY_SIDE, |
| 265 | size_bar_in_change_table: true, |
Ben Rohlfs | 75b390c | 2022-04-04 14:56:06 +0200 | [diff] [blame] | 266 | my: [], |
Milutin Kristofic | 9f86cc0 | 2022-09-15 23:04:58 +0200 | [diff] [blame^] | 267 | theme: AppTheme.AUTO, |
Ben Rohlfs | 75b390c | 2022-04-04 14:56:06 +0200 | [diff] [blame] | 268 | 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 Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 274 | } |
| 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). |
| 280 | export function createDefaultDiffPrefs(): DiffPreferencesInfo { |
| 281 | return { |
Ben Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 282 | context: 10, |
| 283 | cursor_blink_rate: 0, |
| 284 | font_size: 12, |
| 285 | ignore_whitespace: 'IGNORE_NONE', |
Ben Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 286 | 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 Rohlfs | 3a6ff7e | 2021-01-18 14:08:39 +0100 | [diff] [blame] | 293 | }; |
| 294 | } |
| 295 | |
| 296 | // These defaults should match the defaults in |
| 297 | // java/com/google/gerrit/extensions/client/EditPreferencesInfo.java |
| 298 | export 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 Srivastava | 36ff29d | 2021-09-22 18:31:02 +0200 | [diff] [blame] | 318 | |
| 319 | export const RELOAD_DASHBOARD_INTERVAL_MS = 10 * 1000; |
Frank Borden | 949a17d | 2021-09-28 11:30:41 +0000 | [diff] [blame] | 320 | |
| 321 | export const SHOWN_ITEMS_COUNT = 25; |
Dhruv Srivastava | c01b087 | 2022-02-02 10:33:00 +0000 | [diff] [blame] | 322 | |
| 323 | export const WAITING = 'Waiting'; |