Move latest/ to 2.0/

I think this makes more sense, that way links won't break whenever I publish a new docs version
This commit is contained in:
Ryan Gossiaux
2023-06-10 21:08:03 -07:00
parent 8c9732e716
commit 3a895f5d41
32 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,117 @@
<script lang="ts">
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from "$lib";
function classNames(...classes: (string | false | null | undefined)[]) {
return classes.filter(Boolean).join(" ");
}
let categories = {
Recent: [
{
id: 1,
title: "Does drinking coffee make you smarter?",
date: "5h ago",
commentCount: 5,
shareCount: 2,
},
{
id: 2,
title: "So you've bought coffee... now what?",
date: "2h ago",
commentCount: 3,
shareCount: 2,
},
],
Popular: [
{
id: 1,
title: "Is tech making coffee better or worse?",
date: "Jan 7",
commentCount: 29,
shareCount: 16,
},
{
id: 2,
title: "The most innovative things happening in coffee",
date: "Mar 19",
commentCount: 24,
shareCount: 12,
},
],
Trending: [
{
id: 1,
title: "Ask Me Anything: 10 answers to your questions about coffee",
date: "2d ago",
commentCount: 9,
shareCount: 5,
},
{
id: 2,
title: "The worst advice we've ever heard about coffee",
date: "4d ago",
commentCount: 1,
shareCount: 2,
},
],
};
</script>
<div class="w-full max-w-md px-2 py-16 sm:px-0">
<TabGroup>
<TabList class="flex p-1 space-x-1 bg-blue-900/20 rounded-xl">
{#each Object.keys(categories) as category (category)}
<Tab
class={({ selected }) =>
classNames(
"w-full py-2.5 text-sm leading-5 font-medium text-blue-700 rounded-lg",
"focus:outline-none focus:ring-2 ring-offset-2 ring-offset-blue-400 ring-white ring-opacity-60",
selected
? "bg-white shadow"
: "text-blue-100 hover:bg-white/[0.12] hover:text-white"
)}
>
{category}
</Tab>
{/each}
</TabList>
<TabPanels class="mt-2">
{#each Object.values(categories) as posts, idx (idx)}
<TabPanel
class={classNames(
"bg-white rounded-xl p-3",
"focus:outline-none focus:ring-2 ring-offset-2 ring-offset-blue-400 ring-white ring-opacity-60"
)}
>
<ul>
{#each posts as post (post.id)}
<li class="relative p-3 rounded-md hover:bg-gray-100">
<h3 class="text-sm font-medium leading-5">
{post.title}
</h3>
<ul
class="flex mt-1 space-x-1 text-xs font-normal leading-4 text-gray-500"
>
<li>{post.date}</li>
<li>&middot;</li>
<li>{post.commentCount} comments</li>
<li>&middot;</li>
<li>{post.shareCount} shares</li>
</ul>
<a
href="#"
class={classNames(
"absolute inset-0 rounded-md",
"focus:z-10 focus:outline-none focus:ring-2 ring-blue-400"
)}
/>
</li>
{/each}
</ul>
</TabPanel>
{/each}
</TabPanels>
</TabGroup>
</div>