1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/client/app/components/Content/Settings.vue
2016-11-23 21:16:41 +01:00

161 lines
4.8 KiB
Vue

<template>
<main>
<div class="wrap-content" v-if=" ! loading">
<div class="settings-box">
<span class="nothing-found">{{ lang('headline user') }}</span>
<form class="login-form" @submit.prevent="editUser()">
<input type="text" :placeholder="lang('username')" v-model="username">
<input type="password" :placeholder="lang('password')" v-model="password" autocomplete="off">
<span class="userdata-info">{{ lang('password message') }}</span>
<span class="userdata-changed"><span v-if="success">{{ lang('success message') }}</span></span>
<input type="submit" :value="lang('save button')">
</form>
</div>
<div class="settings-box">
<span class="nothing-found">{{ lang('headline export import') }}</span>
<a :href="exportLink" class="export-btn">{{ lang('export button') }}</a>
<form class="login-form" @submit.prevent="importMovies()">
<span class="import-info">{{ lang('or divider') }}</span>
<input type="file" @change="upload" class="file-btn" required>
<span class="userdata-changed"><span v-if="uploadSuccess">{{ lang('success import') }}</span></span>
<input type="submit" :value="lang('import button')">
</form>
</div>
<div class="settings-box">
<span class="nothing-found">{{ lang('headline misc') }}</span>
<button @click="updateGenre()" class="export-btn">{{ lang('update genre') }}</button>
<span class="import-info">{{ lang('or divider') }}</span>
<button @click="syncScout()" class="export-btn">{{ lang('sync scout') }}</button>
<span class="import-info">{{ lang('or divider') }}</span>
<div class="checkbox">
<input type="checkbox" value="genre" v-model="displayGenre" id="genre" @change="updateSettings"><label for="genre">{{ lang('display genre') }}</label>
</div>
<div class="checkbox">
<input type="checkbox" value="date" v-model="displayDate" id="date" @change="updateSettings"><label for="date">{{ lang('display date') }}</label>
</div>
</div>
</div>
<span class="loader fullsize-loader" v-if="loading"><i></i></span>
</main>
</template>
<script>
import { mapState, mapMutations } from 'vuex';
import Helper from '../../helper';
import http from 'axios';
export default {
mixins: [Helper],
created() {
this.fetchSettings();
},
data() {
return {
username: '',
password: '',
displayGenre: null,
displayDate: null,
success: false,
uploadSuccess: false,
uploadedFile: null
}
},
computed: {
...mapState({
loading: state => state.loading
}),
exportLink() {
return config.api + '/export';
}
},
methods: {
...mapMutations([ 'SET_LOADING' ]),
upload(event) {
const file = event.target.files || event.dataTransfer.files;
this.uploadedFile = new FormData();
this.uploadedFile.append('import', file[0]);
},
updateSettings() {
const date = this.displayDate;
const genre = this.displayGenre;
http.patch(`${config.api}/settings`, {date, genre}).catch(error => {
alert('Error');
});
},
importMovies() {
if(this.uploadedFile) {
const confirm = window.confirm(this.lang('import warn'));
if(confirm) {
this.SET_LOADING(true);
http.post(`${config.api}/import`, this.uploadedFile).then(value => {
this.SET_LOADING(false);
this.uploadSuccess = true;
}, error => {
this.SET_LOADING(false);
alert('Error: ' + error.data);
});
}
}
},
fetchSettings() {
this.SET_LOADING(true);
http(`${config.api}/settings`).then(value => {
const data = value.data;
this.SET_LOADING(false);
this.username = data.username;
this.displayGenre = data.genre;
this.displayDate = data.date;
});
},
editUser() {
const username = this.username;
const password = this.password;
if(username != '') {
http.patch(`${config.api}/userdata`, {username, password}).then(value => {
this.success = true;
this.clearSuccessMessage();
});
}
},
updateGenre() {
this.SET_LOADING(true);
http(`${config.api}/update-genre`).then(value => {
this.SET_LOADING(false);
});
},
syncScout() {
this.SET_LOADING(true);
http(`${config.api}/sync-scout`).then(value => {
this.SET_LOADING(false);
});
},
clearSuccessMessage() {
setTimeout(() => {
this.success = false;
}, 2000);
}
}
}
</script>