59 lines
1.2 KiB
Vue
59 lines
1.2 KiB
Vue
<script>
|
|
import { GlButton, GlTooltipDirective } from '@gitlab/ui';
|
|
import { VALID_DESIGN_FILE_MIMETYPE } from '../../constants';
|
|
|
|
export default {
|
|
components: {
|
|
GlButton,
|
|
},
|
|
directives: {
|
|
GlTooltip: GlTooltipDirective,
|
|
},
|
|
props: {
|
|
isSaving: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
methods: {
|
|
openFileUpload() {
|
|
this.$refs.fileUpload.click();
|
|
},
|
|
onFileUploadChange(e) {
|
|
this.$emit('upload', e.target.files);
|
|
},
|
|
},
|
|
VALID_DESIGN_FILE_MIMETYPE,
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<gl-button
|
|
v-gl-tooltip.hover
|
|
:title="
|
|
s__(
|
|
'DesignManagement|Adding a design with the same filename replaces the file in a new version.',
|
|
)
|
|
"
|
|
:disabled="isSaving"
|
|
:loading="isSaving"
|
|
category="secondary"
|
|
variant="confirm"
|
|
size="small"
|
|
@click="openFileUpload"
|
|
>
|
|
{{ s__('DesignManagement|Upload designs') }}
|
|
</gl-button>
|
|
|
|
<input
|
|
ref="fileUpload"
|
|
type="file"
|
|
name="design_file"
|
|
:accept="$options.VALID_DESIGN_FILE_MIMETYPE.mimetype"
|
|
class="gl-display-none"
|
|
multiple
|
|
@change="onFileUploadChange"
|
|
/>
|
|
</div>
|
|
</template>
|