iceshrimp-legacy/src/client/app/desktop/views/components/drive-window.vue

57 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-18 04:35:18 +01:00
<template>
2018-02-20 15:37:35 +01:00
<mk-window ref="window" @closed="$destroy" width="800px" height="500px" :popout-url="popout">
2018-02-18 15:51:41 +01:00
<template slot="header">
2018-04-14 18:04:40 +02:00
<p v-if="usage" :class="$style.info"><b>{{ usage.toFixed(1) }}%</b> %i18n:@used%</p>
<span :class="$style.title">%fa:cloud%%i18n:@drive%</span>
2018-02-18 15:51:41 +01:00
</template>
2018-02-20 15:26:41 +01:00
<mk-drive :class="$style.browser" multiple :init-folder="folder" ref="browser"/>
2018-02-18 04:35:18 +01:00
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
import { url } from '../../../config';
export default Vue.extend({
props: ['folder'],
data() {
return {
usage: null
};
},
mounted() {
(this as any).api('drive').then(info => {
this.usage = info.usage / info.capacity * 100;
});
},
methods: {
popout() {
2018-03-14 08:12:36 +01:00
const folder = (this.$refs.browser as any) ? (this.$refs.browser as any).folder : null;
2018-02-18 04:35:18 +01:00
if (folder) {
return `${url}/i/drive/folder/${folder.id}`;
} else {
return `${url}/i/drive`;
}
}
}
});
</script>
<style lang="stylus" module>
2018-02-18 15:51:41 +01:00
.title
2018-02-18 04:35:18 +01:00
> [data-fa]
margin-right 4px
.info
position absolute
top 0
left 16px
margin 0
font-size 80%
2018-02-20 15:26:41 +01:00
.browser
height 100%
2018-02-18 04:35:18 +01:00
</style>