mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-06 19:18:22 +01:00
128 lines
3.7 KiB
TypeScript
128 lines
3.7 KiB
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Meta, StoryObj } from "@storybook/react";
|
|
import { useSetAtom } from "jotai";
|
|
import { useEffect } from "react";
|
|
import { Popover } from "./popover";
|
|
import { Search, useSearch } from "./search";
|
|
|
|
const meta: Meta<typeof Search> = {
|
|
title: "Elements/Search",
|
|
component: Search,
|
|
args: {},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof Popover>;
|
|
|
|
export const DefaultSearch: Story = {
|
|
render: (args) => {
|
|
const props = useSearch();
|
|
const setIsOpen = useSetAtom(props.isOpenAtom);
|
|
useEffect(() => {
|
|
setIsOpen(true);
|
|
}, []);
|
|
return (
|
|
<div
|
|
className="viewbox"
|
|
ref={props.anchorRef as React.RefObject<HTMLDivElement>}
|
|
style={{
|
|
border: "2px solid black",
|
|
width: "100%",
|
|
height: "200px",
|
|
background: "var(--main-bg-color)",
|
|
}}
|
|
>
|
|
<Search {...args} {...props} />
|
|
</div>
|
|
);
|
|
},
|
|
args: {},
|
|
};
|
|
|
|
export const Results10: Story = {
|
|
render: (args) => {
|
|
const props = useSearch();
|
|
const setIsOpen = useSetAtom(props.isOpenAtom);
|
|
const setNumResults = useSetAtom(props.numResultsAtom);
|
|
useEffect(() => {
|
|
setIsOpen(true);
|
|
setNumResults(10);
|
|
}, []);
|
|
return (
|
|
<div
|
|
className="viewbox"
|
|
ref={props.anchorRef as React.RefObject<HTMLDivElement>}
|
|
style={{
|
|
border: "2px solid black",
|
|
width: "100%",
|
|
height: "200px",
|
|
background: "var(--main-bg-color)",
|
|
}}
|
|
>
|
|
<Search {...args} {...props} />
|
|
</div>
|
|
);
|
|
},
|
|
args: {},
|
|
};
|
|
|
|
export const InputAndResults10: Story = {
|
|
render: (args) => {
|
|
const props = useSearch();
|
|
const setIsOpen = useSetAtom(props.isOpenAtom);
|
|
const setNumResults = useSetAtom(props.numResultsAtom);
|
|
const setSearch = useSetAtom(props.searchAtom);
|
|
useEffect(() => {
|
|
setIsOpen(true);
|
|
setNumResults(10);
|
|
setSearch("search term");
|
|
}, []);
|
|
return (
|
|
<div
|
|
className="viewbox"
|
|
ref={props.anchorRef as React.RefObject<HTMLDivElement>}
|
|
style={{
|
|
border: "2px solid black",
|
|
width: "100%",
|
|
height: "200px",
|
|
background: "var(--main-bg-color)",
|
|
}}
|
|
>
|
|
<Search {...args} {...props} />
|
|
</div>
|
|
);
|
|
},
|
|
args: {},
|
|
};
|
|
|
|
export const LongInputAndResults10: Story = {
|
|
render: (args) => {
|
|
const props = useSearch();
|
|
const setIsOpen = useSetAtom(props.isOpenAtom);
|
|
const setNumResults = useSetAtom(props.numResultsAtom);
|
|
const setSearch = useSetAtom(props.searchAtom);
|
|
useEffect(() => {
|
|
setIsOpen(true);
|
|
setNumResults(10);
|
|
setSearch("search term ".repeat(10).trimEnd());
|
|
}, []);
|
|
return (
|
|
<div
|
|
className="viewbox"
|
|
ref={props.anchorRef as React.RefObject<HTMLDivElement>}
|
|
style={{
|
|
border: "2px solid black",
|
|
width: "100%",
|
|
height: "200px",
|
|
background: "var(--main-bg-color)",
|
|
}}
|
|
>
|
|
<Search {...args} {...props} />
|
|
</div>
|
|
);
|
|
},
|
|
args: {},
|
|
};
|