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

80 lines
2.5 KiB
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
2019-02-15 15:39:39 +05:30
import { GlLink } from '@gitlab/ui';
2018-12-05 23:21:45 +05:30
2018-12-13 13:39:08 +05:30
export default {
components: {
GlLink,
},
props: {
markdownDocsPath: {
type: String,
required: true,
2018-12-05 23:21:45 +05:30
},
2018-12-13 13:39:08 +05:30
quickActionsDocsPath: {
type: String,
required: false,
default: '',
2018-03-17 18:26:18 +05:30
},
2018-12-13 13:39:08 +05:30
canAttachFile: {
type: Boolean,
required: false,
default: true,
2017-09-10 17:25:29 +05:30
},
2018-12-13 13:39:08 +05:30
},
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">
2019-09-30 21:07:59 +05:30
<gl-link :href="markdownDocsPath" target="_blank" tabindex="-1">{{
__('Markdown is supported')
}}</gl-link>
2018-03-17 18:26:18 +05:30
</template>
<template v-if="hasQuickActionsDocsPath && markdownDocsPath">
2019-09-30 21:07:59 +05:30
<gl-link :href="markdownDocsPath" target="_blank" tabindex="-1">{{
__('Markdown')
}}</gl-link>
and
<gl-link :href="quickActionsDocsPath" target="_blank" tabindex="-1">{{
__('quick actions')
}}</gl-link>
2018-03-17 18:26:18 +05:30
are supported
</template>
2017-09-10 17:25:29 +05:30
</div>
2019-02-15 15:39:39 +05:30
<span v-if="canAttachFile" class="uploading-container">
2018-03-17 18:26:18 +05:30
<span class="uploading-progress-container hide">
2019-09-04 21:01:54 +05:30
<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>
2018-03-17 18:26:18 +05:30
<span class="uploading-spinner">
2019-09-04 21:01:54 +05:30
<i class="fa fa-spinner fa-spin toolbar-button-icon" aria-hidden="true"></i>
2018-03-17 18:26:18 +05:30
</span>
</span>
<span class="uploading-error-container hide">
<span class="uploading-error-icon">
2019-09-04 21:01:54 +05:30
<i class="fa fa-file-image-o toolbar-button-icon" aria-hidden="true"></i>
2018-03-17 18:26:18 +05:30
</span>
<span class="uploading-error-message"></span>
2019-09-30 21:07:59 +05:30
<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>
2018-03-17 18:26:18 +05:30
</span>
2019-09-04 21:01:54 +05:30
<button class="markdown-selector button-attach-file btn-link" tabindex="-1" type="button">
<i class="fa fa-file-image-o toolbar-button-icon" aria-hidden="true"></i
2019-09-30 21:07:59 +05:30
><span class="text-attach-file">{{ __('Attach a file') }}</span>
2018-03-17 18:26:18 +05:30
</button>
2019-02-15 15:39:39 +05:30
<button class="btn btn-default btn-sm hide button-cancel-uploading-files" type="button">
2019-09-30 21:07:59 +05:30
{{ __('Cancel') }}
2018-03-17 18:26:18 +05:30
</button>
</span>
2017-09-10 17:25:29 +05:30
</div>
</template>