debian-mirror-gitlab/app/assets/javascripts/content_editor/constants/index.js

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

69 lines
2 KiB
JavaScript
Raw Normal View History

2021-09-04 01:27:46 +05:30
import { s__, __ } from '~/locale';
2021-04-29 21:17:54 +05:30
export const PROVIDE_SERIALIZER_OR_RENDERER_ERROR = s__(
'ContentEditor|You have to provide a renderMarkdown function or a custom serializer',
);
2021-06-08 01:23:25 +05:30
export const CONTENT_EDITOR_TRACKING_LABEL = 'content_editor';
export const TOOLBAR_CONTROL_TRACKING_ACTION = 'execute_toolbar_control';
2021-10-27 15:23:28 +05:30
export const BUBBLE_MENU_TRACKING_ACTION = 'execute_bubble_menu_control';
2021-06-08 01:23:25 +05:30
export const KEYBOARD_SHORTCUT_TRACKING_ACTION = 'execute_keyboard_shortcut';
export const INPUT_RULE_TRACKING_ACTION = 'execute_input_rule';
2021-09-04 01:27:46 +05:30
export const TEXT_STYLE_DROPDOWN_ITEMS = [
{
contentType: 'heading',
commandParams: { level: 1 },
editorCommand: 'setHeading',
label: __('Heading 1'),
},
{
contentType: 'heading',
editorCommand: 'setHeading',
commandParams: { level: 2 },
label: __('Heading 2'),
},
{
contentType: 'heading',
editorCommand: 'setHeading',
commandParams: { level: 3 },
label: __('Heading 3'),
},
{
contentType: 'heading',
editorCommand: 'setHeading',
commandParams: { level: 4 },
label: __('Heading 4'),
},
{
contentType: 'paragraph',
editorCommand: 'setParagraph',
label: __('Normal text'),
},
];
2021-10-27 15:23:28 +05:30
2022-05-07 20:08:51 +05:30
export const ALERT_EVENT = 'alert';
2022-11-25 23:54:43 +05:30
export const KEYDOWN_EVENT = 'keydown';
2021-11-11 11:23:49 +05:30
export const PARSE_HTML_PRIORITY_LOWEST = 1;
export const PARSE_HTML_PRIORITY_DEFAULT = 50;
export const PARSE_HTML_PRIORITY_HIGHEST = 100;
2022-03-02 08:16:31 +05:30
export const EXTENSION_PRIORITY_LOWER = 75;
/**
* 100 is the default priority in Tiptap
* https://tiptap.dev/guide/custom-extensions/#priority
*/
export const EXTENSION_PRIORITY_DEFAULT = 100;
2022-05-07 20:08:51 +05:30
export const EXTENSION_PRIORITY_HIGHEST = 200;
2022-10-11 01:57:18 +05:30
/**
* See lib/gitlab/file_type_detection.rb
*/
export const SAFE_VIDEO_EXT = ['mp4', 'm4v', 'mov', 'webm', 'ogv'];
export const SAFE_AUDIO_EXT = ['mp3', 'oga', 'ogg', 'spx', 'wav'];
export const DIAGRAM_LANGUAGES = ['plantuml', 'mermaid'];
2022-11-25 23:54:43 +05:30
export const TIPTAP_AUTOFOCUS_OPTIONS = [true, false, 'start', 'end', 'all'];