aboutsummaryrefslogtreecommitdiff
path: root/src/components/admin_modal/admin_modal_content.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/admin_modal/admin_modal_content.js')
-rw-r--r--src/components/admin_modal/admin_modal_content.js88
1 files changed, 0 insertions, 88 deletions
diff --git a/src/components/admin_modal/admin_modal_content.js b/src/components/admin_modal/admin_modal_content.js
deleted file mode 100644
index 897cc163..00000000
--- a/src/components/admin_modal/admin_modal_content.js
+++ /dev/null
@@ -1,88 +0,0 @@
-import TabSwitcher from 'src/components/tab_switcher/tab_switcher.jsx'
-
-import DataImportExportTab from './tabs/data_import_export_tab.vue'
-import MutesAndBlocksTab from './tabs/mutes_and_blocks_tab.vue'
-import NotificationsTab from './tabs/notifications_tab.vue'
-import FilteringTab from './tabs/filtering_tab.vue'
-import SecurityTab from './tabs/security_tab/security_tab.vue'
-import ProfileTab from './tabs/profile_tab.vue'
-import GeneralTab from './tabs/general_tab.vue'
-import VersionTab from './tabs/version_tab.vue'
-import ThemeTab from './tabs/theme_tab/theme_tab.vue'
-
-import { library } from '@fortawesome/fontawesome-svg-core'
-import {
- faWrench,
- faUser,
- faFilter,
- faPaintBrush,
- faBell,
- faDownload,
- faEyeSlash,
- faInfo
-} from '@fortawesome/free-solid-svg-icons'
-
-library.add(
- faWrench,
- faUser,
- faFilter,
- faPaintBrush,
- faBell,
- faDownload,
- faEyeSlash,
- faInfo
-)
-
-const AdminModalContent = {
- components: {
- TabSwitcher,
-
- DataImportExportTab,
- MutesAndBlocksTab,
- NotificationsTab,
- FilteringTab,
- SecurityTab,
- ProfileTab,
- GeneralTab,
- VersionTab,
- ThemeTab
- },
- computed: {
- isLoggedIn () {
- return !!this.$store.state.users.currentUser
- },
- open () {
- return this.$store.state.interface.AdminModalState !== 'hidden'
- },
- bodyLock () {
- return this.$store.state.interface.AdminModalState === 'visible'
- }
- },
- methods: {
- onOpen () {
- const targetTab = this.$store.state.interface.AdminModalTargetTab
- // We're being told to open in specific tab
- if (targetTab) {
- const tabIndex = this.$refs.tabSwitcher.$slots.default().findIndex(elm => {
- return elm.props && elm.props['data-tab-name'] === targetTab
- })
- if (tabIndex >= 0) {
- this.$refs.tabSwitcher.setTab(tabIndex)
- }
- }
- // Clear the state of target tab, so that next time Admin is opened
- // it doesn't force it.
- this.$store.dispatch('clearAdminModalTargetTab')
- }
- },
- mounted () {
- this.onOpen()
- },
- watch: {
- open: function (value) {
- if (value) this.onOpen()
- }
- }
-}
-
-export default AdminModalContent