2018-02-16 10:00:32 +01:00
|
|
|
<template>
|
2018-09-17 22:35:06 +02:00
|
|
|
<mk-window ref="window" is-modal width="800px" height="500px" @closed="destroyDom">
|
2018-02-16 10:00:32 +01:00
|
|
|
<span slot="header">
|
|
|
|
<span v-html="title" :class="$style.title"></span>
|
2018-05-18 20:33:55 +02:00
|
|
|
<span :class="$style.count" v-if="multiple && files.length > 0">({{ files.length }}%i18n:@choose-file%)</span>
|
2018-02-16 10:00:32 +01:00
|
|
|
</span>
|
|
|
|
|
|
|
|
<mk-drive
|
|
|
|
ref="browser"
|
|
|
|
:class="$style.browser"
|
|
|
|
:multiple="multiple"
|
|
|
|
@selected="onSelected"
|
|
|
|
@change-selection="onChangeSelection"
|
|
|
|
/>
|
|
|
|
<div :class="$style.footer">
|
2018-05-18 20:33:55 +02:00
|
|
|
<button :class="$style.upload" title="%i18n:@upload%" @click="upload">%fa:upload%</button>
|
|
|
|
<button :class="$style.cancel" @click="cancel">%i18n:@cancel%</button>
|
|
|
|
<button :class="$style.ok" :disabled="multiple && files.length == 0" @click="ok">%i18n:@ok%</button>
|
2018-02-16 10:00:32 +01:00
|
|
|
</div>
|
|
|
|
</mk-window>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
multiple: {
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
title: {
|
2018-07-23 13:11:16 +02:00
|
|
|
default: '%fa:R file%%i18n:@choose-prompt%'
|
2018-02-16 10:00:32 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
files: []
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onSelected(file) {
|
|
|
|
this.files = [file];
|
|
|
|
this.ok();
|
|
|
|
},
|
2018-02-18 14:14:51 +01:00
|
|
|
onChangeSelection(files) {
|
2018-02-16 10:00:32 +01:00
|
|
|
this.files = files;
|
|
|
|
},
|
|
|
|
upload() {
|
|
|
|
(this.$refs.browser as any).selectLocalFile();
|
|
|
|
},
|
|
|
|
ok() {
|
|
|
|
this.$emit('selected', this.multiple ? this.files : this.files[0]);
|
|
|
|
(this.$refs.window as any).close();
|
2018-02-17 10:14:23 +01:00
|
|
|
},
|
|
|
|
cancel() {
|
|
|
|
(this.$refs.window as any).close();
|
2018-02-16 10:00:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" module>
|
2018-09-26 13:19:35 +02:00
|
|
|
|
2018-03-03 05:47:55 +01:00
|
|
|
|
2018-02-16 10:00:32 +01:00
|
|
|
.title
|
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
.count
|
|
|
|
margin-left 8px
|
|
|
|
opacity 0.7
|
|
|
|
|
|
|
|
.browser
|
|
|
|
height calc(100% - 72px)
|
|
|
|
|
|
|
|
.footer
|
|
|
|
height 72px
|
2018-09-26 13:19:35 +02:00
|
|
|
background var(--primaryLighten95)
|
2018-02-16 10:00:32 +01:00
|
|
|
|
|
|
|
.upload
|
|
|
|
display inline-block
|
|
|
|
position absolute
|
|
|
|
top 8px
|
|
|
|
left 16px
|
|
|
|
cursor pointer
|
|
|
|
padding 0
|
|
|
|
margin 8px 4px 0 0
|
|
|
|
width 40px
|
|
|
|
height 40px
|
|
|
|
font-size 1em
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryAlpha05)
|
2018-02-16 10:00:32 +01:00
|
|
|
background transparent
|
|
|
|
outline none
|
|
|
|
border solid 1px transparent
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background transparent
|
2018-09-26 13:19:35 +02:00
|
|
|
border-color var(--primaryAlpha03)
|
2018-02-16 10:00:32 +01:00
|
|
|
|
|
|
|
&:active
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryAlpha06)
|
2018-02-16 10:00:32 +01:00
|
|
|
background transparent
|
2018-09-26 13:19:35 +02:00
|
|
|
border-color var(--primaryAlpha05)
|
|
|
|
//box-shadow 0 2px 4px rgba(var(--primaryDarken50), 0.15) inset
|
2018-02-16 10:00:32 +01:00
|
|
|
|
|
|
|
&:focus
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
pointer-events none
|
|
|
|
position absolute
|
|
|
|
top -5px
|
|
|
|
right -5px
|
|
|
|
bottom -5px
|
|
|
|
left -5px
|
2018-09-26 13:19:35 +02:00
|
|
|
border 2px solid var(--primaryAlpha03)
|
2018-02-16 10:00:32 +01:00
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
.ok
|
|
|
|
.cancel
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 16px
|
|
|
|
cursor pointer
|
|
|
|
padding 0
|
|
|
|
margin 0
|
|
|
|
width 120px
|
|
|
|
height 40px
|
|
|
|
font-size 1em
|
|
|
|
outline none
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
&:focus
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
pointer-events none
|
|
|
|
position absolute
|
|
|
|
top -5px
|
|
|
|
right -5px
|
|
|
|
bottom -5px
|
|
|
|
left -5px
|
2018-09-26 13:19:35 +02:00
|
|
|
border 2px solid var(--primaryAlpha03)
|
2018-02-16 10:00:32 +01:00
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
&:disabled
|
|
|
|
opacity 0.7
|
|
|
|
cursor default
|
|
|
|
|
|
|
|
.ok
|
|
|
|
right 16px
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryForeground)
|
|
|
|
background linear-gradient(to bottom, var(--primaryLighten25) 0%, var(--primaryLighten10) 100%)
|
|
|
|
border solid 1px var(--primaryLighten15)
|
2018-02-16 10:00:32 +01:00
|
|
|
|
|
|
|
&:not(:disabled)
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
&:hover:not(:disabled)
|
2018-09-26 13:19:35 +02:00
|
|
|
background linear-gradient(to bottom, var(--primaryLighten8) 0%, var(--primaryDarken8) 100%)
|
|
|
|
border-color var(--primary)
|
2018-02-16 10:00:32 +01:00
|
|
|
|
|
|
|
&:active:not(:disabled)
|
2018-09-26 13:19:35 +02:00
|
|
|
background var(--primary)
|
|
|
|
border-color var(--primary)
|
2018-02-16 10:00:32 +01:00
|
|
|
|
|
|
|
.cancel
|
|
|
|
right 148px
|
|
|
|
color #888
|
|
|
|
background linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%)
|
|
|
|
border solid 1px #e2e2e2
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background linear-gradient(to bottom, #f9f9f9 0%, #ececec 100%)
|
|
|
|
border-color #dcdcdc
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background #ececec
|
|
|
|
border-color #dcdcdc
|
|
|
|
|
|
|
|
</style>
|