mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-28 02:50:39 +00:00
vue components refactoring
This commit is contained in:
@@ -62,9 +62,9 @@
|
||||
|
||||
<script>
|
||||
import FilePreview from '../components/FilePreview/FilePreview'
|
||||
import CreateLanguage from '../components/Others/CreateLanguage'
|
||||
import MobileNavigation from '../components/Others/MobileNavigation'
|
||||
import ConfirmPopup from '../components/Others/Popup/ConfirmPopup'
|
||||
import CreateLanguage from '../components/Popups/CreateLanguagePopup'
|
||||
import MobileNavigation from '../components/Mobile/MobileNavigation'
|
||||
import ConfirmPopup from '../components/Popups/ConfirmPopup'
|
||||
import ContentGroup from '../components/Sidebar/ContentGroup'
|
||||
import ContentSidebar from '../components/Sidebar/ContentSidebar'
|
||||
import Spotlight from '../components/Spotlight/Spotlight'
|
||||
@@ -83,9 +83,9 @@ import {
|
||||
UsersIcon,
|
||||
} from 'vue-feather-icons'
|
||||
import { mapGetters } from 'vuex'
|
||||
import CreateUploadRequestPopup from "../components/Others/CreateUploadRequestPopup";
|
||||
import CreateUploadRequestPopup from "../components/UploadRequest/CreateUploadRequestPopup";
|
||||
import CreateTeamFolderPopup from "../components/Teams/CreateTeamFolderPopup";
|
||||
import NotificationsPopup from "../components/Others/NotificationsPopup";
|
||||
import NotificationsPopup from "../components/Notifications/NotificationsPopup";
|
||||
|
||||
export default {
|
||||
name: 'Admin',
|
||||
|
||||
@@ -130,16 +130,16 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import WidgetLatestRegistrations from '../../components/Admin/WidgetLatestRegistrations'
|
||||
import WidgetLatestRegistrations from '../../components/Dashboard/Widgets/WidgetLatestRegistrations'
|
||||
import {ChevronRightIcon} from 'vue-feather-icons'
|
||||
import Spinner from '../../components/FilesView/Spinner'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import BarChart from '../../components/UI/BarChart'
|
||||
import Spinner from '../../components/UI/Others/Spinner'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import BarChart from '../../components/UI/BarChart/BarChart'
|
||||
import {mapGetters} from 'vuex'
|
||||
import axios from 'axios'
|
||||
import WidgetLatestTransactions from '../../components/Admin/WidgetLatestTransactions'
|
||||
import AlertBox from "../../components/Admin/AlertBox";
|
||||
import AppSpecification from "../../components/Admin/AppSpecification";
|
||||
import WidgetLatestTransactions from '../../components/Dashboard/Widgets/WidgetLatestTransactions'
|
||||
import AlertBox from "../../components/UI/Others/AlertBox";
|
||||
import AppSpecification from "../../components/Dashboard/AppSpecification";
|
||||
|
||||
export default {
|
||||
name: 'Dashboard',
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
import FixedTransactionRow from '../../components/Subscription/FixedTransactionRow'
|
||||
import MeteredTransactionDetailRow from '../../components/Subscription/MeteredTransactionDetailRow'
|
||||
import MeteredTransactionRow from '../../components/Subscription/MeteredTransactionRow'
|
||||
import MemberAvatar from '../../components/FilesView/MemberAvatar'
|
||||
import DatatableWrapper from '../../components/Others/Tables/DatatableWrapper'
|
||||
import ColorLabel from '../../components/Others/ColorLabel'
|
||||
import MemberAvatar from '../../components/UI/Others/MemberAvatar'
|
||||
import DatatableWrapper from '../../components/UI/Table/DatatableWrapper'
|
||||
import ColorLabel from '../../components/UI/Labels/ColorLabel'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -186,18 +186,17 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputSwitch from '../../../components/Admin/AppInputSwitch'
|
||||
import AppInputText from '../../../components/Admin/AppInputText'
|
||||
import AppInputSwitch from '../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import AppInputText from '../../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import MobileActionButton from '../../../components/FilesView/MobileActionButton'
|
||||
import SwitchInput from '../../../components/Others/Forms/SwitchInput'
|
||||
import SearchInput from '../../../components/Others/Forms/SearchInput'
|
||||
import FormLabel from '../../../components/Others/Forms/FormLabel'
|
||||
import MobileActionButton from '../../../components/UI/Buttons/MobileActionButton'
|
||||
import SwitchInput from '../../../components/Inputs/SwitchInput'
|
||||
import SearchInput from '../../../components/Inputs/SearchInput'
|
||||
import FormLabel from '../../../components/UI/Labels/FormLabel'
|
||||
import MobileHeader from '../../../components/Mobile/MobileHeader'
|
||||
import ButtonBase from '../../../components/FilesView/ButtonBase'
|
||||
import InfoBox from '../../../components/Others/Forms/InfoBox'
|
||||
import PageHeader from '../../../components/Others/PageHeader'
|
||||
import Spinner from '../../../components/FilesView/Spinner'
|
||||
import ButtonBase from '../../../components/UI/Buttons/ButtonBase'
|
||||
import InfoBox from '../../../components/UI/Others/InfoBox'
|
||||
import Spinner from '../../../components/UI/Others/Spinner'
|
||||
import { PlusIcon, XIcon } from 'vue-feather-icons'
|
||||
import { debounce, omitBy } from 'lodash'
|
||||
import { events } from '../../../bus'
|
||||
@@ -214,7 +213,6 @@ export default {
|
||||
SearchInput,
|
||||
SwitchInput,
|
||||
ButtonBase,
|
||||
PageHeader,
|
||||
FormLabel,
|
||||
PlusIcon,
|
||||
InfoBox,
|
||||
|
||||
@@ -66,18 +66,16 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DatatableWrapper from '../../components/Others/Tables/DatatableWrapper'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import DatatableWrapper from '../../components/UI/Table/DatatableWrapper'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import EmptyPageContent from '../../components/Others/EmptyPageContent'
|
||||
import SwitchInput from '../../components/Others/Forms/SwitchInput'
|
||||
import SwitchInput from '../../components/Inputs/SwitchInput'
|
||||
import MobileHeader from '../../components/Mobile/MobileHeader'
|
||||
import SectionTitle from '../../components/Others/SectionTitle'
|
||||
import ButtonBase from '../../components/FilesView/ButtonBase'
|
||||
import SectionTitle from '../../components/UI/Labels/SectionTitle'
|
||||
import ButtonBase from '../../components/UI/Buttons/ButtonBase'
|
||||
import { Trash2Icon, Edit2Icon } from 'vue-feather-icons'
|
||||
import PageHeader from '../../components/Others/PageHeader'
|
||||
import ColorLabel from '../../components/Others/ColorLabel'
|
||||
import Spinner from '../../components/FilesView/Spinner'
|
||||
import axios from 'axios'
|
||||
import ColorLabel from '../../components/UI/Labels/ColorLabel'
|
||||
import Spinner from '../../components/UI/Others/Spinner'
|
||||
|
||||
export default {
|
||||
name: 'Pages',
|
||||
@@ -89,7 +87,6 @@ export default {
|
||||
MobileHeader,
|
||||
SwitchInput,
|
||||
Trash2Icon,
|
||||
PageHeader,
|
||||
ButtonBase,
|
||||
ColorLabel,
|
||||
Edit2Icon,
|
||||
|
||||
@@ -33,23 +33,22 @@
|
||||
</AppInputText>
|
||||
</div>
|
||||
<div id="loader" v-if="isLoading">
|
||||
<Spinner></Spinner>
|
||||
<Spinner />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputSwitch from '../../../components/Admin/AppInputSwitch'
|
||||
import AppInputText from '../../../components/Admin/AppInputText'
|
||||
import AppInputSwitch from '../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import AppInputText from '../../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import FormLabel from '../../../components/Others/Forms/FormLabel'
|
||||
import FormLabel from '../../../components/UI/Labels/FormLabel'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import SwitchInput from '../../../components/Others/Forms/SwitchInput'
|
||||
import SwitchInput from '../../../components/Inputs/SwitchInput'
|
||||
import MobileHeader from '../../../components/Mobile/MobileHeader'
|
||||
import SectionTitle from '../../../components/Others/SectionTitle'
|
||||
import ButtonBase from '../../../components/FilesView/ButtonBase'
|
||||
import PageHeader from '../../../components/Others/PageHeader'
|
||||
import Spinner from '../../../components/FilesView/Spinner'
|
||||
import SectionTitle from '../../../components/UI/Labels/SectionTitle'
|
||||
import ButtonBase from '../../../components/UI/Buttons/ButtonBase'
|
||||
import Spinner from '../../../components/UI/Others/Spinner'
|
||||
import axios from 'axios'
|
||||
|
||||
export default {
|
||||
@@ -63,7 +62,6 @@ export default {
|
||||
SectionTitle,
|
||||
MobileHeader,
|
||||
SwitchInput,
|
||||
PageHeader,
|
||||
ButtonBase,
|
||||
required,
|
||||
Spinner,
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CardNavigation from '../../../components/Admin/CardNavigation'
|
||||
import CardNavigation from '../../../components/UI/Others/CardNavigation'
|
||||
|
||||
export default {
|
||||
name: 'PaymentSettings',
|
||||
|
||||
@@ -104,16 +104,15 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import ImageInput from '../../../../components/Others/Forms/ImageInput'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import ImageInput from '../../../../components/Inputs/ImageInput'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import axios from 'axios'
|
||||
import { mapGetters } from 'vuex'
|
||||
@@ -129,7 +128,6 @@ export default {
|
||||
ImageInput,
|
||||
ButtonBase,
|
||||
FormLabel,
|
||||
SetupBox,
|
||||
required,
|
||||
PageTab,
|
||||
InfoBox,
|
||||
|
||||
@@ -466,21 +466,20 @@
|
||||
|
||||
<script>
|
||||
import { Edit2Icon, Trash2Icon } from 'vue-feather-icons'
|
||||
import AppInputButton from '../../../../components/Admin/AppInputButton'
|
||||
import DatatableWrapper from '../../../../components/Others/Tables/DatatableWrapper'
|
||||
import AppInputButton from '../../../../components/Forms/Layouts/AppInputButton'
|
||||
import DatatableWrapper from '../../../../components/UI/Table/DatatableWrapper'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import ImageInput from '../../../../components/Others/Forms/ImageInput'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import CopyInput from '../../../../components/Others/Forms/CopyInput'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import ImageInput from '../../../../components/Inputs/ImageInput'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import CopyInput from '../../../../components/Inputs/CopyInput'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { events } from '../../../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
@@ -504,7 +503,6 @@ export default {
|
||||
FormLabel,
|
||||
Trash2Icon,
|
||||
Edit2Icon,
|
||||
SetupBox,
|
||||
required,
|
||||
PageTab,
|
||||
InfoBox,
|
||||
|
||||
@@ -193,11 +193,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DatatableWrapper from '../../components/Others/Tables/DatatableWrapper'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import SwitchInput from '../../components/Others/Forms/SwitchInput'
|
||||
import ButtonBase from '../../components/FilesView/ButtonBase'
|
||||
import ColorLabel from '../../components/Others/ColorLabel'
|
||||
import DatatableWrapper from '../../components/UI/Table/DatatableWrapper'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import SwitchInput from '../../components/Inputs/SwitchInput'
|
||||
import ButtonBase from '../../components/UI/Buttons/ButtonBase'
|
||||
import ColorLabel from '../../components/UI/Labels/ColorLabel'
|
||||
import { Trash2Icon, Edit2Icon } from 'vue-feather-icons'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
|
||||
@@ -154,16 +154,15 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import ImageInput from '../../../../components/Others/Forms/ImageInput'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import ImageInput from '../../../../components/Inputs/ImageInput'
|
||||
import MobileHeader from '../../../../components/Mobile/MobileHeader'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import SectionTitle from '../../../../components/Others/SectionTitle'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import PageHeader from '../../../../components/Others/PageHeader'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import SectionTitle from '../../../../components/UI/Labels/SectionTitle'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../../../bus'
|
||||
@@ -180,7 +179,6 @@ export default {
|
||||
SelectInput,
|
||||
ButtonBase,
|
||||
ImageInput,
|
||||
PageHeader,
|
||||
FormLabel,
|
||||
required,
|
||||
InfoBox,
|
||||
|
||||
@@ -205,18 +205,17 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import ImageInput from '../../../../components/Others/Forms/ImageInput'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import ImageInput from '../../../../components/Inputs/ImageInput'
|
||||
import MobileHeader from '../../../../components/Mobile/MobileHeader'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import SectionTitle from '../../../../components/Others/SectionTitle'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import PageHeader from '../../../../components/Others/PageHeader'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import SectionTitle from '../../../../components/UI/Labels/SectionTitle'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import {required} from 'vee-validate/dist/rules'
|
||||
import {mapGetters} from 'vuex'
|
||||
import {events} from '../../../../bus'
|
||||
@@ -235,7 +234,6 @@ export default {
|
||||
SelectInput,
|
||||
ButtonBase,
|
||||
ImageInput,
|
||||
PageHeader,
|
||||
FormLabel,
|
||||
required,
|
||||
InfoBox,
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CardNavigation from '../../../components/Admin/CardNavigation'
|
||||
import Spinner from '../../../components/FilesView/Spinner'
|
||||
import CardNavigation from '../../../components/UI/Others/CardNavigation'
|
||||
import Spinner from '../../../components/UI/Others/Spinner'
|
||||
import axios from 'axios'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -17,14 +17,14 @@
|
||||
<router-view v-if="!isLoading" :plan="plan" />
|
||||
|
||||
<div id="loader" v-if="isLoading">
|
||||
<Spinner></Spinner>
|
||||
<Spinner />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CardNavigation from '../../../components/Admin/CardNavigation'
|
||||
import Spinner from '../../../components/FilesView/Spinner'
|
||||
import CardNavigation from '../../../components/UI/Others/CardNavigation'
|
||||
import Spinner from '../../../components/UI/Others/Spinner'
|
||||
import axios from 'axios'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
|
||||
@@ -46,11 +46,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import { required, is } from 'vee-validate/dist/rules'
|
||||
import { events } from '../../../../bus'
|
||||
import axios from 'axios'
|
||||
|
||||
@@ -113,12 +113,12 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
|
||||
export default {
|
||||
name: 'PlanFixedSettings',
|
||||
|
||||
@@ -119,12 +119,12 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
|
||||
export default {
|
||||
name: 'PlanMeteredSettings',
|
||||
|
||||
@@ -125,14 +125,14 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ColorLabel from '../../../../components/Others/ColorLabel'
|
||||
import MemberAvatar from '../../../../components/FilesView/MemberAvatar'
|
||||
import DatatableCellImage from '../../../../components/Others/Tables/DatatableCellImage'
|
||||
import ColorLabel from '../../../../components/UI/Labels/ColorLabel'
|
||||
import MemberAvatar from '../../../../components/UI/Others/MemberAvatar'
|
||||
import DatatableCellImage from '../../../../components/UI/Table/DatatableCellImage'
|
||||
import { DownloadCloudIcon, Edit2Icon, Trash2Icon } from 'vue-feather-icons'
|
||||
import DatatableWrapper from '../../../../components/Others/Tables/DatatableWrapper'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import DatatableWrapper from '../../../../components/UI/Table/DatatableWrapper'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CardNavigation from '../../../components/Admin/CardNavigation'
|
||||
import CardNavigation from '../../../components/UI/Others/CardNavigation'
|
||||
|
||||
export default {
|
||||
name: 'AppSettings',
|
||||
+6
-6
@@ -83,12 +83,12 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import AppInputButton from '../../../../components/Admin/AppInputButton'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import AppInputButton from '../../../../components/Forms/Layouts/AppInputButton'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
+9
-11
@@ -99,17 +99,16 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import ImageInput from '../../../../components/Others/Forms/ImageInput'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import ImageInput from '../../../../components/Inputs/ImageInput'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import axios from 'axios'
|
||||
|
||||
@@ -125,7 +124,6 @@ export default {
|
||||
ImageInput,
|
||||
ButtonBase,
|
||||
FormLabel,
|
||||
SetupBox,
|
||||
required,
|
||||
PageTab,
|
||||
InfoBox,
|
||||
+7
-7
@@ -155,13 +155,13 @@
|
||||
|
||||
<script>
|
||||
import { ValidationObserver, ValidationProvider } from 'vee-validate/dist/vee-validate.full'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import StorageSetup from '../../../../components/Setup/StorageSetup'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import MailSetup from '../../../../components/Setup/MailSetup'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import StorageSetup from '../../../../components/Forms/StorageSetup'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import MailSetup from '../../../../components/Forms/MailSetup'
|
||||
import { events } from '../../../../bus'
|
||||
import axios from 'axios'
|
||||
|
||||
+10
-12
@@ -490,18 +490,17 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import ImageInput from '../../../../components/Others/Forms/ImageInput'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import ImageInput from '../../../../components/Inputs/ImageInput'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import axios from 'axios'
|
||||
import { mapGetters } from 'vuex'
|
||||
@@ -519,7 +518,6 @@ export default {
|
||||
ImageInput,
|
||||
ButtonBase,
|
||||
FormLabel,
|
||||
SetupBox,
|
||||
required,
|
||||
PageTab,
|
||||
InfoBox,
|
||||
+8
-8
@@ -280,18 +280,18 @@
|
||||
<script>
|
||||
import {Edit2Icon} from 'vue-feather-icons'
|
||||
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import AppInputButton from '../../../../components/Admin/AppInputButton'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import AppInputButton from '../../../../components/Forms/Layouts/AppInputButton'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import {required} from 'vee-validate/dist/rules'
|
||||
import {events} from '../../../../bus'
|
||||
import {mapGetters} from 'vuex'
|
||||
import axios from 'axios'
|
||||
import SelectInput from "../../../../components/Others/Forms/SelectInput";
|
||||
import SelectInput from "../../../../components/Inputs/SelectInput";
|
||||
|
||||
export default {
|
||||
name: 'AppOthers',
|
||||
+3
-3
@@ -199,9 +199,9 @@
|
||||
|
||||
<script>
|
||||
import { CheckIcon, XIcon, DownloadCloudIcon } from 'vue-feather-icons'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
+7
-7
@@ -291,13 +291,13 @@
|
||||
<script>
|
||||
import { Edit2Icon } from 'vue-feather-icons'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import SwitchInput from '../../../../components/Others/Forms/SwitchInput'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import CopyInput from '../../../../components/Others/Forms/CopyInput'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import SwitchInput from '../../../../components/Inputs/SwitchInput'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import CopyInput from '../../../../components/Inputs/CopyInput'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { events } from '../../../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
@@ -99,9 +99,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ColorLabel from '../../components/Others/ColorLabel'
|
||||
import MemberAvatar from '../../components/FilesView/MemberAvatar'
|
||||
import DatatableWrapper from '../../components/Others/Tables/DatatableWrapper'
|
||||
import ColorLabel from '../../components/UI/Labels/ColorLabel'
|
||||
import MemberAvatar from '../../components/UI/Others/MemberAvatar'
|
||||
import DatatableWrapper from '../../components/UI/Table/DatatableWrapper'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -262,22 +262,21 @@
|
||||
</DatatableWrapper>
|
||||
</div>
|
||||
<div id="loader" v-if="isLoading">
|
||||
<Spinner></Spinner>
|
||||
<Spinner />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MemberAvatar from '../../components/FilesView/MemberAvatar'
|
||||
import DatatableCellImage from '../../components/Others/Tables/DatatableCellImage'
|
||||
import DatatableWrapper from '../../components/Others/Tables/DatatableWrapper'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MemberAvatar from '../../components/UI/Others/MemberAvatar'
|
||||
import DatatableCellImage from '../../components/UI/Table/DatatableCellImage'
|
||||
import DatatableWrapper from '../../components/UI/Table/DatatableWrapper'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileHeader from '../../components/Mobile/MobileHeader'
|
||||
import SectionTitle from '../../components/Others/SectionTitle'
|
||||
import ButtonBase from '../../components/FilesView/ButtonBase'
|
||||
import PageHeader from '../../components/Others/PageHeader'
|
||||
import ColorLabel from '../../components/Others/ColorLabel'
|
||||
import Spinner from '../../components/FilesView/Spinner'
|
||||
import SectionTitle from '../../components/UI/Labels/SectionTitle'
|
||||
import ButtonBase from '../../components/UI/Buttons/ButtonBase'
|
||||
import ColorLabel from '../../components/UI/Labels/ColorLabel'
|
||||
import Spinner from '../../components/UI/Others/Spinner'
|
||||
import { Trash2Icon, Edit2Icon } from 'vue-feather-icons'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
@@ -292,7 +291,6 @@ export default {
|
||||
SectionTitle,
|
||||
MobileHeader,
|
||||
Trash2Icon,
|
||||
PageHeader,
|
||||
ButtonBase,
|
||||
ColorLabel,
|
||||
Edit2Icon,
|
||||
|
||||
@@ -37,17 +37,16 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CardNavigation from '../../../components/Admin/CardNavigation'
|
||||
import CardNavigation from '../../../components/UI/Others/CardNavigation'
|
||||
import { UserIcon, HardDriveIcon, LockIcon, Trash2Icon, FileTextIcon, CreditCardIcon } from 'vue-feather-icons'
|
||||
import MobileHeader from '../../../components/Mobile/MobileHeader'
|
||||
import SectionTitle from '../../../components/Others/SectionTitle'
|
||||
import PageHeader from '../../../components/Others/PageHeader'
|
||||
import ColorLabel from '../../../components/Others/ColorLabel'
|
||||
import Spinner from '../../../components/FilesView/Spinner'
|
||||
import SectionTitle from '../../../components/UI/Labels/SectionTitle'
|
||||
import ColorLabel from '../../../components/UI/Labels/ColorLabel'
|
||||
import Spinner from '../../../components/UI/Others/Spinner'
|
||||
import { events } from '../../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
import MemberAvatar from "../../../components/FilesView/MemberAvatar";
|
||||
import MemberAvatar from "../../../components/UI/Others/MemberAvatar";
|
||||
|
||||
export default {
|
||||
name: 'Profile',
|
||||
@@ -59,7 +58,6 @@ export default {
|
||||
SectionTitle,
|
||||
FileTextIcon,
|
||||
MobileHeader,
|
||||
PageHeader,
|
||||
ColorLabel,
|
||||
Trash2Icon,
|
||||
UserIcon,
|
||||
|
||||
@@ -107,15 +107,14 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../../components/Admin/AppInputText'
|
||||
import AppInputText from '../../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import SelectInput from '../../../components/Others/Forms/SelectInput'
|
||||
import ImageInput from '../../../components/Others/Forms/ImageInput'
|
||||
import FormLabel from '../../../components/Others/Forms/FormLabel'
|
||||
import SelectInput from '../../../components/Inputs/SelectInput'
|
||||
import ImageInput from '../../../components/Inputs/ImageInput'
|
||||
import FormLabel from '../../../components/UI/Labels/FormLabel'
|
||||
import MobileHeader from '../../../components/Mobile/MobileHeader'
|
||||
import SectionTitle from '../../../components/Others/SectionTitle'
|
||||
import ButtonBase from '../../../components/FilesView/ButtonBase'
|
||||
import PageHeader from '../../../components/Others/PageHeader'
|
||||
import SectionTitle from '../../../components/UI/Labels/SectionTitle'
|
||||
import ButtonBase from '../../../components/UI/Buttons/ButtonBase'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../../bus'
|
||||
@@ -132,7 +131,6 @@ export default {
|
||||
SelectInput,
|
||||
ButtonBase,
|
||||
ImageInput,
|
||||
PageHeader,
|
||||
FormLabel,
|
||||
required,
|
||||
},
|
||||
|
||||
@@ -40,15 +40,14 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import { required, is } from 'vee-validate/dist/rules'
|
||||
import { events } from '../../../../bus'
|
||||
import axios from 'axios'
|
||||
@@ -65,7 +64,6 @@ export default {
|
||||
ValidationProvider,
|
||||
ValidationObserver,
|
||||
ButtonBase,
|
||||
SetupBox,
|
||||
required,
|
||||
},
|
||||
data() {
|
||||
|
||||
@@ -136,15 +136,14 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import SelectInput from '../../../../components/Others/Forms/SelectInput'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import SelectInput from '../../../../components/Inputs/SelectInput'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../../../bus'
|
||||
@@ -163,7 +162,6 @@ export default {
|
||||
ValidationObserver,
|
||||
SelectInput,
|
||||
ButtonBase,
|
||||
SetupBox,
|
||||
required,
|
||||
},
|
||||
computed: {
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ProgressLine from '../../../../components/Admin/ProgressLine'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ProgressLine from '../../../../components/UI/ProgressChart/ProgressLine'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -94,10 +94,10 @@
|
||||
</template>
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import ColorLabel from '../../../../components/Others/ColorLabel'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import ColorLabel from '../../../../components/UI/Labels/ColorLabel'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
import { events } from '../../../../bus'
|
||||
|
||||
@@ -26,17 +26,16 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import AppInputSwitch from '../../../../components/Admin/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import AppInputSwitch from '../../../../components/Forms/Layouts/AppInputSwitch'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { events } from '../../../../bus'
|
||||
import axios from 'axios'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
|
||||
export default {
|
||||
name: 'UserPassword',
|
||||
@@ -48,7 +47,6 @@ export default {
|
||||
PageTabGroup,
|
||||
ButtonBase,
|
||||
FormLabel,
|
||||
SetupBox,
|
||||
required,
|
||||
InfoBox,
|
||||
PageTab,
|
||||
|
||||
@@ -106,17 +106,16 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ProgressLine from '../../../../components/Admin/ProgressLine'
|
||||
import AppInputText from '../../../../components/Admin/AppInputText'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Others/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import ProgressLine from '../../../../components/UI/ProgressChart/ProgressLine'
|
||||
import AppInputText from '../../../../components/Forms/Layouts/AppInputText'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import PageTabGroup from '../../../../components/Layout/PageTabGroup'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import ButtonBase from '../../../../components/FilesView/ButtonBase'
|
||||
import SetupBox from '../../../../components/Others/Forms/SetupBox'
|
||||
import ButtonBase from '../../../../components/UI/Buttons/ButtonBase'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import BarChart from '../../../../components/UI/BarChart'
|
||||
import BarChart from '../../../../components/UI/BarChart/BarChart'
|
||||
import { events } from '../../../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
@@ -134,7 +133,6 @@ export default {
|
||||
ValidationProvider,
|
||||
ValidationObserver,
|
||||
ButtonBase,
|
||||
SetupBox,
|
||||
required,
|
||||
BarChart,
|
||||
},
|
||||
|
||||
@@ -73,10 +73,10 @@
|
||||
import MeteredTransactionDetailRow from '../../../../components/Subscription/MeteredTransactionDetailRow'
|
||||
import MeteredTransactionRow from '../../../../components/Subscription/MeteredTransactionRow'
|
||||
import FixedTransactionRow from '../../../../components/Subscription/FixedTransactionRow'
|
||||
import DatatableWrapper from '../../../../components/Others/Tables/DatatableWrapper'
|
||||
import FormLabel from '../../../../components/Others/Forms/FormLabel'
|
||||
import PageTab from '../../../../components/Others/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/Others/Forms/InfoBox'
|
||||
import DatatableWrapper from '../../../../components/UI/Table/DatatableWrapper'
|
||||
import FormLabel from '../../../../components/UI/Labels/FormLabel'
|
||||
import PageTab from '../../../../components/Layout/PageTab'
|
||||
import InfoBox from '../../../../components/UI/Others/InfoBox'
|
||||
import UserMeteredSubscription from './UserMeteredSubscription'
|
||||
import UserFixedSubscription from './UserFixedSubscription'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
@@ -111,12 +111,12 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import Headline from './Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -68,11 +68,11 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import Headline from './Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -1,44 +0,0 @@
|
||||
<template>
|
||||
<div class="mb-14">
|
||||
<!--Custom content-->
|
||||
<slot />
|
||||
|
||||
<!--Default application logo-->
|
||||
<div v-if="!$slots.default">
|
||||
<!--Image logo-->
|
||||
<img
|
||||
v-if="config.app_logo"
|
||||
class="mx-auto mb-6 h-16 md:h-20 mb-10"
|
||||
:src="$getImage(logoSrc)"
|
||||
:alt="config.app_name"
|
||||
/>
|
||||
|
||||
<!--Text logo if image isn't available-->
|
||||
<b v-if="!config.app_logo" class="mb-10 block text-xl font-bold">
|
||||
{{ config.app_name }}
|
||||
</b>
|
||||
</div>
|
||||
|
||||
<h1 class="mb-0.5 text-3xl font-extrabold md:text-4xl">
|
||||
{{ title }}
|
||||
</h1>
|
||||
|
||||
<h2 class="text-xl font-normal md:text-2xl">
|
||||
{{ description }}
|
||||
</h2>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'Headline',
|
||||
props: ['description', 'title'],
|
||||
computed: {
|
||||
...mapGetters(['config', 'isDarkMode']),
|
||||
logoSrc() {
|
||||
return this.isDarkMode && this.config.app_logo ? this.config.app_logo_dark : this.config.app_logo
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
@@ -38,7 +38,7 @@
|
||||
/>
|
||||
</ValidationObserver>
|
||||
|
||||
<SocialiteAuthenticationButtons />
|
||||
<SocialLoginButtons />
|
||||
|
||||
<span v-if="config.userRegistration" class="block">
|
||||
{{ $t('page_login.registration_text') }}
|
||||
@@ -228,21 +228,21 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import { ValidationObserver, ValidationProvider } from 'vee-validate/dist/vee-validate.full'
|
||||
import SocialiteAuthenticationButtons from '../../components/Auth/SocialiteAuthenticationButtons'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import Spinner from '../../components/FilesView/Spinner'
|
||||
import SocialLoginButtons from '../../components/UI/Buttons/SocialLoginButtons'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import Spinner from '../../components/UI/Others/Spinner'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
import axios from 'axios'
|
||||
import Headline from './Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
|
||||
export default {
|
||||
name: 'SignIn',
|
||||
components: {
|
||||
SocialiteAuthenticationButtons,
|
||||
SocialLoginButtons,
|
||||
AuthContentWrapper,
|
||||
ValidationProvider,
|
||||
ValidationObserver,
|
||||
|
||||
@@ -136,7 +136,7 @@
|
||||
</div>
|
||||
</ValidationObserver>
|
||||
|
||||
<SocialiteAuthenticationButtons />
|
||||
<SocialLoginButtons />
|
||||
|
||||
<span class="block"
|
||||
>{{ $t('page_registration.have_an_account') }}
|
||||
@@ -149,12 +149,12 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Headline from './Headline'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import SocialiteAuthenticationButtons from '../../components/Auth/SocialiteAuthenticationButtons'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import SocialLoginButtons from '../../components/UI/Buttons/SocialLoginButtons'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
@@ -163,7 +163,7 @@ import axios from 'axios'
|
||||
export default {
|
||||
name: 'SignUp',
|
||||
components: {
|
||||
SocialiteAuthenticationButtons,
|
||||
SocialLoginButtons,
|
||||
AuthContentWrapper,
|
||||
ValidationProvider,
|
||||
ValidationObserver,
|
||||
|
||||
@@ -14,10 +14,10 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import Headline from './Headline'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
|
||||
export default {
|
||||
name: 'SuccessfullyEmailVerified',
|
||||
|
||||
@@ -16,10 +16,10 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import Headline from './Headline'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
|
||||
export default {
|
||||
name: 'SuccessfullySendEmail',
|
||||
|
||||
@@ -1,152 +0,0 @@
|
||||
<template>
|
||||
<ContentSidebar
|
||||
v-if="navigationTree && navigationTree.length >= 1 && isVisibleNavigationBars"
|
||||
class="relative lg:!grid"
|
||||
>
|
||||
<!--Full screen button-->
|
||||
<div
|
||||
@click="$store.dispatch('toggleNavigationBars')"
|
||||
class="absolute top-2.5 right-0 inline-block cursor-pointer p-3 opacity-20 transition-all duration-200 hover:opacity-70"
|
||||
>
|
||||
<chevrons-left-icon size="18" />
|
||||
</div>
|
||||
|
||||
<div class="mb-auto">
|
||||
<!--Locations-->
|
||||
<ContentGroup :title="$t('base')">
|
||||
<b
|
||||
@click="goHome"
|
||||
class="flex cursor-pointer items-center py-2.5"
|
||||
:class="{ 'router-link-active': $route.params.id === sharedDetail.data.attributes.item_id }"
|
||||
>
|
||||
<home-icon size="17" class="vue-feather icon-active mr-2.5" />
|
||||
<small class="text-active text-xs font-bold">
|
||||
{{ $t('home') }}
|
||||
</small>
|
||||
</b>
|
||||
</ContentGroup>
|
||||
|
||||
<!--Navigator-->
|
||||
<ContentGroup :title="$t('navigator')" can-collapse="true">
|
||||
<TreeMenuNavigator
|
||||
class="folder-tree"
|
||||
:depth="0"
|
||||
:nodes="folder"
|
||||
v-for="folder in navigationTree"
|
||||
:key="folder.id"
|
||||
/>
|
||||
</ContentGroup>
|
||||
</div>
|
||||
|
||||
<ContentGroup class="mt-auto">
|
||||
<router-link
|
||||
v-if="!config.isAuthenticated"
|
||||
:to="{ name: 'SignIn' }"
|
||||
class="group flex cursor-pointer items-center py-2.5"
|
||||
>
|
||||
<div class="button-icon inline-block cursor-pointer rounded-xl pr-3">
|
||||
<user-icon size="14" class="vue-feather group-hover-text-theme" />
|
||||
</div>
|
||||
<b class="group-hover-text-theme text-xs"> Sign In or Create Account </b>
|
||||
</router-link>
|
||||
<div
|
||||
@click="$store.dispatch('toggleThemeMode')"
|
||||
:title="$t('dark_mode_toggle')"
|
||||
class="group flex cursor-pointer items-center py-2.5"
|
||||
>
|
||||
<div class="button-icon inline-block cursor-pointer rounded-xl pr-3">
|
||||
<sun-icon v-if="isDarkMode" size="14" class="vue-feather group-hover-text-theme" />
|
||||
<moon-icon v-if="!isDarkMode" size="14" class="vue-feather group-hover-text-theme" />
|
||||
</div>
|
||||
<b class="group-hover-text-theme text-xs"> Set {{ isDarkMode ? 'Light' : 'Dark' }} Mode </b>
|
||||
</div>
|
||||
</ContentGroup>
|
||||
</ContentSidebar>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
UserIcon,
|
||||
SunIcon,
|
||||
MoonIcon,
|
||||
ChevronsLeftIcon,
|
||||
FolderIcon,
|
||||
HomeIcon,
|
||||
LinkIcon,
|
||||
Trash2Icon,
|
||||
UploadCloudIcon,
|
||||
UserCheckIcon,
|
||||
UsersIcon,
|
||||
XIcon,
|
||||
} from 'vue-feather-icons'
|
||||
import TreeMenuNavigator from '../../../components/Others/TreeMenuNavigator'
|
||||
import ContentSidebar from '../../../components/Sidebar/ContentSidebar'
|
||||
import ContentGroup from '../../../components/Sidebar/ContentGroup'
|
||||
import { events } from '../../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'NavigationSharePanel',
|
||||
components: {
|
||||
TreeMenuNavigator,
|
||||
ContentSidebar,
|
||||
ContentGroup,
|
||||
UserIcon,
|
||||
SunIcon,
|
||||
MoonIcon,
|
||||
UploadCloudIcon,
|
||||
ChevronsLeftIcon,
|
||||
UserCheckIcon,
|
||||
FolderIcon,
|
||||
Trash2Icon,
|
||||
UsersIcon,
|
||||
HomeIcon,
|
||||
LinkIcon,
|
||||
XIcon,
|
||||
},
|
||||
computed: {
|
||||
...mapGetters([
|
||||
'sharedDetail',
|
||||
'navigation',
|
||||
'clipboard',
|
||||
'config',
|
||||
'user',
|
||||
'isVisibleNavigationBars',
|
||||
'isDarkMode',
|
||||
]),
|
||||
favourites() {
|
||||
return this.user.data.relationships.favourites.data.attributes.folders
|
||||
},
|
||||
storage() {
|
||||
return this.$store.getters.user.data.attributes.storage
|
||||
},
|
||||
tree() {
|
||||
return this.user.data.attributes.folders
|
||||
},
|
||||
navigationTree() {
|
||||
return this.navigation ? this.navigation[0].folders : undefined
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
draggedItem: undefined,
|
||||
area: false,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
goHome() {
|
||||
this.$router.replace({
|
||||
name: 'Public',
|
||||
params: {
|
||||
token: this.sharedDetail.data.attributes.token,
|
||||
id: this.sharedDetail.data.attributes.item_id,
|
||||
},
|
||||
})
|
||||
},
|
||||
},
|
||||
created() {
|
||||
// Listen for dragstart folder items
|
||||
events.$on('dragstart', (item) => (this.draggedItem = item))
|
||||
},
|
||||
}
|
||||
</script>
|
||||
@@ -1,252 +0,0 @@
|
||||
<template>
|
||||
<ContentSidebar v-if="isVisibleNavigationBars" class="relative">
|
||||
<!--Full screen button-->
|
||||
<div
|
||||
@click="$store.dispatch('toggleNavigationBars')"
|
||||
class="absolute top-[11px] right-1 inline-block cursor-pointer p-3 opacity-20 transition-all duration-200 hover:opacity-70"
|
||||
>
|
||||
<chevrons-left-icon size="18" />
|
||||
</div>
|
||||
|
||||
<!--Locations-->
|
||||
<ContentGroup
|
||||
v-for="(menu, i) in nav"
|
||||
:key="i"
|
||||
:title="menu.groupTitle"
|
||||
:slug="menu.groupTitle"
|
||||
:can-collapse="menu.groupCollapsable"
|
||||
>
|
||||
<router-link
|
||||
v-for="(item, i) in menu.groupLinks"
|
||||
:key="i"
|
||||
@click.native="resetData"
|
||||
:to="{ name: item.route }"
|
||||
class="flex items-center py-2.5"
|
||||
>
|
||||
<home-icon v-if="item.icon === 'home'" size="17" class="vue-feather icon-active mr-2.5" />
|
||||
<upload-cloud-icon
|
||||
v-if="item.icon === 'upload-cloud'"
|
||||
size="17"
|
||||
class="vue-feather icon-active mr-2.5"
|
||||
/>
|
||||
<link-icon v-if="item.icon === 'link'" size="17" class="vue-feather icon-active mr-2.5" />
|
||||
<trash2-icon v-if="item.icon === 'trash'" size="17" class="vue-feather icon-active mr-2.5" />
|
||||
<users-icon size="17" v-if="item.icon === 'users'" class="vue-feather icon-active mr-2.5" />
|
||||
<user-check-icon size="17" v-if="item.icon === 'user-check'" class="vue-feather icon-active mr-2.5" />
|
||||
|
||||
<b class="text-active text-xs font-bold">
|
||||
{{ item.title }}
|
||||
</b>
|
||||
</router-link>
|
||||
</ContentGroup>
|
||||
|
||||
<!--Navigator-->
|
||||
<ContentGroup v-if="navigation" :title="$t('navigator')" slug="navigator" :can-collapse="true">
|
||||
<small v-if="tree.length === 0" class="text-xs text-gray-500 dark:text-gray-500">
|
||||
{{ $t("not_any_folder") }}
|
||||
</small>
|
||||
<TreeMenuNavigator :depth="0" :nodes="folder" v-for="folder in tree" :key="folder.id" />
|
||||
</ContentGroup>
|
||||
|
||||
<!--Favourites-->
|
||||
<ContentGroup v-if="user" :title="$t('favourites')" slug="favourites" :can-collapse="true">
|
||||
<div
|
||||
@dragover.prevent="dragEnter"
|
||||
@dragleave="dragLeave"
|
||||
@drop="dragFinish($event)"
|
||||
:class="{ 'border-theme': area }"
|
||||
class="-ml-5 rounded-lg border-2 border-dashed border-transparent pl-5"
|
||||
>
|
||||
<!--Empty message-->
|
||||
<small v-if="favourites.length === 0" class="text-xs text-gray-500 dark:text-gray-500" :key="0">
|
||||
{{ $t('sidebar.favourites_empty') }}
|
||||
</small>
|
||||
|
||||
<!--Folder item-->
|
||||
<div
|
||||
@click="goToFolder(folder)"
|
||||
v-for="folder in favourites"
|
||||
:key="folder.data.id"
|
||||
class="group flex cursor-pointer items-center justify-between py-2.5"
|
||||
>
|
||||
<div class="flex items-center">
|
||||
<folder-icon
|
||||
size="17"
|
||||
class="vue-feather mr-2.5"
|
||||
:class="{
|
||||
'text-theme': $route.params.id === folder.data.id,
|
||||
}"
|
||||
/>
|
||||
<span
|
||||
class="max-w-1 overflow-hidden text-ellipsis whitespace-nowrap text-xs font-bold"
|
||||
:class="{
|
||||
'text-theme': $route.params.id === folder.data.id,
|
||||
}"
|
||||
>
|
||||
{{ folder.data.attributes.name }}
|
||||
</span>
|
||||
</div>
|
||||
<div @click.stop="$removeFavourite(folder)" class="-m-2 p-2">
|
||||
<x-icon size="12" class="mr-5 opacity-0 group-hover:opacity-100" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ContentGroup>
|
||||
</ContentSidebar>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
ChevronsLeftIcon,
|
||||
FolderIcon,
|
||||
HomeIcon,
|
||||
LinkIcon,
|
||||
Trash2Icon,
|
||||
UploadCloudIcon,
|
||||
UserCheckIcon,
|
||||
UsersIcon,
|
||||
XIcon,
|
||||
} from 'vue-feather-icons'
|
||||
import TreeMenuNavigator from '../../../components/Others/TreeMenuNavigator'
|
||||
import ContentSidebar from '../../../components/Sidebar/ContentSidebar'
|
||||
import ContentGroup from '../../../components/Sidebar/ContentGroup'
|
||||
import { events } from '../../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'PanelNavigationFiles',
|
||||
components: {
|
||||
TreeMenuNavigator,
|
||||
ContentSidebar,
|
||||
ContentGroup,
|
||||
ChevronsLeftIcon,
|
||||
UploadCloudIcon,
|
||||
UserCheckIcon,
|
||||
FolderIcon,
|
||||
Trash2Icon,
|
||||
UsersIcon,
|
||||
HomeIcon,
|
||||
LinkIcon,
|
||||
XIcon,
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['isVisibleNavigationBars', 'navigation', 'clipboard', 'config', 'user']),
|
||||
favourites() {
|
||||
return this.user.data.relationships.favourites.data
|
||||
},
|
||||
storage() {
|
||||
return this.$store.getters.user.data.attributes.storage
|
||||
},
|
||||
tree() {
|
||||
return {
|
||||
RecentUploads: this.navigation[0].folders,
|
||||
MySharedItems: this.navigation[0].folders,
|
||||
Trash: this.navigation[0].folders,
|
||||
Public: this.navigation[0].folders,
|
||||
Files: this.navigation[0].folders,
|
||||
TeamFolders: this.navigation[1].folders,
|
||||
SharedWithMe: this.navigation[2].folders,
|
||||
}[this.$route.name]
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
draggedItem: undefined,
|
||||
area: false,
|
||||
nav: [
|
||||
{
|
||||
groupCollapsable: false,
|
||||
groupTitle: this.$t('sidebar.locations_title'),
|
||||
groupLinks: [
|
||||
{
|
||||
icon: 'home',
|
||||
route: 'Files',
|
||||
title: this.$t('sidebar.home'),
|
||||
},
|
||||
{
|
||||
icon: 'upload-cloud',
|
||||
route: 'RecentUploads',
|
||||
title: this.$t('sidebar.latest'),
|
||||
},
|
||||
{
|
||||
icon: 'link',
|
||||
route: 'MySharedItems',
|
||||
title: this.$t('publicly_shared'),
|
||||
},
|
||||
{
|
||||
icon: 'trash',
|
||||
route: 'Trash',
|
||||
title: this.$t('locations.trash'),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
groupCollapsable: true,
|
||||
groupTitle: this.$t('collaboration'),
|
||||
groupLinks: [
|
||||
{
|
||||
icon: 'users',
|
||||
route: 'TeamFolders',
|
||||
title: this.$t('team_folders'),
|
||||
},
|
||||
{
|
||||
icon: 'user-check',
|
||||
route: 'SharedWithMe',
|
||||
title: this.$t('shared_with_me'),
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
resetData() {
|
||||
this.$store.commit('SET_CURRENT_TEAM_FOLDER', null)
|
||||
this.$store.commit('CLIPBOARD_CLEAR')
|
||||
},
|
||||
goToFolder(folder) {
|
||||
this.$router.push({ name: 'Files', params: { id: folder.data.id } })
|
||||
},
|
||||
dragLeave() {
|
||||
this.area = false
|
||||
},
|
||||
dragEnter() {
|
||||
if (this.draggedItem && this.draggedItem.data.type !== 'folder') return
|
||||
|
||||
if (this.clipboard.length > 0 && this.clipboard.find((item) => item.data.type !== 'folder')) return
|
||||
|
||||
this.area = true
|
||||
},
|
||||
dragFinish() {
|
||||
this.area = false
|
||||
|
||||
events.$emit('drop')
|
||||
|
||||
// Check if dragged item is folder
|
||||
if (this.draggedItem && this.draggedItem.data.type !== 'folder') return
|
||||
|
||||
// Check if folder exist in favourites
|
||||
if (this.favourites.find((folder) => folder.data.id === this.draggedItem.data.id)) return
|
||||
|
||||
// Prevent to move folders to self
|
||||
if (this.clipboard.length > 0 && this.clipboard.find((item) => item.data.type !== 'folder')) return
|
||||
|
||||
// Add to favourites non selected folder
|
||||
if (!this.clipboard.includes(this.draggedItem)) {
|
||||
this.$store.dispatch('addToFavourites', this.draggedItem)
|
||||
}
|
||||
|
||||
// Add to favourites selected folders
|
||||
if (this.clipboard.includes(this.draggedItem)) {
|
||||
this.$store.dispatch('addToFavourites', null)
|
||||
}
|
||||
},
|
||||
},
|
||||
created() {
|
||||
// Listen for dragstart folder items
|
||||
events.$on('dragstart', (item) => (this.draggedItem = item))
|
||||
|
||||
this.$store.dispatch('getFolderTree')
|
||||
},
|
||||
}
|
||||
</script>
|
||||
@@ -210,20 +210,20 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/FilesView/MobileActionButtonUpload'
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/FilesView/MobileCreateMenu'
|
||||
import ButtonUpload from '../../components/FilesView/ButtonUpload'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import OptionUpload from '../../components/FilesView/OptionUpload'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/UI/Buttons/MobileActionButtonUpload'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/Menus/MobileCreateMenu'
|
||||
import ButtonUpload from '../../components/UI/Buttons/ButtonUpload'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import OptionUpload from '../../components/Menus/Components/OptionUpload'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
|
||||
|
||||
@@ -122,17 +122,17 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/FilesView/MobileActionButtonUpload'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/UI/Buttons/MobileActionButtonUpload'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
|
||||
|
||||
@@ -181,19 +181,19 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/FilesView/MobileCreateMenu'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import OptionUpload from '../../components/FilesView/OptionUpload'
|
||||
import ButtonUpload from '../../components/FilesView/ButtonUpload'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/Menus/MobileCreateMenu'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import OptionUpload from '../../components/Menus/Components/OptionUpload'
|
||||
import ButtonUpload from '../../components/UI/Buttons/ButtonUpload'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import { events } from '../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
|
||||
@@ -111,18 +111,18 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/FilesView/MobileActionButtonUpload'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import ButtonUpload from '../../components/FilesView/ButtonUpload'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/UI/Buttons/MobileActionButtonUpload'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import ButtonUpload from '../../components/UI/Buttons/ButtonUpload'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
|
||||
|
||||
@@ -158,22 +158,22 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MobileTeamContextMenu from '../../components/FilesView/MobileTeamContextMenu'
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/FilesView/MobileActionButtonUpload'
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/FilesView/MobileCreateMenu'
|
||||
import ButtonUpload from '../../components/FilesView/ButtonUpload'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import OptionUpload from '../../components/FilesView/OptionUpload'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import ButtonBase from '../../components/FilesView/ButtonBase'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import MobileTeamContextMenu from '../../components/Menus/MobileTeamContextMenu'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/UI/Buttons/MobileActionButtonUpload'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/Menus/MobileCreateMenu'
|
||||
import ButtonUpload from '../../components/UI/Buttons/ButtonUpload'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import OptionUpload from '../../components/Menus/Components/OptionUpload'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import ButtonBase from '../../components/UI/Buttons/ButtonBase'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
|
||||
|
||||
@@ -224,22 +224,22 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MobileTeamContextMenu from '../../components/FilesView/MobileTeamContextMenu'
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/FilesView/MobileActionButtonUpload'
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/FilesView/MobileCreateMenu'
|
||||
import ButtonUpload from '../../components/FilesView/ButtonUpload'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import OptionUpload from '../../components/FilesView/OptionUpload'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import ButtonBase from '../../components/FilesView/ButtonBase'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import MobileTeamContextMenu from '../../components/Menus/MobileTeamContextMenu'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/UI/Buttons/MobileActionButtonUpload'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import MobileCreateMenu from '../../components/Menus/MobileCreateMenu'
|
||||
import ButtonUpload from '../../components/UI/Buttons/ButtonUpload'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import OptionUpload from '../../components/Menus/Components/OptionUpload'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import ButtonBase from '../../components/UI/Buttons/ButtonBase'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
|
||||
|
||||
@@ -111,17 +111,17 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/FilesView/MobileActionButtonUpload'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileActionButtonUpload from '../../components/UI/Buttons/MobileActionButtonUpload'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../../bus'
|
||||
|
||||
|
||||
@@ -157,24 +157,24 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MobileMultiSelectToolbar from '../../components/FilesView/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/FilesView/MobileActionButton'
|
||||
import FileActionsMobile from '../../components/FilesView/FileActionsMobile'
|
||||
import MobileContextMenu from '../../components/FilesView/MobileContextMenu'
|
||||
import MobileMultiSelectToolbar from '../../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import MobileActionButton from '../../components/UI/Buttons/MobileActionButton'
|
||||
import FileActionsMobile from '../../components/Mobile/FileActionsMobile'
|
||||
import MobileContextMenu from '../../components/Menus/MobileContextMenu'
|
||||
import VueFolderIcon from '../../components/Icons/VueFolderIcon'
|
||||
import MobileCreateMenu from '../../components/FilesView/MobileCreateMenu'
|
||||
import EmptyFilePage from '../../components/FilesView/EmptyFilePage'
|
||||
import ToolbarButton from '../../components/FilesView/ToolbarButton'
|
||||
import MemberAvatar from '../../components/FilesView/MemberAvatar'
|
||||
import ButtonUpload from '../../components/FilesView/ButtonUpload'
|
||||
import OptionUpload from '../../components/FilesView/OptionUpload'
|
||||
import FileBrowser from '../../components/FilesView/FileBrowser'
|
||||
import ContextMenu from '../../components/FilesView/ContextMenu'
|
||||
import OptionGroup from '../../components/FilesView/OptionGroup'
|
||||
import Option from '../../components/FilesView/Option'
|
||||
import MobileCreateMenu from '../../components/Menus/MobileCreateMenu'
|
||||
import EmptyFilePage from '../../components/EntriesView/EmptyFilePage'
|
||||
import ToolbarButton from '../../components/UI/Buttons/ToolbarButton'
|
||||
import MemberAvatar from '../../components/UI/Others/MemberAvatar'
|
||||
import ButtonUpload from '../../components/UI/Buttons/ButtonUpload'
|
||||
import OptionUpload from '../../components/Menus/Components/OptionUpload'
|
||||
import FileBrowser from '../../components/EntriesView/FileBrowser'
|
||||
import ContextMenu from '../../components/Menus/ContextMenu'
|
||||
import OptionGroup from '../../components/Menus/Components/OptionGroup'
|
||||
import Option from '../../components/Menus/Components/Option'
|
||||
import {events} from '../../bus'
|
||||
import {mapGetters} from 'vuex'
|
||||
import InfoBox from "../../components/Others/Forms/InfoBox";
|
||||
import InfoBox from "../../components/UI/Others/InfoBox";
|
||||
|
||||
export default {
|
||||
name: 'Files',
|
||||
|
||||
@@ -74,11 +74,11 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import PageTitle from '../../components/Index/Components/PageTitle'
|
||||
import PageFooter from '../../components/Index/IndexPageFooter'
|
||||
import Navigation from '../../components/Index/IndexNavigation'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import PageTitle from '../../components/IndexPage/Components/PageTitle'
|
||||
import PageFooter from '../../components/IndexPage/IndexPageFooter'
|
||||
import Navigation from '../../components/IndexPage/IndexNavigation'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
@@ -18,9 +18,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import PageTitle from '../../components/Index/Components/PageTitle'
|
||||
import PageFooter from '../../components/Index/IndexPageFooter'
|
||||
import Navigation from '../../components/Index/IndexNavigation'
|
||||
import PageTitle from '../../components/IndexPage/Components/PageTitle'
|
||||
import PageFooter from '../../components/IndexPage/IndexPageFooter'
|
||||
import Navigation from '../../components/IndexPage/IndexNavigation'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -26,20 +26,20 @@
|
||||
<PageFooter />
|
||||
</div>
|
||||
<div v-if="isLoading">
|
||||
<Spinner></Spinner>
|
||||
<Spinner />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import HeroScreenshot from '../../components/Index/IndexHeroScreenshot'
|
||||
import PricingTables from '../../components/Index/IndexPricingTables'
|
||||
import MainFeatures from '../../components/Index/IndexMainFeatures'
|
||||
import Navigation from '../../components/Index/IndexNavigation'
|
||||
import PageHeader from '../../components/Index/IndexPageHeader'
|
||||
import GetStarted from '../../components/Index/IndexGetStarted'
|
||||
import PageFooter from '../../components/Index/IndexPageFooter'
|
||||
import Spinner from '../../components/FilesView/Spinner'
|
||||
import HeroScreenshot from '../../components/IndexPage/IndexHeroScreenshot'
|
||||
import PricingTables from '../../components/IndexPage/IndexPricingTables'
|
||||
import MainFeatures from '../../components/IndexPage/IndexMainFeatures'
|
||||
import Navigation from '../../components/IndexPage/IndexNavigation'
|
||||
import PageHeader from '../../components/IndexPage/IndexPageHeader'
|
||||
import GetStarted from '../../components/IndexPage/IndexGetStarted'
|
||||
import PageFooter from '../../components/IndexPage/IndexPageFooter'
|
||||
import Spinner from '../../components/UI/Others/Spinner'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
@@ -85,9 +85,3 @@ export default {
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '../../../sass/vuefilemanager/landing-page';
|
||||
@import '../../../sass/vuefilemanager/variables';
|
||||
@import '../../../sass/vuefilemanager/mixins';
|
||||
</style>
|
||||
|
||||
@@ -13,10 +13,10 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AuthContentWrapper from '../components/Auth/AuthContentWrapper'
|
||||
import AuthContent from '../components/Auth/AuthContent'
|
||||
import AuthButton from '../components/Auth/AuthButton'
|
||||
import Headline from './Auth/Headline'
|
||||
import AuthContentWrapper from '../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import AuthContent from '../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../components/UI/Buttons/AuthButton'
|
||||
import Headline from '../components/UI/Labels/LogoHeadline'
|
||||
|
||||
export default {
|
||||
name: 'NotFound',
|
||||
|
||||
@@ -55,30 +55,30 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import FileSortingMobile from '../components/FilesView/FileSortingMobile'
|
||||
import FileSortingMobile from '../components/Menus/FileSortingMobile'
|
||||
import SidebarNavigation from '../components/Sidebar/SidebarNavigation'
|
||||
import FileFilterMobile from '../components/FilesView/FileFilterMobile'
|
||||
import CreateFolderPopup from '../components/Others/CreateFolderPopup'
|
||||
import ProcessingPopup from '../components/FilesView/ProcessingPopup'
|
||||
import MobileNavigation from '../components/Others/MobileNavigation'
|
||||
import ShareCreatePopup from '../components/Others/ShareCreatePopup'
|
||||
import DesktopToolbar from '../components/FilesView/DesktopToolbar'
|
||||
import FileFilterMobile from '../components/Menus/FileFilterMobile'
|
||||
import CreateFolderPopup from '../components/Popups/CreateFolderPopup'
|
||||
import ProcessingPopup from '../components/Popups/ProcessingPopup'
|
||||
import MobileNavigation from '../components/Mobile/MobileNavigation'
|
||||
import ShareCreatePopup from '../components/Popups/ShareCreatePopup'
|
||||
import DesktopToolbar from '../components/Layout/Toolbars/DesktopToolbar'
|
||||
import CreateTeamFolderPopup from '../components/Teams/CreateTeamFolderPopup'
|
||||
import ConfirmPopup from '../components/Others/Popup/ConfirmPopup'
|
||||
import RenameItemPopup from '../components/Others/RenameItemPopup'
|
||||
import PanelNavigationFiles from './FileView/Components/PanelNavigationFiles'
|
||||
import MobileToolbar from '../components/FilesView/MobileToolbar'
|
||||
import ShareEditPopup from '../components/Others/ShareEditPopup'
|
||||
import ConfirmPopup from '../components/Popups/ConfirmPopup'
|
||||
import RenameItemPopup from '../components/Popups/RenameItemPopup'
|
||||
import PanelNavigationFiles from '../components/EntriesView/PanelNavigationFiles'
|
||||
import MobileToolbar from '../components/Layout/Toolbars/MobileToolbar'
|
||||
import ShareEditPopup from '../components/Popups/ShareEditPopup'
|
||||
import FilePreview from '../components/FilePreview/FilePreview'
|
||||
import MoveItemPopup from '../components/Others/MoveItemPopup'
|
||||
import MoveItemPopup from '../components/Popups/MoveItemPopup'
|
||||
import EditTeamFolderPopup from '../components/Teams/EditTeamFolderPopup'
|
||||
import Spotlight from '../components/Spotlight/Spotlight'
|
||||
import DragUI from '../components/FilesView/DragUI'
|
||||
import InfoSidebar from '../components/FilesView/InfoSidebar'
|
||||
import DragUI from '../components/UI/Others/DragUI'
|
||||
import InfoSidebar from '../components/Layout/Sidebars/InfoSidebar'
|
||||
import { events } from '../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
import CreateUploadRequestPopup from "../components/Others/CreateUploadRequestPopup";
|
||||
import NotificationsPopup from "../components/Others/NotificationsPopup";
|
||||
import CreateUploadRequestPopup from "../components/UploadRequest/CreateUploadRequestPopup";
|
||||
import NotificationsPopup from "../components/Notifications/NotificationsPopup";
|
||||
|
||||
export default {
|
||||
name: 'Platform',
|
||||
|
||||
@@ -74,26 +74,26 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MobileNavigation from '../components/Others/MobileNavigation'
|
||||
import ChargePaymentPopup from '../components/Others/ChargePaymentPopup'
|
||||
import SubscribeAccountPopup from '../components/Subscription/SubscribeAccountPopup'
|
||||
import ConfirmPopup from '../components/Others/Popup/ConfirmPopup'
|
||||
import MobileNavigation from '../components/Mobile/MobileNavigation'
|
||||
import ChargePaymentPopup from '../components/Subscription/Popups/ChargePaymentPopup'
|
||||
import SubscribeAccountPopup from '../components/Subscription/Popups/SubscribeAccountPopup'
|
||||
import ConfirmPopup from '../components/Popups/ConfirmPopup'
|
||||
import FilePreview from '../components/FilePreview/FilePreview'
|
||||
import Spotlight from '../components/Spotlight/Spotlight'
|
||||
import TwoFactorRecoveryCodesPopup from '../components/Others/TwoFactorRecoveryCodesPopup'
|
||||
import CreatePersonalTokenPopup from '../components/Others/CreatePersonalTokenPopup'
|
||||
import TwoFactorQrSetupPopup from '../components/Others/TwoFactorQrSetupPopup'
|
||||
import AvatarInput from '../components/Others/Forms/AvatarInput'
|
||||
import ColorLabel from '../components/Others/ColorLabel'
|
||||
import Spinner from '../components/FilesView/Spinner'
|
||||
import TwoFactorRecoveryCodesPopup from '../components/TwoFactorSetup/TwoFactorRecoveryCodesPopup'
|
||||
import CreatePersonalTokenPopup from '../components/Popups/CreatePersonalTokenPopup'
|
||||
import TwoFactorQrSetupPopup from '../components/TwoFactorSetup/TwoFactorQrSetupPopup'
|
||||
import AvatarInput from '../components/Inputs/AvatarInput'
|
||||
import ColorLabel from '../components/UI/Labels/ColorLabel'
|
||||
import Spinner from '../components/UI/Others/Spinner'
|
||||
import { mapGetters } from 'vuex'
|
||||
import CardNavigation from '../components/Admin/CardNavigation'
|
||||
import ConfirmPassword from '../components/Others/ConfirmPassword'
|
||||
import CardNavigation from '../components/UI/Others/CardNavigation'
|
||||
import ConfirmPassword from '../components/TwoFactorSetup/ConfirmPassword'
|
||||
import MobileNavigationToolbar from '../components/Mobile/MobileNavigationToolbar'
|
||||
import CreateUploadRequestPopup from "../components/Others/CreateUploadRequestPopup";
|
||||
import CreateUploadRequestPopup from "../components/UploadRequest/CreateUploadRequestPopup";
|
||||
import CreateTeamFolderPopup from "../components/Teams/CreateTeamFolderPopup";
|
||||
import ChangeSubscriptionPopup from "../components/Subscription/ChangeSubscriptionPopup";
|
||||
import NotificationsPopup from "../components/Others/NotificationsPopup";
|
||||
import ChangeSubscriptionPopup from "../components/Subscription/Popups/ChangeSubscriptionPopup";
|
||||
import NotificationsPopup from "../components/Notifications/NotificationsPopup";
|
||||
|
||||
export default {
|
||||
name: 'Settings',
|
||||
|
||||
@@ -102,19 +102,19 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../components/Admin/AppInputText'
|
||||
import AppInputText from '../../components/Forms/Layouts/AppInputText'
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Others/Forms/SelectInput'
|
||||
import SwitchInput from '../../components/Others/Forms/SwitchInput'
|
||||
import ImageInput from '../../components/Others/Forms/ImageInput'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Inputs/SelectInput'
|
||||
import SwitchInput from '../../components/Inputs/SwitchInput'
|
||||
import ImageInput from '../../components/Inputs/ImageInput'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { SettingsIcon } from 'vue-feather-icons'
|
||||
import Headline from '../Auth/Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { events } from '../../bus'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -238,18 +238,18 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Others/Forms/SelectInput'
|
||||
import SwitchInput from '../../components/Others/Forms/SwitchInput'
|
||||
import AppInputSwitch from '../../components/Admin/AppInputSwitch'
|
||||
import ImageInput from '../../components/Others/Forms/ImageInput'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import AppInputText from '../../components/Admin/AppInputText'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Inputs/SelectInput'
|
||||
import SwitchInput from '../../components/Inputs/SwitchInput'
|
||||
import AppInputSwitch from '../../components/Forms/Layouts/AppInputSwitch'
|
||||
import ImageInput from '../../components/Inputs/ImageInput'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import AppInputText from '../../components/Forms/Layouts/AppInputText'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { SettingsIcon } from 'vue-feather-icons'
|
||||
import Headline from '../Auth/Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -145,16 +145,16 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Others/Forms/SelectInput'
|
||||
import AppInputText from '../../components/Admin/AppInputText'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Inputs/SelectInput'
|
||||
import AppInputText from '../../components/Forms/Layouts/AppInputText'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { SettingsIcon } from 'vue-feather-icons'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import Headline from '../Auth/Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -171,18 +171,18 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Others/Forms/SelectInput'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import StorageSetup from '../../components/Setup/StorageSetup'
|
||||
import AppInputText from '../../components/Admin/AppInputText'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import MailSetup from '../../components/Setup/MailSetup'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Inputs/SelectInput'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import StorageSetup from '../../components/Forms/StorageSetup'
|
||||
import AppInputText from '../../components/Forms/Layouts/AppInputText'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import MailSetup from '../../components/Forms/MailSetup'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { SettingsIcon } from 'vue-feather-icons'
|
||||
import Headline from '../Auth/Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { events } from '../../bus'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -65,13 +65,13 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { SettingsIcon } from 'vue-feather-icons'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import Headline from '../Auth/Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import axios from 'axios'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -171,14 +171,14 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Others/Forms/SelectInput'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import SelectInput from '../../components/Inputs/SelectInput'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import Headline from '../Auth/Headline'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
import { CheckIcon, XIcon, SettingsIcon } from 'vue-feather-icons'
|
||||
|
||||
@@ -44,25 +44,25 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MobileMultiSelectToolbar from '../components/FilesView/MobileMultiSelectToolbar'
|
||||
import NavigationSharePanel from './FileView/Components/NavigationSharePanel'
|
||||
import FileSortingMobile from '../components/FilesView/FileSortingMobile'
|
||||
import CreateFolderPopup from '../components/Others/CreateFolderPopup'
|
||||
import ProcessingPopup from '../components/FilesView/ProcessingPopup'
|
||||
import DesktopToolbar from '../components/FilesView/DesktopToolbar'
|
||||
import RenameItemPopup from '../components/Others/RenameItemPopup'
|
||||
import MobileToolbar from '../components/FilesView/MobileToolbar'
|
||||
import MobileMultiSelectToolbar from '../components/Layout/Toolbars/MobileMultiSelectToolbar'
|
||||
import NavigationSharePanel from '../components/EntriesView/NavigationSharePanel'
|
||||
import FileSortingMobile from '../components/Menus/FileSortingMobile'
|
||||
import CreateFolderPopup from '../components/Popups/CreateFolderPopup'
|
||||
import ProcessingPopup from '../components/Popups/ProcessingPopup'
|
||||
import DesktopToolbar from '../components/Layout/Toolbars/DesktopToolbar'
|
||||
import RenameItemPopup from '../components/Popups/RenameItemPopup'
|
||||
import MobileToolbar from '../components/Layout/Toolbars/MobileToolbar'
|
||||
import FilePreview from '../components/FilePreview/FilePreview'
|
||||
import MoveItemPopup from '../components/Others/MoveItemPopup'
|
||||
import InfoSidebar from '../components/FilesView/InfoSidebar'
|
||||
import MoveItemPopup from '../components/Popups/MoveItemPopup'
|
||||
import InfoSidebar from '../components/Layout/Sidebars/InfoSidebar'
|
||||
import Spotlight from '../components/Spotlight/Spotlight'
|
||||
import Vignette from '../components/Others/Vignette'
|
||||
import DragUI from '../components/FilesView/DragUI'
|
||||
import Alert from '../components/FilesView/Alert'
|
||||
import Vignette from '../components/UI/Others/Vignette'
|
||||
import DragUI from '../components/UI/Others/DragUI'
|
||||
import Alert from '../components/Popups/Alert'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../bus'
|
||||
import router from '../router'
|
||||
import DesktopSharepageToolbar from '../components/FilesView/DesktopSharepageToolbar'
|
||||
import DesktopSharepageToolbar from '../components/Layout/Toolbars/DesktopSharepageToolbar'
|
||||
|
||||
export default {
|
||||
name: 'Shared',
|
||||
|
||||
@@ -40,10 +40,10 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import AuthContentWrapper from '../components/Auth/AuthContentWrapper'
|
||||
import AuthContent from '../components/Auth/AuthContent'
|
||||
import AuthButton from '../components/Auth/AuthButton'
|
||||
import Headline from './Auth/Headline'
|
||||
import AuthContentWrapper from '../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import AuthContent from '../components/Layout/AuthPages/AuthContent'
|
||||
import AuthButton from '../components/UI/Buttons/AuthButton'
|
||||
import Headline from '../components/UI/Labels/LogoHeadline'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -79,9 +79,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ButtonBase from '../components/FilesView/ButtonBase'
|
||||
import ButtonBase from '../components/UI/Buttons/ButtonBase'
|
||||
import Video from '../components/FilePreview/Media/Video'
|
||||
import ItemGrid from '../components/FilesView/ItemGrid'
|
||||
import ItemGrid from '../components/UI/Entries/ItemGrid'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -120,12 +120,12 @@
|
||||
<script>
|
||||
import { ValidationObserver, ValidationProvider } from 'vee-validate/dist/vee-validate.full'
|
||||
import VueFolderTeamIcon from '../../components/Icons/VueFolderTeamIcon'
|
||||
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Auth/AuthContent'
|
||||
import MemberAvatar from '../../components/FilesView/MemberAvatar'
|
||||
import AuthButton from '../../components/Auth/AuthButton'
|
||||
import Spinner from '../../components/FilesView/Spinner'
|
||||
import Headline from '../Auth/Headline'
|
||||
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
|
||||
import MemberAvatar from '../../components/UI/Others/MemberAvatar'
|
||||
import AuthButton from '../../components/UI/Buttons/AuthButton'
|
||||
import Spinner from '../../components/UI/Others/Spinner'
|
||||
import Headline from '../../components/UI/Labels/LogoHeadline'
|
||||
import { mapGetters } from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AuthContentWrapper from '../components/Auth/AuthContentWrapper'
|
||||
import AuthContent from '../components/Auth/AuthContent'
|
||||
import Headline from './Auth/Headline'
|
||||
import AuthContentWrapper from '../components/Layout/AuthPages/AuthContentWrapper'
|
||||
import AuthContent from '../components/Layout/AuthPages/AuthContent'
|
||||
import Headline from '../components/UI/Labels/LogoHeadline'
|
||||
|
||||
export default {
|
||||
name: 'TemporaryUnavailable',
|
||||
|
||||
@@ -39,19 +39,19 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DesktopUploadRequestToolbar from '../components/FilesView/DesktopUploadRequestToolbar'
|
||||
import MobileUploadRequestToolBar from "../components/FilesView/MobileUploadRequestToolbar"
|
||||
import InfoSidebarUploadRequest from "../components/FilesView/InfoSidebarUploadRequest"
|
||||
import FileSortingMobile from '../components/FilesView/FileSortingMobile'
|
||||
import FileFilterMobile from '../components/FilesView/FileFilterMobile'
|
||||
import CreateFolderPopup from '../components/Others/CreateFolderPopup'
|
||||
import DesktopToolbar from '../components/FilesView/DesktopToolbar'
|
||||
import ConfirmPopup from "../components/Others/Popup/ConfirmPopup"
|
||||
import RenameItemPopup from '../components/Others/RenameItemPopup'
|
||||
import DesktopUploadRequestToolbar from '../components/Layout/Toolbars/DesktopUploadRequestToolbar'
|
||||
import MobileUploadRequestToolBar from "../components/Layout/Toolbars/MobileUploadRequestToolbar"
|
||||
import InfoSidebarUploadRequest from "../components/Layout/Sidebars/InfoSidebarUploadRequest"
|
||||
import FileSortingMobile from '../components/Menus/FileSortingMobile'
|
||||
import FileFilterMobile from '../components/Menus/FileFilterMobile'
|
||||
import CreateFolderPopup from '../components/Popups/CreateFolderPopup'
|
||||
import DesktopToolbar from '../components/Layout/Toolbars/DesktopToolbar'
|
||||
import ConfirmPopup from "../components/Popups/ConfirmPopup"
|
||||
import RenameItemPopup from '../components/Popups/RenameItemPopup'
|
||||
import FilePreview from '../components/FilePreview/FilePreview'
|
||||
import MoveItemPopup from '../components/Others/MoveItemPopup'
|
||||
import MoveItemPopup from '../components/Popups/MoveItemPopup'
|
||||
import Spotlight from '../components/Spotlight/Spotlight'
|
||||
import DragUI from '../components/FilesView/DragUI'
|
||||
import DragUI from '../components/UI/Others/DragUI'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '../bus'
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@ import UserEditSubscription from '../../components/Subscription/UserEditSubscrip
|
||||
import UserFailedPayments from '../../components/Subscription/UserFailedPayments'
|
||||
import UserUsageEstimates from '../../components/Subscription/UserUsageEstimates'
|
||||
import UserBillingAlerts from '../../components/Subscription/UserBillingAlerts'
|
||||
import PageTab from '../../components/Others/Layout/PageTab'
|
||||
import PageTab from '../../components/Layout/PageTab'
|
||||
import UserBalance from '../../components/Subscription/UserBalance'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
|
||||
@@ -139,13 +139,13 @@
|
||||
|
||||
<script>
|
||||
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
|
||||
import SwitchInput from '../../components/Others/Forms/SwitchInput'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import ButtonBase from '../../components/FilesView/ButtonBase'
|
||||
import InfoBox from '../../components/Others/Forms/InfoBox'
|
||||
import AppInputSwitch from '../../components/Admin/AppInputSwitch'
|
||||
import AppInputButton from '../../components/Admin/AppInputButton'
|
||||
import AppInputText from '../../components/Admin/AppInputText'
|
||||
import SwitchInput from '../../components/Inputs/SwitchInput'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import ButtonBase from '../../components/UI/Buttons/ButtonBase'
|
||||
import InfoBox from '../../components/UI/Others/InfoBox'
|
||||
import AppInputSwitch from '../../components/Forms/Layouts/AppInputSwitch'
|
||||
import AppInputButton from '../../components/Forms/Layouts/AppInputButton'
|
||||
import AppInputText from '../../components/Forms/Layouts/AppInputText'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { XIcon, Trash2Icon } from 'vue-feather-icons'
|
||||
import { events } from '../../bus'
|
||||
|
||||
@@ -193,9 +193,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppInputText from '../../components/Admin/AppInputText'
|
||||
import SelectInput from '../../components/Others/Forms/SelectInput'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import AppInputText from '../../components/Forms/Layouts/AppInputText'
|
||||
import SelectInput from '../../components/Inputs/SelectInput'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import { required } from 'vee-validate/dist/rules'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
|
||||
@@ -55,11 +55,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ProgressLine from '../../components/Admin/ProgressLine'
|
||||
import FormLabel from '../../components/Others/Forms/FormLabel'
|
||||
import PageTab from '../../components/Others/Layout/PageTab'
|
||||
import ProgressLine from '../../components/UI/ProgressChart/ProgressLine'
|
||||
import FormLabel from '../../components/UI/Labels/FormLabel'
|
||||
import PageTab from '../../components/Layout/PageTab'
|
||||
import axios from 'axios'
|
||||
import BarChart from '../../components/UI/BarChart'
|
||||
import BarChart from '../../components/UI/BarChart/BarChart'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
Reference in New Issue
Block a user