@wordpress/block-library
Version:
Block library for the WordPress editor.
101 lines (100 loc) • 2.39 kB
JavaScript
// packages/block-library/src/image/index.js
import { __ } from "@wordpress/i18n";
import { image as icon } from "@wordpress/icons";
import { privateApis as blocksPrivateApis } from "@wordpress/blocks";
import initBlock from "../utils/init-block";
import deprecated from "./deprecated";
import edit from "./edit";
import metadata from "./block.json";
import save from "./save";
import transforms from "./transforms";
import { unlock } from "../lock-unlock";
var { fieldsKey, formKey } = unlock(blocksPrivateApis);
var { name } = metadata;
var settings = {
icon,
example: {
attributes: {
sizeSlug: "large",
url: "https://s.w.org/images/core/5.3/MtBlanc1.jpg",
// translators: Caption accompanying an image of the Mont Blanc, which serves as an example for the Image block.
caption: __("Mont Blanc appears\u2014still, snowy, and serene.")
}
},
__experimentalLabel(attributes, { context }) {
const customName = attributes?.metadata?.name;
if (context === "list-view" && customName) {
return customName;
}
if (context === "accessibility") {
const { caption, alt, url } = attributes;
if (!url) {
return __("Empty");
}
if (!alt) {
return caption || "";
}
return alt + (caption ? ". " + caption : "");
}
},
getEditWrapperProps(attributes) {
return {
"data-align": attributes.align
};
},
transforms,
edit,
save,
deprecated
};
if (window.__experimentalContentOnlyInspectorFields) {
settings[fieldsKey] = [
{
id: "image",
label: __("Image"),
type: "media",
mapping: {
id: "id",
url: "url",
caption: "caption",
alt: "alt"
},
args: {
allowedTypes: ["image"],
multiple: false
}
},
{
id: "link",
label: __("Link"),
type: "link",
mapping: {
url: "href",
rel: "rel",
linkTarget: "linkTarget",
destination: "linkDestination"
}
},
{
id: "caption",
label: __("Caption"),
type: "richtext"
},
{
id: "alt",
label: __("Alt text"),
type: "text"
}
];
settings[formKey] = {
fields: ["image"]
};
}
var init = () => initBlock({ name, metadata, settings });
export {
init,
metadata,
name,
settings
};
//# sourceMappingURL=index.js.map