@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
101 lines (99 loc) • 3.88 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// packages/editor/src/components/collab-sidebar/add-note.js
var add_note_exports = {};
__export(add_note_exports, {
AddNote: () => AddNote
});
module.exports = __toCommonJS(add_note_exports);
var import_i18n = require("@wordpress/i18n");
var import_data = require("@wordpress/data");
var import_block_editor = require("@wordpress/block-editor");
var import_note_card = require("./note-card.cjs");
var import_note_form = require("./note-form.cjs");
var import_floating_container = require("./floating-container.cjs");
var import_utils = require("./utils.cjs");
var import_store = require("../../store/index.cjs");
var import_lock_unlock = require("../../lock-unlock.cjs");
var import_jsx_runtime = require("react/jsx-runtime");
var { useBlockElement } = (0, import_lock_unlock.unlock)(import_block_editor.privateApis);
function AddNote({ onSubmit, sidebarRef, floating }) {
const { clientId } = (0, import_data.useSelect)((select) => {
const { getSelectedBlockClientId } = select(import_block_editor.store);
return {
clientId: getSelectedBlockClientId()
};
}, []);
const selectedNote = (0, import_data.useSelect)(
(select) => (0, import_lock_unlock.unlock)(select(import_store.store)).getSelectedNote(),
[]
);
const blockElement = useBlockElement(clientId);
const { toggleBlockSpotlight } = (0, import_lock_unlock.unlock)((0, import_data.useDispatch)(import_block_editor.store));
const { selectNote } = (0, import_lock_unlock.unlock)((0, import_data.useDispatch)(import_store.store));
const unselectNote = () => {
selectNote(void 0);
blockElement?.focus();
toggleBlockSpotlight(clientId, false);
};
if (selectedNote !== "new" || !clientId) {
return null;
}
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_floating_container.FloatingContainer,
{
floating,
className: "editor-collab-sidebar-panel__thread is-selected",
gap: "md",
tabIndex: 0,
"aria-label": (0, import_i18n.__)("New note"),
role: "treeitem",
style: floating ? { opacity: !floating.y ? 0 : void 0 } : void 0,
onBlur: (event) => {
if (!document.hasFocus()) {
return;
}
if (event.currentTarget.contains(event.relatedTarget)) {
return;
}
toggleBlockSpotlight(clientId, false);
selectNote(void 0);
},
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_note_card.NoteCard, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_note_form.NoteForm,
{
onSubmit: async (inputComment) => {
const { id } = await onSubmit({
content: inputComment
});
selectNote(id);
(0, import_utils.focusNoteThread)(id, sidebarRef.current);
},
onCancel: unselectNote,
labels: { input: (0, import_i18n.__)("New note") }
}
) })
}
);
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
AddNote
});
//# sourceMappingURL=add-note.cjs.map