@brizy/ui
Version:
React elements in Brizy style
65 lines (64 loc) • 3.38 kB
JavaScript
;
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 () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImageWithCaption = void 0;
const react_1 = __importStar(require("react"));
const classNamesFn_1 = require("../classNamesFn");
const ramda_1 = require("ramda");
const Typography_1 = require("../Typography");
const utils_1 = require("./utils");
const useTranslation_1 = require("../utils/localization/useTranslation");
const ImageWithCaption = (props) => {
const { t } = (0, useTranslation_1.useTranslation)();
const { src, alt, onError, height, width, fit = "contain", caption, placeholder, type, rounded } = props;
const { align = "center", alignY = "middle", width: captionWidth, height: captionHeight, content: captionContent, } = (0, utils_1.getCaption)(caption);
const className = (0, classNamesFn_1.classNames)()("image-with-capture", {
[`image-with-capture--${type}`]: type,
[`image-with-capture--fit-${fit}`]: fit,
"image-with-capture--rounded": rounded,
});
const captionClassName = (0, classNamesFn_1.classNames)()({
[`image-with-capture__caption--${align}`]: align,
[`image-with-capture__caption--${alignY}`]: alignY,
});
const _onError = (0, react_1.useCallback)(() => {
onError === null || onError === void 0 ? void 0 : onError();
}, [onError]);
const _placeholder = placeholder ? placeholder : react_1.default.createElement(Typography_1.TypographyParagraph, null, t("Image load fail"));
return (react_1.default.createElement("div", { className: className, style: (0, utils_1.getSizeProperties)({ width, height }) }, (0, ramda_1.isEmpty)(src) || !src ? (_placeholder) : (react_1.default.createElement("figure", null,
react_1.default.createElement("img", { src: src, alt: alt, onError: _onError }),
react_1.default.createElement("figcaption", { className: captionClassName, style: (0, utils_1.getCaptionSizeProperties)(captionWidth, captionHeight) }, captionContent)))));
};
exports.ImageWithCaption = ImageWithCaption;