235 lines
11 KiB
Vue
235 lines
11 KiB
Vue
<template>
|
|
<nav v-if="hasNavbar" class="bg-white dark:bg-notion-dark border-b">
|
|
<div class="max-w-7xl mx-auto px-8">
|
|
<div class="flex items-center justify-between h-16">
|
|
<div class="flex items-center">
|
|
<NuxtLink :to="{ name: user ? 'home' : 'index' }"
|
|
class="flex-shrink-0 font-semibold hover:no-underline flex items-center">
|
|
<NuxtImg :src="`${useRuntimeConfig().public.appUrl}/img/logo.svg`" alt="notion tools logo" class="w-8 h-8"/>
|
|
<span class="ml-2 text-md hidden sm:inline text-black dark:text-white">OpnForm</span>
|
|
</NuxtLink>
|
|
<workspace-dropdown class="ml-6"/>
|
|
</div>
|
|
<div v-if="showAuth" class="hidden md:block ml-auto relative">
|
|
<NuxtLink v-if="$route.name !== 'templates'" :to="{name:'templates'}"
|
|
class="text-sm text-gray-600 dark:text-white hover:text-gray-800 cursor-pointer mt-1 mr-8"
|
|
>
|
|
Templates
|
|
</NuxtLink>
|
|
<NuxtLink v-if="$route.name !== 'ai-form-builder'" :to="{name:'ai-form-builder'}"
|
|
class="text-sm text-gray-600 dark:text-white hidden lg:inline hover:text-gray-800 cursor-pointer mt-1 mr-8"
|
|
>
|
|
AI Form Builder
|
|
</NuxtLink>
|
|
<NuxtLink
|
|
v-if="paidPlansEnabled && (user===null || (user && workspace && !workspace.is_pro)) && $route.name !== 'pricing'"
|
|
:to="{name:'pricing'}"
|
|
class="text-sm text-gray-600 dark:text-white hover:text-gray-800 cursor-pointer mt-1 mr-8"
|
|
>
|
|
<span v-if="user">Upgrade</span>
|
|
<span v-else>Pricing</span>
|
|
</NuxtLink>
|
|
<a v-if="hasCrisp" href="#"
|
|
class="text-sm text-gray-600 dark:text-white hover:text-gray-800 cursor-pointer mt-1"
|
|
@click.prevent="openHelpdesk"
|
|
>
|
|
Help
|
|
</a>
|
|
<NuxtLink v-else :href="helpUrl"
|
|
class="text-sm text-gray-600 dark:text-white hover:text-gray-800 cursor-pointer mt-1"
|
|
target="_blank"
|
|
>
|
|
Help
|
|
</NuxtLink>
|
|
</div>
|
|
<div v-if="showAuth" class="hidden md:block pl-5 border-gray-300 border-r h-5"/>
|
|
<div v-if="showAuth" class="block">
|
|
<div class="flex items-center">
|
|
<div class="ml-3 mr-4 relative">
|
|
<div class="relative inline-block text-left">
|
|
<dropdown v-if="user" dusk="nav-dropdown">
|
|
<template #trigger="{toggle}">
|
|
<button id="dropdown-menu-button" type="button"
|
|
class="flex items-center justify-center w-full rounded-md px-4 py-2 text-sm text-gray-700 dark:text-gray-50 hover:bg-gray-50 dark:hover:bg-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-gray-500"
|
|
dusk="nav-dropdown-button" @click.stop="toggle()"
|
|
>
|
|
<img :src="user.photo_url" class="rounded-full w-6 h-6"/>
|
|
<p class="ml-2 hidden sm:inline">
|
|
{{ user.name }}
|
|
</p>
|
|
</button>
|
|
</template>
|
|
|
|
<NuxtLink v-if="userOnboarded" :to="{ name: 'home' }"
|
|
class="block block px-4 py-2 text-md text-gray-700 hover:bg-gray-100 hover:text-gray-900 dark:text-gray-100 dark:hover:text-white dark:hover:bg-gray-600 flex items-center"
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 mr-2" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
|
|
/>
|
|
</svg>
|
|
My Forms
|
|
</NuxtLink>
|
|
|
|
<NuxtLink v-if="userOnboarded" :to="{ name: 'templates-my-templates' }"
|
|
class="block block px-4 py-2 text-md text-gray-700 hover:bg-gray-100 hover:text-gray-900 dark:text-gray-100 dark:hover:text-white dark:hover:bg-gray-600 flex items-center"
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 mr-2" fill="none" viewBox="0 0 24 24"
|
|
stroke-width="1.5" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round"
|
|
d="M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"/>
|
|
</svg>
|
|
My Templates
|
|
</NuxtLink>
|
|
|
|
<NuxtLink :to="{ name: 'settings-profile' }"
|
|
class="block block px-4 py-2 text-md text-gray-700 hover:bg-gray-100 hover:text-gray-900 dark:text-gray-100 dark:hover:text-white dark:hover:bg-gray-600 flex items-center"
|
|
>
|
|
<svg class="w-4 h-4 mr-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"
|
|
/>
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"
|
|
/>
|
|
</svg>
|
|
Settings
|
|
</NuxtLink>
|
|
|
|
<NuxtLink :to="{ name: 'settings-admin' }" v-if="user.moderator"
|
|
class="block block px-4 py-2 text-md text-gray-700 hover:bg-gray-100 hover:text-gray-900 dark:text-gray-100 dark:hover:text-white dark:hover:bg-gray-600 flex items-center"
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-2">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z" />
|
|
</svg>
|
|
Admin
|
|
</NuxtLink>
|
|
|
|
<a href="#"
|
|
class="block block px-4 py-2 text-md text-gray-700 dark:text-white hover:bg-gray-100 hover:text-gray-900 dark:text-gray-100 dark:hover:text-white dark:hover:bg-gray-600 flex items-center"
|
|
@click.prevent="logout"
|
|
>
|
|
<svg class="w-4 h-4 mr-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1"
|
|
/>
|
|
</svg>
|
|
Logout
|
|
</a>
|
|
</dropdown>
|
|
<div v-else class="flex gap-2">
|
|
<NuxtLink v-if="$route.name !== 'login'" :to="{ name: 'login' }"
|
|
class="text-gray-600 dark:text-white hover:text-gray-800 dark:hover:text-white px-0 sm:px-3 py-2 rounded-md text-sm"
|
|
active-class="text-gray-800 dark:text-white"
|
|
>
|
|
Login
|
|
</NuxtLink>
|
|
|
|
<v-button v-track.nav_create_form_click size="small" :to="{ name: 'forms-create-guest' }"
|
|
color="outline-blue" :arrow="true">
|
|
Create a form
|
|
</v-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</template>
|
|
|
|
<script>
|
|
import {computed} from 'vue'
|
|
import Dropdown from '~/components/global/Dropdown.vue'
|
|
import WorkspaceDropdown from './WorkspaceDropdown.vue'
|
|
import opnformConfig from "~/opnform.config.js";
|
|
import {useRuntimeConfig} from "#app";
|
|
|
|
export default {
|
|
components: {
|
|
WorkspaceDropdown,
|
|
Dropdown
|
|
},
|
|
|
|
async setup() {
|
|
const {openHelpdesk} = useCrisp()
|
|
const authStore = useAuthStore()
|
|
return {
|
|
authStore,
|
|
openHelpdesk,
|
|
opnformConfig,
|
|
appStore: useAppStore(),
|
|
formsStore: useFormsStore(),
|
|
workspacesStore: useWorkspacesStore(),
|
|
config: useRuntimeConfig(),
|
|
user: computed(() => authStore.user),
|
|
isIframe: useIsIframe(),
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
helpUrl() {
|
|
return this.opnformConfig.links.help_url
|
|
},
|
|
form() {
|
|
if (this.$route.name && this.$route.name.startsWith('forms-slug')) {
|
|
return this.formsStore.getByKey(this.$route.params.slug)
|
|
}
|
|
return null
|
|
},
|
|
workspace() {
|
|
return this.workspacesStore.getCurrent
|
|
},
|
|
paidPlansEnabled() {
|
|
return this.config.public.paidPlansEnabled
|
|
},
|
|
showAuth() {
|
|
return this.$route.name && this.$route.name !== 'forms-slug'
|
|
},
|
|
hasNavbar() {
|
|
if (this.isIframe) return false
|
|
|
|
if (this.$route.name && this.$route.name === 'forms-slug') {
|
|
if (this.form) {
|
|
// If there is a cover, or if branding is hidden remove nav
|
|
if (this.form.cover_picture || this.form.no_branding) {
|
|
return false
|
|
}
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
return !this.appStore.navbarHidden
|
|
},
|
|
userOnboarded() {
|
|
return this.user && this.user.has_forms === true
|
|
},
|
|
hasCrisp() {
|
|
return this.config.public.crispWebsiteId && this.config.public.crispWebsiteId !== ''
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
async logout() {
|
|
// Log out the user.
|
|
this.authStore.logout()
|
|
|
|
// Reset store
|
|
this.workspacesStore.resetState()
|
|
this.formsStore.resetState()
|
|
|
|
// Redirect to login.
|
|
const router = useRouter()
|
|
router.push({name: 'login'})
|
|
},
|
|
}
|
|
}
|
|
</script>
|