@wordpress/fields 0.24.0 → 0.24.1-next.ff1cebbba.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (250) hide show
  1. package/README.md +1 -1
  2. package/build/actions/delete-post.js +168 -117
  3. package/build/actions/delete-post.js.map +7 -1
  4. package/build/actions/duplicate-pattern.js +42 -43
  5. package/build/actions/duplicate-pattern.js.map +7 -1
  6. package/build/actions/duplicate-post.js +104 -93
  7. package/build/actions/duplicate-post.js.map +7 -1
  8. package/build/actions/duplicate-template-part.js +71 -63
  9. package/build/actions/duplicate-template-part.js.map +7 -1
  10. package/build/actions/export-pattern.js +60 -45
  11. package/build/actions/export-pattern.js.map +7 -1
  12. package/build/actions/index.js +71 -94
  13. package/build/actions/index.js.map +7 -1
  14. package/build/actions/permanently-delete-post.js +161 -132
  15. package/build/actions/permanently-delete-post.js.map +7 -1
  16. package/build/actions/rename-post.js +77 -83
  17. package/build/actions/rename-post.js.map +7 -1
  18. package/build/actions/reorder-page.js +76 -73
  19. package/build/actions/reorder-page.js.map +7 -1
  20. package/build/actions/reset-post.js +214 -165
  21. package/build/actions/reset-post.js.map +7 -1
  22. package/build/actions/restore-post.js +91 -75
  23. package/build/actions/restore-post.js.map +7 -1
  24. package/build/actions/trash-post.js +167 -127
  25. package/build/actions/trash-post.js.map +7 -1
  26. package/build/actions/utils.js +48 -41
  27. package/build/actions/utils.js.map +7 -1
  28. package/build/actions/view-post-revisions.js +39 -35
  29. package/build/actions/view-post-revisions.js.map +7 -1
  30. package/build/actions/view-post.js +31 -28
  31. package/build/actions/view-post.js.map +7 -1
  32. package/build/components/create-template-part-modal/index.js +213 -169
  33. package/build/components/create-template-part-modal/index.js.map +7 -1
  34. package/build/components/create-template-part-modal/utils.js +48 -48
  35. package/build/components/create-template-part-modal/utils.js.map +7 -1
  36. package/build/fields/author/author-view.js +63 -69
  37. package/build/fields/author/author-view.js.map +7 -1
  38. package/build/fields/author/index.js +43 -29
  39. package/build/fields/author/index.js.map +7 -1
  40. package/build/fields/comment-status/index.js +42 -32
  41. package/build/fields/comment-status/index.js.map +7 -1
  42. package/build/fields/date/date-view.js +84 -58
  43. package/build/fields/date/date-view.js.map +7 -1
  44. package/build/fields/date/index.js +39 -25
  45. package/build/fields/date/index.js.map +7 -1
  46. package/build/fields/discussion/index.js +36 -32
  47. package/build/fields/discussion/index.js.map +7 -1
  48. package/build/fields/featured-image/featured-image-edit.js +115 -97
  49. package/build/fields/featured-image/featured-image-edit.js.map +7 -1
  50. package/build/fields/featured-image/featured-image-view.js +41 -34
  51. package/build/fields/featured-image/featured-image-view.js.map +7 -1
  52. package/build/fields/featured-image/index.js +31 -26
  53. package/build/fields/featured-image/index.js.map +7 -1
  54. package/build/fields/index.js +83 -118
  55. package/build/fields/index.js.map +7 -1
  56. package/build/fields/order/index.js +28 -23
  57. package/build/fields/order/index.js.map +7 -1
  58. package/build/fields/page-title/index.js +42 -30
  59. package/build/fields/page-title/index.js.map +7 -1
  60. package/build/fields/page-title/view.js +38 -41
  61. package/build/fields/page-title/view.js.map +7 -1
  62. package/build/fields/parent/index.js +31 -26
  63. package/build/fields/parent/index.js.map +7 -1
  64. package/build/fields/parent/parent-edit.js +200 -168
  65. package/build/fields/parent/parent-edit.js.map +7 -1
  66. package/build/fields/parent/parent-view.js +40 -31
  67. package/build/fields/parent/parent-view.js.map +7 -1
  68. package/build/fields/parent/utils.js +29 -16
  69. package/build/fields/parent/utils.js.map +7 -1
  70. package/build/fields/password/edit.js +67 -53
  71. package/build/fields/password/edit.js.map +7 -1
  72. package/build/fields/password/index.js +40 -26
  73. package/build/fields/password/index.js.map +7 -1
  74. package/build/fields/pattern-title/index.js +42 -30
  75. package/build/fields/pattern-title/index.js.map +7 -1
  76. package/build/fields/pattern-title/view.js +43 -41
  77. package/build/fields/pattern-title/view.js.map +7 -1
  78. package/build/fields/ping-status/index.js +66 -47
  79. package/build/fields/ping-status/index.js.map +7 -1
  80. package/build/fields/slug/index.js +41 -27
  81. package/build/fields/slug/index.js.map +7 -1
  82. package/build/fields/slug/slug-edit.js +116 -107
  83. package/build/fields/slug/slug-edit.js.map +7 -1
  84. package/build/fields/slug/slug-view.js +30 -23
  85. package/build/fields/slug/slug-view.js.map +7 -1
  86. package/build/fields/slug/utils.js +32 -20
  87. package/build/fields/slug/utils.js.map +7 -1
  88. package/build/fields/status/index.js +43 -29
  89. package/build/fields/status/index.js.map +7 -1
  90. package/build/fields/status/status-elements.js +58 -44
  91. package/build/fields/status/status-elements.js.map +7 -1
  92. package/build/fields/status/status-view.js +42 -36
  93. package/build/fields/status/status-view.js.map +7 -1
  94. package/build/fields/template/index.js +29 -24
  95. package/build/fields/template/index.js.map +7 -1
  96. package/build/fields/template/template-edit.js +167 -142
  97. package/build/fields/template/template-edit.js.map +7 -1
  98. package/build/fields/template-title/index.js +42 -30
  99. package/build/fields/template-title/index.js.map +7 -1
  100. package/build/fields/title/index.js +42 -32
  101. package/build/fields/title/index.js.map +7 -1
  102. package/build/fields/title/view.js +57 -39
  103. package/build/fields/title/view.js.map +7 -1
  104. package/build/index.js +39 -36
  105. package/build/index.js.map +7 -1
  106. package/build/lock-unlock.js +31 -14
  107. package/build/lock-unlock.js.map +7 -1
  108. package/build/mutation/index.js +91 -76
  109. package/build/mutation/index.js.map +7 -1
  110. package/build/types.js +16 -5
  111. package/build/types.js.map +7 -1
  112. package/build-module/actions/delete-post.js +155 -107
  113. package/build-module/actions/delete-post.js.map +7 -1
  114. package/build-module/actions/duplicate-pattern.js +24 -36
  115. package/build-module/actions/duplicate-pattern.js.map +7 -1
  116. package/build-module/actions/duplicate-post.js +87 -84
  117. package/build-module/actions/duplicate-post.js.map +7 -1
  118. package/build-module/actions/duplicate-template-part.js +51 -58
  119. package/build-module/actions/duplicate-template-part.js.map +7 -1
  120. package/build-module/actions/export-pattern.js +40 -39
  121. package/build-module/actions/export-pattern.js.map +7 -1
  122. package/build-module/actions/index.js +29 -14
  123. package/build-module/actions/index.js.map +7 -1
  124. package/build-module/actions/permanently-delete-post.js +146 -125
  125. package/build-module/actions/permanently-delete-post.js.map +7 -1
  126. package/build-module/actions/rename-post.js +63 -77
  127. package/build-module/actions/rename-post.js.map +7 -1
  128. package/build-module/actions/reorder-page.js +58 -65
  129. package/build-module/actions/reorder-page.js.map +7 -1
  130. package/build-module/actions/reset-post.js +185 -152
  131. package/build-module/actions/reset-post.js.map +7 -1
  132. package/build-module/actions/restore-post.js +72 -68
  133. package/build-module/actions/restore-post.js.map +7 -1
  134. package/build-module/actions/trash-post.js +152 -119
  135. package/build-module/actions/trash-post.js.map +7 -1
  136. package/build-module/actions/utils.js +23 -34
  137. package/build-module/actions/utils.js.map +7 -1
  138. package/build-module/actions/view-post-revisions.js +21 -31
  139. package/build-module/actions/view-post-revisions.js.map +7 -1
  140. package/build-module/actions/view-post.js +12 -23
  141. package/build-module/actions/view-post.js.map +7 -1
  142. package/build-module/components/create-template-part-modal/index.js +201 -154
  143. package/build-module/components/create-template-part-modal/index.js.map +7 -1
  144. package/build-module/components/create-template-part-modal/utils.js +26 -43
  145. package/build-module/components/create-template-part-modal/utils.js.map +7 -1
  146. package/build-module/fields/author/author-view.js +34 -62
  147. package/build-module/fields/author/author-view.js.map +7 -1
  148. package/build-module/fields/author/index.js +14 -24
  149. package/build-module/fields/author/index.js.map +7 -1
  150. package/build-module/fields/comment-status/index.js +24 -29
  151. package/build-module/fields/comment-status/index.js.map +7 -1
  152. package/build-module/fields/date/date-view.js +66 -53
  153. package/build-module/fields/date/date-view.js.map +7 -1
  154. package/build-module/fields/date/index.js +10 -20
  155. package/build-module/fields/date/index.js.map +7 -1
  156. package/build-module/fields/discussion/index.js +18 -29
  157. package/build-module/fields/discussion/index.js.map +7 -1
  158. package/build-module/fields/featured-image/featured-image-edit.js +93 -90
  159. package/build-module/fields/featured-image/featured-image-edit.js.map +7 -1
  160. package/build-module/fields/featured-image/featured-image-view.js +20 -29
  161. package/build-module/fields/featured-image/featured-image-view.js.map +7 -1
  162. package/build-module/fields/featured-image/index.js +11 -21
  163. package/build-module/fields/featured-image/index.js.map +7 -1
  164. package/build-module/fields/index.js +35 -17
  165. package/build-module/fields/index.js.map +7 -1
  166. package/build-module/fields/order/index.js +10 -20
  167. package/build-module/fields/order/index.js.map +7 -1
  168. package/build-module/fields/page-title/index.js +13 -25
  169. package/build-module/fields/page-title/index.js.map +7 -1
  170. package/build-module/fields/page-title/view.js +20 -37
  171. package/build-module/fields/page-title/view.js.map +7 -1
  172. package/build-module/fields/parent/index.js +11 -21
  173. package/build-module/fields/parent/index.js.map +7 -1
  174. package/build-module/fields/parent/parent-edit.js +172 -160
  175. package/build-module/fields/parent/parent-edit.js.map +7 -1
  176. package/build-module/fields/parent/parent-view.js +19 -27
  177. package/build-module/fields/parent/parent-view.js.map +7 -1
  178. package/build-module/fields/parent/utils.js +8 -13
  179. package/build-module/fields/parent/utils.js.map +7 -1
  180. package/build-module/fields/password/edit.js +53 -48
  181. package/build-module/fields/password/edit.js.map +7 -1
  182. package/build-module/fields/password/index.js +11 -21
  183. package/build-module/fields/password/index.js.map +7 -1
  184. package/build-module/fields/pattern-title/index.js +13 -25
  185. package/build-module/fields/pattern-title/index.js.map +7 -1
  186. package/build-module/fields/pattern-title/view.js +21 -34
  187. package/build-module/fields/pattern-title/view.js.map +7 -1
  188. package/build-module/fields/ping-status/index.js +48 -43
  189. package/build-module/fields/ping-status/index.js.map +7 -1
  190. package/build-module/fields/slug/index.js +11 -21
  191. package/build-module/fields/slug/index.js.map +7 -1
  192. package/build-module/fields/slug/slug-edit.js +101 -100
  193. package/build-module/fields/slug/slug-edit.js.map +7 -1
  194. package/build-module/fields/slug/slug-view.js +9 -16
  195. package/build-module/fields/slug/slug-view.js.map +7 -1
  196. package/build-module/fields/slug/utils.js +9 -13
  197. package/build-module/fields/slug/utils.js.map +7 -1
  198. package/build-module/fields/status/index.js +13 -23
  199. package/build-module/fields/status/index.js.map +7 -1
  200. package/build-module/fields/status/status-elements.js +47 -40
  201. package/build-module/fields/status/status-elements.js.map +7 -1
  202. package/build-module/fields/status/status-view.js +14 -31
  203. package/build-module/fields/status/status-view.js.map +7 -1
  204. package/build-module/fields/template/index.js +10 -18
  205. package/build-module/fields/template/index.js.map +7 -1
  206. package/build-module/fields/template/template-edit.js +147 -130
  207. package/build-module/fields/template/template-edit.js.map +7 -1
  208. package/build-module/fields/template-title/index.js +13 -25
  209. package/build-module/fields/template-title/index.js.map +7 -1
  210. package/build-module/fields/title/index.js +13 -27
  211. package/build-module/fields/title/index.js.map +7 -1
  212. package/build-module/fields/title/view.js +25 -32
  213. package/build-module/fields/title/view.js.map +7 -1
  214. package/build-module/index.js +7 -4
  215. package/build-module/index.js.map +7 -1
  216. package/build-module/lock-unlock.js +8 -7
  217. package/build-module/lock-unlock.js.map +7 -1
  218. package/build-module/mutation/index.js +70 -72
  219. package/build-module/mutation/index.js.map +7 -1
  220. package/build-module/types.js +1 -2
  221. package/build-module/types.js.map +7 -1
  222. package/build-style/style-rtl.css +4 -139
  223. package/build-style/style.css +4 -139
  224. package/build-types/fields/author/author-view.d.ts.map +1 -1
  225. package/build-types/fields/discussion/index.d.ts.map +1 -1
  226. package/build-types/fields/featured-image/featured-image-edit.d.ts +2 -2
  227. package/build-types/fields/featured-image/featured-image-edit.d.ts.map +1 -1
  228. package/build-types/fields/featured-image/featured-image-view.d.ts +5 -2
  229. package/build-types/fields/featured-image/featured-image-view.d.ts.map +1 -1
  230. package/build-types/fields/featured-image/index.d.ts +3 -3
  231. package/build-types/fields/featured-image/index.d.ts.map +1 -1
  232. package/build-types/types.d.ts +18 -0
  233. package/build-types/types.d.ts.map +1 -1
  234. package/package.json +34 -27
  235. package/src/components/create-template-part-modal/style.scss +4 -0
  236. package/src/fields/author/author-view.tsx +3 -17
  237. package/src/fields/discussion/index.tsx +1 -0
  238. package/src/fields/featured-image/featured-image-edit.tsx +2 -2
  239. package/src/fields/featured-image/featured-image-view.tsx +3 -15
  240. package/src/fields/featured-image/index.ts +3 -3
  241. package/src/fields/featured-image/style.scss +3 -0
  242. package/src/fields/template/style.scss +4 -0
  243. package/src/fields/title/style.scss +1 -1
  244. package/src/style.scss +9 -8
  245. package/src/types.ts +18 -0
  246. package/tsconfig.tsbuildinfo +1 -1
  247. package/build/index.native.js +0 -2
  248. package/build/index.native.js.map +0 -1
  249. package/build-module/index.native.js +0 -2
  250. package/build-module/index.native.js.map +0 -1
