mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
feat(projects-grid): redesign projects grid
This commit is contained in:
parent
b6e1984046
commit
e699a2acfe
8 changed files with 244 additions and 337 deletions
|
@ -1,10 +1,12 @@
|
|||
<script lang="ts" setup>
|
||||
import type { ProjectShallow } from '~/types'
|
||||
|
||||
defineProps<{
|
||||
const props = defineProps<{
|
||||
project: ProjectShallow
|
||||
}>()
|
||||
const { switcher } = storeToRefs(useData())
|
||||
|
||||
const projectItems = ['Swap,Mixer', { label: 'Openess', rating: props.project.ratings.openess, type: 'openess' }, { label: 'Technology', rating: props.project.ratings.technology, type: 'technology' }, { label: 'Privacy', rating: props.project.ratings.privacy, type: 'privacy' }, 'Ecosystem', 'Links']
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -18,230 +20,119 @@ const { switcher } = storeToRefs(useData())
|
|||
transition-all
|
||||
>
|
||||
<div
|
||||
relative
|
||||
max-w="96px lg:200px"
|
||||
grid
|
||||
grid-cols="2 lg:10"
|
||||
w-full
|
||||
h="96px lg:200px"
|
||||
:class="switcher ? '' : 'lg:max-w-full! lg:w-full '"
|
||||
>
|
||||
|
||||
<div
|
||||
col-span="1 lg:3"
|
||||
flex
|
||||
items-center
|
||||
justify-center
|
||||
gap="12px lg:16px"
|
||||
relative
|
||||
w-full
|
||||
my-auto
|
||||
h-full
|
||||
h="48px lg:64px"
|
||||
:class="switcher ? '' : 'lg:max-w-full! lg:w-full '"
|
||||
>
|
||||
<NuxtImg
|
||||
:src="project?.image || '/no-image-1-1.svg'"
|
||||
class="w-full h-auto"
|
||||
max-h="md:196px 96px"
|
||||
max-h="md:64px 48px"
|
||||
max-w="md:64px 48px"
|
||||
self-center
|
||||
z-10
|
||||
object-fit
|
||||
bg="#121212"
|
||||
/>
|
||||
</div>
|
||||
<ClientOnly>
|
||||
<Badge
|
||||
v-if="project.percentage"
|
||||
absolute
|
||||
bottom-0.5
|
||||
lg:bottom-0
|
||||
right-0.5
|
||||
lg:right-0
|
||||
mr-2px
|
||||
mb-2px
|
||||
:text="`${project.percentage}%`"
|
||||
class="leading-12px! text-12px! lg:text-18px! border-0!"
|
||||
px="4px! lg:16px!"
|
||||
py="4px! lg:8px!"
|
||||
/>
|
||||
</ClientOnly>
|
||||
</div>
|
||||
<div
|
||||
h="96px lg:200px"
|
||||
lg:py-24px
|
||||
lg:pr-24px
|
||||
flex
|
||||
flex-col
|
||||
justify-center
|
||||
lg:justify-between
|
||||
lg:gap-24px
|
||||
w-full
|
||||
text-white
|
||||
:class="switcher ? '' : 'lg:p-16px! lg:py-16px!'"
|
||||
>
|
||||
<div
|
||||
w-full
|
||||
h-fit
|
||||
flex
|
||||
flex-col
|
||||
gap-8px
|
||||
>
|
||||
<div
|
||||
w-fit
|
||||
flex
|
||||
flex-col
|
||||
gap-y-4px
|
||||
lg:flex-row
|
||||
justify-center
|
||||
>
|
||||
<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
|
||||
>
|
||||
Usecases
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-for="(projectItem, index) of projectItems"
|
||||
:key="projectItem.toString()"
|
||||
hidden
|
||||
lg:flex
|
||||
items-center
|
||||
justify-start
|
||||
text-14px
|
||||
leading-24px
|
||||
>
|
||||
<p
|
||||
v-if="typeof projectItem === 'string'"
|
||||
text-app-text-grey
|
||||
>
|
||||
{{ projectItem }}
|
||||
</p>
|
||||
<ProjectRating
|
||||
v-else
|
||||
:score="index"
|
||||
:rating="projectItem.rating"
|
||||
:type="projectItem.type"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
flex
|
||||
items-center
|
||||
justify-end
|
||||
w-full
|
||||
gap-16px
|
||||
>
|
||||
<UnoIcon
|
||||
block
|
||||
lg:hidden
|
||||
i-iconoir-internet
|
||||
text="24px"
|
||||
/>
|
||||
<div
|
||||
flex
|
||||
items-center
|
||||
gap-8px
|
||||
@click.prevent="navigateTo(project.website, { external: true, open: { target: '_blank' } })"
|
||||
>
|
||||
<h1
|
||||
text="18px lg:24px app-white"
|
||||
font-700
|
||||
line-clamp-1
|
||||
hover:underline
|
||||
underline-offset-3
|
||||
>
|
||||
{{ project.title1 }}
|
||||
</h1>
|
||||
<UnoIcon
|
||||
i-web-open
|
||||
text-16px
|
||||
/>
|
||||
</div>
|
||||
<h2
|
||||
text="14px app-text-grey"
|
||||
overflow-hidden
|
||||
text-ellipsis
|
||||
line-clamp-2
|
||||
lg:line-clamp-2
|
||||
>
|
||||
{{ project.description }}
|
||||
</h2>
|
||||
</div>
|
||||
<div
|
||||
w-full
|
||||
flex
|
||||
justify-between
|
||||
>
|
||||
<div
|
||||
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
|
||||
max-w-692px
|
||||
grid
|
||||
font-700
|
||||
whitespace-nowrap
|
||||
:class="switcher ? 'grid-cols-5' : 'grid-cols-3'"
|
||||
gap-24px
|
||||
lg:grid
|
||||
hidden
|
||||
>
|
||||
<ProjectInfoItem
|
||||
:check-undefined="project?.github"
|
||||
:link="project?.github"
|
||||
title="Github"
|
||||
bold
|
||||
text-size="18px"
|
||||
>
|
||||
<div
|
||||
flex
|
||||
items-center
|
||||
gap-8px
|
||||
>
|
||||
<UnoIcon
|
||||
i-web-github
|
||||
text-16px
|
||||
/>
|
||||
<span>{{ project?.github ? 'YES' : 'NO' }}</span>
|
||||
</div>
|
||||
</ProjectInfoItem>
|
||||
<ProjectInfoItem
|
||||
:check-undefined="project.readyness"
|
||||
title="Readyness"
|
||||
text-size="18px"
|
||||
>
|
||||
<div
|
||||
flex
|
||||
items-center
|
||||
gap-12px
|
||||
>
|
||||
<UnoIcon
|
||||
i-web-live
|
||||
text-10px
|
||||
:class="(project.readyness === 'Mainnet') ? 'color-#18FF2F' : (project.readyness === 'Testnet') ? 'color-#FFA800' : (project.readyness === 'Alpha') ? 'color-#FF0000' : ''"
|
||||
/>
|
||||
<span :class="(project.readyness === 'Alpha') ? 'color-#FFA800' : 'color-white'">{{ project.readyness }}</span>
|
||||
</div>
|
||||
</ProjectInfoItem>
|
||||
<ProjectInfoItem
|
||||
:check-undefined="true"
|
||||
title="Team"
|
||||
text-size="18px"
|
||||
>
|
||||
<span v-if="project.team?.length">{{ `${project.team?.length} members` }}</span>
|
||||
<span
|
||||
v-else
|
||||
color="#FF0000"
|
||||
>{{ 'Anonymous' }}</span>
|
||||
</ProjectInfoItem>
|
||||
<ProjectInfoItem
|
||||
:check-undefined="project?.docs"
|
||||
:link="project?.docs"
|
||||
:color="project?.docs ? '#18FF2F' : '#FF0000'"
|
||||
title="Docs"
|
||||
bold
|
||||
text-size="18px"
|
||||
>
|
||||
{{ project?.docs ? 'YES' : 'NO' }}
|
||||
</ProjectInfoItem>
|
||||
<ProjectInfoItem
|
||||
:check-undefined="project.audits"
|
||||
:link="project?.audits?.[0]?.link ?? undefined"
|
||||
:color="project?.audits ? '#18FF2F' : '#FF0000'"
|
||||
title="Audit"
|
||||
bold
|
||||
text-size="18px"
|
||||
>
|
||||
{{ project.audits ? 'YES' : 'NO' }}
|
||||
</ProjectInfoItem>
|
||||
</div>
|
||||
<div
|
||||
hidden
|
||||
lg:flex
|
||||
items-center
|
||||
gap-16px
|
||||
>
|
||||
<UnoIcon
|
||||
v-if="project.forum"
|
||||
i-web-forum
|
||||
text-28px
|
||||
opacity-50
|
||||
hover:opacity-100
|
||||
@click.prevent="navigateTo(project.forum, { external: true, open: { target: '_blank' } })"
|
||||
/>
|
||||
<UnoIcon
|
||||
v-if="project.explorer"
|
||||
i-web-explorer
|
||||
text-32px
|
||||
opacity-50
|
||||
hover:opacity-100
|
||||
@click.prevent="navigateTo(project.explorer, { external: true, open: { target: '_blank' } })"
|
||||
/>
|
||||
<UnoIcon
|
||||
v-if="project.twitter"
|
||||
i-web-twitter_x
|
||||
text-22px
|
||||
opacity-50
|
||||
hover:opacity-100
|
||||
@click.prevent="navigateTo(project.twitter, { external: true, open: { target: '_blank' } })"
|
||||
/>
|
||||
<UnoIcon
|
||||
v-if="project.coingecko"
|
||||
i-web-coingecko
|
||||
text-24px
|
||||
opacity-50
|
||||
hover:opacity-100
|
||||
@click.prevent="navigateTo(project.coingecko, { external: true, open: { target: '_blank' } })"
|
||||
/>
|
||||
<UnoIcon
|
||||
v-if="project.newsletter"
|
||||
i-web-news
|
||||
text-28px
|
||||
opacity-50
|
||||
hover:opacity-100
|
||||
@click.prevent="navigateTo(project.newsletter, { external: true, open: { target: '_blank' } })"
|
||||
/>
|
||||
{{ project.percentage }} %
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</NuxtLink>
|
||||
</template>
|
||||
|
|
|
@ -34,7 +34,7 @@ function onOptionSelected(value: string) {
|
|||
>({{ isOptionSelected?.count }})</span></span>
|
||||
<span class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
||||
<UnoIcon
|
||||
i-heroicons-solid-chevron-down
|
||||
i-ic-baseline-arrow-drop-down
|
||||
text-app-black
|
||||
/>
|
||||
</span>
|
||||
|
|
|
@ -13,6 +13,7 @@ defineProps<{
|
|||
>
|
||||
<UnoIcon
|
||||
i-heroicons-solid-pencil
|
||||
text-app-text-grey
|
||||
text-24px
|
||||
/>
|
||||
<slot />
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
import type { ProjectShallow } from '~/types'
|
||||
|
||||
const props = defineProps<{
|
||||
projects: ProjectShallow[]
|
||||
projects: { title: string, projects: ProjectShallow[] }[]
|
||||
}>()
|
||||
const { switcher } = storeToRefs(useData())
|
||||
|
||||
|
@ -29,77 +29,102 @@ const cardTitles = ref< { label: string, togglable?: boolean, toggled?: boolean
|
|||
flex-col
|
||||
items-start
|
||||
>
|
||||
<div
|
||||
v-if="displayedProjects.length"
|
||||
flex
|
||||
items-center
|
||||
gap-x-12px
|
||||
w-full
|
||||
mb="8px md:16px"
|
||||
>
|
||||
<h2
|
||||
text="app-white 16px md:24px"
|
||||
font-700
|
||||
leading="24px md:32px"
|
||||
whitespace-nowrap
|
||||
>
|
||||
24 Defi
|
||||
</h2>
|
||||
<div
|
||||
h-2px
|
||||
w-full
|
||||
bg-app-white
|
||||
/>
|
||||
<button
|
||||
type="button"
|
||||
i-heroicons-solid-chevron-down
|
||||
text="app-white 24px"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
v-if="displayedProjects.length"
|
||||
flex
|
||||
items-center
|
||||
justify-between
|
||||
w-full
|
||||
mb-16px
|
||||
<template
|
||||
v-for="group in projects"
|
||||
:key="group.title"
|
||||
>
|
||||
<div
|
||||
|
||||
flex
|
||||
items-center
|
||||
gap-4px
|
||||
gap-x-12px
|
||||
w-full
|
||||
mb="8px lg:16px"
|
||||
mt-22px
|
||||
>
|
||||
<p
|
||||
text="12px md:14px"
|
||||
leading="16px md:24px"
|
||||
<h2
|
||||
text="app-white 16px lg:24px"
|
||||
font-700
|
||||
leading="24px lg:32px"
|
||||
whitespace-nowrap
|
||||
>
|
||||
Project name
|
||||
</p>
|
||||
{{ group.projects.length }} {{ group.title }}
|
||||
</h2>
|
||||
<div
|
||||
h-2px
|
||||
w-full
|
||||
bg-app-text-grey
|
||||
/>
|
||||
<button
|
||||
type="button"
|
||||
i-heroicons-solid-chevron-down
|
||||
text="app-white 20px"
|
||||
i-ic-baseline-arrow-drop-down
|
||||
text="app-text-grey 24px"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
hidden
|
||||
md:flex
|
||||
items-center
|
||||
justify-end
|
||||
gap-48px
|
||||
grid
|
||||
grid-cols="2 lg:10"
|
||||
w-full
|
||||
mb-16px
|
||||
>
|
||||
<div
|
||||
v-for="title in cardTitles"
|
||||
:key="title.label"
|
||||
flex
|
||||
items-center
|
||||
gap-4px
|
||||
col-span="1 lg:3"
|
||||
>
|
||||
<p
|
||||
text="12px md:14px"
|
||||
leading="16px md:24px"
|
||||
text="12px lg:14px app-text-grey"
|
||||
leading="16px lg:24px"
|
||||
whitespace-nowrap
|
||||
>
|
||||
Project name
|
||||
</p>
|
||||
<button
|
||||
type="button"
|
||||
i-ic-baseline-arrow-drop-down
|
||||
text="app-text-grey 20px"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
flex
|
||||
items-center
|
||||
justify-end
|
||||
gap-4px
|
||||
lg:hidden
|
||||
>
|
||||
<p
|
||||
text="12px lg:14px app-text-grey"
|
||||
leading="16px lg:24px"
|
||||
>
|
||||
Sort by:
|
||||
</p>
|
||||
<p
|
||||
text="12px lg:14px"
|
||||
leading="16px lg:24px"
|
||||
font-700
|
||||
>
|
||||
Score
|
||||
</p>
|
||||
<button
|
||||
type="button"
|
||||
i-ic-baseline-arrow-drop-down
|
||||
text="app-text-grey 20px"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
v-for="title in cardTitles"
|
||||
:key="title.label"
|
||||
lg:flex
|
||||
items-center
|
||||
justify-start
|
||||
last:justify-end
|
||||
gap-4px
|
||||
hidden
|
||||
>
|
||||
<p
|
||||
text="12px lg:14px app-text-grey"
|
||||
leading="16px lg:24px"
|
||||
whitespace-nowrap
|
||||
>
|
||||
{{ title.label }}
|
||||
|
@ -108,69 +133,44 @@ const cardTitles = ref< { label: string, togglable?: boolean, toggled?: boolean
|
|||
v-if="title.togglable"
|
||||
type="button"
|
||||
:class="[title.toggled
|
||||
? 'i-heroicons-solid-chevron-up'
|
||||
: 'i-heroicons-solid-chevron-down']"
|
||||
text="app-white 20px"
|
||||
? 'i-ic-baseline-arrow-drop-up'
|
||||
: 'i-ic-baseline-arrow-drop-down']"
|
||||
text="app-text-grey 20px"
|
||||
@click="title.toggled = !title.toggled"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
flex
|
||||
items-center
|
||||
gap-4px
|
||||
md:hidden
|
||||
v-if="displayedProjects.length"
|
||||
grid
|
||||
:class="switcher ? 'grid-cols-1 lg:grid-cols-1' : 'xl:grid-cols-3 lg:grid-cols-3 sm:grid-cols-2 grid-cols-1'"
|
||||
gap-16px
|
||||
text-white
|
||||
w-full
|
||||
>
|
||||
<p
|
||||
text="12px md:14px"
|
||||
leading="16px md:24px"
|
||||
>
|
||||
Sort by:
|
||||
</p>
|
||||
<p
|
||||
text="12px md:14px"
|
||||
leading="16px md:24px"
|
||||
font-700
|
||||
>
|
||||
Score
|
||||
</p>
|
||||
<button
|
||||
type="button"
|
||||
i-heroicons-solid-chevron-down
|
||||
text="app-white 20px"
|
||||
<NewCard
|
||||
v-for="project in group.projects"
|
||||
:key="project.id"
|
||||
:project="project"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-if="displayedProjects.length"
|
||||
grid
|
||||
:class="switcher ? 'grid-cols-1 lg:grid-cols-1' : 'xl:grid-cols-3 lg:grid-cols-3 sm:grid-cols-2 grid-cols-1'"
|
||||
gap-16px
|
||||
text-white
|
||||
w-full
|
||||
>
|
||||
<Card
|
||||
v-for="project in displayedProjects"
|
||||
:key="project.id"
|
||||
:project="project"
|
||||
/>
|
||||
</div>
|
||||
<div v-else>
|
||||
<h3>No Projects found...</h3>
|
||||
</div>
|
||||
<button
|
||||
v-if="displayedProjects.length < projects.length"
|
||||
mt-29px
|
||||
text="14px"
|
||||
leading-24px
|
||||
font-700
|
||||
px-12px
|
||||
py-4px
|
||||
border-2px
|
||||
border-app-white
|
||||
@click="showMoreProjects"
|
||||
>
|
||||
Load more projects
|
||||
</button>
|
||||
<div v-else>
|
||||
<h3>No Projects found...</h3>
|
||||
</div>
|
||||
<button
|
||||
v-if="displayedProjects.length < projects.length"
|
||||
mt-29px
|
||||
text="14px"
|
||||
leading-24px
|
||||
font-700
|
||||
px-12px
|
||||
py-4px
|
||||
border-2px
|
||||
border-app-white
|
||||
@click="showMoreProjects"
|
||||
>
|
||||
Load more projects
|
||||
</button>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -33,7 +33,7 @@ const selectedValue = useVModel(props, 'modelValue', emits)
|
|||
<span class="block truncate mr-8px">{{ props.options.find(option => option.value === selectedValue)?.label }}</span>
|
||||
<span class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
||||
<UnoIcon
|
||||
i-heroicons-solid-chevron-down
|
||||
i-ic-baseline-arrow-drop-down
|
||||
:class="[blackAndWhite ? ' text-app-white' : 'text-app-black']"
|
||||
/>
|
||||
</span>
|
||||
|
|
|
@ -1,27 +1,26 @@
|
|||
<script lang="ts" setup>
|
||||
import type { InputOption } from '~/types'
|
||||
|
||||
const { categories, filteredProjectsCount, selectedCategoryId } = storeToRefs(useData())
|
||||
const { categories, usecases, ecosystems, assets, features, filteredProjectsCount, selectedCategoryId } = storeToRefs(useData())
|
||||
|
||||
const selectedUsecaseId = ref('usecase')
|
||||
const selectedEcosystemId = ref('ecosystem')
|
||||
const selectedAssetsUsedId = ref('assetsUsed')
|
||||
const selectedFeaturesId = ref('features')
|
||||
const selectedUsecaseId = ref('all')
|
||||
const selectedEcosystemId = ref('all')
|
||||
const selectedAssetsUsedId = ref('all')
|
||||
const selectedFeaturesId = ref('all')
|
||||
|
||||
const categoriesOptions = ref(categories.value ? categories.value.map(c => ({ label: c.name, value: c.id, count: c.projectsCount })) : [])
|
||||
const extendedOptions: InputOption[] = [
|
||||
{ label: 'Category', value: 'all' },
|
||||
...categoriesOptions.value,
|
||||
]
|
||||
const categoryOptions = ref<InputOption>(categories.value ? [{ label: 'Category', value: 'all' }, ...categories.value.map(c => ({ label: c.name, value: c.id, count: c.projectsCount }))] : [])
|
||||
const usecaseOptions = ref<InputOption>(usecases.value ? [{ label: 'Usecase', value: 'all' }, ...usecases.value.map(u => ({ label: u.name, value: u.id }))] : [])
|
||||
const ecosystemOptions = ref<InputOption>(ecosystems.value ? [{ label: 'Ecosystem', value: 'all' }, ...ecosystems.value.map(e => ({ label: e.name, value: e.id }))] : [])
|
||||
const assetOptions = ref<InputOption>(assets.value ? [{ label: 'Asset used', value: 'all' }, ...assets.value.map(a => ({ label: a.name, value: a.id }))] : [])
|
||||
const featureOptions = ref<InputOption>(features.value ? [{ label: 'Feature', value: 'all' }, ...features.value.map(f => ({ label: f.name, value: f.id }))] : [])
|
||||
// const selectedCategory = computed(() => {
|
||||
// return categories.value.find(c => c.id === selectedCategoryId.value)
|
||||
// })
|
||||
|
||||
const selectedCategory = computed(() => {
|
||||
return categories.value.find(c => c.id === selectedCategoryId.value)
|
||||
})
|
||||
|
||||
const sortedFilteredCategories = computed(() => ([
|
||||
categories.value.find(c => c.id === 'defi')!,
|
||||
...[...categories.value].sort((a, b) => a.name.localeCompare(b.name)).filter(c => c.id !== 'defi'),
|
||||
]))
|
||||
// const sortedFilteredCategories = computed(() => ([
|
||||
// categories.value.find(c => c.id === 'defi')!,
|
||||
// ...[...categories.value].sort((a, b) => a.name.localeCompare(b.name)).filter(c => c.id !== 'defi'),
|
||||
// ]))
|
||||
|
||||
const { showBar } = storeToRefs(useNavigaiton())
|
||||
const swipeEl = ref()
|
||||
|
@ -78,6 +77,7 @@ watch([scrollY, top, y], (newValues, oldValues) => {
|
|||
>
|
||||
<SearchBox
|
||||
flex-1
|
||||
placeholder:text-app-text-grey
|
||||
:placeholder="`Search in ${filteredProjectsCount} Projects`"
|
||||
/>
|
||||
<div
|
||||
|
@ -85,32 +85,40 @@ watch([scrollY, top, y], (newValues, oldValues) => {
|
|||
flex
|
||||
items-center
|
||||
gap-16px
|
||||
overflow-x-auto
|
||||
>
|
||||
<CategorySelectBox
|
||||
v-model="selectedCategoryId"
|
||||
:options="extendedOptions"
|
||||
:options="categoryOptions"
|
||||
name="categorySelect"
|
||||
w-full
|
||||
@selected="selectedCategoryId === 'all' ? navigateTo(`/`) : navigateTo(`/category/${selectedCategoryId}`)"
|
||||
/>
|
||||
<CategorySelectBox
|
||||
v-if="usecases.length"
|
||||
v-model="selectedUsecaseId"
|
||||
:options="[{ label: 'Usecase', value: 'usecase' }]"
|
||||
name="usecaseSelect"
|
||||
:options="usecaseOptions"
|
||||
w-full
|
||||
/>
|
||||
<CategorySelectBox
|
||||
v-if="ecosystems.length"
|
||||
v-model="selectedEcosystemId"
|
||||
:options="[{ label: 'Ecosystem', value: 'ecosystem' }]"
|
||||
name="ecosystemSelect"
|
||||
:options="ecosystemOptions"
|
||||
w-full
|
||||
/>
|
||||
<CategorySelectBox
|
||||
v-if="assets.length"
|
||||
v-model="selectedAssetsUsedId"
|
||||
:options="[{ label: 'Assets used', value: 'assetsUsed' }]"
|
||||
name="assetsUsedSelect"
|
||||
:options="assetOptions"
|
||||
w-full
|
||||
/>
|
||||
<CategorySelectBox
|
||||
v-if="features.length"
|
||||
v-model="selectedFeaturesId"
|
||||
:options="[{ label: 'Features', value: 'features' }]"
|
||||
name="featuresSelect"
|
||||
:options="featureOptions"
|
||||
w-full
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -7,9 +7,11 @@ useSeoMeta({
|
|||
ogDescription: 'There are challenges in finding crucial technical details and comparing various privacy-focused projects.',
|
||||
ogImage: '/web3privacy_eye.webp',
|
||||
})
|
||||
const { filteredProjects } = storeToRefs(useData())
|
||||
const { groupedProjectsPerCategory } = storeToRefs(useData())
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ProjectGrid :projects="filteredProjects" />
|
||||
<div>
|
||||
<ProjectGrid :projects="groupedProjectsPerCategory" />
|
||||
</div>
|
||||
</template>
|
||||
|
|
5
utils/text.ts
Normal file
5
utils/text.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
import moment from 'moment'
|
||||
|
||||
export function formatDate(date: Date | string) {
|
||||
return moment(date).format('MM / YYYY')
|
||||
}
|
Loading…
Reference in a new issue