
* feat: add crowdin and supported languages * fix: main branch name * feat: test crowdin integration * feat: add crowdin config skeleton * feat: update crowdin.yml * fix: remove ro translation * test: en translation * test: en translation * New Crowdin translations by Github Action (#735) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * test: en translation * fix: separate upload/download workflows * wip * New Crowdin translations by Github Action (#738) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * wip * wip * wip * wip * wip * typo * wip * wip * update crowdin config * update * chore: support i18n de,es,fr,it,pt,ru,ro,en * chore: extract i18n strings * chore: extract booking components strings for i18n * wip * extract more strings * wip * fallback to getServerSideProps for now * New Crowdin translations by Github Action (#874) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * fix: minor fixes on the datepicker * fix: add dutch lang * fix: linting issues * fix: string * fix: update GHA * cleanup trpc * fix linting Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
86 lines
2.5 KiB
TypeScript
86 lines
2.5 KiB
TypeScript
import { ArrowRightIcon } from "@heroicons/react/outline";
|
|
import { ArrowLeftIcon } from "@heroicons/react/solid";
|
|
import classnames from "classnames";
|
|
import Link from "next/link";
|
|
import React from "react";
|
|
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
|
|
|
import Avatar from "@components/ui/Avatar";
|
|
import Button from "@components/ui/Button";
|
|
import Text from "@components/ui/Text";
|
|
|
|
const Team = ({ team, localeProp }) => {
|
|
const { t } = useLocale({ localeProp: localeProp });
|
|
|
|
const Member = ({ member }) => {
|
|
const classes = classnames(
|
|
"group",
|
|
"relative",
|
|
"flex flex-col",
|
|
"space-y-4",
|
|
"p-4",
|
|
"bg-white dark:bg-neutral-900 dark:border-0 dark:bg-opacity-8",
|
|
"border border-neutral-200",
|
|
"hover:cursor-pointer",
|
|
"hover:border-black dark:border-neutral-700 dark:hover:border-neutral-600",
|
|
"rounded-sm",
|
|
"hover:shadow-md"
|
|
);
|
|
|
|
return (
|
|
<Link key={member.id} href={`/${member.user.username}`}>
|
|
<div className={classes}>
|
|
<ArrowRightIcon
|
|
className={classnames(
|
|
"text-black dark:text-white",
|
|
"absolute top-4 right-4",
|
|
"h-4 w-4",
|
|
"transition-opacity",
|
|
"opacity-0 group-hover:opacity-100 group-hover:block"
|
|
)}
|
|
/>
|
|
|
|
<div>
|
|
<Avatar displayName={member.user.name} imageSrc={member.user.avatar} className="w-12 h-12" />
|
|
<section className="space-y-2">
|
|
<Text variant="title">{member.user.name}</Text>
|
|
<Text variant="subtitle" className="w-6/8">
|
|
{member.user.bio}
|
|
</Text>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
);
|
|
};
|
|
|
|
const Members = ({ members }) => {
|
|
if (!members || members.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<section className="mx-auto min-w-full lg:min-w-lg max-w-5xl flex flex-wrap gap-x-12 gap-y-6 justify-center">
|
|
{members.map((member) => {
|
|
return member.user.username !== null && <Member key={member.id} member={member} />;
|
|
})}
|
|
</section>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<Members members={team.members} />
|
|
{team.eventTypes.length > 0 && (
|
|
<aside className="text-center dark:text-white mt-8">
|
|
<Button color="secondary" href={`/team/${team.slug}`} shallow={true} StartIcon={ArrowLeftIcon}>
|
|
{t("go_back")}
|
|
</Button>
|
|
</aside>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Team;
|