mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			344 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			344 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-container v-if="user">
 | 
						|
    <section class="d-flex flex-column align-center mt-4">
 | 
						|
      <UserAvatar size="96" :user-id="$auth.user.id" />
 | 
						|
 | 
						|
      <h2 class="headline">{{ $t('profile.welcome-user', [user.fullName]) }}</h2>
 | 
						|
      <p class="subtitle-1 mb-0 text-center">
 | 
						|
       {{ $t('profile.description') }}
 | 
						|
      </p>
 | 
						|
      <v-card flat color="background" width="100%" max-width="600px">
 | 
						|
        <v-card-actions class="d-flex justify-center my-4">
 | 
						|
          <v-btn v-if="$auth.user.canInvite"  outlined rounded @click="getSignupLink()">
 | 
						|
            <v-icon left>
 | 
						|
              {{ $globals.icons.createAlt }}
 | 
						|
            </v-icon>
 | 
						|
            {{ $t('profile.get-invite-link') }}
 | 
						|
          </v-btn>
 | 
						|
        </v-card-actions>
 | 
						|
        <div v-show="generatedSignupLink !== ''">
 | 
						|
          <v-card-text>
 | 
						|
            <p class="text-center pb-0">
 | 
						|
              {{ generatedSignupLink }}
 | 
						|
            </p>
 | 
						|
            <v-text-field v-model="sendTo" :label="$t('user.email')" :rules="[validators.email]"> </v-text-field>
 | 
						|
          </v-card-text>
 | 
						|
          <v-card-actions class="py-0 align-center" style="gap: 4px">
 | 
						|
            <BaseButton cancel @click="generatedSignupLink = ''"> {{ $t("general.close") }} </BaseButton>
 | 
						|
            <v-spacer></v-spacer>
 | 
						|
            <AppButtonCopy :icon="false" color="info" :copy-text="generatedSignupLink" />
 | 
						|
            <BaseButton color="info" :disabled="!validEmail" :loading="loading" @click="sendInvite">
 | 
						|
              <template #icon>
 | 
						|
                {{ $globals.icons.email }}
 | 
						|
              </template>
 | 
						|
              {{ $t("user.email") }}
 | 
						|
            </BaseButton>
 | 
						|
          </v-card-actions>
 | 
						|
        </div>
 | 
						|
        <div v-show="showPublicLink">
 | 
						|
          <v-card-text>
 | 
						|
            <p class="text-center pb-0">
 | 
						|
              {{ publicLink }}
 | 
						|
            </p>
 | 
						|
          </v-card-text>
 | 
						|
          <v-card-actions class="py-0 align-center" style="gap: 4px">
 | 
						|
            <BaseButton cancel @click="showPublicLink = false"> {{ $t("general.close") }} </BaseButton>
 | 
						|
            <v-spacer></v-spacer>
 | 
						|
            <AppButtonCopy :icon="false" color="info" :copy-text="publicLink" />
 | 
						|
          </v-card-actions>
 | 
						|
        </div>
 | 
						|
      </v-card>
 | 
						|
    </section>
 | 
						|
    <section class="my-3">
 | 
						|
      <div>
 | 
						|
        <h3 class="headline">{{ $t('profile.account-summary') }}</h3>
 | 
						|
        <p>{{ $t('profile.account-summary-description') }}</p>
 | 
						|
      </div>
 | 
						|
      <v-row tag="section">
 | 
						|
        <v-col cols="12" sm="12" md="12">
 | 
						|
          <v-card outlined>
 | 
						|
            <v-card-title class="headline pb-0"> {{ $t('profile.group-statistics') }} </v-card-title>
 | 
						|
            <v-card-text class="py-0">
 | 
						|
              {{ $t('profile.group-statistics-description') }}
 | 
						|
            </v-card-text>
 | 
						|
            <v-card-text class="d-flex flex-wrap justify-center align-center" style="gap: 0.8rem">
 | 
						|
              <StatsCards
 | 
						|
                v-for="(value, key) in stats"
 | 
						|
                :key="`${key}-${value}`"
 | 
						|
                :min-width="$vuetify.breakpoint.xs ? '100%' : '158'"
 | 
						|
                :icon="getStatsIcon(key)"
 | 
						|
                :to="getStatsTo(key)"
 | 
						|
              >
 | 
						|
                <template #title> {{ getStatsTitle(key) }}</template>
 | 
						|
                <template #value> {{ value }}</template>
 | 
						|
              </StatsCards>
 | 
						|
            </v-card-text>
 | 
						|
          </v-card>
 | 
						|
        </v-col>
 | 
						|
      </v-row>
 | 
						|
    </section>
 | 
						|
    <v-divider class="my-7"></v-divider>
 | 
						|
    <section>
 | 
						|
      <div>
 | 
						|
        <h3 class="headline">{{ $t('profile.personal') }}</h3>
 | 
						|
        <p>{{ $t('profile.personal-description') }}</p>
 | 
						|
      </div>
 | 
						|
      <v-row tag="section">
 | 
						|
        <v-col cols="12" sm="12" md="6">
 | 
						|
          <UserProfileLinkCard
 | 
						|
            :link="{ text: $tc('profile.manage-user-profile'), to: `/user/profile/edit` }"
 | 
						|
            :image="require('~/static/svgs/manage-profile.svg')"
 | 
						|
          >
 | 
						|
            <template #title> {{ $t('profile.user-settings') }} </template>
 | 
						|
            {{ $t('profile.user-settings-description') }}
 | 
						|
          </UserProfileLinkCard>
 | 
						|
        </v-col>
 | 
						|
        <AdvancedOnly>
 | 
						|
          <v-col cols="12" sm="12" md="6">
 | 
						|
            <UserProfileLinkCard
 | 
						|
              :link="{ text: $tc('profile.manage-your-api-tokens'), to: `/user/profile/api-tokens` }"
 | 
						|
              :image="require('~/static/svgs/manage-api-tokens.svg')"
 | 
						|
            >
 | 
						|
              <template #title> {{ $t('settings.token.api-tokens') }} </template>
 | 
						|
              {{ $t('profile.api-tokens-description') }}
 | 
						|
            </UserProfileLinkCard>
 | 
						|
          </v-col>
 | 
						|
        </AdvancedOnly>
 | 
						|
      </v-row>
 | 
						|
    </section>
 | 
						|
    <v-divider class="my-7"></v-divider>
 | 
						|
    <section>
 | 
						|
      <div>
 | 
						|
        <h3 class="headline">{{ $t('group.group') }}</h3>
 | 
						|
        <p>{{ $t('profile.group-description') }}</p>
 | 
						|
      </div>
 | 
						|
      <v-row tag="section">
 | 
						|
        <v-col v-if="$auth.user.canManage" cols="12" sm="12" md="6">
 | 
						|
          <UserProfileLinkCard
 | 
						|
            :link="{ text: $tc('profile.group-settings'), to: `/group` }"
 | 
						|
            :image="require('~/static/svgs/manage-group-settings.svg')"
 | 
						|
          >
 | 
						|
            <template #title> {{ $t('profile.group-settings') }} </template>
 | 
						|
            {{ $t('profile.group-settings-description') }}
 | 
						|
          </UserProfileLinkCard>
 | 
						|
        </v-col>
 | 
						|
        <v-col cols="12" sm="12" md="6">
 | 
						|
          <UserProfileLinkCard
 | 
						|
            :link="{ text: $tc('profile.manage-cookbooks'), to: `/g/${groupSlug}/cookbooks` }"
 | 
						|
            :image="require('~/static/svgs/manage-cookbooks.svg')"
 | 
						|
          >
 | 
						|
            <template #title> {{ $t('sidebar.cookbooks') }} </template>
 | 
						|
            {{ $t('profile.cookbooks-description') }}
 | 
						|
          </UserProfileLinkCard>
 | 
						|
        </v-col>
 | 
						|
        <v-col v-if="user.canManage" cols="12" sm="12" md="6">
 | 
						|
          <UserProfileLinkCard
 | 
						|
            :link="{ text: $tc('profile.manage-members'), to: `/group/members` }"
 | 
						|
            :image="require('~/static/svgs/manage-members.svg')"
 | 
						|
          >
 | 
						|
            <template #title> {{ $t('profile.members') }} </template>
 | 
						|
            {{ $t('profile.members-description') }}
 | 
						|
          </UserProfileLinkCard>
 | 
						|
        </v-col>
 | 
						|
        <AdvancedOnly>
 | 
						|
          <v-col v-if="user.advanced" cols="12" sm="12" md="6">
 | 
						|
            <UserProfileLinkCard
 | 
						|
              :link="{ text: $tc('profile.manage-webhooks'), to: `/group/webhooks` }"
 | 
						|
              :image="require('~/static/svgs/manage-webhooks.svg')"
 | 
						|
            >
 | 
						|
              <template #title> {{ $t('settings.webhooks.webhooks') }} </template>
 | 
						|
              {{ $t('profile.webhooks-description') }}
 | 
						|
            </UserProfileLinkCard>
 | 
						|
          </v-col>
 | 
						|
        </AdvancedOnly>
 | 
						|
        <AdvancedOnly>
 | 
						|
          <v-col cols="12" sm="12" md="6">
 | 
						|
            <UserProfileLinkCard
 | 
						|
              :link="{ text: $tc('profile.manage-notifiers'), to: `/group/notifiers` }"
 | 
						|
              :image="require('~/static/svgs/manage-notifiers.svg')"
 | 
						|
            >
 | 
						|
              <template #title> {{ $t('profile.notifiers') }} </template>
 | 
						|
              {{ $t('profile.notifiers-description') }}
 | 
						|
            </UserProfileLinkCard>
 | 
						|
          </v-col>
 | 
						|
        </AdvancedOnly>
 | 
						|
        <!-- $auth.user.canOrganize should not be null because of the auth middleware -->
 | 
						|
        <v-col v-if="$auth.user.canOrganize" cols="12" sm="12" md="6">
 | 
						|
          <UserProfileLinkCard
 | 
						|
            :link="{ text: $tc('profile.manage-data'), to: `/group/data/foods` }"
 | 
						|
            :image="require('~/static/svgs/manage-recipes.svg')"
 | 
						|
          >
 | 
						|
            <template #title> {{ $t('profile.manage-data') }} </template>
 | 
						|
            {{ $t('profile.manage-data-description') }}
 | 
						|
          </UserProfileLinkCard>
 | 
						|
        </v-col>
 | 
						|
        <AdvancedOnly>
 | 
						|
          <v-col cols="12" sm="12" md="6">
 | 
						|
            <UserProfileLinkCard
 | 
						|
              :link="{ text: $tc('profile.manage-data-migrations'), to: `/group/migrations` }"
 | 
						|
              :image="require('~/static/svgs/manage-data-migrations.svg')"
 | 
						|
            >
 | 
						|
              <template #title>{{ $t('profile.data-migrations') }} </template>
 | 
						|
              {{ $t('profile.data-migrations-description') }}
 | 
						|
            </UserProfileLinkCard>
 | 
						|
          </v-col>
 | 
						|
        </AdvancedOnly>
 | 
						|
      </v-row>
 | 
						|
    </section>
 | 
						|
  </v-container>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { computed, defineComponent, useContext, ref, toRefs, reactive, useAsync, useRoute } from "@nuxtjs/composition-api";
 | 
						|
