123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <template>
- <div>
- <div class="flex justify-between">
- <div class="flex">
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="LEFT_SIDEBAR ? $t('hide.sidebar') : $t('show.sidebar')"
- svg="sidebar"
- :class="{ 'transform -rotate-180': !LEFT_SIDEBAR }"
- @click.native="LEFT_SIDEBAR = !LEFT_SIDEBAR"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="`${
- ZEN_MODE ? $t('action.turn_off') : $t('action.turn_on')
- } ${$t('layout.zen_mode')}`"
- :svg="ZEN_MODE ? 'minimize' : 'maximize'"
- :class="{
- '!text-accent !focus-visible:text-accentDark !hover:text-accentDark':
- ZEN_MODE,
- }"
- @click.native="ZEN_MODE = !ZEN_MODE"
- />
- </div>
- <div class="flex">
- <span>
- <tippy
- ref="options"
- interactive
- trigger="click"
- theme="popover"
- arrow
- >
- <template #trigger>
- <ButtonSecondary
- svg="help-circle"
- class="!rounded-none"
- :label="$t('app.help')"
- />
- </template>
- <div class="flex flex-col">
- <SmartItem
- svg="book"
- :label="$t('app.documentation')"
- to="https://docs.hoppscotch.io"
- blank
- @click.native="$refs.options.tippy().hide()"
- />
- <SmartItem
- svg="zap"
- :label="$t('app.keyboard_shortcuts')"
- @click.native="
- showShortcuts = true
- $refs.options.tippy().hide()
- "
- />
- <SmartItem
- svg="gift"
- :label="$t('app.whats_new')"
- to="https://docs.hoppscotch.io/changelog"
- blank
- @click.native="$refs.options.tippy().hide()"
- />
- <SmartItem
- svg="message-circle"
- :label="$t('app.chat_with_us')"
- @click.native="
- chatWithUs()
- $refs.options.tippy().hide()
- "
- />
- <hr />
- <SmartItem
- svg="twitter"
- :label="$t('app.twitter')"
- to="https://hoppscotch.io/twitter"
- blank
- @click.native="$refs.options.tippy().hide()"
- />
- <SmartItem
- svg="user-plus"
- :label="$t('app.invite')"
- @click.native="
- showShare = true
- $refs.options.tippy().hide()
- "
- />
- <SmartItem
- svg="lock"
- :label="$t('app.terms_and_privacy')"
- to="https://docs.hoppscotch.io/privacy"
- blank
- @click.native="$refs.options.tippy().hide()"
- />
- <!-- <SmartItem :label="$t('app.status')" /> -->
- <div class="flex opacity-50 py-2 px-4">
- {{ `${$t("app.name")} ${$t("app.version")}` }}
- </div>
- </div>
- </tippy>
- </span>
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- svg="zap"
- :title="$t('app.shortcuts')"
- @click.native="showShortcuts = true"
- />
- <ButtonSecondary
- v-if="navigatorShare"
- v-tippy="{ theme: 'tooltip' }"
- svg="share-2"
- :title="$t('request.share')"
- @click.native="nativeShare()"
- />
- <ButtonSecondary
- v-tippy="{ theme: 'tooltip' }"
- :title="RIGHT_SIDEBAR ? $t('hide.sidebar') : $t('show.sidebar')"
- svg="sidebar"
- class="transform rotate-180"
- :class="{ 'rotate-360': !RIGHT_SIDEBAR }"
- @click.native="RIGHT_SIDEBAR = !RIGHT_SIDEBAR"
- />
- </div>
- </div>
- <AppShortcuts :show="showShortcuts" @close="showShortcuts = false" />
- <AppShare :show="showShare" @hide-modal="showShare = false" />
- </div>
- </template>
- <script lang="ts">
- import { defineComponent, ref } from "@nuxtjs/composition-api"
- import { defineActionHandler } from "~/helpers/actions"
- import { showChat } from "~/helpers/support"
- import { useSetting } from "~/newstore/settings"
- export default defineComponent({
- setup() {
- const showShortcuts = ref(false)
- const showShare = ref(false)
- defineActionHandler("flyouts.keybinds.toggle", () => {
- showShortcuts.value = !showShortcuts.value
- })
- defineActionHandler("modals.share.toggle", () => {
- showShare.value = !showShare.value
- })
- return {
- LEFT_SIDEBAR: useSetting("LEFT_SIDEBAR"),
- RIGHT_SIDEBAR: useSetting("RIGHT_SIDEBAR"),
- ZEN_MODE: useSetting("ZEN_MODE"),
- navigatorShare: !!navigator.share,
- showShortcuts,
- showShare,
- }
- },
- watch: {
- ZEN_MODE() {
- this.LEFT_SIDEBAR = !this.ZEN_MODE
- },
- },
- methods: {
- nativeShare() {
- if (navigator.share) {
- navigator
- .share({
- title: "Hoppscotch",
- text: "Hoppscotch • Open source API development ecosystem - Helps you create requests faster, saving precious time on development.",
- url: "https://hoppscotch.io",
- })
- .then(() => {})
- .catch(console.error)
- } else {
- // fallback
- }
- },
- chatWithUs() {
- showChat()
- },
- },
- })
- </script>
|