mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
165 lines
4.4 KiB
Vue
165 lines
4.4 KiB
Vue
<template>
|
|
<PopupWrapper name="remote-upload">
|
|
<PopupHeader :title="$t('upload_files_remotely')" icon="remote-upload" />
|
|
|
|
<PopupContent>
|
|
<ValidationObserver @submit.prevent ref="createForm" v-slot="{ invalid }" tag="form">
|
|
<ValidationProvider tag="div" mode="passive" name="Remote Links" rules="required" v-slot="{ errors }">
|
|
<AppInputText
|
|
:title="$t('remote_links')"
|
|
:description="$t('remote_links_help')"
|
|
:error="errors[0]"
|
|
:is-last="true"
|
|
>
|
|
<textarea
|
|
v-model="links"
|
|
class="focus-border-theme input-dark whitespace-nowrap"
|
|
rows="6"
|
|
:placeholder="$t('paste_remote_links_here')"
|
|
:class="{ '!border-rose-600': errors[0] }"
|
|
ref="textarea"
|
|
>
|
|
</textarea>
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
</ValidationObserver>
|
|
</PopupContent>
|
|
|
|
<PopupActions>
|
|
<ButtonBase class="w-full" @click.native="$closePopup()" button-style="secondary">
|
|
{{ $t('cancel') }}
|
|
</ButtonBase>
|
|
<ButtonBase class="w-full" @click.native="upload" button-style="theme" :loading="loading">
|
|
{{ $t('upload') }}
|
|
</ButtonBase>
|
|
</PopupActions>
|
|
</PopupWrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
|
import PopupWrapper from '../Popups/Components/PopupWrapper'
|
|
import PopupContent from '../Popups/Components/PopupContent'
|
|
import PopupActions from '../Popups/Components/PopupActions'
|
|
import PopupHeader from '../Popups/Components/PopupHeader'
|
|
import AppInputText from '../Forms/Layouts/AppInputText'
|
|
import { required } from 'vee-validate/dist/rules'
|
|
import ButtonBase from '../UI/Buttons/ButtonBase'
|
|
import { events } from '../../bus'
|
|
import i18n from "../../i18n";
|
|
|
|
export default {
|
|
name: 'RemoteUploadPopup',
|
|
components: {
|
|
ValidationProvider,
|
|
ValidationObserver,
|
|
required,
|
|
PopupWrapper,
|
|
PopupContent,
|
|
PopupHeader,
|
|
PopupActions,
|
|
AppInputText,
|
|
ButtonBase,
|
|
},
|
|
data() {
|
|
return {
|
|
links: undefined,
|
|
loading: false,
|
|
}
|
|
},
|
|
methods: {
|
|
async upload() {
|
|
// Validate fields
|
|
const isValid = await this.$refs.createForm.validate()
|
|
|
|
if (!isValid) return
|
|
|
|
this.loading = true
|
|
|
|
this.urls = this.links
|
|
.replace(/^(?=\n)$|^\s*|\s*$|\n\n+/gm, "")
|
|
.split(/\r?\n/)
|
|
|
|
// If demo, return success message
|
|
if (this.$store.getters.config.isDemo && this.$store.getters.user.data.attributes.email === 'ho**@hi5ve.digital') {
|
|
events.$emit('toaster', {
|
|
type: 'success',
|
|
message: i18n.t('remote_download_finished'),
|
|
})
|
|
|
|
events.$emit('popup:close')
|
|
|
|
return
|
|
}
|
|
|
|
// If broadcasting
|
|
if (this.$store.getters.isBroadcasting) {
|
|
this.$store.commit('UPDATE_REMOTE_UPLOAD_QUEUE', {
|
|
progress: {
|
|
total: this.urls.length,
|
|
processed: 0,
|
|
failed: 0,
|
|
}
|
|
})
|
|
}
|
|
|
|
// Get route
|
|
let route = {
|
|
RequestUpload: `/api/file-request/${this.$router.currentRoute.params.token}/upload/remote`,
|
|
Public: `/api/editor/upload/remote/${this.$router.currentRoute.params.token}`,
|
|
}[this.$router.currentRoute.name] || '/api/upload/remote'
|
|
|
|
let parentId = this.$store.getters.currentFolder
|
|
? this.$store.getters.currentFolder.data.id
|
|
: undefined
|
|
|
|
axios
|
|
.post(route, {
|
|
urls: this.urls,
|
|
parent_id: parentId,
|
|
})
|
|
.then(() => {
|
|
// If broadcasting is not set
|
|
if (!this.$store.getters.isBroadcasting) {
|
|
// Reload data
|
|
this.$getDataByLocation()
|
|
|
|
events.$emit('toaster', {
|
|
type: 'success',
|
|
message: i18n.t('remote_download_finished'),
|
|
})
|
|
}
|
|
|
|
events.$emit('popup:close')
|
|
})
|
|
.catch((error) => {
|
|
if (error.response.status === 422) {
|
|
this.$refs.createForm.setErrors({
|
|
'Remote Links': error.response.data.message,
|
|
})
|
|
}
|
|
|
|
events.$emit('toaster', {
|
|
type: 'danger',
|
|
message: this.$t('popup_error.title'),
|
|
})
|
|
})
|
|
.finally(() => {
|
|
this.loading = false
|
|
})
|
|
},
|
|
},
|
|
mounted() {
|
|
events.$on('popup:open', (args) => {
|
|
if (args.name !== 'remote-upload') return
|
|
|
|
this.links = undefined
|
|
|
|
this.$nextTick(() => {
|
|
setTimeout(() => this.$refs.textarea.focus(), 100)
|
|
})
|
|
})
|
|
},
|
|
}
|
|
</script>
|