UNPKG

grommet

Version:

focus on the essential experience

69 lines 2.69 kB
import React, { useState } from 'react'; import { Button, NameValueList, NameValuePair, Notification, Header, Heading, Paragraph, Main } from 'grommet'; import { Grommet as GrommetIcon } from "grommet-icons/es6/icons/Grommet"; import { AppsRounded } from "grommet-icons/es6/icons/AppsRounded"; import { Box } from '../../Box'; import { Text } from '../../Text'; import { data } from '../../NameValueList/stories/data'; export var Global = function Global() { var _useState = useState(true), showGlobalNotification = _useState[0], setShowGlobalNotification = _useState[1]; return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Header, { border: "bottom", pad: { horizontal: 'large', vertical: 'small' } }, /*#__PURE__*/React.createElement(Box, { direction: "row", align: "center", gap: "small" }, /*#__PURE__*/React.createElement(GrommetIcon, { size: "large", color: "plain" }), /*#__PURE__*/React.createElement(Text, { weight: "bold" }, "Company Name")), /*#__PURE__*/React.createElement(Button, { icon: /*#__PURE__*/React.createElement(AppsRounded, null) })), /*#__PURE__*/React.createElement(Main, { gap: "medium" }, showGlobalNotification && /*#__PURE__*/React.createElement(Notification, { status: "warning", message: "Your supscription will expire in 7 days. Renew your\n subscription to ensure you don't lose access.", onClose: function onClose() { return setShowGlobalNotification(false); }, actions: [{ href: '#', label: 'Renew Subscription' }], global: true }), /*#__PURE__*/React.createElement(Box, { width: "large", margin: "auto", pad: "medium", gap: "medium" }, /*#__PURE__*/React.createElement(Header, null, /*#__PURE__*/React.createElement(Heading, { margin: "none" }, "Page Heading"), /*#__PURE__*/React.createElement(Button, { alignSelf: "start", label: "Page-level Action", primary: true })), /*#__PURE__*/React.createElement(Paragraph, { margin: "none" }, "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam aliquet vitae velit non cursus. Aliquam fringilla dapibus elit, non fermentum neque tempor non."), /*#__PURE__*/React.createElement(Heading, { margin: "none", level: 2 }, "Details"), /*#__PURE__*/React.createElement(NameValueList, null, Object.entries(data).map(function (_ref) { var name = _ref[0], value = _ref[1]; return /*#__PURE__*/React.createElement(NameValuePair, { key: name, name: name }, value); }))))); }; export default { title: 'Visualizations/Notification/Global' };