多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

829 lines
25 KiB

<template>
<v-app v-if="isProjectInfoLoaded">
<v-app-bar
class="elevation-0"
color="primary"
app
clipped-left
dense
dark
height="48"
>
<div class="d-flex align-center pt-1" style="flex: 1">
<v-toolbar-title>
<v-tooltip bottom>
<template #activator="{ on }">
<v-btn
v-t="['c:navbar:home']"
to="/projects"
icon
class="pa-1 pr-0 brand-icon nc-noco-brand-icon"
v-on="on"
>
<v-img :src="logo" max-height="32px" max-width="32px" />
</v-btn>
</template>
<!-- Home -->
{{ $t("general.home") }}
<span
class="caption font-weight-light pointer"
>(v{{
$store.state.project.appInfo &&
$store.state.project.appInfo.version
}})</span>
</v-tooltip>
<span class="body-1 ml-n1" @click="$router.push('/projects')">
{{ brandName }}</span>
</v-toolbar-title>
<!-- <v-toolbar-items />-->
<!-- loading -->
<span
v-show="$nuxt.$loading.show"
class="caption grey--text ml-3"
>{{ $t("general.loading") }}
<v-icon small color="grey">mdi-spin mdi-loading</v-icon></span>
<span v-shortkey="['ctrl', 'shift', 'd']" @shortkey="openDiscord" />
</div>
<div
v-if="isDashboard"
class="text-capitalize text-center title"
style="flex: 1"
>
{{ $store.getters["project/GtrProjectName"] }}
</div>
<div style="flex: 1" class="d-flex justify-end">
<v-toolbar-items class="hidden-sm-and-down nc-topright-menu">
<release-info />
<language class="mr-3" />
<template v-if="isDashboard">
<div>
<x-btn
v-if="_isUIAllowed('add-user')"
small
btn-class="primary--text nc-menu-share white"
@click="shareModal = true"
>
<v-icon small class="mr-1">
mdi-account-supervisor-outline
</v-icon>
<!-- Share -->
{{ $t("activity.share") }}
</x-btn>
<share-or-invite-modal v-model="shareModal" />
</div>
<span
v-shortkey="['ctrl', 'shift', 'd']"
@shortkey="$router.push('/')"
/>
<x-btn
v-if="!$store.state.settings.nc"
text
btn.class="caption font-weight-bold px-2 text-capitalize"
tooltip="Enable/Disable Models"
@click="cronTabAdd()"
>
<v-icon size="20">
mdi-timetable
</v-icon> &nbsp; Crons
</x-btn>
</template>
<template v-else>
<span
v-shortkey="['ctrl', 'shift', 'c']"
@shortkey="settingsTabAdd"
/>
<span v-shortkey="['ctrl', 'shift', 'b']" @shortkey="changeTheme" />
</template>
<preview-as class="mx-1" />
<v-menu v-if="isAuthenticated" offset-y>
<template #activator="{ on }">
<v-icon
v-ge="['Profile', '']"
text
class="font-weight-bold nc-menu-account icon"
v-on="on"
>
<!-- <v-icon></v-icon>-->
mdi-dots-vertical
</v-icon>
</template>
<v-list dense class="nc-user-menu">
<template>
<v-list-item
v-t="['c:navbar:user:email']"
v-ge="['Settings', '']"
dense
to="/user/settings"
>
<v-list-item-title>
<v-icon small>
mdi-at
</v-icon>&nbsp;
<span class="font-weight-bold caption">{{
userEmail
}}</span>
</v-list-item-title>
</v-list-item>
<v-divider />
<!-- Copy Auth Token -->
<!-- "Auth token copied to clipboard" -->
<v-list-item
v-if="isDashboard"
v-t="['a:navbar:user:copy-auth-token']"
v-clipboard="$store.state.users.token"
dense
@click.stop="
$toast.success($t('msg.toast.authToken')).goAway(3000)
"
>
<v-list-item-title>
<v-icon key="terminal-dash" small>
mdi-content-copy
</v-icon>&nbsp;
<span class="font-weight-regular caption">{{
$t("activity.account.authToken")
}}</span>
</v-list-item-title>
</v-list-item>
<v-list-item
v-if="isDashboard"
v-t="['a:navbar:user:swagger']"
dense
@click.stop="
openUrl(swaggerLink)
"
>
<v-list-item-title>
<v-icon key="terminal-dash" small>
mdi-code-json
</v-icon>&nbsp;
<span class="font-weight-regular caption">
{{ "Swagger API Doc" }}</span>
</v-list-item-title>
</v-list-item>
<!-- <v-list-item
v-t="['a:navbar:user:redoc']"
dense
@click.stop="
openUrl(redocLink)
"
>
<v-list-item-title>
<v-icon key="terminal-dash" small>
mdi-code-json
</v-icon>&nbsp;
<span class="font-weight-regular caption">
{{ "Redoc API Doc" }}</span>
</v-list-item-title>
</v-list-item>-->
<v-divider />
<v-list-item
v-if="isDashboard"
v-t="['c:navbar:user:copy-proj-info']"
v-ge="['Sign Out', '']"
dense
@click="copyProjectInfo"
>
<v-list-item-title>
<v-icon small>
mdi-content-copy
</v-icon>&nbsp;
<span class="font-weight-regular caption">{{
$t("activity.account.projInfo")
}}</span>
</v-list-item-title>
</v-list-item>
<v-divider v-if="isDashboard" />
<v-list-item
v-if="isDashboard"
v-t="['c:navbar:user:themes']"
dense
@click.stop="settingsTabAdd"
>
<v-list-item-title>
<v-icon key="terminal-dash" small>
mdi-palette
</v-icon>&nbsp;
<span class="font-weight-regular caption">{{
$t("activity.account.themes")
}}</span>
</v-list-item-title>
</v-list-item>
<v-divider v-if="isDashboard" />
<v-list-item
v-t="['a:navbar:user:sign-out']"
v-ge="['Sign Out', '']"
dense
@click="MtdSignOut"
>
<v-list-item-title>
<v-icon small>
mdi-logout
</v-icon>&nbsp;
<span class="font-weight-regular caption">{{
$t("general.signOut")
}}</span>
</v-list-item-title>
</v-list-item>
</template>
</v-list>
</v-menu>
<v-menu v-else offset-y open-on-hover>
<template #activator="{ on }">
<v-btn
v-ge="['Profile', '']"
text
class="font-weight-bold nc-menu-account"
v-on="on"
>
<!-- Menu-->
<v-icon>mdi-account</v-icon>
<v-icon>arrow_drop_down</v-icon>
</v-btn>
</template>
<v-list dense>
<v-list-item
v-if="!user && !isThisMobile"
dense
to="/user/authentication/signup"
>
<v-list-item-title>
<v-icon small>
mdi-account-plus-outline
</v-icon> &nbsp;
<span class="font-weight-regular caption">{{
$t("general.signUp")
}}</span>
</v-list-item-title>
</v-list-item>
<v-list-item
v-if="!user && !isThisMobile"
dense
to="/user/authentication/signin"
>
<v-list-item-title>
<v-icon small>
mdi-login
</v-icon> &nbsp;
<span class="font-weight-regular caption">{{
$t("general.signIn")
}}</span>
</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>
</v-toolbar-items>
</div>
</v-app-bar>
<v-main class="pb-0 mb-0">
<v-container class="ma-0 pa-0" fluid style="">
<v-progress-linear
v-show="GetPendingStatus"
top
absolute
color="success"
indeterminate
height="2"
/>
<nuxt />
</v-container>
</v-main>
<dlgUnexpectedError
v-if="dialogErrorShow"
heading="Unexpected Error"
:error="error"
:dialog-error-show="dialogErrorShow"
:error-dialog-cancel="errorDialogCancel"
:error-dialog-report="errorDialogReport"
/>
<dlgDebug
v-if="dialogDebug"
:dialog-show="dialogDebug"
:mtd-dialog-cancel="dialogDebugCancel"
/>
<settings v-model="settingsDialog" />
<loader />
</v-app>
<v-app v-else>
<v-overlay>
<v-progress-circular indeterminate size="64" />
</v-overlay>
</v-app>
</template>
<script>
import { mapGetters, mapActions, mapMutations } from 'vuex'
import ReleaseInfo from '~/components/ReleaseInfo'
import 'splitpanes/dist/splitpanes.css'
import XBtn from '../components/global/XBtn'
import dlgUnexpectedError from '../components/utils/DlgUnexpectedError'
import settings from '../components/Settings'
import { copyTextToClipboard } from '@/helpers/xutils'
import Language from '~/components/utils/Language'
import Loader from '~/components/Loader'
import PreviewAs from '~/components/PreviewAs'
import ShareOrInviteModal from '~/components/auth/ShareOrInviteModal'
Feat - Next release improvements and bug fixes (#2120) * refactor: include log lev3l in progress Signed-off-by: Pranav C <pranavxc@gmail.com> * feat: migration logs classification Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: escape `?` in query Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: handle leading/trailing whitespace in table name re #2073 Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace knex.raw replace `knex.raw` with `knex.from` since response is different for each client Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: created time & modified time handling as dateTime datatype Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: at import issue and data list api corrections Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: richtext migration support Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: filter to ignore dateTime datatype along with date datatype Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: replace all occurance of . from column name Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * refactoring Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: correction in read api Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: keep correct dtxp value Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace ? with _ during column name processing Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * refactoring Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: allow singleLineText to text type instead of tinytext Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * chore: start scripts for pg Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * refactor: thumbnail size increased by 3x Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: exclude whitespace from table name and single select rendering correction Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: execute without extracting raw query in pg Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: upgrade nc-help Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace special characters in column name with an _ Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: handle duplicate table name Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace , in select options with a . Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: for title, trim only spaces Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: multiselect and single select import and rendering Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: unique column name generator Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: mmlist query correction Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: use common function for column/table name generation Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: type correction Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: upgrade nc-help Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: form view field alias & help text migration Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: handle column name referenced by $ * refactor: rename system field, change its position during creation Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: replace . in column name with _ Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: skip rollup for checkbox Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: replace title with id's in viewRowData APIs Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * chore: code cleanup and we are hiring button Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: ignore escaping . in alias Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: headercell overflow Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: support presence of existing tables during migration Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * enhancement: add reach out here link Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: skip default value configuration during import Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * enhancement: webhook prefill default values Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: add missing component properties Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: missing gallery view cover image re # 2099 Signed-off-by: Pranav C <pranavxc@gmail.com> * cache: fix view:[object Object] * fix: hide websocket button and other buttons from shared form view re # 2107 Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: hide virtual columns which are not relevant in expanded form(add) Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: handle view cache based on returned value Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: add galleryViewGet permission for roles Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: upgrade nc-help Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: add beta label Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: add beta label Signed-off-by: Pranav C <pranavxc@gmail.com> * test/cypress: fix- corrections for baseShare UI change Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * test/cypress: fix view menu count Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: disable default autocomplete Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: update docs link Signed-off-by: Pranav C <pranavxc@gmail.com> Co-authored-by: Raju Udava <86527202+dstala@users.noreply.github.com> Co-authored-by: Wing-Kam Wong <wingkwong.code@gmail.com>
2 years ago
import weAreHiring from '~/helpers/weAreHiring'
export default {
components: {
ShareOrInviteModal,
PreviewAs,
Loader,
ReleaseInfo,
Language,
XBtn,
dlgUnexpectedError,
settings
},
data: () => ({
clickCount: true,
templateModal: false,
swaggerOrGraphiqlUrl: null,
showScreensaver: false,
roleIcon: {
owner: 'mdi-account-star',
creator: 'mdi-account-hard-hat',
editor: 'mdi-account-edit',
viewer: 'mdi-eye-outline'
},
showAppStore: false,
showChangeEnv: false,
feedDialog: false,
releaseDownloadedSnackbar: false,
downloadAvailSnackbar: false,
settingsDialog: false,
environmentDialog: false,
darkTheme: true,
error: null,
dialogErrorShow: false,
dialogDebug: false,
clipped: false,
drawer: null,
fixed: false,
right: true,
title: 'Xgene',
isHydrated: false,
snackbar: false,
timeout: 10000,
rolesList: null,
shareModal: false
}),
computed: {
swaggerLink() {
return new URL(`/api/v1/db/meta/projects/${this.projectId}/swagger`, this.$store.state.project.appInfo && this.$store.state.project.appInfo.ncSiteUrl)
},
redocLink() {
return new URL(`/api/v1/db/meta/projects/${this.projectId}/redoc`, this.$store.state.project.appInfo && this.$store.state.project.appInfo.ncSiteUrl)
},
...mapGetters({
logo: 'plugins/brandLogo',
brandName: 'plugins/brandName',
projects: 'project/list',
tabs: 'tabs/list',
sqldMgr: 'sqlMgr/sqlMgr',
GetPendingStatus: 'notification/GetPendingStatus',
isAuthenticated: 'users/GtrIsAuthenticated',
isAdmin: 'users/GtrIsAdmin',
isDocker: 'project/GtrIsDocker',
isFirstLoad: 'project/GtrIsFirstLoad',
isGql: 'project/GtrProjectIsGraphql',
isRest: 'project/GtrProjectIsRest',
isGrpc: 'project/GtrProjectIsGrpc',
role: 'users/GtrRole',
userEmail: 'users/GtrUserEmail'
}),
user() {
return this.$store.getters['users/GtrUser']
},
isThisMobile() {
// just an example, could be one specific value if that's all you need
return this.isHydrated ? this.$vuetify.breakpoint.smAndDown : false
}
},
watch: {
'$route.path'(path, oldPath) {
try {
if (oldPath === path) {
return
}
const recaptcha = this.$recaptchaInstance
if (path.startsWith('/user/')) {
recaptcha.showBadge()
} else {
recaptcha.hideBadge()
}
} catch (e) {}
},
'$route.params.project_id'(newId, oldId) {
if (newId && newId !== oldId) {
this.loadProjectInfo()
}
if (!newId) {
this.swaggerOrGraphiqlUrl = null
}
}
},
mounted() {
this.selectedEnv = this.$store.getters['project/GtrActiveEnv']
this.loadProjectInfo()
},
Feat - Next release improvements and bug fixes (#2120) * refactor: include log lev3l in progress Signed-off-by: Pranav C <pranavxc@gmail.com> * feat: migration logs classification Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: escape `?` in query Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: handle leading/trailing whitespace in table name re #2073 Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace knex.raw replace `knex.raw` with `knex.from` since response is different for each client Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: created time & modified time handling as dateTime datatype Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: at import issue and data list api corrections Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: richtext migration support Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: filter to ignore dateTime datatype along with date datatype Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: replace all occurance of . from column name Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * refactoring Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: correction in read api Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: keep correct dtxp value Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace ? with _ during column name processing Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * refactoring Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: allow singleLineText to text type instead of tinytext Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * chore: start scripts for pg Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * refactor: thumbnail size increased by 3x Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: exclude whitespace from table name and single select rendering correction Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: execute without extracting raw query in pg Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: upgrade nc-help Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace special characters in column name with an _ Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: handle duplicate table name Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: replace , in select options with a . Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: for title, trim only spaces Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: multiselect and single select import and rendering Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: unique column name generator Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: mmlist query correction Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: use common function for column/table name generation Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: type correction Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: upgrade nc-help Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: form view field alias & help text migration Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: handle column name referenced by $ * refactor: rename system field, change its position during creation Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: replace . in column name with _ Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: skip rollup for checkbox Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: replace title with id's in viewRowData APIs Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * chore: code cleanup and we are hiring button Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: ignore escaping . in alias Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: headercell overflow Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: support presence of existing tables during migration Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * enhancement: add reach out here link Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: skip default value configuration during import Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * enhancement: webhook prefill default values Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: add missing component properties Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: missing gallery view cover image re # 2099 Signed-off-by: Pranav C <pranavxc@gmail.com> * cache: fix view:[object Object] * fix: hide websocket button and other buttons from shared form view re # 2107 Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: hide virtual columns which are not relevant in expanded form(add) Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: handle view cache based on returned value Signed-off-by: Pranav C <pranavxc@gmail.com> * fix: add galleryViewGet permission for roles Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: upgrade nc-help Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: add beta label Signed-off-by: Pranav C <pranavxc@gmail.com> * refactor: add beta label Signed-off-by: Pranav C <pranavxc@gmail.com> * test/cypress: fix- corrections for baseShare UI change Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * test/cypress: fix view menu count Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> * fix: disable default autocomplete Signed-off-by: Pranav C <pranavxc@gmail.com> * chore: update docs link Signed-off-by: Pranav C <pranavxc@gmail.com> Co-authored-by: Raju Udava <86527202+dstala@users.noreply.github.com> Co-authored-by: Wing-Kam Wong <wingkwong.code@gmail.com>
2 years ago
created() {
weAreHiring()
},
methods: {
...mapActions({ changeActiveTab: 'tabs/changeActiveTab' }),
...mapMutations({
toggleLogWindow: 'settings/MutToggleLogWindow',
toggleOutputWindow: 'settings/MutToggleOutputWindow',
toggleTreeviewWindow: 'settings/MutToggleTreeviewWindow'
}),
async loadProjectInfo() {
// if (this.$route.params.project_id) {
// try {
// const { info } = (await this.$axios.get(`/nc/${this.$route.params.project_id}/projectApiInfo`, {
// headers: {
// 'xc-auth': this.$store.state.users.token
// }
// })).data
// const obj = Object.values(info).find(v => v.apiType === 'rest' ? v.swaggerUrl : v.gqlApiUrl)
// this.swaggerOrGraphiqlUrl = obj.apiType === 'rest' ? obj.swaggerUrl : obj.gqlApiUrl
// } catch (e) {
// }
// }
},
setPreviewUSer(previewAs) {
this.previewAs = previewAs
window.location.reload()
},
showAppStoreIcon() {
this.showAppStore = true
this.$toast.info('Apps unlocked').goAway(5000)
},
isProjectInfoLoaded() {
return this.$store.state.project.appInfo !== null
},
githubClickHandler(e) {
// e.preventDefault();
// shell.openExternal(e.path.find(e => e.href).href);
},
openUrl(url) {
window.open(url, '_blank')
},
openPricingPage() {
// shell.openExternal(process.env.serverUrl + '/pricing')
},
openHowItWorks() {
// shell.openExternal(process.env.serverUrl + '/how-it-works')
},
openDiscord() {
// shell.openExternal('https://discord.gg/5RgZmkW')
},
openGithub() {
// shell.openExternal('https://github.com/NocoDB/NocoDB')
},
dialogDebugCancel() {
this.dialogDebug = false
},
dialogDebugShow() {
this.dialogDebug = true
},
errorDialogCancel() {
this.dialogErrorShow = false
},
errorDialogReport() {
this.dialogErrorShow = false
},
loadChat() {
if (!window.Tawk_API) {
const s1 = document.createElement('script')
const s0 = document.getElementsByTagName('script')[0]
s1.async = true
s1.src = 'https://embed.tawk.to/5d81b8de9f6b7a4457e23ba7/default'
s1.charset = 'UTF-8'
s1.setAttribute('crossorigin', '*')
s0.parentNode.insertBefore(s1, s0)
setTimeout(() => window.Tawk_API && window.Tawk_API.maximize(), 2000)
} else {
window.Tawk_API.maximize()
}
},
handleMigrationsMenuClick(item, closeMenu = true, sqlEditor = false) {},
apiClientTabAdd() {
// if (this.$route.path.indexOf('dashboard') > -1) {
const tabIndex = this.tabs.findIndex(el => el.key === 'apiClientDir')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'API Client', key: 'apiClientDir' }
item._nodes = { env: '_noco' }
item._nodes.type = 'apiClientDir'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
apiClientSwaggerTabAdd() {
// if (this.$route.path.indexOf('dashboard') > -1) {
const tabIndex = this.tabs.findIndex(
el => el.key === 'apiClientSwaggerDir'
)
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'API Client', key: 'apiClientSwaggerDir' }
item._nodes = { env: '_noco' }
item._nodes.type = 'apiClientSwaggerDir'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
projectInfoTabAdd() {
const tabIndex = this.tabs.findIndex(el => el.key === 'projectInfo')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'Info', key: 'projectInfo' }
item._nodes = { env: '_noco' }
item._nodes.type = 'projectInfo'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
xcMetaTabAdd() {
// if (this.$route.path.indexOf('dashboard') > -1) {
const tabIndex = this.tabs.findIndex(el => el.key === 'meta')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'Meta', key: 'meta' }
item._nodes = { env: '_noco' }
item._nodes.type = 'meta'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
apiClientSwaggerOpen() {
this.$router.push('/apiClient')
},
graphqlClientTabAdd() {
window.open(this.swaggerOrGraphiqlUrl, '_blank')
},
swaggerClientTabAdd() {
window.open(this.swaggerOrGraphiqlUrl, '_blank')
},
grpcTabAdd() {
const tabIndex = this.tabs.findIndex(el => el.key === 'grpcClient')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'gRPC Client', key: 'grpcClient' }
item._nodes = { env: '_noco' }
item._nodes.type = 'grpcClient'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
rolesTabAdd() {
const tabIndex = this.tabs.findIndex(el => el.key === 'roles')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'Team & Auth ', key: 'roles' }
item._nodes = { env: '_noco' }
item._nodes.type = 'roles'
this.$store.dispatch('tabs/ActAddTab', item)
}
setTimeout(() => {
this.$eventBus.$emit('show-add-user')
}, 200)
},
settingsTabAdd() {
const tabIndex = this.tabs.findIndex(
el => el.key === 'projectSettings'
)
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'Themes', key: 'projectSettings' }
item._nodes = { env: '_noco' }
item._nodes.type = 'projectSettings'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
aclTabAdd() {
const tabIndex = this.tabs.findIndex(el => el.key === 'acl')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'ACL', key: 'acl' }
item._nodes = { env: '_noco' }
item._nodes.type = 'acl'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
disableOrEnableModelTabAdd() {
const tabIndex = this.tabs.findIndex(
el => el.key === 'disableOrEnableModel'
)
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'Meta Management', key: 'disableOrEnableModel' }
item._nodes = { env: '_noco' }
item._nodes.type = 'disableOrEnableModel'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
cronTabAdd() {
const tabIndex = this.tabs.findIndex(el => el.key === 'cronJobs')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'Cron Jobs', key: 'cronJobs' }
item._nodes = { env: '_noco' }
item._nodes.type = 'cronJobs'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
appsTabAdd() {
const tabIndex = this.tabs.findIndex(el => el.key === 'appStore')
if (tabIndex !== -1) {
this.changeActiveTab(tabIndex)
} else {
const item = { name: 'App Store', key: 'appStore' }
item._nodes = { env: '_noco' }
item._nodes.type = 'appStore'
this.$store.dispatch('tabs/ActAddTab', item)
}
},
async codeGenerateMvc() {
try {
await this.sqlMgr.projectGenerateBackend({
env: '_noco'
})
this.$toast.success('Yay, REST APIs with MVC generated').goAway(4000)
} catch (e) {
this.$toast.error('Error generating REST APIs code :' + e).goAway(4000)
throw e
}
},
cookieStatus(status) {
this.status = status
},
cookieClickedAccept() {
this.status = 'accept'
},
cookieClickedDecline() {
this.status = 'decline'
// localStorage.removeItem('vue-cookie-accept-decline')
},
removeCookie() {
// console.log('Cookie removed')
localStorage.removeItem('vue-cookie-accept-decline')
this.status = 'Cookie removed, refresh the page.'
},
MtdContactUs() {
this.snackbar = true
},
MtdHiring() {
this.$router.push('/info/hiring')
},
MtdFaq() {
this.$router.push('/info/faq')
},
MtdTos() {
this.$router.push('/info/tos')
},
async MtdSignOut() {
await this.$store.dispatch('users/ActSignOut')
this.$router.push('/user/authentication/signin')
},
MtdToggleDrawer() {
if (!this.$store.getters['users/GtrUser']) {
this.drawer = false
} else {
this.drawer = !this.drawer
}
// console.log('Toggling drawer', this.drawer);
},
changeTheme() {
this.$store.dispatch(
'settings/ActToggleDarkMode',
!this.$store.state.settings.darkTheme
)
this.$e('c:navbar:theme')
},
async copyProjectInfo() {
try {
const data = await this.$api.project.metaGet(
this.$store.state.project.projectId
)
copyTextToClipboard(
Object.entries(data)
.map(([k, v]) => `${k}: **${v}**`)
.join('\n')
)
this.$toast.info('Copied project info to clipboard').goAway(3000)
} catch (e) {
console.log(e)
this.$toast.error(e.message).goAway(3000)
}
}
}
}
</script>
<style scoped>
a {
text-decoration: none;
}
.brand-icon::before {
background: none !important;
}
@keyframes pulse {
0% {
transform: scale(1);
}
60% {
transform: scale(1);
}
70% {
/*opacity: 0;*/
transform: scale(1.35);
}
80% {
transform: scale(1);
}
90% {
/*opacity: 0;*/
transform: scale(1.35);
}
100% {
transform: scale(1);
}
}
.heart-anim {
animation-name: pulse;
animation-duration: 4.5s;
animation-iteration-count: infinite;
}
/deep/ .v-toolbar__items {
align-items: center;
}
/deep/ .nc-ripple {
border-radius: 50%;
}
/deep/ .nc-user-menu .v-list-item--dense,
/deep/ .nc-user-menu .v-list--dense .v-list-item {
min-height: 35px;
}
</style>
<!--
/**
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
*
* @author Naveen MR <oof1lab@gmail.com>
* @author Pranav C Balan <pranavxc@gmail.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
-->