mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-08 23:58:15 -05:00
112 lines
2.5 KiB
Vue
112 lines
2.5 KiB
Vue
<template>
|
|
|
|
<div id="app">
|
|
|
|
|
|
<div class="row">
|
|
<div class="col col-md-12">
|
|
<h3>{{ $t('Files') }} <span class="float-right"><file-editor @change="loadInitial()"></file-editor></span>
|
|
</h3>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row" style="margin-top: 2vh">
|
|
<div class="col col-md-12">
|
|
<b-progress :max="max_file_size_mb">
|
|
<b-progress-bar :value="current_file_size_mb">
|
|
<span><strong class="text-dark ">{{ current_file_size_mb.toFixed(2) }} / {{ max_file_size_mb }} MB</strong></span>
|
|
</b-progress-bar>
|
|
</b-progress>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row" style="margin-top: 2vh">
|
|
<div class="col col-md-12">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ $t('Name') }}</th>
|
|
<th>{{ $t('Size') }} (MB)</th>
|
|
<th>{{ $t('Download') }}</th>
|
|
<th>{{ $t('Edit') }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tr v-for="f in files" v-bind:key="f.id">
|
|
<td>{{ f.name }}</td>
|
|
<td>{{ f.file_size_kb / 1000 }}</td>
|
|
<td><a :href="f.file" target="_blank" rel="noreferrer nofollow">{{ $t('Download') }}</a></td>
|
|
<td>
|
|
|
|
<file-editor @change="loadInitial()" :file_id="f.id"></file-editor>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Vue from 'vue'
|
|
import {BootstrapVue} from 'bootstrap-vue'
|
|
|
|
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
|
|
|
import {ResolveUrlMixin, ToastMixin} from "@/utils/utils";
|
|
|
|
|
|
import {ApiApiFactory} from "@/utils/openapi/api.ts";
|
|
|
|
Vue.use(BootstrapVue)
|
|
// import draggable from 'vuedraggable'
|
|
|
|
import axios from 'axios'
|
|
import FileEditor from "@/components/FileEditor";
|
|
// import Multiselect from "vue-multiselect";
|
|
|
|
axios.defaults.xsrfHeaderName = 'X-CSRFToken'
|
|
axios.defaults.xsrfCookieName = 'csrftoken'
|
|
|
|
export default {
|
|
name: 'UserFileView',
|
|
mixins: [
|
|
ResolveUrlMixin,
|
|
ToastMixin,
|
|
],
|
|
components: {
|
|
FileEditor
|
|
},
|
|
data() {
|
|
return {
|
|
files: [],
|
|
|
|
current_file_size_mb: window.CURRENT_FILE_SIZE_MB,
|
|
max_file_size_mb: window.MAX_FILE_SIZE_MB
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$i18n.locale = window.CUSTOM_LOCALE
|
|
this.loadInitial()
|
|
},
|
|
methods: {
|
|
loadInitial: function () {
|
|
let apiClient = new ApiApiFactory()
|
|
apiClient.listUserFiles().then(results => {
|
|
this.files = results.data
|
|
})
|
|
},
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|