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

122 lines
2.8 KiB
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
export default {
props: {
2018-03-17 18:26:18 +05:30
markdownDocsPath: {
2017-09-10 17:25:29 +05:30
type: String,
required: true,
},
2018-03-17 18:26:18 +05:30
quickActionsDocsPath: {
type: String,
required: false,
default: '',
},
canAttachFile: {
type: Boolean,
required: false,
default: true,
},
},
computed: {
hasQuickActionsDocsPath() {
return this.quickActionsDocsPath !== '';
},
2017-09-10 17:25:29 +05:30
},
};
</script>
<template>
<div class="comment-toolbar clearfix">
<div class="toolbar-text">
2018-03-17 18:26:18 +05:30
<template v-if="!hasQuickActionsDocsPath && markdownDocsPath">
<a
:href="markdownDocsPath"
target="_blank"
tabindex="-1"
>
Markdown is supported
</a>
</template>
<template v-if="hasQuickActionsDocsPath && markdownDocsPath">
<a
:href="markdownDocsPath"
target="_blank"
tabindex="-1"
>
Markdown
</a>
and
<a
:href="quickActionsDocsPath"
target="_blank"
tabindex="-1"
>
quick actions
</a>
are supported
</template>
2017-09-10 17:25:29 +05:30
</div>
2018-03-17 18:26:18 +05:30
<span
v-if="canAttachFile"
class="uploading-container"
>
<span class="uploading-progress-container hide">
<i
class="fa fa-file-image-o toolbar-button-icon"
aria-hidden="true"
>
</i>
<span class="attaching-file-message"></span>
<span class="uploading-progress">0%</span>
<span class="uploading-spinner">
<i
class="fa fa-spinner fa-spin toolbar-button-icon"
aria-hidden="true"
>
</i>
</span>
</span>
<span class="uploading-error-container hide">
<span class="uploading-error-icon">
<i
class="fa fa-file-image-o toolbar-button-icon"
aria-hidden="true"
>
</i>
</span>
<span class="uploading-error-message"></span>
<button
class="retry-uploading-link"
type="button"
>
Try again
</button>
or
<button
class="attach-new-file markdown-selector"
type="button"
>
attach a new file
</button>
</span>
<button
class="markdown-selector button-attach-file"
tabindex="-1"
type="button"
>
<i
class="fa fa-file-image-o toolbar-button-icon"
aria-hidden="true"
>
</i>
Attach a file
</button>
<button
class="btn btn-default btn-xs hide button-cancel-uploading-files"
type="button"
>
Cancel
</button>
</span>
2017-09-10 17:25:29 +05:30
</div>
</template>