summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/markdown/editor_mode_dropdown.vue
blob: 6702a81e74756270e298bb5678f69061297aaf1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<script>
import { GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { __ } from '~/locale';

export default {
  components: {
    GlDropdown,
    GlDropdownItem,
  },
  props: {
    size: {
      type: String,
      required: false,
      default: 'medium',
    },
    value: {
      type: String,
      required: true,
    },
  },
  computed: {
    markdownEditorSelected() {
      return this.value === 'markdown';
    },
    text() {
      return this.markdownEditorSelected ? __('View rich text') : __('View markdown');
    },
  },
};
</script>
<template>
  <gl-dropdown
    category="tertiary"
    data-qa-selector="editing_mode_switcher"
    :size="size"
    :text="text"
    right
  >
    <gl-dropdown-item
      is-check-item
      :is-checked="!markdownEditorSelected"
      @click="$emit('input', 'richText')"
      ><div class="gl-font-weight-bold">{{ __('Rich text') }}</div>
      <div class="gl-text-secondary">
        {{ __('View the formatted output in real-time as you edit.') }}
      </div>
    </gl-dropdown-item>
    <gl-dropdown-item
      is-check-item
      :is-checked="markdownEditorSelected"
      @click="$emit('input', 'markdown')"
      ><div class="gl-font-weight-bold">{{ __('Markdown') }}</div>
      <div class="gl-text-secondary">
        {{ __('View and edit markdown, with the option to preview the formatted output.') }}
      </div></gl-dropdown-item
    >
  </gl-dropdown>
</template>