UNPKG

@antv/dumi-theme-antv

Version:
56 lines (54 loc) 3.87 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 _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } 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 { NotificationFilled } from '@ant-design/icons'; import { Alert } from 'antd'; import cx from 'classnames'; import { get } from 'lodash-es'; import React, { useEffect } from 'react'; import styles from "./index.module.less"; /** * 通用公告组件,根据 bannerId 来更新 localStorage */ 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__*/React.createElement(Alert, _extends({ message: message, type: "info", showIcon: true, icon: /*#__PURE__*/React.createElement(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; };