Skip to content

Commit

Permalink
chore: update activity library custom tab empty state (#9666)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickoferrall committed Apr 23, 2024
1 parent fb76d9a commit 240e78d
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 15 deletions.
21 changes: 6 additions & 15 deletions packages/client/components/ActivityLibrary/ActivityLibrary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {useDebounce} from 'use-debounce'
import {ActivityLibraryQuery} from '~/__generated__/ActivityLibraryQuery.graphql'
import {ActivityLibrary_template$data} from '~/__generated__/ActivityLibrary_template.graphql'
import {ActivityLibrary_templateSearchDocument$data} from '~/__generated__/ActivityLibrary_templateSearchDocument.graphql'
import halloweenRetrospectiveTemplate from '../../../../static/images/illustrations/halloweenRetrospectiveTemplate.png'
import useAtmosphere from '../../hooks/useAtmosphere'
import useRouter from '../../hooks/useRouter'
import useSearchFilter from '../../hooks/useSearchFilter'
Expand All @@ -18,14 +17,15 @@ import SendClientSideEvent from '../../utils/SendClientSideEvent'
import IconLabel from '../IconLabel'
import AISearch from './AISearch'
import ActivityGrid from './ActivityGrid'
import ActivityLibraryEmptyState from './ActivityLibraryEmptyState'
import {
AllCategoryID,
CATEGORY_ID_TO_NAME,
CATEGORY_THEMES,
CUSTOM_CATEGORY_ID,
CategoryID,
QUICK_START_CATEGORY_ID
} from './Categories'
import CreateActivityCard from './CreateActivityCard'
import SearchBar from './SearchBar'

graphql`
Expand Down Expand Up @@ -359,19 +359,10 @@ export const ActivityLibrary = (props: Props) => {
</div>
)}
{templatesToRender.length === 0 ? (
<div className='mx-auto flex p-2 text-slate-700'>
<div className='ml-10'>
<img className='w-32' src={halloweenRetrospectiveTemplate} />
<div className='mb-4 text-xl font-semibold'>No results found!</div>
<div className='mb-6 max-w-[360px]'>
Try tapping a category above, using a different search, or creating exactly what
you have in mind.
</div>
<div className='h-40 w-64'>
<CreateActivityCard category={QUICK_START_CATEGORY_ID} className='h-full' />
</div>
</div>
</div>
<ActivityLibraryEmptyState
searchQuery={searchQuery}
categoryId={categoryId as AllCategoryID}
/>
) : (
<>
{sectionedTemplates ? (
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import React from 'react'
import halloweenRetrospectiveTemplate from '../../../../static/images/illustrations/halloweenRetrospectiveTemplate.png'
import {AllCategoryID, QUICK_START_CATEGORY_ID} from './Categories'
import CreateActivityCard from './CreateActivityCard'

type Props = {
categoryId: AllCategoryID
searchQuery: string
}

const ActivityLibraryEmptyState = (props: Props) => {
const {categoryId, searchQuery} = props
const showResultsNotFound = categoryId !== 'custom' || searchQuery !== ''

return (
<div className='mx-auto flex p-2 text-slate-700'>
<div className='ml-10'>
{showResultsNotFound && (
<>
<img className='w-32' src={halloweenRetrospectiveTemplate} />
<div className='mb-4 text-xl font-semibold'>No results found!</div>
<div className='mb-6 max-w-[360px]'>
Try tapping a category above, using a different search, or creating exactly what you
have in mind.
</div>
</>
)}
<div className='h-40 w-64'>
<CreateActivityCard category={QUICK_START_CATEGORY_ID} className='h-full' />
</div>
</div>
</div>
)
}

export default ActivityLibraryEmptyState

0 comments on commit 240e78d

Please sign in to comment.