feat(dashboard-v2): add API Keys page

This commit is contained in:
Michał Leszczyk 2022-03-17 17:34:55 +01:00
parent b3425daba3
commit 2eab6eba4d
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
3 changed files with 67 additions and 2 deletions

View File

@ -0,0 +1,10 @@
import { withIconProps } from "../withIconProps";
export const TrashIcon = withIconProps(({ size, ...props }) => (
<svg width={size} height={size} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.01 15.33" {...props}>
<path
fill="currentColor"
d="M8.33,0a2.33,2.33,0,0,1,2.33,2.17v.5H13a1,1,0,0,1,.12,2h-.46V13a2.32,2.32,0,0,1-2.17,2.33H3.67a2.33,2.33,0,0,1-2.33-2.17V4.67H1a1,1,0,0,1-.12-2H3.33V2.33A2.33,2.33,0,0,1,5.51,0H8.33Zm-5,4.67V13a.34.34,0,0,0,.27.33h6.73a.33.33,0,0,0,.33-.26V4.67ZM8.33,2H5.67a.33.33,0,0,0-.33.27v.4H8.66V2.33A.33.33,0,0,0,8.4,2Z"
/>
</svg>
));

View File

@ -13,3 +13,4 @@ export * from "./icons/SearchIcon";
export * from "./icons/CopyIcon";
export * from "./icons/ShareIcon";
export * from "./icons/SimpleUploadIcon";
export * from "./icons/TrashIcon";

View File

@ -1,11 +1,65 @@
import * as React from "react";
import useSWR from "swr";
import dayjs from "dayjs";
import UserSettingsLayout from "../../layouts/UserSettingsLayout";
import { TextInputBasic } from "../../components/TextInputBasic";
import { Button } from "../../components/Button";
import { TrashIcon } from "../../components/Icons";
const APIKeysPage = () => {
const { data: apiKeys } = useSWR("user/apikeys");
return (
<>
<h4>API Keys</h4>
<div className="flex flex-col xl:flex-row">
<div className="flex flex-col gap-10 lg:shrink-0 lg:max-w-[576px] xl:max-w-[524px]">
<section>
<h4>API Keys</h4>
<p>
At vero eos et caritatem, quae sine metu contineret, saluti prospexit civium, qua. Laudem et dolorem
aspernari ut ad naturam aut fu.
</p>
</section>
<hr />
<section className="flex flex-col gap-8">
<div className="grid sm:grid-cols-[1fr_min-content] w-full gap-y-2 gap-x-4 items-end">
<TextInputBasic label="API Key Name" placeholder="my_applications_statistics" />
<div className="flex mt-2 sm:mt-0 justify-center">
<Button onClick={() => console.info("TODO: generate ky")}>Generate</Button>
</div>
</div>
</section>
{apiKeys?.length > 0 && (
<section className="mt-4">
<h6 className="text-palette-300">API Keys</h6>
<ul className="mt-4">
{apiKeys.map(({ id, name, createdAt }) => (
<li
key={id}
className="grid grid-cols-2 sm:grid-cols-[1fr_repeat(2,_max-content)] py-6 sm:py-4 px-4 gap-x-8 bg-white odd:bg-palette-100/50"
>
<span className="truncate col-span-2 sm:col-span-1">{name || id}</span>
<span className="col-span-2 my-4 border-t border-t-palette-200/50 sm:hidden" />
<span className="text-palette-400">{dayjs(createdAt).format("MMM DD, YYYY")}</span>
<span className="text-right">
<button
className="p-1 transition-colors hover:text-error"
onClick={() => window.confirm("TODO: confirmation modal")}
>
<TrashIcon size={14} />
</button>
</span>
</li>
))}
</ul>
</section>
)}
</div>
<div className="hidden xl:block w-full text-right pt-20 pr-6">
<img src="/images/import-export.svg" alt="" className="inline-block w-[200px]" />
</div>
</div>
</>
);
};