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

141 lines
3.3 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: {
isMarkdownForm(form) {
return form && !form.find('.js-vue-markdown-field').length;
},
previewMarkdownTab(event, form) {
if (event.target.blur) event.target.blur();
if (this.isMarkdownForm(form)) return;
this.$emit('preview-markdown');
},
writeMarkdownTab(event, form) {
if (event.target.blur) event.target.blur();
if (this.isMarkdownForm(form)) return;
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="md-header-tab"
:class="{ active: !previewMarkdown }"
>
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
class="md-header-tab"
2018-03-27 19:54:05 +05:30
:class="{ active: previewMarkdown }"
>
2017-09-10 17:25:29 +05:30
<a
2018-03-17 18:26:18 +05:30
class="js-preview-link"
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="md-header-toolbar"
:class="{ active: !previewMarkdown }"
>
<toolbar-button
tag="**"
button-title="Add bold text"
icon="bold"
/>
<toolbar-button
tag="*"
button-title="Add italic text"
icon="italic"
/>
<toolbar-button
tag="> "
:prepend="true"
button-title="Insert a quote"
icon="quote"
/>
<toolbar-button
tag="`"
tag-block="```"
button-title="Insert code"
icon="code"
/>
<toolbar-button
tag="* "
:prepend="true"
button-title="Add a bullet list"
icon="list-bulleted"
/>
<toolbar-button
tag="1. "
:prepend="true"
button-title="Add a numbered list"
icon="list-numbered"
/>
<toolbar-button
tag="* [ ] "
:prepend="true"
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>