feat: add user count

feat/project-users
Arik Chakma 3 months ago
parent 4edc3ccf80
commit 8b21200b45
  1. 2
      src/api/project.ts
  2. 12
      src/components/Projects/ProjectCard.tsx

@ -4,7 +4,7 @@ import { api } from './api.ts';
export function projectApi(context: APIContext) { export function projectApi(context: APIContext) {
return { return {
listProjectsUserCount: async function (projectIds: string[]) { listProjectsUserCount: async function (projectIds: string[]) {
return api(context).post<Record<string, string>>( return api(context).post<Record<string, number>>(
`${import.meta.env.PUBLIC_API_URL}/v1-list-projects-user-count`, `${import.meta.env.PUBLIC_API_URL}/v1-list-projects-user-count`,
{ {
projectIds, projectIds,

@ -3,6 +3,7 @@ import type {
ProjectDifficultyType, ProjectDifficultyType,
ProjectFileType, ProjectFileType,
} from '../../lib/project.ts'; } from '../../lib/project.ts';
import { Users } from 'lucide-react';
type ProjectCardProps = { type ProjectCardProps = {
project: ProjectFileType; project: ProjectFileType;
@ -34,13 +35,12 @@ export function ProjectCard(props: ProjectCardProps) {
</span> </span>
<span className="mb-1 mt-2.5 font-medium">{frontmatter.title}</span> <span className="mb-1 mt-2.5 font-medium">{frontmatter.title}</span>
<span className="text-sm text-gray-500">{frontmatter.description}</span> <span className="text-sm text-gray-500">{frontmatter.description}</span>
<span className="mt-2.5 text-xs text-gray-500"> {userCount > 0 && (
{userCount === 0 ? ( <span className="mt-2.5 flex items-center gap-2 text-xs text-gray-500">
<span>Be the first to start this project</span> <Users className="inline-block size-3.5" />
) : ( {userCount} Started
<span>{userCount} user(s) have started this project</span>
)}
</span> </span>
)}
</a> </a>
); );
} }

Loading…
Cancel
Save