debian-mirror-gitlab/app/assets/javascripts/vue_shared/components/markdown/header.vue

143 lines
3.4 KiB
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2017-09-10 17:25:29 +05:30
import tooltip from '../../directives/tooltip';
import toolbarButton from './toolbar_button.vue';
2018-03-17 18:26:18 +05:30
import icon from '../icon.vue';
2017-09-10 17:25:29 +05:30
export default {
directives: {
tooltip,
},
components: {
toolbarButton,
2018-03-17 18:26:18 +05:30
icon,
2017-09-10 17:25:29 +05:30
},
2018-03-17 18:26:18 +05:30
props: {
previewMarkdown: {
type: Boolean,
required: true,
2017-09-10 17:25:29 +05:30
},
},
mounted() {
2018-03-17 18:26:18 +05:30
$(document).on('markdown-preview:show.vue', this.previewMarkdownTab);
$(document).on('markdown-preview:hide.vue', this.writeMarkdownTab);
2017-09-10 17:25:29 +05:30
},
beforeDestroy() {
2018-03-17 18:26:18 +05:30
$(document).off('markdown-preview:show.vue', this.previewMarkdownTab);
$(document).off('markdown-preview:hide.vue', this.writeMarkdownTab);
},
methods: {
2018-10-15 14:42:47 +05:30
isValid(form) {
return !form ||
2018-11-08 19:23:39 +05:30
form.find('.js-vue-markdown-field').length &&
$(this.$el).closest('form')[0] === form[0];
2018-03-17 18:26:18 +05:30
},
previewMarkdownTab(event, form) {
if (event.target.blur) event.target.blur();
2018-10-15 14:42:47 +05:30
if (!this.isValid(form)) return;
2018-03-17 18:26:18 +05:30
this.$emit('preview-markdown');
},
writeMarkdownTab(event, form) {
if (event.target.blur) event.target.blur();
2018-10-15 14:42:47 +05:30
if (!this.isValid(form)) return;
2018-03-17 18:26:18 +05:30
this.$emit('write-markdown');
},
2017-09-10 17:25:29 +05:30
},
};
</script>
<template>
<div class="md-header">
<ul class="nav-links clearfix">
2018-03-17 18:26:18 +05:30
<li
:class="{ active: !previewMarkdown }"
2018-11-08 19:23:39 +05:30
class="md-header-tab"
2018-03-17 18:26:18 +05:30
>
2017-09-10 17:25:29 +05:30
<a
2018-03-17 18:26:18 +05:30
class="js-write-link"
2017-09-10 17:25:29 +05:30
href="#md-write-holder"
tabindex="-1"
2018-03-17 18:26:18 +05:30
@click.prevent="writeMarkdownTab($event)"
>
2017-09-10 17:25:29 +05:30
Write
</a>
</li>
2018-03-17 18:26:18 +05:30
<li
2018-03-27 19:54:05 +05:30
:class="{ active: previewMarkdown }"
2018-11-08 19:23:39 +05:30
class="md-header-tab"
2018-03-27 19:54:05 +05:30
>
2017-09-10 17:25:29 +05:30
<a
2018-11-08 19:23:39 +05:30
class="js-preview-link js-md-preview-button"
2017-09-10 17:25:29 +05:30
href="#md-preview-holder"
tabindex="-1"
2018-03-17 18:26:18 +05:30
@click.prevent="previewMarkdownTab($event)"
>
2017-09-10 17:25:29 +05:30
Preview
</a>
</li>
2018-03-17 18:26:18 +05:30
<li
:class="{ active: !previewMarkdown }"
2018-11-08 19:23:39 +05:30
class="md-header-toolbar"
2018-03-17 18:26:18 +05:30
>
<toolbar-button
tag="**"
button-title="Add bold text"
icon="bold"
/>
<toolbar-button
tag="*"
button-title="Add italic text"
icon="italic"
/>
<toolbar-button
:prepend="true"
2018-11-08 19:23:39 +05:30
tag="> "
2018-03-17 18:26:18 +05:30
button-title="Insert a quote"
icon="quote"
/>
<toolbar-button
tag="`"
tag-block="```"
button-title="Insert code"
icon="code"
/>
<toolbar-button
:prepend="true"
2018-11-08 19:23:39 +05:30
tag="* "
2018-03-17 18:26:18 +05:30
button-title="Add a bullet list"
icon="list-bulleted"
/>
<toolbar-button
:prepend="true"
2018-11-08 19:23:39 +05:30
tag="1. "
2018-03-17 18:26:18 +05:30
button-title="Add a numbered list"
icon="list-numbered"
/>
<toolbar-button
:prepend="true"
2018-11-08 19:23:39 +05:30
tag="* [ ] "
2018-03-17 18:26:18 +05:30
button-title="Add a task list"
icon="task-done"
/>
<button
v-tooltip
aria-label="Go full screen"
class="toolbar-btn toolbar-fullscreen-btn js-zen-enter"
data-container="body"
tabindex="-1"
title="Go full screen"
type="button"
>
<icon
name="screen-full"
/>
</button>
2017-09-10 17:25:29 +05:30
</li>
</ul>
</div>
</template>