Files
hoppscotch/packages/hoppscotch-common/src/components/workspace/Current.vue
2024-03-13 14:21:23 +05:30

43 lines
1.1 KiB
Vue

<template>
<div
class="flex items-center overflow-x-auto whitespace-nowrap border-b border-dividerLight px-4 py-2 text-tiny text-secondaryLight"
>
<span class="truncate">
{{ currentWorkspace }}
</span>
<icon-lucide-chevron-right v-if="section" class="mx-2" />
{{ section }}
</div>
</template>
<script setup lang="ts">
import { computed } from "vue"
import { useI18n } from "~/composables/i18n"
import { useService } from "dioc/vue"
import { WorkspaceService } from "~/services/workspace.service"
const props = defineProps<{
section?: string
isOnlyPersonal?: boolean
}>()
const t = useI18n()
const workspaceService = useService(WorkspaceService)
const workspace = workspaceService.currentWorkspace
const currentWorkspace = computed(() => {
if (props.isOnlyPersonal || workspace.value.type === "personal") {
return t("workspace.personal")
}
return teamWorkspaceName.value
})
const teamWorkspaceName = computed(() => {
if (workspace.value.type === "team" && workspace.value.teamName) {
return workspace.value.teamName
}
return `${t("workspace.team")}`
})
</script>