@@ -1,211 +1,260 @@
1
1
  "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var reset_post_exports = {};
30
+ __export(reset_post_exports, {
31
+ default: () => reset_post_default
6
32
  });
7
- exports.default = void 0;
8
- var _icons = require("@wordpress/icons");
9
- var _data = require("@wordpress/data");
10
- var _coreData = require("@wordpress/core-data");
11
- var _i18n = require("@wordpress/i18n");
12
- var _notices = require("@wordpress/notices");
13
- var _element = require("@wordpress/element");
14
- var _blocks = require("@wordpress/blocks");
15
- var _components = require("@wordpress/components");
16
- var _url = require("@wordpress/url");
17
- var _apiFetch = _interopRequireDefault(require("@wordpress/api-fetch"));
18
- var _utils = require("./utils");
19
- var _jsxRuntime = require("react/jsx-runtime");
20
- /**
21
- * WordPress dependencies
22
- */
23
-
24
- // @ts-ignore
25
-
26
- /**
27
- * Internal dependencies
28
- */
29
-
30
- const isTemplateRevertable = templateOrTemplatePart => {
33
+ module.exports = __toCommonJS(reset_post_exports);
34
+ var import_jsx_runtime = require("react/jsx-runtime");
35
+ var import_icons = require("@wordpress/icons");
36
+ var import_data = require("@wordpress/data");
37
+ var import_core_data = require("@wordpress/core-data");
38
+ var import_i18n = require("@wordpress/i18n");
39
+ var import_notices = require("@wordpress/notices");
40
+ var import_element = require("@wordpress/element");
41
+ var import_blocks = require("@wordpress/blocks");
42
+ var import_components = require("@wordpress/components");
43
+ var import_url = require("@wordpress/url");
44
+ var import_api_fetch = __toESM(require("@wordpress/api-fetch"));
45
+ var import_utils = require("./utils");
46
+ const isTemplateRevertable = (templateOrTemplatePart) => {
31
47
  if (!templateOrTemplatePart) {
32
48
  return false;
33
49
  }
34
- return templateOrTemplatePart.source === 'custom' && (Boolean(templateOrTemplatePart?.plugin) || templateOrTemplatePart?.has_theme_file);
50
+ return templateOrTemplatePart.source === "custom" && (Boolean(templateOrTemplatePart?.plugin) || templateOrTemplatePart?.has_theme_file);
35
51
  };
36
-
37
- /**
38
- * Copied - pasted from https://github.com/WordPress/gutenberg/blob/bf1462ad37d4637ebbf63270b9c244b23c69e2a8/packages/editor/src/store/private-actions.js#L233-L365
39
- *
40
- * @param {Object} template The template to revert.
41
- * @param {Object} [options]
42
- * @param {boolean} [options.allowUndo] Whether to allow the user to undo
43
- * reverting the template. Default true.
44
- */
45
- const revertTemplate = async (template, {
46
- allowUndo = true
47
- } = {}) => {
48
- const noticeId = 'edit-site-template-reverted';
49
- (0, _data.dispatch)(_notices.store).removeNotice(noticeId);
52
+ const revertTemplate = async (template, { allowUndo = true } = {}) => {
53
+ const noticeId = "edit-site-template-reverted";
54
+ (0, import_data.dispatch)(import_notices.store).removeNotice(noticeId);
50
55
  if (!isTemplateRevertable(template)) {
51
- (0, _data.dispatch)(_notices.store).createErrorNotice((0, _i18n.__)('This template is not revertable.'), {
52
- type: 'snackbar'
53
- });
56
+ (0, import_data.dispatch)(import_notices.store).createErrorNotice(
57
+ (0, import_i18n.__)("This template is not revertable."),
58
+ {
59
+ type: "snackbar"
60
+ }
61
+ );
54
62
  return;
55
63
  }
56
64
  try {
57
- const templateEntityConfig = (0, _data.select)(_coreData.store).getEntityConfig('postType', template.type);
65
+ const templateEntityConfig = (0, import_data.select)(import_core_data.store).getEntityConfig(
66
+ "postType",
67
+ template.type
68
+ );
58
69
  if (!templateEntityConfig) {
59
- (0, _data.dispatch)(_notices.store).createErrorNotice((0, _i18n.__)('The editor has encountered an unexpected error. Please reload.'), {
60
- type: 'snackbar'
61
- });
70
+ (0, import_data.dispatch)(import_notices.store).createErrorNotice(
71
+ (0, import_i18n.__)(
72
+ "The editor has encountered an unexpected error. Please reload."
73
+ ),
74
+ { type: "snackbar" }
75
+ );
62
76
  return;
63
77
  }
64
- const fileTemplatePath = (0, _url.addQueryArgs)(`${templateEntityConfig.baseURL}/${template.id}`, {
65
- context: 'edit',
66
- source: template.origin
67
- });
68
- const fileTemplate = await (0, _apiFetch.default)({
78
+ const fileTemplatePath = (0, import_url.addQueryArgs)(
79
+ `${templateEntityConfig.baseURL}/${template.id}`,
80
+ { context: "edit", source: template.origin }
81
+ );
82
+ const fileTemplate = await (0, import_api_fetch.default)({
69
83
  path: fileTemplatePath
70
84
  });
71
85
  if (!fileTemplate) {
72
- (0, _data.dispatch)(_notices.store).createErrorNotice((0, _i18n.__)('The editor has encountered an unexpected error. Please reload.'), {
73
- type: 'snackbar'
74
- });
86
+ (0, import_data.dispatch)(import_notices.store).createErrorNotice(
87
+ (0, import_i18n.__)(
88
+ "The editor has encountered an unexpected error. Please reload."
89
+ ),
90
+ { type: "snackbar" }
91
+ );
75
92
  return;
76
93
  }
77
- const serializeBlocks = ({
78
- blocks: blocksForSerialization = []
79
- }) => (0, _blocks.__unstableSerializeAndClean)(blocksForSerialization);
80
- const edited = (0, _data.select)(_coreData.store).getEditedEntityRecord('postType', template.type, template.id);
81
-
82
- // We are fixing up the undo level here to make sure we can undo
83
- // the revert in the header toolbar correctly.
84
- (0, _data.dispatch)(_coreData.store).editEntityRecord('postType', template.type, template.id, {
85
- content: serializeBlocks,
86
- // Required to make the `undo` behave correctly.
87
- blocks: edited.blocks,
88
- // Required to revert the blocks in the editor.
89
- source: 'custom' // required to avoid turning the editor into a dirty state
90
- }, {
91
- undoIgnore: true // Required to merge this edit with the last undo level.
92
- });
93
- const blocks = (0, _blocks.parse)(fileTemplate?.content?.raw);
94
- (0, _data.dispatch)(_coreData.store).editEntityRecord('postType', template.type, fileTemplate.id, {
95
- content: serializeBlocks,
96
- blocks,
97
- source: 'theme'
98
- });
94
+ const serializeBlocks = ({ blocks: blocksForSerialization = [] }) => (0, import_blocks.__unstableSerializeAndClean)(blocksForSerialization);
95
+ const edited = (0, import_data.select)(import_core_data.store).getEditedEntityRecord(
96
+ "postType",
97
+ template.type,
98
+ template.id
99
+ );
100
+ (0, import_data.dispatch)(import_core_data.store).editEntityRecord(
101
+ "postType",
102
+ template.type,
103
+ template.id,
104
+ {
105
+ content: serializeBlocks,
106
+ // Required to make the `undo` behave correctly.
107
+ blocks: edited.blocks,
108
+ // Required to revert the blocks in the editor.
109
+ source: "custom"
110
+ // required to avoid turning the editor into a dirty state
111
+ },
112
+ {
113
+ undoIgnore: true
114
+ // Required to merge this edit with the last undo level.
115
+ }
116
+ );
117
+ const blocks = (0, import_blocks.parse)(fileTemplate?.content?.raw);
118
+ (0, import_data.dispatch)(import_core_data.store).editEntityRecord(
119
+ "postType",
120
+ template.type,
121
+ fileTemplate.id,
122
+ {
123
+ content: serializeBlocks,
124
+ blocks,
125
+ source: "theme"
126
+ }
127
+ );
99
128
  if (allowUndo) {
100
129
  const undoRevert = () => {
101
- (0, _data.dispatch)(_coreData.store).editEntityRecord('postType', template.type, edited.id, {
102
- content: serializeBlocks,
103
- blocks: edited.blocks,
104
- source: 'custom'
105
- });
130
+ (0, import_data.dispatch)(import_core_data.store).editEntityRecord(
131
+ "postType",
132
+ template.type,
133
+ edited.id,
134
+ {
135
+ content: serializeBlocks,
136
+ blocks: edited.blocks,
137
+ source: "custom"
138
+ }
139
+ );
106
140
  };
107
- (0, _data.dispatch)(_notices.store).createSuccessNotice((0, _i18n.__)('Template reset.'), {
108
- type: 'snackbar',
109
- id: noticeId,
110
- actions: [{
111
- label: (0, _i18n.__)('Undo'),
112
- onClick: undoRevert
113
- }]
114
- });
141
+ (0, import_data.dispatch)(import_notices.store).createSuccessNotice(
142
+ (0, import_i18n.__)("Template reset."),
143
+ {
144
+ type: "snackbar",
145
+ id: noticeId,
146
+ actions: [
147
+ {
148
+ label: (0, import_i18n.__)("Undo"),
149
+ onClick: undoRevert
150
+ }
151
+ ]
152
+ }
153
+ );
115
154
  }
116
155
  } catch (error) {
117
- const errorMessage = error.message && error.code !== 'unknown_error' ? error.message : (0, _i18n.__)('Template revert failed. Please reload.');
118
- (0, _data.dispatch)(_notices.store).createErrorNotice(errorMessage, {
119
- type: 'snackbar'
156
+ const errorMessage = error.message && error.code !== "unknown_error" ? error.message : (0, import_i18n.__)("Template revert failed. Please reload.");
157
+ (0, import_data.dispatch)(import_notices.store).createErrorNotice(errorMessage, {
158
+ type: "snackbar"
120
159
  });
121
160
  }
122
161
  };
123
162
  const resetPostAction = {
124
- id: 'reset-post',
125
- label: (0, _i18n.__)('Reset'),
126
- isEligible: item => {
127
- return (0, _utils.isTemplateOrTemplatePart)(item) && item?.source === 'custom' && (Boolean(item.type === 'wp_template' && item?.plugin) || item?.has_theme_file);
163
+ id: "reset-post",
164
+ label: (0, import_i18n.__)("Reset"),
165
+ isEligible: (item) => {
166
+ return (0, import_utils.isTemplateOrTemplatePart)(item) && item?.source === "custom" && (Boolean(item.type === "wp_template" && item?.plugin) || item?.has_theme_file);
128
167
  },
129
- icon: _icons.backup,
168
+ icon: import_icons.backup,
130
169
  supportsBulk: true,
131
170
  hideModalHeader: true,
132
- modalFocusOnMount: 'firstContentElement',
133
- RenderModal: ({
134
- items,
135
- closeModal,
136
- onActionPerformed
137
- }) => {
138
- const [isBusy, setIsBusy] = (0, _element.useState)(false);
139
- const {
140
- saveEditedEntityRecord
141
- } = (0, _data.useDispatch)(_coreData.store);
142
- const {
143
- createSuccessNotice,
144
- createErrorNotice
145
- } = (0, _data.useDispatch)(_notices.store);
171
+ modalFocusOnMount: "firstContentElement",
172
+ RenderModal: ({ items, closeModal, onActionPerformed }) => {
173
+ const [isBusy, setIsBusy] = (0, import_element.useState)(false);
174
+ const { saveEditedEntityRecord } = (0, import_data.useDispatch)(import_core_data.store);
175
+ const { createSuccessNotice, createErrorNotice } = (0, import_data.useDispatch)(import_notices.store);
146
176
  const onConfirm = async () => {
147
177
  try {
148
178
  for (const template of items) {
149
179
  await revertTemplate(template, {
150
180
  allowUndo: false
151
181
  });
152
- await saveEditedEntityRecord('postType', template.type, template.id);
182
+ await saveEditedEntityRecord(
183
+ "postType",
184
+ template.type,
185
+ template.id
186
+ );
153
187
  }
154
- createSuccessNotice(items.length > 1 ? (0, _i18n.sprintf)(/* translators: %d: The number of items. */
155
- (0, _i18n.__)('%d items reset.'), items.length) : (0, _i18n.sprintf)(/* translators: %s: The template/part's name. */
156
- (0, _i18n.__)('"%s" reset.'), (0, _utils.getItemTitle)(items[0])), {
157
- type: 'snackbar',
158
- id: 'revert-template-action'
159
- });
188
+ createSuccessNotice(
189
+ items.length > 1 ? (0, import_i18n.sprintf)(
190
+ /* translators: %d: The number of items. */
191
+ (0, import_i18n.__)("%d items reset."),
192
+ items.length
193
+ ) : (0, import_i18n.sprintf)(
194
+ /* translators: %s: The template/part's name. */
195
+ (0, import_i18n.__)('"%s" reset.'),
196
+ (0, import_utils.getItemTitle)(items[0])
197
+ ),
198
+ {
199
+ type: "snackbar",
200
+ id: "revert-template-action"
201
+ }
202
+ );
160
203
  } catch (error) {
161
204
  let fallbackErrorMessage;
162
- if (items[0].type === 'wp_template') {
163
- fallbackErrorMessage = items.length === 1 ? (0, _i18n.__)('An error occurred while reverting the template.') : (0, _i18n.__)('An error occurred while reverting the templates.');
205
+ if (items[0].type === "wp_template") {
206
+ fallbackErrorMessage = items.length === 1 ? (0, import_i18n.__)(
207
+ "An error occurred while reverting the template."
208
+ ) : (0, import_i18n.__)(
209
+ "An error occurred while reverting the templates."
210
+ );
164
211
  } else {
165
- fallbackErrorMessage = items.length === 1 ? (0, _i18n.__)('An error occurred while reverting the template part.') : (0, _i18n.__)('An error occurred while reverting the template parts.');
212
+ fallbackErrorMessage = items.length === 1 ? (0, import_i18n.__)(
213
+ "An error occurred while reverting the template part."
214
+ ) : (0, import_i18n.__)(
215
+ "An error occurred while reverting the template parts."
216
+ );
166
217
  }
167
218
  const typedError = error;
168
- const errorMessage = typedError.message && typedError.code !== 'unknown_error' ? typedError.message : fallbackErrorMessage;
169
- createErrorNotice(errorMessage, {
170
- type: 'snackbar'
171
- });
219
+ const errorMessage = typedError.message && typedError.code !== "unknown_error" ? typedError.message : fallbackErrorMessage;
220
+ createErrorNotice(errorMessage, { type: "snackbar" });
172
221
  }
173
222
  };
174
- return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_components.__experimentalVStack, {
175
- spacing: "5",
176
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.__experimentalText, {
177
- children: (0, _i18n.__)('Reset to default and clear all customizations?')
178
- }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_components.__experimentalHStack, {
179
- justify: "right",
180
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Button, {
181
- __next40pxDefaultSize: true,
182
- variant: "tertiary",
183
- onClick: closeModal,
184
- disabled: isBusy,
185
- accessibleWhenDisabled: true,
186
- children: (0, _i18n.__)('Cancel')
187
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Button, {
188
- __next40pxDefaultSize: true,
189
- variant: "primary",
190
- onClick: async () => {
191
- setIsBusy(true);
192
- await onConfirm();
193
- onActionPerformed?.(items);
194
- setIsBusy(false);
195
- closeModal?.();
196
- },
197
- isBusy: isBusy,
198
- disabled: isBusy,
199
- accessibleWhenDisabled: true,
200
- children: (0, _i18n.__)('Reset')
201
- })]
202
- })]
203
- });
223
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_components.__experimentalVStack, { spacing: "5", children: [
224
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_components.__experimentalText, { children: (0, import_i18n.__)("Reset to default and clear all customizations?") }),
225
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_components.__experimentalHStack, { justify: "right", children: [
226
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
227
+ import_components.Button,
228
+ {
229
+ __next40pxDefaultSize: true,
230
+ variant: "tertiary",
231
+ onClick: closeModal,
232
+ disabled: isBusy,
233
+ accessibleWhenDisabled: true,
234
+ children: (0, import_i18n.__)("Cancel")
235
+ }
236
+ ),
237
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
238
+ import_components.Button,
239
+ {
240
+ __next40pxDefaultSize: true,
241
+ variant: "primary",
242
+ onClick: async () => {
243
+ setIsBusy(true);
244
+ await onConfirm();
245
+ onActionPerformed?.(items);
246
+ setIsBusy(false);
247
+ closeModal?.();
248
+ },
249
+ isBusy,
250
+ disabled: isBusy,
251
+ accessibleWhenDisabled: true,
252
+ children: (0, import_i18n.__)("Reset")
253
+ }
254
+ )
255
+ ] })
256
+ ] });
204
257
  }
205
258
  };
