debian-mirror-gitlab/app/assets/javascripts/editor/constants.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

167 lines
4.8 KiB
JavaScript
Raw Normal View History

2023-03-04 22:38:38 +05:30
import { MODIFIER_KEY } from '~/constants';
2021-09-30 23:02:18 +05:30
import { DEFAULT_DEBOUNCE_AND_THROTTLE_MS } from '~/lib/utils/constants';
2023-03-04 22:38:38 +05:30
import { s__, __, sprintf } from '~/locale';
2020-11-24 15:15:51 +05:30
export const URI_PREFIX = 'gitlab';
2021-09-30 23:02:18 +05:30
export const CONTENT_UPDATE_DEBOUNCE = DEFAULT_DEBOUNCE_AND_THROTTLE_MS;
2021-02-22 17:27:13 +05:30
2021-03-11 19:13:27 +05:30
export const EDITOR_READY_EVENT = 'editor-ready';
export const EDITOR_TYPE_CODE = 'vs.editor.ICodeEditor';
export const EDITOR_TYPE_DIFF = 'vs.editor.IDiffEditor';
2021-04-17 20:07:23 +05:30
export const EDITOR_CODE_INSTANCE_FN = 'createInstance';
export const EDITOR_DIFF_INSTANCE_FN = 'createDiffInstance';
2022-06-21 17:19:12 +05:30
export const EDITOR_TOOLBAR_LEFT_GROUP = 'left';
export const EDITOR_TOOLBAR_RIGHT_GROUP = 'right';
2021-12-11 22:18:48 +05:30
export const SOURCE_EDITOR_INSTANCE_ERROR_NO_EL = s__(
'SourceEditor|"el" parameter is required for createInstance()',
);
export const ERROR_INSTANCE_REQUIRED_FOR_EXTENSION = s__(
'SourceEditor|Source Editor instance is required to set up an extension.',
);
export const EDITOR_EXTENSION_DEFINITION_ERROR = s__(
'SourceEditor|Extension definition should be either a class or a function',
);
export const EDITOR_EXTENSION_NO_DEFINITION_ERROR = s__(
'SourceEditor|`definition` property is expected on the extension.',
);
export const EDITOR_EXTENSION_DEFINITION_TYPE_ERROR = s__(
'SourceEditor|Extension definition should be either class, function, or an Array of definitions.',
);
export const EDITOR_EXTENSION_NOT_SPECIFIED_FOR_UNUSE_ERROR = s__(
'SourceEditor|No extension for unuse has been specified.',
);
export const EDITOR_EXTENSION_NOT_REGISTERED_ERROR = s__('SourceEditor|%{name} is not registered.');
export const EDITOR_EXTENSION_NAMING_CONFLICT_ERROR = s__(
'SourceEditor|Name conflict for "%{prop}()" method.',
);
export const EDITOR_EXTENSION_STORE_IS_MISSING_ERROR = s__(
'SourceEditor|Extensions Store is required to check for an extension.',
);
2021-03-08 18:12:59 +05:30
//
// EXTENSIONS' CONSTANTS
//
2022-01-26 12:08:38 +05:30
// Source Editor Base Extension
export const EXTENSION_BASE_LINE_LINK_ANCHOR_CLASS = 'link-anchor';
export const EXTENSION_BASE_LINE_NUMBERS_CLASS = 'line-numbers';
2021-03-08 18:12:59 +05:30
// For CI config schemas the filename must match
// '*.gitlab-ci.yml' regardless of project configuration.
// https://gitlab.com/gitlab-org/gitlab/-/issues/293641
export const EXTENSION_CI_SCHEMA_FILE_NAME_MATCH = '.gitlab-ci.yml';
2021-10-27 15:23:28 +05:30
export const EXTENSION_MARKDOWN_PREVIEW_PANEL_CLASS = 'md';
export const EXTENSION_MARKDOWN_PREVIEW_PANEL_PARENT_CLASS = 'source-editor-preview';
export const EXTENSION_MARKDOWN_PREVIEW_ACTION_ID = 'markdown-preview';
2022-07-16 23:28:13 +05:30
export const EXTENSION_MARKDOWN_PREVIEW_HIDE_ACTION_ID = 'markdown-preview-hide';
2021-10-27 15:23:28 +05:30
export const EXTENSION_MARKDOWN_PREVIEW_PANEL_WIDTH = 0.5; // 50% of the width
export const EXTENSION_MARKDOWN_PREVIEW_UPDATE_DELAY = 250; // ms
2022-07-16 23:28:13 +05:30
export const EXTENSION_MARKDOWN_PREVIEW_LABEL = __('Preview Markdown');
export const EXTENSION_MARKDOWN_HIDE_PREVIEW_LABEL = __('Hide Live Preview');
2023-03-04 22:38:38 +05:30
export const EXTENSION_MARKDOWN_BUTTONS = [
{
id: 'bold',
label: sprintf(s__('MarkdownEditor|Add bold text (%{modifierKey}B)'), {
modifierKey: MODIFIER_KEY,
}),
data: {
mdTag: '**',
mdShortcuts: '["mod+b"]',
},
},
{
id: 'italic',
label: sprintf(s__('MarkdownEditor|Add italic text (%{modifierKey}I)'), {
modifierKey: MODIFIER_KEY,
}),
data: {
mdTag: '_',
mdShortcuts: '["mod+i"]',
},
},
{
id: 'strikethrough',
label: sprintf(s__('MarkdownEditor|Add strikethrough text (%{modifierKey}⇧X)'), {
modifierKey: MODIFIER_KEY,
}),
data: {
mdTag: '~~',
mdShortcuts: '["mod+shift+x]',
},
},
{
id: 'quote',
label: __('Insert a quote'),
data: {
mdTag: '> ',
mdPrepend: true,
},
},
{
id: 'code',
label: __('Insert code'),
data: {
mdTag: '`',
mdBlock: '```',
},
},
{
id: 'link',
label: sprintf(s__('MarkdownEditor|Add a link (%{modifier_key}K)'), {
modifierKey: MODIFIER_KEY,
}),
data: {
mdTag: '[{text}](url)',
mdSelect: 'url',
mdShortcuts: '["mod+k"]',
},
},
{
id: 'list-bulleted',
label: __('Add a bullet list'),
data: {
mdTag: '- ',
mdPrepend: true,
},
},
{
id: 'list-numbered',
label: __('Add a numbered list'),
data: {
mdTag: '1. ',
mdPrepend: true,
},
},
{
id: 'list-task',
label: __('Add a checklist'),
data: {
mdTag: '- [ ] ',
mdPrepend: true,
},
},
{
id: 'details-block',
label: __('Add a collapsible section'),
data: {
mdTag: '<details><summary>Click to expand</summary>\n{text}\n</details>',
mdPrepend: true,
mdSelect: __('Click to expand'),
},
},
{
id: 'table',
label: __('Add a table'),
data: {
/* eslint-disable-next-line @gitlab/require-i18n-strings */
mdTag: '| header | header |\n| ------ | ------ |\n| | |\n| | |',
mdPrepend: true,
},
},
];