Skip to content

Commit

Permalink
fix: project tender pill color and grants in home (#1205)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyesp committed Aug 25, 2023
1 parent 0b1e592 commit c132949
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
14 changes: 8 additions & 6 deletions src/components/Home/ActiveCommunityGrants.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React from 'react'
import React, { useMemo } from 'react'

import classNames from 'classnames'

import { ProposalType } from '../../entities/Proposal/types'
import useFormatMessage from '../../hooks/useFormatMessage'
import useGrants from '../../hooks/useProjects'
import useProjects from '../../hooks/useProjects'
import locations from '../../utils/locations'
import FullWidthButton from '../Common/FullWidthButton'
import ProjectCard from '../Projects/ProjectCard/ProjectCard'
Expand All @@ -12,11 +13,12 @@ import './ActiveCommunityGrants.css'
import HomeLoader from './HomeLoader'
import HomeSectionHeader from './HomeSectionHeader'

const CURRENT_GRANTS_PER_PAGE = 4
const GRANTS_TO_SHOW = 4

const ActiveCommunityGrants = () => {
const t = useFormatMessage()
const { projects, isLoadingProjects } = useGrants()
const { projects, isLoadingProjects } = useProjects()
const grants = useMemo(() => projects?.data.filter((item) => item.type === ProposalType.Grant), [projects])

return (
<div className="ActiveCommunityGrants">
Expand All @@ -31,8 +33,8 @@ const ActiveCommunityGrants = () => {
)}
{!isLoadingProjects && (
<div className="ActiveCommunityGrants__Container">
{projects &&
projects.data.slice(0, CURRENT_GRANTS_PER_PAGE).map((project, index) => (
{grants &&
grants.slice(0, GRANTS_TO_SHOW).map((project, index) => (
<div
className={classNames('HoverableCardContainer', index <= 1 && 'HoverableCardContainer__FirstRow')}
key={`HoverableCard__${project.id}`}
Expand Down
6 changes: 4 additions & 2 deletions src/components/Projects/ProjectPill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ function getProjectCategory(
}

export default function ProjectPill({ type }: Props) {
const categoryType = getProjectCategory(type)

return (
<Pill size="sm" color={PROJECT_CATEGORY_COLORS[type]}>
{getProjectCategory(type).split(' ')[0]}
<Pill size="sm" color={PROJECT_CATEGORY_COLORS[categoryType]}>
{categoryType.split(' ')[0]}
</Pill>
)
}

0 comments on commit c132949

Please sign in to comment.