2023-12-19 18:43:42 +01:00
|
|
|
<script lang="ts" setup>
|
2024-09-17 08:11:35 +02:00
|
|
|
import type { ProjectRating, ProjectShallow } from '~/types'
|
2023-12-19 18:43:42 +01:00
|
|
|
|
2024-09-12 08:42:37 +02:00
|
|
|
const props = defineProps<{
|
2023-12-19 18:43:42 +01:00
|
|
|
project: ProjectShallow
|
|
|
|
}>()
|
2024-09-17 08:11:35 +02:00
|
|
|
const { switcher, ecosystems } = storeToRefs(useData())
|
2024-09-12 08:42:37 +02:00
|
|
|
|
2024-09-17 08:11:35 +02:00
|
|
|
const ratings: { label: string, type: string, rating: ProjectRating }[] = (props.project.ratings || []).map(rating => ({ label: rating.name, type: 'rating', rating: rating }))
|
|
|
|
const ecosystem: { label: string[], type: string } = { label: ecosystems.value.filter(e => (props.project.ecosystem || []).includes(e.id)).map(e => e.icon!), type: 'ecosystem' }
|
2024-09-17 08:23:56 +02:00
|
|
|
const projectItems: { label: string | string[], type: string, rating?: ProjectRating }[] = [{ label: props.project.usecases || [], type: 'array' }, ...ratings, ecosystem, { label: [props.project.website || '', props.project.github || '', props.project.twitter || ''], type: 'links' }]
|
2023-12-19 18:43:42 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NuxtLink
|
|
|
|
:to="`/project/${project.id}`"
|
|
|
|
:class="switcher ? 'flex-row' : 'lg:flex-col'"
|
2024-09-02 15:13:43 +02:00
|
|
|
flex
|
|
|
|
w-full
|
|
|
|
gap-16px
|
|
|
|
hover:bg="#121212"
|
|
|
|
transition-all
|
2023-12-19 18:43:42 +01:00
|
|
|
>
|
2024-09-02 15:13:43 +02:00
|
|
|
<div
|
2024-09-12 08:42:37 +02:00
|
|
|
grid
|
|
|
|
grid-cols="2 lg:10"
|
2024-09-02 15:13:43 +02:00
|
|
|
w-full
|
|
|
|
>
|
2024-09-12 08:42:37 +02:00
|
|
|
|
2024-09-02 15:13:43 +02:00
|
|
|
<div
|
2024-09-17 08:11:35 +02:00
|
|
|
col-span="1 lg:2"
|
2024-09-02 15:13:43 +02:00
|
|
|
flex
|
|
|
|
items-center
|
2024-09-12 08:42:37 +02:00
|
|
|
gap="12px lg:16px"
|
|
|
|
relative
|
2024-09-02 15:13:43 +02:00
|
|
|
w-full
|
|
|
|
h-full
|
2024-09-12 08:42:37 +02:00
|
|
|
h="48px lg:64px"
|
|
|
|
:class="switcher ? '' : 'lg:max-w-full! lg:w-full '"
|
2024-09-02 15:13:43 +02:00
|
|
|
>
|
|
|
|
<NuxtImg
|
|
|
|
:src="project?.image || '/no-image-1-1.svg'"
|
|
|
|
class="w-full h-auto"
|
2024-09-12 08:42:37 +02:00
|
|
|
max-h="md:64px 48px"
|
|
|
|
max-w="md:64px 48px"
|
2024-09-02 15:13:43 +02:00
|
|
|
self-center
|
|
|
|
z-10
|
|
|
|
object-fit
|
|
|
|
bg="#121212"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
flex
|
2024-09-12 08:42:37 +02:00
|
|
|
flex-col
|
|
|
|
gap-y-4px
|
|
|
|
lg:flex-row
|
|
|
|
justify-center
|
2024-09-02 15:13:43 +02:00
|
|
|
>
|
2024-09-12 08:42:37 +02:00
|
|
|
<div
|
|
|
|
w-fit
|
|
|
|
flex
|
|
|
|
items-center
|
|
|
|
gap-8px
|
|
|
|
@click.prevent="navigateTo(project.website, { external: true, open: { target: '_blank' } })"
|
|
|
|
>
|
|
|
|
<h1
|
|
|
|
text="14px app-white"
|
|
|
|
font-700
|
|
|
|
line-clamp-1
|
|
|
|
hover:underline
|
|
|
|
underline-offset-3
|
|
|
|
leading="20px lg:32px"
|
|
|
|
>
|
|
|
|
{{ project.title1 }}
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<p
|
|
|
|
text-12px
|
|
|
|
leading-16px
|
|
|
|
lg:hidden
|
2024-09-02 15:13:43 +02:00
|
|
|
>
|
2024-09-17 08:11:35 +02:00
|
|
|
{{ project.usecases?.join(', ') }}
|
2024-09-12 08:42:37 +02:00
|
|
|
</p>
|
2023-12-19 18:43:42 +01:00
|
|
|
</div>
|
2024-09-12 08:42:37 +02:00
|
|
|
</div>
|
2024-09-17 08:11:35 +02:00
|
|
|
<ClientOnly>
|
|
|
|
<div
|
|
|
|
v-for="(projectItem, index) of projectItems"
|
|
|
|
:key="projectItem.label.toString()"
|
|
|
|
hidden
|
|
|
|
lg:flex
|
|
|
|
items-center
|
|
|
|
text-14px
|
|
|
|
leading-24px
|
|
|
|
:class="{ 'col-span-1 lg:col-span-2': index === 0 }"
|
2024-09-02 15:13:43 +02:00
|
|
|
>
|
2024-09-17 08:11:35 +02:00
|
|
|
<p
|
|
|
|
v-if="projectItem.type === 'array'"
|
|
|
|
text-app-text-grey
|
|
|
|
>
|
|
|
|
{{ (projectItem.label as string[] || []).join(', ') }}
|
|
|
|
</p>
|
2024-09-17 08:23:56 +02:00
|
|
|
<div
|
|
|
|
v-if="projectItem.type === 'links'"
|
|
|
|
flex
|
|
|
|
items-center
|
|
|
|
justify-start
|
|
|
|
gap-16px
|
|
|
|
>
|
|
|
|
<NuxtLink
|
|
|
|
v-if="projectItem.label[1]"
|
|
|
|
:to="projectItem.label[1]"
|
|
|
|
external
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
<UnoIcon
|
|
|
|
i-ic-baseline-language
|
|
|
|
text="24px app-text-grey"
|
|
|
|
/>
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink
|
|
|
|
v-if="projectItem.label[2]"
|
|
|
|
:to="projectItem.label[2]"
|
|
|
|
external
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
<UnoIcon
|
|
|
|
i-mdi-github
|
|
|
|
text="24px app-text-grey"
|
|
|
|
text-27px
|
|
|
|
/>
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink
|
|
|
|
v-if="projectItem.label[0]"
|
|
|
|
:to="projectItem.label[0]"
|
|
|
|
external
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
<UnoIcon
|
|
|
|
i-bi-twitter-x
|
|
|
|
text="24px app-text-grey"
|
|
|
|
/>
|
|
|
|
</NuxtLink>
|
|
|
|
</div>
|
2024-09-17 08:11:35 +02:00
|
|
|
<div
|
|
|
|
v-if="projectItem.type === 'ecosystem'"
|
|
|
|
flex
|
|
|
|
items-center
|
|
|
|
justify-start
|
|
|
|
gap-2px
|
|
|
|
>
|
|
|
|
<NuxtImg
|
|
|
|
v-for="ecosystem of projectItem.label"
|
|
|
|
:key="ecosystem"
|
|
|
|
:src="ecosystem"
|
|
|
|
w-24px
|
|
|
|
h-24px
|
|
|
|
rounded-full
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<ProjectRating
|
|
|
|
v-if="projectItem.type! === 'rating' && projectItem.rating"
|
|
|
|
:percentage="projectItem.rating.points"
|
|
|
|
:rating="projectItem.rating"
|
|
|
|
:type="projectItem.rating.type"
|
|
|
|
/>
|
|
|
|
</div>
|
2024-09-02 15:13:43 +02:00
|
|
|
<div
|
2024-09-12 08:42:37 +02:00
|
|
|
flex
|
|
|
|
items-center
|
2024-09-17 08:11:35 +02:00
|
|
|
justify-end
|
2024-09-02 15:13:43 +02:00
|
|
|
w-full
|
2024-09-17 08:11:35 +02:00
|
|
|
gap-16px
|
2024-09-02 15:13:43 +02:00
|
|
|
>
|
2024-09-17 08:11:35 +02:00
|
|
|
<UnoIcon
|
|
|
|
block
|
|
|
|
lg:hidden
|
|
|
|
i-iconoir-internet
|
|
|
|
text="24px"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
flex
|
|
|
|
items-center
|
|
|
|
justify-center
|
|
|
|
border="2px app-white"
|
|
|
|
text="14px md:18px"
|
|
|
|
leading="24px md:32px"
|
|
|
|
max-h-="28px md:32px"
|
|
|
|
max-w="48px md:56px"
|
|
|
|
w-full
|
|
|
|
font-700
|
|
|
|
whitespace-nowrap
|
|
|
|
>
|
|
|
|
{{ project.percentage }} %
|
|
|
|
</div>
|
2023-12-19 18:43:42 +01:00
|
|
|
</div>
|
2024-09-17 08:11:35 +02:00
|
|
|
</ClientOnly>
|
2023-12-19 18:43:42 +01:00
|
|
|
</div>
|
2024-09-12 08:42:37 +02:00
|
|
|
|
2023-12-19 18:43:42 +01:00
|
|
|
</NuxtLink>
|
|
|
|
</template>
|