/* This file is part of GNU Taler (C) 2022 Taler Systems S.A. GNU Taler is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ /** * * @author Sebastian Javier Marchano (sebasjm) */ import { Fragment, h, VNode } from "preact"; import { Avatar } from "../mui/Avatar.js"; import { Typography } from "../mui/Typography.js"; import { Banner } from "./Banner.js"; import { SvgIcon } from "./styled/index.js"; import wifiIcon from "../svg/wifi.svg"; export default { title: "mui/banner", component: Banner, }; function Wrapper({ children }: any): VNode { return ( <div style={{ display: "flex", backgroundColor: "lightgray", padding: 10, width: "100%", // width: 400, // height: 400, justifyContent: "center", }} > <div style={{ flexGrow: 1 }}>{children}</div> </div> ); } function SignalWifiOffIcon({ ...rest }: any): VNode { return <SvgIcon {...rest} dangerouslySetInnerHTML={{ __html: wifiIcon }} />; } export const BasicExample = (): VNode => ( <Fragment> <Wrapper> <p> Example taken from: <a target="_blank" rel="noreferrer" href="https://medium.com/material-ui/introducing-material-ui-design-system-93e921beb8df" > https://medium.com/material-ui/introducing-material-ui-design-system-93e921beb8df </a> </p> <Banner elements={[ { icon: <SignalWifiOffIcon color="gray" />, description: ( <Typography> You have lost connection to the internet. This app is offline. </Typography> ), }, ]} confirm={{ label: "turn on wifi", action: async () => { return; }, }} /> </Wrapper> </Fragment> ); export const PendingOperation = (): VNode => ( <Fragment> <Wrapper> <Banner title="PENDING TRANSACTIONS" style={{ backgroundColor: "lightcyan", padding: 8 }} elements={[ { icon: ( <Avatar style={{ border: "solid blue 1px", color: "blue", boxSizing: "border-box", }} > P </Avatar> ), description: ( <Fragment> <Typography inline bold> EUR 37.95 </Typography> <Typography inline>- 5 feb 2022</Typography> </Fragment> ), }, ]} /> </Wrapper> </Fragment> );