import UserProfileLinkCard from "@/components/Domain/User/UserProfileLinkCard.vue";
 | 
						|
import { useUserApi } from "~/composables/api";
 | 
						|
import { validators } from "~/composables/use-validators";
 | 
						|
import { alert } from "~/composables/use-toast";
 | 
						|
import UserAvatar from "@/components/Domain/User/UserAvatar.vue";
 | 
						|
import { useAsyncKey } from "~/composables/use-utils";
 | 
						|
import StatsCards from "~/components/global/StatsCards.vue";
 | 
						|
import { UserOut } from "~/lib/api/types/user";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  name: "UserProfile",
 | 
						|
  components: {
 | 
						|
    UserProfileLinkCard,
 | 
						|
    UserAvatar,
 | 
						|
    StatsCards,
 | 
						|
  },
 | 
						|
  middleware: "auth",
 | 
						|
  scrollToTop: true,
 | 
						|
  setup() {
 | 
						|
    const { $auth, i18n } = useContext();
 | 
						|
    const route = useRoute();
 | 
						|
    const groupSlug = computed(() => route.value.params.groupSlug || $auth.user?.groupSlug || "");
 | 
						|
 | 
						|
    // @ts-ignore $auth.user is typed as unknown, but it's a user
 | 
						|
    const user = computed<UserOut | null>(() => $auth.user);
 | 
						|
 | 
						|
    const showPublicLink = ref(false);
 | 
						|
    const publicLink = ref("");
 | 
						|
 | 
						|
    const generatedSignupLink = ref("");
 | 
						|
    const token = ref("");
 | 
						|
    const api = useUserApi();
 | 
						|
 | 
						|
    async function getSignupLink() {
 | 
						|
      const { data } = await api.groups.createInvitation({ uses: 1 });
 | 
						|
      if (data) {
 | 
						|
        token.value = data.token;
 | 
						|
        generatedSignupLink.value = constructLink(data.token);
 | 
						|
        showPublicLink.value = false;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    function constructLink(token: string) {
 | 
						|
      return `${window.location.origin}/register?token=${token}`;
 | 
						|
    }
 | 
						|
 | 
						|
    // =================================================
 | 
						|
    // Email Invitation
 | 
						|
    const state = reactive({
 | 
						|
      loading: false,
 | 
						|
      sendTo: "",
 | 
						|
    });
 | 
						|
 | 
						|
    async function sendInvite() {
 | 
						|
      state.loading = true;
 | 
						|
      const { data } = await api.email.sendInvitation({
 | 
						|
        email: state.sendTo,
 | 
						|
        token: token.value,
 | 
						|
      });
 | 
						|
 | 
						|
      if (data && data.success) {
 | 
						|
        alert.success(i18n.tc("profile.email-sent"));
 | 
						|
      } else {
 | 
						|
        alert.error(i18n.tc("profile.error-sending-email"));
 | 
						|
      }
 | 
						|
      state.loading = false;
 | 
						|
    }
 | 
						|
 | 
						|
    const validEmail = computed(() => {
 | 
						|
      if (state.sendTo === "") {
 | 
						|
        return false;
 | 
						|
      }
 | 
						|
      const valid = validators.email(state.sendTo);
 | 
						|
 | 
						|
      // Explicit bool check because validators.email sometimes returns a string
 | 
						|
      if (valid === true) {
 | 
						|
        return true;
 | 
						|
      }
 | 
						|
      return false;
 | 
						|
    });
 | 
						|
 | 
						|
    const stats = useAsync(async () => {
 | 
						|
      const { data } = await api.groups.statistics();
 | 
						|
 | 
						|
      if (data) {
 | 
						|
        return data;
 | 
						|
      }
 | 
						|
    }, useAsyncKey());
 | 
						|
 | 
						|
    const statsText: { [key: string]: string } = {
 | 
						|
      totalRecipes: i18n.tc("general.recipes"),
 | 
						|
      totalUsers: i18n.tc("user.users"),
 | 
						|
      totalCategories: i18n.tc("sidebar.categories"),
 | 
						|
      totalTags: i18n.tc("sidebar.tags"),
 | 
						|
      totalTools: i18n.tc("tool.tools"),
 | 
						|
    };
 | 
						|
 | 
						|
    function getStatsTitle(key: string) {
 | 
						|
      return statsText[key] ?? "unknown";
 | 
						|
    }
 | 
						|
 | 
						|
    const { $globals } = useContext();
 | 
						|
 | 
						|
    const iconText: { [key: string]: string } = {
 | 
						|
      totalUsers: $globals.icons.user,
 | 
						|
      totalCategories: $globals.icons.categories,
 | 
						|
      totalTags: $globals.icons.tags,
 | 
						|
      totalTools: $globals.icons.potSteam,
 | 
						|
    };
 | 
						|
 | 
						|
    function getStatsIcon(key: string) {
 | 
						|
      return iconText[key] ?? $globals.icons.primary;
 | 
						|
    }
 | 
						|
 | 
						|
    const statsTo = computed<{ [key: string]: string }>(() => { return {
 | 
						|
      totalRecipes: `/g/${groupSlug.value}/`,
 | 
						|
      totalUsers: "/group/members",
 | 
						|
      totalCategories: `/g/${groupSlug.value}/recipes/categories`,
 | 
						|
      totalTags: `/g/${groupSlug.value}/recipes/tags`,
 | 
						|
      totalTools: `/g/${groupSlug.value}/recipes/tools`,
 | 
						|
    }});
 | 
						|
 | 
						|
    function getStatsTo(key: string) {
 | 
						|
      return statsTo.value[key] ?? "unknown";
 | 
						|
    }
 | 
						|
 | 
						|
    return {
 | 
						|
      groupSlug,
 | 
						|
      getStatsTitle,
 | 
						|
      getStatsIcon,
 | 
						|
      getStatsTo,
 | 
						|
      stats,
 | 
						|
      user,
 | 
						|
      constructLink,
 | 
						|
      generatedSignupLink,
 | 
						|
      showPublicLink,
 | 
						|
      publicLink,
 | 
						|
      getSignupLink,
 | 
						|
      sendInvite,
 | 
						|
      validators,
 | 
						|
      validEmail,
 | 
						|
      ...toRefs(state),
 | 
						|
    };
 | 
						|
  },
 | 
						|
  head() {
 | 
						|
    return {
 | 
						|
      title: this.$t("settings.profile") as string,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |