mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
177 lines
4.8 KiB
Vue
177 lines
4.8 KiB
Vue
<template>
|
|
<div id="application-wrapper">
|
|
|
|
<!--File preview window-->
|
|
<FilePreview />
|
|
|
|
<!--Popups-->
|
|
<ConfirmPopup />
|
|
|
|
<InvoiceMobileMenu />
|
|
<ClientMobileMenu />
|
|
<InvoiceCreateMenu />
|
|
<InvoiceFilterMobile />
|
|
<InvoiceSortingMobile />
|
|
|
|
<!--Navigations-->
|
|
<MobileNavigation />
|
|
<SidebarNavigation />
|
|
|
|
<div id="viewport">
|
|
|
|
<!--Sidebar navigation-->
|
|
<ContentSidebar>
|
|
<ContentGroup title="Invoicing" class="navigator menu-list-wrapper vertical">
|
|
<a @click="goTo('regular-invoice')" :class="{'is-active': $isThisLocation(['regular-invoice']) && $route.name === 'InvoicesList'}" class="menu-list-item link">
|
|
<div class="icon text-theme">
|
|
<file-text-icon size="17" />
|
|
</div>
|
|
<div class="label text-theme">
|
|
Invoices
|
|
</div>
|
|
</a>
|
|
<a @click="goTo('advance-invoice')" :class="{'is-active': $isThisLocation(['advance-invoice']) && $route.name === 'InvoicesList'}" class="menu-list-item link">
|
|
<div class="icon text-theme">
|
|
<clock-icon size="17" />
|
|
</div>
|
|
<div class="label text-theme">
|
|
Advance Invoices
|
|
</div>
|
|
</a>
|
|
<a @click="goTo('clients')" :class="{'is-active': $isThisLocation(['clients']) && $route.name === 'InvoicesList'}" class="menu-list-item link">
|
|
<div class="icon text-theme">
|
|
<users-icon size="17" />
|
|
</div>
|
|
<div class="label text-theme">
|
|
Clients
|
|
</div>
|
|
</a>
|
|
</ContentGroup>
|
|
<ContentGroup title="Settings" class="navigator menu-list-wrapper vertical">
|
|
<router-link :to="{name: 'BillingProfile'}" class="menu-list-item link">
|
|
<div class="icon text-theme">
|
|
<edit2-icon size="17" />
|
|
</div>
|
|
<div class="label text-theme">
|
|
My Billing Profile
|
|
</div>
|
|
</router-link>
|
|
</ContentGroup>
|
|
</ContentSidebar>
|
|
|
|
<router-view :class="{'is-scaled-down': isScaledDown}" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import InvoiceSortingMobile from '@/Oasis/Invoices/components/InvoiceSortingMobile'
|
|
import InvoiceFilterMobile from '@/Oasis/Invoices/components/InvoiceFilterMobile'
|
|
import InvoiceMobileMenu from '@/Oasis/Invoices/components/InvoiceMobileMenu'
|
|
import ClientMobileMenu from '@/Oasis/Invoices/components/ClientMobileMenu'
|
|
import InvoiceCreateMenu from '@/Oasis/Invoices/components/InvoiceCreateMenu'
|
|
import ConfirmPopup from '@/components/Others/Popup/ConfirmPopup'
|
|
|
|
import {UsersIcon, FileTextIcon, ClockIcon, Edit2Icon} from 'vue-feather-icons'
|
|
import SidebarNavigation from '@/components/Sidebar/SidebarNavigation'
|
|
import MobileNavigation from '@/components/Others/MobileNavigation'
|
|
import ContentSidebar from '@/components/Sidebar/ContentSidebar'
|
|
import FilePreview from '@/components/FilesView/FilePreview'
|
|
import ContentGroup from '@/components/Sidebar/ContentGroup'
|
|
import {mapGetters} from 'vuex'
|
|
import {events} from '@/bus'
|
|
|
|
export default {
|
|
name: 'Settings',
|
|
computed: {
|
|
...mapGetters([
|
|
'currentFolder',
|
|
'config',
|
|
]),
|
|
},
|
|
components: {
|
|
InvoiceSortingMobile,
|
|
InvoiceFilterMobile,
|
|
InvoiceCreateMenu,
|
|
InvoiceMobileMenu,
|
|
SidebarNavigation,
|
|
ClientMobileMenu,
|
|
MobileNavigation,
|
|
ContentSidebar,
|
|
ConfirmPopup,
|
|
FileTextIcon,
|
|
ContentGroup,
|
|
FilePreview,
|
|
Edit2Icon,
|
|
UsersIcon,
|
|
ClockIcon,
|
|
},
|
|
data() {
|
|
return {
|
|
isScaledDown: false,
|
|
}
|
|
},
|
|
methods: {
|
|
goTo(location) {
|
|
let routes = {
|
|
'regular-invoice': 'getRegularInvoices',
|
|
'advance-invoice': 'getAdvanceInvoices',
|
|
'clients': 'getClients',
|
|
}
|
|
|
|
if (this.$route.name !== 'InvoicesList') {
|
|
this.$router.push({name: 'InvoicesList'})
|
|
}
|
|
|
|
this.$store.dispatch(routes[location])
|
|
},
|
|
},
|
|
mounted() {
|
|
|
|
if (! this.currentFolder) {
|
|
|
|
this.$store.commit('STORE_CURRENT_FOLDER', {
|
|
name: 'Invoices',
|
|
id: undefined,
|
|
location: 'regular-invoice',
|
|
})
|
|
|
|
this.$store.dispatch('getRegularInvoices')
|
|
}
|
|
|
|
events.$on('mobile-menu:show', () => this.isScaledDown = true)
|
|
|
|
events.$on('fileItem:deselect', () => this.isScaledDown = false)
|
|
events.$on('mobile-menu:hide', () => this.isScaledDown = false)
|
|
|
|
events.$on('action:confirmed', data => {
|
|
if (data.operation === 'delete-invoice') {
|
|
|
|
axios.delete(`/api/oasis/invoices/${data.id}`)
|
|
.then(() => this.goTo(this.currentFolder.location))
|
|
.catch(() => this.$isSomethingWrong())
|
|
}
|
|
})
|
|
|
|
events.$on('action:confirmed', data => {
|
|
if (data.operation === 'delete-client') {
|
|
|
|
axios.delete(`/api/oasis/clients/${data.id}`)
|
|
.then(() => this.goTo(this.currentFolder.location))
|
|
.catch(() => this.$isSomethingWrong())
|
|
}
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@assets/vuefilemanager/_mixins';
|
|
|
|
@media only screen and (max-width: 690px) {
|
|
|
|
.is-scaled-down {
|
|
@include transform(scale(0.95));
|
|
}
|
|
}
|
|
</style> |