| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"name": "activitypub/following", |
| 4 |
"apiVersion": 3, |
| 5 |
"version": "9.2.0", |
| 6 |
"title": "Fediverse Following", |
| 7 |
"category": "widgets", |
| 8 |
"description": "Display the accounts you follow in the Fediverse on your website.", |
| 9 |
"textdomain": "activitypub", |
| 10 |
"icon": "groups", |
| 11 |
"keywords": [ |
| 12 |
"fediverse", |
| 13 |
"activitypub", |
| 14 |
"following", |
| 15 |
"mastodon" |
| 16 |
], |
| 17 |
"supports": { |
| 18 |
"html": false, |
| 19 |
"interactivity": true |
| 20 |
}, |
| 21 |
"attributes": { |
| 22 |
"selectedUser": { |
| 23 |
"type": "string", |
| 24 |
"default": "blog" |
| 25 |
}, |
| 26 |
"per_page": { |
| 27 |
"type": "number", |
| 28 |
"default": 10 |
| 29 |
}, |
| 30 |
"order": { |
| 31 |
"type": "string", |
| 32 |
"default": "desc", |
| 33 |
"enum": [ |
| 34 |
"asc", |
| 35 |
"desc" |
| 36 |
] |
| 37 |
} |
| 38 |
}, |
| 39 |
"usesContext": [ |
| 40 |
"postType", |
| 41 |
"postId" |
| 42 |
], |
| 43 |
"styles": [ |
| 44 |
{ |
| 45 |
"name": "default", |
| 46 |
"label": "Default", |
| 47 |
"isDefault": true |
| 48 |
}, |
| 49 |
{ |
| 50 |
"name": "card", |
| 51 |
"label": "Card" |
| 52 |
}, |
| 53 |
{ |
| 54 |
"name": "compact", |
| 55 |
"label": "Compact" |
| 56 |
} |
| 57 |
], |
| 58 |
"editorScript": "file:./index.js", |
| 59 |
"editorStyle": "file:./index.css", |
| 60 |
"viewScriptModule": "file:./view.js", |
| 61 |
"viewScript": "wp-api-fetch", |
| 62 |
"style": [ |
| 63 |
"file:./style-index.css" |
| 64 |
], |
| 65 |
"render": "file:./render.php" |
| 66 |
} |