@gechiui/components
Version:
UI components for GeChiUI.
96 lines (89 loc) • 2.5 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { createElement } from "@gechiui/element";
/**
* External dependencies
*/
import classnames from 'classnames';
import { omit, noop } from 'lodash';
/**
* GeChiUI dependencies
*/
import { useReducedMotion } from '@gechiui/compose';
import { useRef } from '@gechiui/element';
/**
* Internal dependencies
*/
import Snackbar from './';
import { __unstableMotion as motion, __unstableAnimatePresence as AnimatePresence } from '../animation';
const SNACKBAR_VARIANTS = {
init: {
height: 0,
opacity: 0
},
open: {
height: 'auto',
opacity: 1,
transition: {
height: {
stiffness: 1000,
velocity: -100
}
}
},
exit: {
opacity: 0,
transition: {
duration: 0.5
}
}
};
const SNACKBAR_REDUCE_MOTION_VARIANTS = {
init: false,
open: false,
exit: false
};
/**
* Renders a list of notices.
*
* @param {Object} $0 Props passed to the component.
* @param {Array} $0.notices Array of notices to render.
* @param {Function} $0.onRemove Function called when a notice should be removed / dismissed.
* @param {Object} $0.className Name of the class used by the component.
* @param {Object} $0.children Array of children to be rendered inside the notice list.
*
* @return {Object} The rendered notices list.
*/
function SnackbarList(_ref) {
let {
notices,
className,
children,
onRemove = noop
} = _ref;
const listRef = useRef();
const isReducedMotion = useReducedMotion();
className = classnames('components-snackbar-list', className);
const removeNotice = notice => () => onRemove(notice.id);
return createElement("div", {
className: className,
tabIndex: -1,
ref: listRef
}, children, createElement(AnimatePresence, null, notices.map(notice => {
return createElement(motion.div, {
layout: !isReducedMotion //see https://www.framer.com/docs/animation/#layout-animations
,
initial: 'init',
animate: 'open',
exit: 'exit',
key: notice.id,
variants: isReducedMotion ? SNACKBAR_REDUCE_MOTION_VARIANTS : SNACKBAR_VARIANTS
}, createElement("div", {
className: "components-snackbar-list__notice-container"
}, createElement(Snackbar, _extends({}, omit(notice, ['content']), {
onRemove: removeNotice(notice),
listRef: listRef
}), notice.content)));
})));
}
export default SnackbarList;
//# sourceMappingURL=list.js.map