@wordpress/block-library
Version:
Block library for the WordPress editor.
43 lines • 1.15 kB
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { useBlockProps, PlainText } from '@wordpress/block-editor';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
const arrowMap = {
none: '',
arrow: '→',
chevron: '»'
};
export default function QueryPaginationNextEdit({
attributes: {
label
},
setAttributes,
context: {
paginationArrow,
showLabel
}
}) {
const displayArrow = arrowMap[paginationArrow];
return /*#__PURE__*/_jsxs("a", {
href: "#pagination-next-pseudo-link",
onClick: event => event.preventDefault(),
...useBlockProps(),
children: [showLabel && /*#__PURE__*/_jsx(PlainText, {
__experimentalVersion: 2,
tagName: "span",
"aria-label": __('Next page link'),
placeholder: __('Next Page'),
value: label,
onChange: newLabel => setAttributes({
label: newLabel
})
}), displayArrow && /*#__PURE__*/_jsx("span", {
className: `wp-block-query-pagination-next-arrow is-arrow-${paginationArrow}`,
"aria-hidden": true,
children: displayArrow
})]
});
}
//# sourceMappingURL=edit.js.map