UNPKG

@logicflow/dumi-theme-simple

Version:
58 lines (56 loc) 4.25 kB
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } var _excluded = ["message", "bannerId", "localStorageId"]; function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import React, { useEffect } from 'react'; import { Alert } from 'antd'; import { get } from 'lodash-es'; import { NotificationFilled } from '@ant-design/icons'; import cx from 'classnames'; import styles from "./index.module.less"; /** * 通用公告组件,根据 bannerId 来更新 localStorage */ import { jsx as _jsx } from "react/jsx-runtime"; export var Announcement = function Announcement(props) { var message = props.message, bannerId = props.bannerId, localStorageId = props.localStorageId, alertProps = _objectWithoutProperties(props, _excluded); var isBrowser = typeof window !== 'undefined'; /** 公告 id 更新,更新下本地缓存 */ useEffect(function () { try { var item = isBrowser && localStorage.getItem(localStorageId) || '{}'; if (get(JSON.parse(item), [bannerId]) !== false && isBrowser) { localStorage.setItem(localStorageId, JSON.stringify(_defineProperty({}, bannerId, true))); } } catch (e) { console.error(e); // eslint-disable-line no-console } }, [bannerId]); return get(JSON.parse(isBrowser && localStorage.getItem(localStorageId) || '{}'), [bannerId]) ? /*#__PURE__*/_jsx(Alert, _objectSpread({ message: message, type: "info", showIcon: true, icon: /*#__PURE__*/_jsx(NotificationFilled, { style: { height: '16px', color: '#4776E8' } }), closable: true, className: cx('banner-announcement', styles.bannerAnnouncement), onClose: function onClose() { // 关闭公告 if (isBrowser) { localStorage.setItem(localStorageId, JSON.stringify(_defineProperty({}, bannerId, false))); } } }, alertProps)) : null; };