blob: e18d61485a038a663d5b4def3b9e0b99ba31e74a [file] [log] [blame]
SurenNeware978807d2020-09-03 18:35:21 +05301<template>
2 <div class="custom-form-file-container">
3 <label>
4 <b-form-file
5 :id="id"
6 v-model="file"
7 :accept="accept"
8 :disabled="disabled"
9 :state="state"
10 plain
11 @input="$emit('input', file)"
12 >
13 </b-form-file>
Yoshie Muranaka391f9492021-02-08 10:50:53 -080014 <span
15 class="add-file-btn btn"
16 :class="{
17 disabled,
18 'btn-secondary': isSecondary,
19 'btn-primary': !isSecondary,
20 }"
21 >
SurenNeware978807d2020-09-03 18:35:21 +053022 {{ $t('global.fileUpload.browseText') }}
23 </span>
24 <slot name="invalid"></slot>
25 </label>
26 <div v-if="file" class="clear-selected-file px-3 py-2 mt-2">
27 {{ file ? file.name : '' }}
Yoshie Muranaka2ec04fb2021-01-20 12:19:16 -080028 <b-button
29 variant="light"
30 class="px-2 ml-auto"
31 :disabled="disabled"
32 @click="file = null"
SurenNeware6e2cb972020-12-24 20:58:16 +053033 ><icon-close :title="$t('global.fileUpload.clearSelectedFile')" /><span
34 class="sr-only"
35 >{{ $t('global.fileUpload.clearSelectedFile') }}</span
36 >
37 </b-button>
SurenNeware978807d2020-09-03 18:35:21 +053038 </div>
39 </div>
40</template>
41
42<script>
43import { BFormFile } from 'bootstrap-vue';
44import IconClose from '@carbon/icons-vue/es/close/20';
45
46export default {
47 name: 'FormFile',
48 components: { BFormFile, IconClose },
49 props: {
50 id: {
51 type: String,
52 default: '',
53 },
54 disabled: {
55 type: Boolean,
56 default: false,
57 },
58 accept: {
59 type: String,
60 default: '',
61 },
62 state: {
63 type: Boolean,
64 default: true,
65 },
Yoshie Muranaka391f9492021-02-08 10:50:53 -080066 variant: {
67 type: String,
68 default: 'secondary',
69 },
SurenNeware978807d2020-09-03 18:35:21 +053070 },
71 data() {
72 return {
73 file: null,
74 };
75 },
Yoshie Muranaka391f9492021-02-08 10:50:53 -080076 computed: {
77 isSecondary() {
78 return this.variant === 'secondary';
79 },
80 },
SurenNeware978807d2020-09-03 18:35:21 +053081};
82</script>
83
84<style lang="scss" scoped>
85.form-control-file {
86 opacity: 0;
87 height: 0;
88 &:focus + span {
Ed Tanous81323992024-02-27 11:26:24 -080089 box-shadow:
90 inset 0 0 0 3px theme-color('primary'),
91 inset 0 0 0 5px $white;
SurenNeware978807d2020-09-03 18:35:21 +053092 }
93}
94
95// Get mouse pointer on complete element
96.add-file-btn {
97 position: relative;
Yoshie Muranaka391f9492021-02-08 10:50:53 -080098 &.disabled {
99 border-color: gray('400');
100 background-color: gray('400');
101 color: gray('600');
102 box-shadow: none !important;
103 }
SurenNeware978807d2020-09-03 18:35:21 +0530104}
105
106.clear-selected-file {
107 display: flex;
108 align-items: center;
109 background-color: theme-color('light');
110 .btn {
111 width: 36px;
112 height: 36px;
113 display: flex;
114 align-items: center;
115
116 &:focus {
117 box-shadow: inset 0 0 0 2px theme-color('primary');
118 }
119 }
120}
121</style>