88 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
| <script>
 | |
| import { GlButton, GlButtonGroup, GlTooltipDirective } from '@gitlab/ui';
 | |
| import {
 | |
|   BTN_COPY_CONTENTS_TITLE,
 | |
|   BTN_DOWNLOAD_TITLE,
 | |
|   BTN_RAW_TITLE,
 | |
|   RICH_BLOB_VIEWER,
 | |
|   SIMPLE_BLOB_VIEWER,
 | |
| } from './constants';
 | |
| 
 | |
| export default {
 | |
|   components: {
 | |
|     GlButtonGroup,
 | |
|     GlButton,
 | |
|   },
 | |
|   directives: {
 | |
|     GlTooltip: GlTooltipDirective,
 | |
|   },
 | |
|   props: {
 | |
|     rawPath: {
 | |
|       type: String,
 | |
|       required: true,
 | |
|     },
 | |
|     activeViewer: {
 | |
|       type: String,
 | |
|       default: SIMPLE_BLOB_VIEWER,
 | |
|       required: false,
 | |
|     },
 | |
|     hasRenderError: {
 | |
|       type: Boolean,
 | |
|       required: false,
 | |
|       default: false,
 | |
|     },
 | |
|   },
 | |
|   inject: ['blobHash'],
 | |
|   computed: {
 | |
|     downloadUrl() {
 | |
|       return `${this.rawPath}?inline=false`;
 | |
|     },
 | |
|     copyDisabled() {
 | |
|       return this.activeViewer === RICH_BLOB_VIEWER;
 | |
|     },
 | |
|     getBlobHashTarget() {
 | |
|       return `[data-blob-hash="${this.blobHash}"]`;
 | |
|     },
 | |
|   },
 | |
|   BTN_COPY_CONTENTS_TITLE,
 | |
|   BTN_DOWNLOAD_TITLE,
 | |
|   BTN_RAW_TITLE,
 | |
| };
 | |
| </script>
 | |
| <template>
 | |
|   <gl-button-group>
 | |
|     <gl-button
 | |
|       v-if="!hasRenderError"
 | |
|       v-gl-tooltip.hover
 | |
|       :aria-label="$options.BTN_COPY_CONTENTS_TITLE"
 | |
|       :title="$options.BTN_COPY_CONTENTS_TITLE"
 | |
|       :disabled="copyDisabled"
 | |
|       :data-clipboard-target="getBlobHashTarget"
 | |
|       data-testid="copyContentsButton"
 | |
|       icon="copy-to-clipboard"
 | |
|       category="primary"
 | |
|       variant="default"
 | |
|     />
 | |
|     <gl-button
 | |
|       v-gl-tooltip.hover
 | |
|       :aria-label="$options.BTN_RAW_TITLE"
 | |
|       :title="$options.BTN_RAW_TITLE"
 | |
|       :href="rawPath"
 | |
|       target="_blank"
 | |
|       icon="doc-code"
 | |
|       category="primary"
 | |
|       variant="default"
 | |
|     />
 | |
|     <gl-button
 | |
|       v-gl-tooltip.hover
 | |
|       :aria-label="$options.BTN_DOWNLOAD_TITLE"
 | |
|       :title="$options.BTN_DOWNLOAD_TITLE"
 | |
|       :href="downloadUrl"
 | |
|       target="_blank"
 | |
|       icon="download"
 | |
|       category="primary"
 | |
|       variant="default"
 | |
|     />
 | |
|   </gl-button-group>
 | |
| </template>
 |