mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { CompletelyStylelessLink } from '@roleypoly/design-system/atoms/typography';
|
|
import { ServerListingCard } from '@roleypoly/design-system/molecules/server-listing-card';
|
|
import { getRecentAndSortedGuilds } from '@roleypoly/misc-utils/guildListing';
|
|
import { GuildSlug } from '@roleypoly/types';
|
|
import * as React from 'react';
|
|
import { CardContainer, ContentContainer, SectionHead } from './ServersListing.styled';
|
|
|
|
type ServersListingProps = {
|
|
guilds: GuildSlug[];
|
|
recentGuilds: string[];
|
|
};
|
|
|
|
const CardList = (props: { guilds: GuildSlug[] }) => (
|
|
<>
|
|
{props.guilds.map((guild, idx) => (
|
|
<CardContainer key={idx}>
|
|
<CompletelyStylelessLink to={`/s/${guild.id}`}>
|
|
<ServerListingCard guild={guild} />
|
|
</CompletelyStylelessLink>
|
|
</CardContainer>
|
|
))}
|
|
</>
|
|
);
|
|
|
|
export const ServersListing = (props: ServersListingProps) => {
|
|
const { recentGuildSlugs, sortedGuildSlugs } = getRecentAndSortedGuilds(
|
|
props.guilds,
|
|
props.recentGuilds
|
|
);
|
|
|
|
return (
|
|
<ContentContainer>
|
|
{recentGuildSlugs.length !== 0 && (
|
|
<>
|
|
<SectionHead>Recent Guilds</SectionHead>
|
|
<CardList guilds={recentGuildSlugs} />
|
|
<SectionHead>All Guilds</SectionHead>
|
|
</>
|
|
)}
|
|
<CardList guilds={sortedGuildSlugs} />
|
|
</ContentContainer>
|
|
);
|
|
};
|