funuicss
Version:
React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b
75 lines (74 loc) • 5.61 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (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;
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
var React = __importStar(require("react"));
var pi_1 = require("react-icons/pi");
function Alert(_a) {
var message = _a.message, funcss = _a.funcss, type = _a.type, outlined = _a.outlined, fixed = _a.fixed, raised = _a.raised, fullWidth = _a.fullWidth, isLoading = _a.isLoading, children = _a.children, animation = _a.animation, duration = _a.duration, variant = _a.variant, flat = _a.flat, standard = _a.standard, card = _a.card, style = _a.style, rest = __rest(_a, ["message", "funcss", "type", "outlined", "fixed", "raised", "fullWidth", "isLoading", "children", "animation", "duration", "variant", "flat", "standard", "card", "style"]);
return (React.createElement("div", { className: "\n ".concat(fixed ? 'alert-container ' : '', "\n ").concat(fixed === "top-left" ? "top-left" : "", "\n ").concat(fixed === "top-right" ? "top-right" : "", "\n ").concat(fixed === "bottom-left" ? "bottom-left" : "", "\n ").concat(fixed === "bottom-right" ? "bottom-right" : "", "\n ").concat(fixed === "middle" ? "middle-alert" : "", "\n ").concat(fixed === "top-middle" ? "top-middle" : "", "\n ").concat(fixed === "bottom-middle" ? "bottom-middle" : "") },
outlined ? (React.createElement("div", __assign({ style: __assign({ animation: "".concat(duration ? duration : "0.3", "s ").concat(animation ? animation : "ScaleUp") }, style), className: "alert ".concat(card ? "card" : "", " ").concat(flat ? "flat" : "", " ").concat(raised ? 'raised' : '', " ").concat(type, "-outline\n\n ").concat(fullWidth ? "width-100-p" : "", "\n ") }, rest),
React.createElement("div", { className: "alert-icon" }, !isLoading ? (React.createElement("div", { className: "text-".concat(type) },
type === "success" && React.createElement(pi_1.PiCheckCircleDuotone, null),
type === "info" && React.createElement(pi_1.PiInfo, null),
type === "warning" && React.createElement(pi_1.PiWarning, null),
type === "danger" && React.createElement(pi_1.PiX, null))) : (React.createElement("span", { className: 'rotate' },
" ",
React.createElement(pi_1.PiSpinner, null),
" "))),
React.createElement("div", { className: "alert-text" }, message ? message : children ? children : ""))) : (""),
!outlined ? (React.createElement("div", { style: __assign({ animation: "".concat(duration ? duration : "0.3", "s ").concat(animation ? animation : "ScaleUp") }, style), className: "alert ".concat(card ? "card" : "", " ").concat(flat ? "flat" : "", " ").concat(raised ? 'raised' : '', " \n ").concat(variant ? variant : standard ? "" : type, "\n ").concat(standard ? "top-" + type : "", "\n ").concat(funcss || "", "\n ").concat(fullWidth ? "width-100-p" : "", "\n") },
React.createElement("div", { className: "alert-icon" }, !isLoading ? (React.createElement("div", { className: "text-".concat(type) },
type === "success" && React.createElement(pi_1.PiCheckCircleDuotone, null),
type === "info" && React.createElement(pi_1.PiInfo, null),
type === "warning" && React.createElement(pi_1.PiWarning, null),
type === "danger" && React.createElement(pi_1.PiX, null))) : (React.createElement("span", { className: 'rotate' },
" ",
React.createElement(pi_1.PiSpinner, null),
" "))),
React.createElement("div", { className: "alert-text" }, message ? message : children ? children : ""))) : ("")));
}
exports.default = Alert;