phx-react
Version:
PHX REACT
50 lines • 3.3 kB
JavaScript
import React, { Fragment, useEffect, useState } from 'react';
import { classNames } from '../types';
import { Transition } from '@headlessui/react';
import { XMarkIcon } from '@heroicons/react/20/solid';
export var PHXNotifications = function (_a) {
var className = _a.className, show = _a.show, type = _a.type, onHide = _a.onHide, failure = _a.failure, customMessage = _a.customMessage;
var _b = useState(false), notify = _b[0], setNotify = _b[1];
var _c = useState(false), isFailure = _c[0], setIsFailure = _c[1];
useEffect(function () {
// @ts-ignore
setNotify(show);
}, [show]);
useEffect(function () {
// @ts-ignore
if (failure) {
setIsFailure(true);
}
else {
setTimeout(function () {
setIsFailure(false);
}, 200);
}
}, [failure]);
var hideNotify = function () {
setNotify(false);
if (onHide) {
onHide();
}
};
var message = type === 'add'
? 'Thêm mới thành công'
: type === 'edit'
? 'Cập nhật thành công'
: type === 'delete'
? 'Xóa bản ghi thành công'
: customMessage;
return (React.createElement("div", { "aria-live": 'assertive', className: "absolute pointer-events-none inset-0 flex items-center px-4 py-6 sm:items-start sm:p-6 ".concat(className) },
React.createElement("div", { className: 'fixed bottom-10 mr-8 flex w-[-webkit-fill-available] flex-col items-center' },
React.createElement(Transition, { as: Fragment, enter: 'transform ease-out duration-500 transition', enterFrom: 'translate-y-2 opacity-0 sm:translate-y-0 sm:translate-y-10', enterTo: 'translate-y-0 opacity-500 sm:translate-y-0', leave: 'transition ease-in duration-500', leaveFrom: 'translate-y-0 opacity-500 sm:translate-y-0', leaveTo: 'translate-y-2 opacity-0 sm:translate-y-0 sm:translate-y-10', show: notify },
React.createElement("div", { className: classNames('pointer-events-auto max-w-sm overflow-hidden rounded-lg shadow-lg ring-1 ring-black ring-opacity-5', isFailure ? 'bg-red-600' : 'bg-indigo-800') },
React.createElement("div", { className: 'p-3' },
React.createElement("div", { className: 'flex items-center justify-between' },
React.createElement("div", { className: 'ml-1' },
React.createElement("p", { className: 'text-xs font-normal text-white' }, isFailure && type === 'custom' ? message : isFailure ? 'Lỗi, vui lòng thử lại sau' : message)),
React.createElement("div", { className: 'ml-4 flex pt-0.5' },
React.createElement("button", { className: 'inline-flex rounded-md bg-white text-gray-400 hover:text-gray-500', onClick: function () { return hideNotify(); }, type: 'button' },
React.createElement("span", { className: 'sr-only' }, "Close"),
React.createElement(XMarkIcon, { "aria-hidden": 'true', className: classNames('h-4 w-4 text-white', isFailure ? 'bg-red-600' : 'bg-indigo-800') }))))))))));
};
//# sourceMappingURL=Notifications.js.map