blob: 5fca19939ed921f64699e9e28d803aa5ac305939 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
<template>
<div class="cdxzvcfawjxdyxsekbxbfgtplebnoneb">
<div class="body">
<header>
<h1>%i18n:@select-file%<span class="count" v-if="files.length > 0">({{ files.length }})</span></h1>
<button class="close" @click="cancel">%fa:times%</button>
<button v-if="multiple" class="ok" @click="ok">%fa:check%</button>
</header>
<mk-drive class="drive" ref="browser"
:select-file="true"
:multiple="multiple"
@change-selection="onChangeSelection"
@selected="onSelected"
/>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['multiple'],
data() {
return {
files: []
};
},
methods: {
onChangeSelection(files) {
this.files = files;
},
onSelected(file) {
this.$emit('selected', file);
this.destroyDom();
},
cancel() {
this.$emit('canceled');
this.destroyDom();
},
ok() {
this.$emit('selected', this.files);
this.destroyDom();
}
}
});
</script>
<style lang="stylus" scoped>
.cdxzvcfawjxdyxsekbxbfgtplebnoneb
position fixed
z-index 20000
top 0
left 0
width 100%
height 100%
padding 8px
background rgba(#000, 0.2)
> .body
width 100%
height 100%
background var(--faceHeader)
> header
border-bottom solid 1px var(--faceDivider)
color var(--text)
> h1
margin 0
padding 0
text-align center
line-height 42px
font-size 1em
font-weight normal
> .count
margin-left 4px
opacity 0.5
> .close
position absolute
top 0
left 0
line-height 42px
width 42px
> .ok
position absolute
top 0
right 0
line-height 42px
width 42px
> .drive
height calc(100% - 42px)
overflow scroll
-webkit-overflow-scrolling touch
</style>
|