3963ed8ff7
* wip * tabun ok * better msg * oops * fix lint * Update gulpfile.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * Update src/client/scripts/set-i18n-contexts.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * refactor Co-authored-by: acid-chicken <root@acid-chicken.com> * ✨ * wip * fix lint * たぶんおk * fix flush * Translate Notification * remove console.log * fix * add notifications * remove san * wip * ok * ✌️ * Update src/prelude/array.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * wip * i18n refactor * Update init.ts * ✌️ Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <syuilotan@yahoo.co.jp>
54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
<template>
|
|
<x-window ref="window" :width="800" :height="500" @closed="() => { $emit('closed'); destroyDom(); }" :with-ok-button="true" :ok-button-disabled="(type === 'file') && (selected.length === 0)" @ok="ok()">
|
|
<template #header>
|
|
{{ multiple ? ((type === 'file') ? $t('selectFiles') : $t('selectFolders')) : ((type === 'file') ? $t('selectFile') : $t('selectFolder')) }}
|
|
<span v-if="selected.length > 0" style="margin-left: 8px; opacity: 0.5;">({{ selected.length | number }})</span>
|
|
</template>
|
|
<div>
|
|
<x-drive :multiple="multiple" @change-selection="onChangeSelection" :select="type"/>
|
|
</div>
|
|
</x-window>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import XDrive from './drive.vue';
|
|
import XWindow from './window.vue';
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
XDrive,
|
|
XWindow,
|
|
},
|
|
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
required: false,
|
|
default: 'file'
|
|
},
|
|
multiple: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
selected: []
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
ok() {
|
|
this.$emit('selected', this.selected);
|
|
this.$refs.window.close();
|
|
},
|
|
|
|
onChangeSelection(xs) {
|
|
this.selected = xs;
|
|
}
|
|
}
|
|
});
|
|
</script>
|