206
-
207
- /**
208
- * Reset action for Template and TemplatePart.
209
- */
210
- var _default = exports.default = resetPostAction;
211
- //# sourceMappingURL=reset-post.js.map
259
+ var reset_post_default = resetPostAction;
260
+ //# sourceMappingURL=reset-post.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["_icons","require","_data","_coreData","_i18n","_notices","_element","_blocks","_components","_url","_apiFetch","_interopRequireDefault","_utils","_jsxRuntime","isTemplateRevertable","templateOrTemplatePart","source","Boolean","plugin","has_theme_file","revertTemplate","template","allowUndo","noticeId","dispatch","noticesStore","removeNotice","createErrorNotice","__","type","templateEntityConfig","select","coreStore","getEntityConfig","fileTemplatePath","addQueryArgs","baseURL","id","context","origin","fileTemplate","apiFetch","path","serializeBlocks","blocks","blocksForSerialization","__unstableSerializeAndClean","edited","getEditedEntityRecord","editEntityRecord","content","undoIgnore","parse","raw","undoRevert","createSuccessNotice","actions","label","onClick","error","errorMessage","message","code","resetPostAction","isEligible","item","isTemplateOrTemplatePart","icon","backup","supportsBulk","hideModalHeader","modalFocusOnMount","RenderModal","items","closeModal","onActionPerformed","isBusy","setIsBusy","useState","saveEditedEntityRecord","useDispatch","onConfirm","length","sprintf","getItemTitle","fallbackErrorMessage","typedError","jsxs","__experimentalVStack","spacing","children","jsx","__experimentalText","__experimentalHStack","justify","Button","__next40pxDefaultSize","variant","disabled","accessibleWhenDisabled","_default","exports","default"],"sources":["@wordpress/fields/src/actions/reset-post.tsx"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { backup } from '@wordpress/icons';\nimport { dispatch, select, useDispatch } from '@wordpress/data';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { __, sprintf } from '@wordpress/i18n';\nimport { store as noticesStore } from '@wordpress/notices';\nimport { useState } from '@wordpress/element';\n// @ts-ignore\nimport { parse, __unstableSerializeAndClean } from '@wordpress/blocks';\nimport {\n\tButton,\n\t__experimentalText as Text,\n\t__experimentalHStack as HStack,\n\t__experimentalVStack as VStack,\n} from '@wordpress/components';\nimport type { Action } from '@wordpress/dataviews';\nimport { addQueryArgs } from '@wordpress/url';\nimport apiFetch from '@wordpress/api-fetch';\n\n/**\n * Internal dependencies\n */\nimport { getItemTitle, isTemplateOrTemplatePart } from './utils';\nimport type { CoreDataError, Template, TemplatePart } from '../types';\n\nconst isTemplateRevertable = (\n\ttemplateOrTemplatePart: Template | TemplatePart\n) => {\n\tif ( ! templateOrTemplatePart ) {\n\t\treturn false;\n\t}\n\n\treturn (\n\t\ttemplateOrTemplatePart.source === 'custom' &&\n\t\t( Boolean( templateOrTemplatePart?.plugin ) ||\n\t\t\ttemplateOrTemplatePart?.has_theme_file )\n\t);\n};\n\n/**\n * Copied - pasted from https://github.com/WordPress/gutenberg/blob/bf1462ad37d4637ebbf63270b9c244b23c69e2a8/packages/editor/src/store/private-actions.js#L233-L365\n *\n * @param {Object} template The template to revert.\n * @param {Object} [options]\n * @param {boolean} [options.allowUndo] Whether to allow the user to undo\n * reverting the template. Default true.\n */\nconst revertTemplate = async (\n\ttemplate: TemplatePart | Template,\n\t{ allowUndo = true } = {}\n) => {\n\tconst noticeId = 'edit-site-template-reverted';\n\tdispatch( noticesStore ).removeNotice( noticeId );\n\tif ( ! isTemplateRevertable( template ) ) {\n\t\tdispatch( noticesStore ).createErrorNotice(\n\t\t\t__( 'This template is not revertable.' ),\n\t\t\t{\n\t\t\t\ttype: 'snackbar',\n\t\t\t}\n\t\t);\n\t\treturn;\n\t}\n\n\ttry {\n\t\tconst templateEntityConfig = select( coreStore ).getEntityConfig(\n\t\t\t'postType',\n\t\t\ttemplate.type\n\t\t);\n\n\t\tif ( ! templateEntityConfig ) {\n\t\t\tdispatch( noticesStore ).createErrorNotice(\n\t\t\t\t__(\n\t\t\t\t\t'The editor has encountered an unexpected error. Please reload.'\n\t\t\t\t),\n\t\t\t\t{ type: 'snackbar' }\n\t\t\t);\n\t\t\treturn;\n\t\t}\n\n\t\tconst fileTemplatePath = addQueryArgs(\n\t\t\t`${ templateEntityConfig.baseURL }/${ template.id }`,\n\t\t\t{ context: 'edit', source: template.origin }\n\t\t);\n\n\t\tconst fileTemplate = ( await apiFetch( {\n\t\t\tpath: fileTemplatePath,\n\t\t} ) ) as any;\n\t\tif ( ! fileTemplate ) {\n\t\t\tdispatch( noticesStore ).createErrorNotice(\n\t\t\t\t__(\n\t\t\t\t\t'The editor has encountered an unexpected error. Please reload.'\n\t\t\t\t),\n\t\t\t\t{ type: 'snackbar' }\n\t\t\t);\n\t\t\treturn;\n\t\t}\n\n\t\tconst serializeBlocks = ( { blocks: blocksForSerialization = [] } ) =>\n\t\t\t__unstableSerializeAndClean( blocksForSerialization );\n\n\t\tconst edited = select( coreStore ).getEditedEntityRecord(\n\t\t\t'postType',\n\t\t\ttemplate.type,\n\t\t\ttemplate.id\n\t\t) as any;\n\n\t\t// We are fixing up the undo level here to make sure we can undo\n\t\t// the revert in the header toolbar correctly.\n\t\tdispatch( coreStore ).editEntityRecord(\n\t\t\t'postType',\n\t\t\ttemplate.type,\n\t\t\ttemplate.id,\n\t\t\t{\n\t\t\t\tcontent: serializeBlocks, // Required to make the `undo` behave correctly.\n\t\t\t\tblocks: edited.blocks, // Required to revert the blocks in the editor.\n\t\t\t\tsource: 'custom', // required to avoid turning the editor into a dirty state\n\t\t\t},\n\t\t\t{\n\t\t\t\tundoIgnore: true, // Required to merge this edit with the last undo level.\n\t\t\t}\n\t\t);\n\n\t\tconst blocks = parse( fileTemplate?.content?.raw );\n\n\t\tdispatch( coreStore ).editEntityRecord(\n\t\t\t'postType',\n\t\t\ttemplate.type,\n\t\t\tfileTemplate.id,\n\t\t\t{\n\t\t\t\tcontent: serializeBlocks,\n\t\t\t\tblocks,\n\t\t\t\tsource: 'theme',\n\t\t\t}\n\t\t);\n\n\t\tif ( allowUndo ) {\n\t\t\tconst undoRevert = () => {\n\t\t\t\tdispatch( coreStore ).editEntityRecord(\n\t\t\t\t\t'postType',\n\t\t\t\t\ttemplate.type,\n\t\t\t\t\tedited.id,\n\t\t\t\t\t{\n\t\t\t\t\t\tcontent: serializeBlocks,\n\t\t\t\t\t\tblocks: edited.blocks,\n\t\t\t\t\t\tsource: 'custom',\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t};\n\n\t\t\tdispatch( noticesStore ).createSuccessNotice(\n\t\t\t\t__( 'Template reset.' ),\n\t\t\t\t{\n\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\tid: noticeId,\n\t\t\t\t\tactions: [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: __( 'Undo' ),\n\t\t\t\t\t\t\tonClick: undoRevert,\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t} catch ( error: any ) {\n\t\tconst errorMessage =\n\t\t\terror.message && error.code !== 'unknown_error'\n\t\t\t\t? error.message\n\t\t\t\t: __( 'Template revert failed. Please reload.' );\n\n\t\tdispatch( noticesStore ).createErrorNotice( errorMessage, {\n\t\t\ttype: 'snackbar',\n\t\t} );\n\t}\n};\n\nconst resetPostAction: Action< Template | TemplatePart > = {\n\tid: 'reset-post',\n\tlabel: __( 'Reset' ),\n\tisEligible: ( item ) => {\n\t\treturn (\n\t\t\tisTemplateOrTemplatePart( item ) &&\n\t\t\titem?.source === 'custom' &&\n\t\t\t( Boolean( item.type === 'wp_template' && item?.plugin ) ||\n\t\t\t\titem?.has_theme_file )\n\t\t);\n\t},\n\ticon: backup,\n\tsupportsBulk: true,\n\thideModalHeader: true,\n\tmodalFocusOnMount: 'firstContentElement',\n\tRenderModal: ( { items, closeModal, onActionPerformed } ) => {\n\t\tconst [ isBusy, setIsBusy ] = useState( false );\n\n\t\tconst { saveEditedEntityRecord } = useDispatch( coreStore );\n\t\tconst { createSuccessNotice, createErrorNotice } =\n\t\t\tuseDispatch( noticesStore );\n\t\tconst onConfirm = async () => {\n\t\t\ttry {\n\t\t\t\tfor ( const template of items ) {\n\t\t\t\t\tawait revertTemplate( template, {\n\t\t\t\t\t\tallowUndo: false,\n\t\t\t\t\t} );\n\t\t\t\t\tawait saveEditedEntityRecord(\n\t\t\t\t\t\t'postType',\n\t\t\t\t\t\ttemplate.type,\n\t\t\t\t\t\ttemplate.id\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tcreateSuccessNotice(\n\t\t\t\t\titems.length > 1\n\t\t\t\t\t\t? sprintf(\n\t\t\t\t\t\t\t\t/* translators: %d: The number of items. */\n\t\t\t\t\t\t\t\t__( '%d items reset.' ),\n\t\t\t\t\t\t\t\titems.length\n\t\t\t\t\t\t )\n\t\t\t\t\t\t: sprintf(\n\t\t\t\t\t\t\t\t/* translators: %s: The template/part's name. */\n\t\t\t\t\t\t\t\t__( '\"%s\" reset.' ),\n\t\t\t\t\t\t\t\tgetItemTitle( items[ 0 ] )\n\t\t\t\t\t\t ),\n\t\t\t\t\t{\n\t\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\t\tid: 'revert-template-action',\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t} catch ( error ) {\n\t\t\t\tlet fallbackErrorMessage;\n\t\t\t\tif ( items[ 0 ].type === 'wp_template' ) {\n\t\t\t\t\tfallbackErrorMessage =\n\t\t\t\t\t\titems.length === 1\n\t\t\t\t\t\t\t? __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the template.'\n\t\t\t\t\t\t\t )\n\t\t\t\t\t\t\t: __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the templates.'\n\t\t\t\t\t\t\t );\n\t\t\t\t} else {\n\t\t\t\t\tfallbackErrorMessage =\n\t\t\t\t\t\titems.length === 1\n\t\t\t\t\t\t\t? __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the template part.'\n\t\t\t\t\t\t\t )\n\t\t\t\t\t\t\t: __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the template parts.'\n\t\t\t\t\t\t\t );\n\t\t\t\t}\n\n\t\t\t\tconst typedError = error as CoreDataError;\n\t\t\t\tconst errorMessage =\n\t\t\t\t\ttypedError.message && typedError.code !== 'unknown_error'\n\t\t\t\t\t\t? typedError.message\n\t\t\t\t\t\t: fallbackErrorMessage;\n\n\t\t\t\tcreateErrorNotice( errorMessage, { type: 'snackbar' } );\n\t\t\t}\n\t\t};\n\t\treturn (\n\t\t\t<VStack spacing=\"5\">\n\t\t\t\t<Text>\n\t\t\t\t\t{ __( 'Reset to default and clear all customizations?' ) }\n\t\t\t\t</Text>\n\t\t\t\t<HStack justify=\"right\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\t__next40pxDefaultSize\n\t\t\t\t\t\tvariant=\"tertiary\"\n\t\t\t\t\t\tonClick={ closeModal }\n\t\t\t\t\t\tdisabled={ isBusy }\n\t\t\t\t\t\taccessibleWhenDisabled\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Cancel' ) }\n\t\t\t\t\t</Button>\n\t\t\t\t\t<Button\n\t\t\t\t\t\t__next40pxDefaultSize\n\t\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\t\tonClick={ async () => {\n\t\t\t\t\t\t\tsetIsBusy( true );\n\t\t\t\t\t\t\tawait onConfirm();\n\t\t\t\t\t\t\tonActionPerformed?.( items );\n\t\t\t\t\t\t\tsetIsBusy( false );\n\t\t\t\t\t\t\tcloseModal?.();\n\t\t\t\t\t\t} }\n\t\t\t\t\t\tisBusy={ isBusy }\n\t\t\t\t\t\tdisabled={ isBusy }\n\t\t\t\t\t\taccessibleWhenDisabled\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Reset' ) }\n\t\t\t\t\t</Button>\n\t\t\t\t</HStack>\n\t\t\t</VStack>\n\t\t);\n\t},\n};\n\n/**\n * Reset action for Template and TemplatePart.\n */\nexport default resetPostAction;\n"],"mappings":"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","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/actions/reset-post.tsx"],
4
+ "sourcesContent": ["/**\n * WordPress dependencies\n */\nimport { backup } from '@wordpress/icons';\nimport { dispatch, select, useDispatch } from '@wordpress/data';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { __, sprintf } from '@wordpress/i18n';\nimport { store as noticesStore } from '@wordpress/notices';\nimport { useState } from '@wordpress/element';\n// @ts-ignore\nimport { parse, __unstableSerializeAndClean } from '@wordpress/blocks';\nimport {\n\tButton,\n\t__experimentalText as Text,\n\t__experimentalHStack as HStack,\n\t__experimentalVStack as VStack,\n} from '@wordpress/components';\nimport type { Action } from '@wordpress/dataviews';\nimport { addQueryArgs } from '@wordpress/url';\nimport apiFetch from '@wordpress/api-fetch';\n\n/**\n * Internal dependencies\n */\nimport { getItemTitle, isTemplateOrTemplatePart } from './utils';\nimport type { CoreDataError, Template, TemplatePart } from '../types';\n\nconst isTemplateRevertable = (\n\ttemplateOrTemplatePart: Template | TemplatePart\n) => {\n\tif ( ! templateOrTemplatePart ) {\n\t\treturn false;\n\t}\n\n\treturn (\n\t\ttemplateOrTemplatePart.source === 'custom' &&\n\t\t( Boolean( templateOrTemplatePart?.plugin ) ||\n\t\t\ttemplateOrTemplatePart?.has_theme_file )\n\t);\n};\n\n/**\n * Copied - pasted from https://github.com/WordPress/gutenberg/blob/bf1462ad37d4637ebbf63270b9c244b23c69e2a8/packages/editor/src/store/private-actions.js#L233-L365\n *\n * @param {Object} template The template to revert.\n * @param {Object} [options]\n * @param {boolean} [options.allowUndo] Whether to allow the user to undo\n * reverting the template. Default true.\n */\nconst revertTemplate = async (\n\ttemplate: TemplatePart | Template,\n\t{ allowUndo = true } = {}\n) => {\n\tconst noticeId = 'edit-site-template-reverted';\n\tdispatch( noticesStore ).removeNotice( noticeId );\n\tif ( ! isTemplateRevertable( template ) ) {\n\t\tdispatch( noticesStore ).createErrorNotice(\n\t\t\t__( 'This template is not revertable.' ),\n\t\t\t{\n\t\t\t\ttype: 'snackbar',\n\t\t\t}\n\t\t);\n\t\treturn;\n\t}\n\n\ttry {\n\t\tconst templateEntityConfig = select( coreStore ).getEntityConfig(\n\t\t\t'postType',\n\t\t\ttemplate.type\n\t\t);\n\n\t\tif ( ! templateEntityConfig ) {\n\t\t\tdispatch( noticesStore ).createErrorNotice(\n\t\t\t\t__(\n\t\t\t\t\t'The editor has encountered an unexpected error. Please reload.'\n\t\t\t\t),\n\t\t\t\t{ type: 'snackbar' }\n\t\t\t);\n\t\t\treturn;\n\t\t}\n\n\t\tconst fileTemplatePath = addQueryArgs(\n\t\t\t`${ templateEntityConfig.baseURL }/${ template.id }`,\n\t\t\t{ context: 'edit', source: template.origin }\n\t\t);\n\n\t\tconst fileTemplate = ( await apiFetch( {\n\t\t\tpath: fileTemplatePath,\n\t\t} ) ) as any;\n\t\tif ( ! fileTemplate ) {\n\t\t\tdispatch( noticesStore ).createErrorNotice(\n\t\t\t\t__(\n\t\t\t\t\t'The editor has encountered an unexpected error. Please reload.'\n\t\t\t\t),\n\t\t\t\t{ type: 'snackbar' }\n\t\t\t);\n\t\t\treturn;\n\t\t}\n\n\t\tconst serializeBlocks = ( { blocks: blocksForSerialization = [] } ) =>\n\t\t\t__unstableSerializeAndClean( blocksForSerialization );\n\n\t\tconst edited = select( coreStore ).getEditedEntityRecord(\n\t\t\t'postType',\n\t\t\ttemplate.type,\n\t\t\ttemplate.id\n\t\t) as any;\n\n\t\t// We are fixing up the undo level here to make sure we can undo\n\t\t// the revert in the header toolbar correctly.\n\t\tdispatch( coreStore ).editEntityRecord(\n\t\t\t'postType',\n\t\t\ttemplate.type,\n\t\t\ttemplate.id,\n\t\t\t{\n\t\t\t\tcontent: serializeBlocks, // Required to make the `undo` behave correctly.\n\t\t\t\tblocks: edited.blocks, // Required to revert the blocks in the editor.\n\t\t\t\tsource: 'custom', // required to avoid turning the editor into a dirty state\n\t\t\t},\n\t\t\t{\n\t\t\t\tundoIgnore: true, // Required to merge this edit with the last undo level.\n\t\t\t}\n\t\t);\n\n\t\tconst blocks = parse( fileTemplate?.content?.raw );\n\n\t\tdispatch( coreStore ).editEntityRecord(\n\t\t\t'postType',\n\t\t\ttemplate.type,\n\t\t\tfileTemplate.id,\n\t\t\t{\n\t\t\t\tcontent: serializeBlocks,\n\t\t\t\tblocks,\n\t\t\t\tsource: 'theme',\n\t\t\t}\n\t\t);\n\n\t\tif ( allowUndo ) {\n\t\t\tconst undoRevert = () => {\n\t\t\t\tdispatch( coreStore ).editEntityRecord(\n\t\t\t\t\t'postType',\n\t\t\t\t\ttemplate.type,\n\t\t\t\t\tedited.id,\n\t\t\t\t\t{\n\t\t\t\t\t\tcontent: serializeBlocks,\n\t\t\t\t\t\tblocks: edited.blocks,\n\t\t\t\t\t\tsource: 'custom',\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t};\n\n\t\t\tdispatch( noticesStore ).createSuccessNotice(\n\t\t\t\t__( 'Template reset.' ),\n\t\t\t\t{\n\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\tid: noticeId,\n\t\t\t\t\tactions: [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: __( 'Undo' ),\n\t\t\t\t\t\t\tonClick: undoRevert,\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t} catch ( error: any ) {\n\t\tconst errorMessage =\n\t\t\terror.message && error.code !== 'unknown_error'\n\t\t\t\t? error.message\n\t\t\t\t: __( 'Template revert failed. Please reload.' );\n\n\t\tdispatch( noticesStore ).createErrorNotice( errorMessage, {\n\t\t\ttype: 'snackbar',\n\t\t} );\n\t}\n};\n\nconst resetPostAction: Action< Template | TemplatePart > = {\n\tid: 'reset-post',\n\tlabel: __( 'Reset' ),\n\tisEligible: ( item ) => {\n\t\treturn (\n\t\t\tisTemplateOrTemplatePart( item ) &&\n\t\t\titem?.source === 'custom' &&\n\t\t\t( Boolean( item.type === 'wp_template' && item?.plugin ) ||\n\t\t\t\titem?.has_theme_file )\n\t\t);\n\t},\n\ticon: backup,\n\tsupportsBulk: true,\n\thideModalHeader: true,\n\tmodalFocusOnMount: 'firstContentElement',\n\tRenderModal: ( { items, closeModal, onActionPerformed } ) => {\n\t\tconst [ isBusy, setIsBusy ] = useState( false );\n\n\t\tconst { saveEditedEntityRecord } = useDispatch( coreStore );\n\t\tconst { createSuccessNotice, createErrorNotice } =\n\t\t\tuseDispatch( noticesStore );\n\t\tconst onConfirm = async () => {\n\t\t\ttry {\n\t\t\t\tfor ( const template of items ) {\n\t\t\t\t\tawait revertTemplate( template, {\n\t\t\t\t\t\tallowUndo: false,\n\t\t\t\t\t} );\n\t\t\t\t\tawait saveEditedEntityRecord(\n\t\t\t\t\t\t'postType',\n\t\t\t\t\t\ttemplate.type,\n\t\t\t\t\t\ttemplate.id\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tcreateSuccessNotice(\n\t\t\t\t\titems.length > 1\n\t\t\t\t\t\t? sprintf(\n\t\t\t\t\t\t\t\t/* translators: %d: The number of items. */\n\t\t\t\t\t\t\t\t__( '%d items reset.' ),\n\t\t\t\t\t\t\t\titems.length\n\t\t\t\t\t\t )\n\t\t\t\t\t\t: sprintf(\n\t\t\t\t\t\t\t\t/* translators: %s: The template/part's name. */\n\t\t\t\t\t\t\t\t__( '\"%s\" reset.' ),\n\t\t\t\t\t\t\t\tgetItemTitle( items[ 0 ] )\n\t\t\t\t\t\t ),\n\t\t\t\t\t{\n\t\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\t\tid: 'revert-template-action',\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t} catch ( error ) {\n\t\t\t\tlet fallbackErrorMessage;\n\t\t\t\tif ( items[ 0 ].type === 'wp_template' ) {\n\t\t\t\t\tfallbackErrorMessage =\n\t\t\t\t\t\titems.length === 1\n\t\t\t\t\t\t\t? __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the template.'\n\t\t\t\t\t\t\t )\n\t\t\t\t\t\t\t: __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the templates.'\n\t\t\t\t\t\t\t );\n\t\t\t\t} else {\n\t\t\t\t\tfallbackErrorMessage =\n\t\t\t\t\t\titems.length === 1\n\t\t\t\t\t\t\t? __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the template part.'\n\t\t\t\t\t\t\t )\n\t\t\t\t\t\t\t: __(\n\t\t\t\t\t\t\t\t\t'An error occurred while reverting the template parts.'\n\t\t\t\t\t\t\t );\n\t\t\t\t}\n\n\t\t\t\tconst typedError = error as CoreDataError;\n\t\t\t\tconst errorMessage =\n\t\t\t\t\ttypedError.message && typedError.code !== 'unknown_error'\n\t\t\t\t\t\t? typedError.message\n\t\t\t\t\t\t: fallbackErrorMessage;\n\n\t\t\t\tcreateErrorNotice( errorMessage, { type: 'snackbar' } );\n\t\t\t}\n\t\t};\n\t\treturn (\n\t\t\t<VStack spacing=\"5\">\n\t\t\t\t<Text>\n\t\t\t\t\t{ __( 'Reset to default and clear all customizations?' ) }\n\t\t\t\t</Text>\n\t\t\t\t<HStack justify=\"right\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\t__next40pxDefaultSize\n\t\t\t\t\t\tvariant=\"tertiary\"\n\t\t\t\t\t\tonClick={ closeModal }\n\t\t\t\t\t\tdisabled={ isBusy }\n\t\t\t\t\t\taccessibleWhenDisabled\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Cancel' ) }\n\t\t\t\t\t</Button>\n\t\t\t\t\t<Button\n\t\t\t\t\t\t__next40pxDefaultSize\n\t\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\t\tonClick={ async () => {\n\t\t\t\t\t\t\tsetIsBusy( true );\n\t\t\t\t\t\t\tawait onConfirm();\n\t\t\t\t\t\t\tonActionPerformed?.( items );\n\t\t\t\t\t\t\tsetIsBusy( false );\n\t\t\t\t\t\t\tcloseModal?.();\n\t\t\t\t\t\t} }\n\t\t\t\t\t\tisBusy={ isBusy }\n\t\t\t\t\t\tdisabled={ isBusy }\n\t\t\t\t\t\taccessibleWhenDisabled\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Reset' ) }\n\t\t\t\t\t</Button>\n\t\t\t\t</HStack>\n\t\t\t</VStack>\n\t\t);\n\t},\n};\n\n/**\n * Reset action for Template and TemplatePart.\n */\nexport default resetPostAction;\n"],
5
+ "mappings": "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",
6
+ "names": ["noticesStore", "coreStore", "apiFetch", "VStack", "Text", "HStack"]
7
+ }