sunmao-sdk
Version:
榫卯-开箱即用赋能-sdk
28 lines (21 loc) • 1.29 kB
JavaScript
var _excluded = ["value", "schema"];
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import React from "react";
export default function html(_ref) {
var value = _ref.value,
schema = _ref.schema,
rest = _objectWithoutProperties(_ref, _excluded);
var __html = "";
try {
__html = value ? value : schema.default;
if (typeof __html !== "string") {
__html = "";
}
} catch (error) {}
return /*#__PURE__*/React.createElement("div", {
dangerouslySetInnerHTML: {
__html: __html
}
});
}