mirror of
https://github.com/romancm/gamebrary
synced 2024-12-22 00:53:07 +00:00
155 lines
4.1 KiB
Vue
155 lines
4.1 KiB
Vue
<template lang="html">
|
|
<div>
|
|
<b-jumbotron
|
|
:header="$t('wallpapers.title')"
|
|
:lead="$t('wallpapers.subtitle')"
|
|
:bg-variant="nightMode ? 'dark' : ''"
|
|
:text-variant="nightMode ? 'white' : ''"
|
|
:border-variant="nightMode ? 'dark' : ''"
|
|
header-level="5"
|
|
fluid
|
|
/>
|
|
<!-- TODO: show space used -->
|
|
<!-- TODO: allow to apply wallpaper to board from here -->
|
|
<b-container>
|
|
<!-- TODO: convert to form -->
|
|
<!-- TODO: translate "browse" -->
|
|
|
|
<b-row class="mb-3">
|
|
<b-col cols="12" lg="6" class="mb-4">
|
|
<b-form-group
|
|
:description="$t('wallpapers.form.helperText')"
|
|
:label="$t('wallpapers.form.label')"
|
|
>
|
|
<b-form-file
|
|
v-model="file"
|
|
accept="image/*"
|
|
:browse-text="$t('wallpapers.form.upload')"
|
|
:placeholder="$t('wallpapers.form.placeholder')"
|
|
@input="uploadWallpaper"
|
|
/>
|
|
</b-form-group>
|
|
|
|
<b-alert v-if="isDuplicate && !saving && file && file.name" show variant="warning">
|
|
{{ $t('wallpapers.form.duplicateMessage', { fileName: file.name }) }}
|
|
</b-alert>
|
|
</b-col>
|
|
</b-row>
|
|
|
|
<h5>{{ $t('wallpapers.list.title') }}</h5>
|
|
|
|
<b-card
|
|
v-if="wallpapers.length"
|
|
v-for="wallpaper in wallpapers"
|
|
:key="wallpaper.name"
|
|
:img-src="wallpaper.url"
|
|
:img-alt="wallpaper.name"
|
|
img-left
|
|
img-width="180"
|
|
class="mb-3"
|
|
>
|
|
<p>{{ wallpaper.name }}</p>
|
|
<b-button
|
|
variant="danger"
|
|
size="sm"
|
|
@click="confirmDeleteWallpaper(wallpaper)"
|
|
>
|
|
<icon name="trash" white />
|
|
</b-button>
|
|
</b-card>
|
|
|
|
<b-alert show v-else>You don't have any wallpapers.</b-alert>
|
|
</b-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapGetters } from 'vuex';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
file: null,
|
|
saving: false,
|
|
loading: false,
|
|
wallpaperUrls: [],
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
...mapState(['user', 'board', 'wallpapers']),
|
|
...mapGetters(['nightMode']),
|
|
|
|
existingFiles() {
|
|
return this.wallpapers.map(({ name }) => name);
|
|
},
|
|
|
|
isDuplicate() {
|
|
const { file, existingFiles } = this;
|
|
|
|
return file && file.name && existingFiles.includes(file.name);
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
uploadWallpaper() {
|
|
if (this.isDuplicate) {
|
|
return this.$bvToast.toast('File already exists', { title: '!', variant: 'warning' });
|
|
}
|
|
|
|
if (!this.file) {
|
|
return false;
|
|
}
|
|
|
|
this.saving = true;
|
|
|
|
return this.$store.dispatch('UPLOAD_WALLPAPER', this.file)
|
|
.then(() => {
|
|
this.$bvToast.toast('File uploaded', { title: 'Success', variant: 'success' });
|
|
this.file = null;
|
|
this.saving = false;
|
|
this.$bus.$emit('WALLPAPER_UPLOADED');
|
|
})
|
|
.catch(() => {
|
|
this.saving = false;
|
|
this.$bvToast.toast('There was an error uploading wallpaper', { title: 'Error', variant: 'danger' });
|
|
});
|
|
},
|
|
|
|
confirmDeleteWallpaper(file) {
|
|
this.$bvModal.msgBoxConfirm('Wallpaper will be permanently removed', {
|
|
title: 'Are you sure you want to delete this file?',
|
|
okVariant: 'danger',
|
|
okTitle: 'Yes',
|
|
})
|
|
.then((value) => {
|
|
if (value) {
|
|
this.deleteFile(file);
|
|
}
|
|
});
|
|
},
|
|
|
|
async deleteFile(file) {
|
|
await this.$store.dispatch('DELETE_WALLPAPER', file)
|
|
.catch(() => {
|
|
this.$bvToast.toast('There was an error deleting wallpaper', { title: 'Error', variant: 'danger' });
|
|
});
|
|
|
|
this.$bvToast.toast(file.name, { title: 'File deleted', variant: 'success' });
|
|
|
|
// const { board } = this;
|
|
// TODO: handle wallpapers in use
|
|
// if (board.wallpaper && this.board.wallpaper === file.path) {
|
|
// this.$bus.$emit('RELOAD_WALLPAPER');
|
|
// }
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" rel="stylesheet/scss" scoped>
|
|
.delete-file {
|
|
bottom: .5rem;
|
|
right: .5rem;
|
|
}
|
|
</style>
|