Skip to content

Commit

Permalink
refactor: isolate Popover stories (#5618)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Lu <dl1644@gmail.com>
  • Loading branch information
ryo-manba and LFDanLu authored Jan 2, 2024
1 parent 1c141b3 commit 2137076
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 32 deletions.
50 changes: 50 additions & 0 deletions packages/react-aria-components/stories/Popover.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* Copyright 2022 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/

import {Button, Dialog, DialogTrigger, Heading, Popover} from 'react-aria-components';
import React from 'react';

export default {
title: 'React Aria Components'
};

export const PopoverExample = () => (
<DialogTrigger>
<Button>Open popover</Button>
<Popover
placement="bottom start"
style={{
background: 'Canvas',
color: 'CanvasText',
border: '1px solid gray',
padding: 30,
zIndex: 5
}}>
<Dialog>
{({close}) => (
<form style={{display: 'flex', flexDirection: 'column'}}>
<Heading slot="title">Sign up</Heading>
<label>
First Name: <input placeholder="John" />
</label>
<label>
Last Name: <input placeholder="Smith" />
</label>
<Button onPress={close} style={{marginTop: 10}}>
Submit
</Button>
</form>
)}
</Dialog>
</Popover>
</DialogTrigger>
);
32 changes: 0 additions & 32 deletions packages/react-aria-components/stories/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -389,38 +389,6 @@ export const TooltipExample = () => (
</TooltipTrigger>
);

export const PopoverExample = () => (
<DialogTrigger>
<Button>Open popover</Button>
<Popover
placement="bottom start"
style={{
background: 'Canvas',
color: 'CanvasText',
border: '1px solid gray',
padding: 30,
zIndex: 5
}}>
<Dialog>
{({close}) => (
<form style={{display: 'flex', flexDirection: 'column'}}>
<Heading slot="title">Sign up</Heading>
<label>
First Name: <input placeholder="John" />
</label>
<label>
Last Name: <input placeholder="Smith" />
</label>
<Button onPress={close} style={{marginTop: 10}}>
Submit
</Button>
</form>
)}
</Dialog>
</Popover>
</DialogTrigger>
);

export const ModalExample = () => (
<DialogTrigger>
<Button>Open modal</Button>
Expand Down

1 comment on commit 2137076

@rspbot
Copy link

@rspbot rspbot commented on 2137076 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.