UNPKG

amplify-material-ui

Version:

A Material-UI based implementation of aws amplify

36 lines (35 loc) 1.8 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.NotificationProvider = void 0; var React = __importStar(require("react")); var use_notification_context_1 = require("./use-notification-context"); var NotificationProvider = function (_a) { var children = _a.children, onShowNotification = _a.onShowNotification; var _b = React.useState(null), notification = _b[0], setNotification = _b[1]; var showNotification = function (message) { var msg = onShowNotification ? onShowNotification(message) : message; setNotification(msg); }; var clearNotification = function () { return setNotification(null); }; return (React.createElement(use_notification_context_1.NotificationContext.Provider, { value: { showNotification: showNotification, clearNotification: clearNotification, notification: notification } }, children)); }; exports.NotificationProvider = NotificationProvider;