infinity-forge
Version:
47 lines • 3.12 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;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlogItem = BlogItem;
var jsx_runtime_1 = require("react/jsx-runtime");
var moment_1 = __importDefault(require("moment"));
var ui_1 = require("../../../../../../../../ui/index.js");
var S = __importStar(require("./styles.js"));
function BlogItem(props) {
return ((0, jsx_runtime_1.jsxs)(S.BlogItem, { href: "/post/".concat(props === null || props === void 0 ? void 0 : props.url), className: 'blog-item', children: [(0, jsx_runtime_1.jsx)("div", { className: 'image', children: (props === null || props === void 0 ? void 0 : props.imagem) && ((0, jsx_runtime_1.jsx)("div", { className: 'image-link', children: (0, jsx_runtime_1.jsx)(ui_1.NextImage, { src: props.imagem }) })) }), (0, jsx_runtime_1.jsxs)("div", { className: 'text', children: [(props === null || props === void 0 ? void 0 : props.dataCriacao) && ((0, jsx_runtime_1.jsx)("time", { className: 'font-14-regular', children: (0, moment_1.default)(props.dataCriacao).format('DD/MM/YYYY HH:mm') })), (props === null || props === void 0 ? void 0 : props.titulo) && (0, jsx_runtime_1.jsx)("div", { className: 'font-24-bold title-post', children: props.titulo }), (props === null || props === void 0 ? void 0 : props.subtitulo) && (0, jsx_runtime_1.jsx)("div", { className: 'font-18-regular title-post', children: props.subtitulo }), (props === null || props === void 0 ? void 0 : props.descricao) && ((0, jsx_runtime_1.jsx)("div", { className: 'font-16 description', dangerouslySetInnerHTML: { __html: props.descricao || '' } }))] })] }));
}
//# sourceMappingURL=index.js.map