Sharkey/src/client/app/mobile/views/pages/drive.vue
syuilo 25a69ec1b6
Refactoring of i18n (#3165)
Refactoring of i18n
2018-11-09 03:44:35 +09:00

109 lines
2.6 KiB
Vue

<template>
<mk-ui>
<span slot="header">
<template v-if="folder"><span style="margin-right:4px;"><fa :icon="['far', 'folder-open']"/></span>{{ folder.name }}</template>
<template v-if="file"><mk-file-type-icon data-icon :type="file.type" style="margin-right:4px;"/>{{ file.name }}</template>
<template v-if="!folder && !file"><span style="margin-right:4px;"><fa icon="cloud"/></span>{{ $t('@.drive') }}</template>
</span>
<template slot="func"><button @click="fn"><fa icon="ellipsis-h"/></button></template>
<mk-drive
ref="browser"
:init-folder="initFolder"
:init-file="initFile"
:is-naked="true"
:top="$store.state.uiHeaderHeight"
@begin-fetch="Progress.start()"
@fetched-mid="Progress.set(0.5)"
@fetched="Progress.done()"
@move-root="onMoveRoot"
@open-folder="onOpenFolder"
@open-file="onOpenFile"
/>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n(),
data() {
return {
Progress,
folder: null,
file: null,
initFolder: null,
initFile: null
};
},
created() {
this.initFolder = this.$route.params.folder;
this.initFile = this.$route.params.file;
window.addEventListener('popstate', this.onPopState);
},
mounted() {
document.title = `${(this as any).os.instanceName} Drive`;
},
beforeDestroy() {
window.removeEventListener('popstate', this.onPopState);
},
methods: {
onPopState() {
if (this.$route.params.folder) {
(this.$refs as any).browser.cd(this.$route.params.folder, true);
} else if (this.$route.params.file) {
(this.$refs as any).browser.cf(this.$route.params.file, true);
} else {
(this.$refs as any).browser.goRoot(true);
}
},
fn() {
(this.$refs as any).browser.openContextMenu();
},
onMoveRoot(silent) {
const title = `${(this as any).os.instanceName} Drive`;
if (!silent) {
// Rewrite URL
history.pushState(null, title, '/i/drive');
}
document.title = title;
this.file = null;
this.folder = null;
},
onOpenFolder(folder, silent) {
const title = `${folder.name} | ${(this as any).os.instanceName} Drive`;
if (!silent) {
// Rewrite URL
history.pushState(null, title, `/i/drive/folder/${folder.id}`);
}
document.title = title;
this.file = null;
this.folder = folder;
},
onOpenFile(file, silent) {
const title = `${file.name} | ${(this as any).os.instanceName} Drive`;
if (!silent) {
// Rewrite URL
history.pushState(null, title, `/i/drive/file/${file.id}`);
}
document.title = title;
this.file = file;
this.folder = null;
}
}
});
</script>