blob: c668a0ee7217cd4faef06f748cfb97c282a76ac4 (
plain)
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
|
<template>
<div>
<form action="/api/upload" method="post" enctype="multipart/form-data">
<input type="file" name="csvFile" ref="csvFileInput"
accept="text/csv" style="display: none;"
onchange="form.submit()">
</form>
<button
@mouseenter="isHovered = true"
@mouseleave="isHovered = false"
@click="triggerUploadFile">
<div v-if="isHovered">Upload File</div>
<div v-else>
<img src="/static/images/upload_icon.png">
</div>
</button>
</div>
</template>
<script>
export default {
name: "UploadFileButton",
data() {
return {
isHovered: false
}
},
methods: {
triggerUploadFile() {
this.$refs.csvFileInput.click();
}
}
}
</script>
<style scoped lang="less">
@button-radius: 100px;
@button-hovered-width: 300px;
button {
overflow: hidden;
white-space: nowrap;
position: fixed;
padding: 5px;
border-radius: @button-radius / 2;
width: @button-radius;
height: @button-radius;
border: none;
background-color: #2871e2;
color: white;
font-size: 30px;
transition-property: width;
transition-duration: 0.6s;
bottom: 175px;
left: 50px;
}
button:hover {
width: @button-hovered-width;
background-color: #286bd6;
}
button:focus {
background-color: #2861c3;
}
img {
width: @button-radius * 0.7;
height: @button-radius * 0.7;
}
</style>
|