@gechiui/block-editor
Version:
129 lines (107 loc) • 3.85 kB
JavaScript
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TEXT_DECORATION_SUPPORT_KEY = void 0;
exports.TextDecorationEdit = TextDecorationEdit;
exports.hasTextDecorationValue = hasTextDecorationValue;
exports.resetTextDecoration = resetTextDecoration;
exports.useIsTextDecorationDisabled = useIsTextDecorationDisabled;
var _element = require("@gechiui/element");
var _blocks = require("@gechiui/blocks");
var _textDecorationControl = _interopRequireDefault(require("../components/text-decoration-control"));
var _useSetting = _interopRequireDefault(require("../components/use-setting"));
var _utils = require("./utils");
/**
* GeChiUI dependencies
*/
/**
* Internal dependencies
*/
/**
* Key within block settings' supports array indicating support for text
* decorations e.g. settings found in `block.json`.
*/
const TEXT_DECORATION_SUPPORT_KEY = 'typography.__experimentalTextDecoration';
/**
* Inspector control panel containing the text decoration options.
*
* @param {Object} props Block properties.
*
* @return {GCElement} Text decoration edit element.
*/
exports.TEXT_DECORATION_SUPPORT_KEY = TEXT_DECORATION_SUPPORT_KEY;
function TextDecorationEdit(props) {
var _style$typography;
const {
attributes: {
style
},
setAttributes
} = props;
function onChange(newDecoration) {
setAttributes({
style: (0, _utils.cleanEmptyObject)({ ...style,
typography: { ...(style === null || style === void 0 ? void 0 : style.typography),
textDecoration: newDecoration
}
})
});
}
return (0, _element.createElement)(_textDecorationControl.default, {
value: style === null || style === void 0 ? void 0 : (_style$typography = style.typography) === null || _style$typography === void 0 ? void 0 : _style$typography.textDecoration,
onChange: onChange
});
}
/**
* Checks if text-decoration settings have been disabled.
*
* @param {string} name Name of the block.
*
* @return {boolean} Whether or not the setting is disabled.
*/
function useIsTextDecorationDisabled() {
let {
name: blockName
} = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
const notSupported = !(0, _blocks.hasBlockSupport)(blockName, TEXT_DECORATION_SUPPORT_KEY);
const hasTextDecoration = (0, _useSetting.default)('typography.textDecoration');
return notSupported || !hasTextDecoration;
}
/**
* Checks if there is a current value set for the text decoration block support.
*
* @param {Object} props Block props.
* @return {boolean} Whether or not the block has a text decoration set.
*/
function hasTextDecorationValue(props) {
var _props$attributes$sty, _props$attributes$sty2;
return !!((_props$attributes$sty = props.attributes.style) !== null && _props$attributes$sty !== void 0 && (_props$attributes$sty2 = _props$attributes$sty.typography) !== null && _props$attributes$sty2 !== void 0 && _props$attributes$sty2.textDecoration);
}
/**
* Resets the text decoration block support attribute. This can be used when
* disabling the text decoration support controls for a block via a progressive
* discovery panel.
*
* @param {Object} props Block props.
* @param {Object} props.attributes Block's attributes.
* @param {Object} props.setAttributes Function to set block's attributes.
*/
function resetTextDecoration(_ref) {
let {
attributes = {},
setAttributes
} = _ref;
const {
style
} = attributes;
setAttributes({
style: (0, _utils.cleanEmptyObject)({ ...style,
typography: { ...(style === null || style === void 0 ? void 0 : style.typography),
textDecoration: undefined
}
})
});
}
//# sourceMappingURL=text-decoration.js.map