-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoundView.vue
160 lines (155 loc) · 5.13 KB
/
RoundView.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<template>
<p class="mt-5 ms-6">Single File Upload</p>
<div class="flex flex-wrap">
<SingleFileUpload :uploadedFile="uploadedFile" :callback="handleFileUploading">
<template v-slot="file">
<div
class="h-[195px] w-[195px] cursor-pointer mx-5 bg-[#e7e7e7] rounded-full"
:class="!file.file.previewUrl ? 'my-10' : 'mt-10 mb-20'"
>
<div class="flex h-full w-full relative">
<div class="h-full w-full">
<img
v-if="file.file ? file.file.previewType != 'video' : true"
class="h-full w-full"
:class="file.file.previewUrl ? 'object-cover rounded-full' : 'object-contain'"
:src="file.file.previewUrl ? file.file.previewUrl : placeHolderImage"
alt=""
/>
<video
v-else
autoplay
loop
class="h-full w-full"
:class="file.file ? 'object-cover rounded-full' : 'object-contain'"
>
<source :src="file.file.previewUrl" type="video/mp4" />
</video>
</div>
<div
v-if="file.file"
:class="{
'absolute h-full w-full flex rounded-full bg-[#00000099]': file.file.isDragging,
'items-center justify-center': file.file.isLoading
}"
>
<img
v-if="file.file.isLoading"
src="../assets/images/loader.png"
alt="Loading..."
class="h-16 animate-spin"
/>
</div>
</div>
<p v-if="file.file" class="text-center break-words">
{{ file.file.previewName }}
</p>
</div>
</template>
</SingleFileUpload>
</div>
<br />
<hr />
<p class="mt-5 ms-6">Multiple File Upload</p>
<div class="flex flex-wrap">
<MultipleFileUpload
:removeBtnText="'remove'"
:uploadBtnText="'Save'"
:progressBtnText="'Saving...'"
:uploadedFiles="uploadedFiles"
:callback="handleMultipleFileUpload"
>
<template v-slot="file">
<div
class="h-[195px] w-[195px] cursor-pointer mx-5 bg-[#e7e7e7] rounded-full"
:class="!file.file ? 'my-10' : 'mt-10 mb-20'"
>
<div class="flex h-full w-full relative">
<div class="h-full w-full">
<img
v-if="file.file ? file.file.previewType != 'video' : true"
class="h-full w-full"
:class="file.file ? 'object-cover rounded-full' : 'object-contain'"
:src="file.file ? file.file.previewUrl : placeHolderImage"
alt=""
/>
<video
v-else
autoplay
loop
class="h-full w-full"
:class="file.file ? 'object-cover rounded-full' : 'object-contain'"
>
<source :src="file.file.previewUrl" type="video/mp4" />
</video>
</div>
<div
v-if="file.file"
:class="{
'absolute h-full w-full flex rounded-full bg-[#00000099]': file.file.isDragging,
'items-center justify-center': file.file.isLoading
}"
>
<img
v-if="file.file.isLoading"
src="../assets/images/loader.png"
alt="Loading..."
class="h-16 animate-spin"
/>
</div>
</div>
<p v-if="file.file" class="text-center break-words">
{{ file.file.previewName }}
</p>
</div>
</template>
</MultipleFileUpload>
</div>
</template>
<script lang="ts">
import '@canopassoftware/vue-file-upload/style.css'
import { SingleFileUpload, MultipleFileUpload } from '@canopassoftware/vue-file-upload'
import placeHolderImage from '../../assets/images/placeholder.png'
export default {
components: {
MultipleFileUpload,
SingleFileUpload
},
data() {
return {
placeHolderImage,
uploadedFile: {} as {
fileType: string
fileUrl: string
fileName: string
},
uploadedFiles: [] as Array<{
fileType: string
fileUrl: string
fileName: string
}>
}
},
methods: {
async handleFileUploading(file: any) {
// add your fileuploading logic to server and set data to the uploadedFile
this.uploadedFile.fileType = 'image'
this.uploadedFile.fileUrl = 'https://picsum.photos/300/224'
this.uploadedFile.fileName = file.name
await new Promise((resolve) => setTimeout(resolve, 2000))
},
async handleMultipleFileUpload(files: any) {
this.uploadedFiles = []
// add your fileuploading logic to server and set data to the uploadedFiles
for (var i = 0; i < files.length; i++) {
this.uploadedFiles.push({
fileType: 'image',
fileUrl: 'https://picsum.photos/300/224',
fileName: 'example-image.jpg'
})
}
await new Promise((resolve) => setTimeout(resolve, 2000))
}
}
}
</script>