182 lines
5.9 KiB
Vue
182 lines
5.9 KiB
Vue
<template>
|
|
<div>
|
|
<div class="container">
|
|
<div class="p-4">
|
|
<div v-if="currentUser === null">
|
|
<ButtonPrimary
|
|
:label="$t('auth.login')"
|
|
@click.native="showLogin = true"
|
|
/>
|
|
</div>
|
|
<div v-else class="space-y-8">
|
|
<div
|
|
class="bg-primaryLight h-24 md:h-32 -mb-11 rounded"
|
|
style="background-image: url('/images/cover.svg')"
|
|
></div>
|
|
<div class="flex px-4 flex-col md:flex-row space-y-8 justify-between">
|
|
<div class="flex items-end">
|
|
<img
|
|
v-if="currentUser.photoURL"
|
|
:src="currentUser.photoURL"
|
|
class="rounded-lg ring-4 ring-primary h-16 w-16"
|
|
:alt="currentUser.displayName"
|
|
/>
|
|
<SmartIcon v-else name="user" class="svg-icons" />
|
|
<div class="ml-4">
|
|
<label class="heading">
|
|
{{ currentUser.displayName || $t("state.nothing_found") }}
|
|
</label>
|
|
<p class="flex text-secondaryLight items-center">
|
|
{{ currentUser.email }}
|
|
<SmartIcon
|
|
v-if="currentUser.emailVerified"
|
|
name="verified"
|
|
class="ml-2 text-green-500 svg-icons"
|
|
/>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="flex space-x-2 items-end">
|
|
<div>
|
|
<SmartItem
|
|
to="/settings"
|
|
svg="settings"
|
|
:label="$t('profile.app_settings')"
|
|
outline
|
|
/>
|
|
</div>
|
|
<FirebaseLogout outline />
|
|
</div>
|
|
</div>
|
|
<SmartTabs>
|
|
<SmartTab
|
|
:id="'sync'"
|
|
:label="$t('settings.account')"
|
|
:selected="true"
|
|
>
|
|
<section class="p-4">
|
|
<h4 class="font-semibold text-secondaryDark">
|
|
{{ $t("settings.profile") }}
|
|
</h4>
|
|
<div class="mt-1 text-secondaryLight">
|
|
{{ $t("settings.profile_description") }}
|
|
</div>
|
|
<div class="py-4">
|
|
<label for="displayName">
|
|
{{ $t("settings.profile_name") }}
|
|
</label>
|
|
<form
|
|
class="flex md:max-w-sm mt-2"
|
|
@submit.prevent="updateDisplayName"
|
|
>
|
|
<input
|
|
id="displayName"
|
|
v-model="displayName"
|
|
class="input"
|
|
:placeholder="$t('settings.profile_name')"
|
|
type="text"
|
|
autocomplete="off"
|
|
required
|
|
/>
|
|
<ButtonPrimary
|
|
:label="$t('action.save').toString()"
|
|
class="ml-2 min-w-16"
|
|
type="submit"
|
|
:loading="updatingDisplayName"
|
|
/>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
<section class="p-4">
|
|
<h4 class="font-semibold text-secondaryDark">
|
|
{{ $t("settings.sync") }}
|
|
</h4>
|
|
<div class="mt-1 text-secondaryLight">
|
|
{{ $t("settings.sync_description") }}
|
|
</div>
|
|
<div class="space-y-4 py-4">
|
|
<div class="flex items-center">
|
|
<SmartToggle
|
|
:on="SYNC_COLLECTIONS"
|
|
@change="toggleSetting('syncCollections')"
|
|
>
|
|
{{ $t("settings.sync_collections") }}
|
|
</SmartToggle>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<SmartToggle
|
|
:on="SYNC_ENVIRONMENTS"
|
|
@change="toggleSetting('syncEnvironments')"
|
|
>
|
|
{{ $t("settings.sync_environments") }}
|
|
</SmartToggle>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<SmartToggle
|
|
:on="SYNC_HISTORY"
|
|
@change="toggleSetting('syncHistory')"
|
|
>
|
|
{{ $t("settings.sync_history") }}
|
|
</SmartToggle>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</SmartTab>
|
|
<SmartTab :id="'teams'" :label="$t('team.title')">
|
|
<AppSection label="teams">
|
|
<Teams :modal="false" />
|
|
</AppSection>
|
|
</SmartTab>
|
|
</SmartTabs>
|
|
</div>
|
|
</div>
|
|
<FirebaseLogin :show="showLogin" @hide-modal="showLogin = false" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {
|
|
ref,
|
|
useContext,
|
|
useMeta,
|
|
defineComponent,
|
|
} from "@nuxtjs/composition-api"
|
|
import { currentUser$, setDisplayName } from "~/helpers/fb/auth"
|
|
import { useReadonlyStream } from "~/helpers/utils/composables"
|
|
import { toggleSetting, useSetting } from "~/newstore/settings"
|
|
|
|
const {
|
|
app: { i18n },
|
|
} = useContext()
|
|
|
|
const t = i18n.t.bind(i18n)
|
|
|
|
const showLogin = ref(false)
|
|
|
|
const SYNC_COLLECTIONS = useSetting("syncCollections")
|
|
const SYNC_ENVIRONMENTS = useSetting("syncEnvironments")
|
|
const SYNC_HISTORY = useSetting("syncHistory")
|
|
const currentUser = useReadonlyStream(currentUser$, null)
|
|
|
|
const displayName = ref(currentUser$.value?.displayName)
|
|
const updatingDisplayName = ref(false)
|
|
|
|
const updateDisplayName = () => {
|
|
updatingDisplayName.value = true
|
|
setDisplayName(displayName.value).finally(() => {
|
|
updatingDisplayName.value = false
|
|
})
|
|
}
|
|
|
|
useMeta({
|
|
title: `${t("navigation.profile")} • Hoppscotch`,
|
|
})
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default defineComponent({
|
|
head: {},
|
|
})
|
|
</script>
|