refactor(tailwindcss): cleanup
All checks were successful
Actions / Build Plugins (pull_request) Successful in 39s
All checks were successful
Actions / Build Plugins (pull_request) Successful in 39s
This commit is contained in:
parent
cd2a37c679
commit
086a9791d6
1 changed files with 2 additions and 14 deletions
|
@ -1,7 +1,6 @@
|
||||||
import { List } from "@project-gauntlet/api/components";
|
import { List } from "@project-gauntlet/api/components";
|
||||||
import React, { ReactElement, useState } from "react";
|
import React, { ReactElement, useState } from "react";
|
||||||
import documentation from "./documentation/tailwind-css";
|
import documentation from "./documentation/tailwind-css";
|
||||||
import { Clipboard } from "@project-gauntlet/api/helpers";
|
|
||||||
import open from "../../../utils/open-url";
|
import open from "../../../utils/open-url";
|
||||||
|
|
||||||
// @ts-expect-error gauntlet uses deno and not node
|
// @ts-expect-error gauntlet uses deno and not node
|
||||||
|
@ -11,24 +10,13 @@ const denoCore: DenoCore = Deno[Deno.internal].core;
|
||||||
export default function SearchDocumentation(): ReactElement {
|
export default function SearchDocumentation(): ReactElement {
|
||||||
const [searchText, setSearchText] = useState<string | undefined>("");
|
const [searchText, setSearchText] = useState<string | undefined>("");
|
||||||
|
|
||||||
|
//TODO - Migrate this to an Action, so that we can also have a copy to clipboard feature
|
||||||
const onClick = async (url: string) => {
|
const onClick = async (url: string) => {
|
||||||
await open(url);
|
await open(url);
|
||||||
//await Clipboard.writeText(url);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<List
|
<List>
|
||||||
// actions={
|
|
||||||
// <ActionPanel>
|
|
||||||
// <Action
|
|
||||||
// label="Copy URL to Clipboard"
|
|
||||||
// onAction={async () => {
|
|
||||||
// await Clipboard.writeText(item.url);
|
|
||||||
// }}
|
|
||||||
// />
|
|
||||||
// </ActionPanel>
|
|
||||||
// }
|
|
||||||
>
|
|
||||||
<List.SearchBar
|
<List.SearchBar
|
||||||
placeholder={"Search TailwindCSS Documentation..."}
|
placeholder={"Search TailwindCSS Documentation..."}
|
||||||
value={searchText}
|
value={searchText}
|
||||||
|
|
Loading…
Reference in a new issue