@wordpress/block-editor 12.17.0 → 12.18.1

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 (421) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +32 -0
  3. package/build/components/block-draggable/index.js +11 -3
  4. package/build/components/block-draggable/index.js.map +1 -1
  5. package/build/components/block-edit/context.js +3 -1
  6. package/build/components/block-edit/context.js.map +1 -1
  7. package/build/components/block-edit/index.js +4 -2
  8. package/build/components/block-edit/index.js.map +1 -1
  9. package/build/components/block-editing-mode/index.js +6 -3
  10. package/build/components/block-editing-mode/index.js.map +1 -1
  11. package/build/components/block-inspector/index.js +5 -2
  12. package/build/components/block-inspector/index.js.map +1 -1
  13. package/build/components/block-list/block.js +4 -3
  14. package/build/components/block-list/block.js.map +1 -1
  15. package/build/components/block-list/block.native.js +9 -5
  16. package/build/components/block-list/block.native.js.map +1 -1
  17. package/build/components/block-list/index.js +30 -4
  18. package/build/components/block-list/index.js.map +1 -1
  19. package/build/components/block-list/private-block-context.js +1 -1
  20. package/build/components/block-list/private-block-context.js.map +1 -1
  21. package/build/components/block-list/use-in-between-inserter.js +1 -1
  22. package/build/components/block-list/use-in-between-inserter.js.map +1 -1
  23. package/build/components/block-lock/toolbar.js +8 -2
  24. package/build/components/block-lock/toolbar.js.map +1 -1
  25. package/build/components/block-popover/inbetween.js +15 -3
  26. package/build/components/block-popover/inbetween.js.map +1 -1
  27. package/build/components/block-preview/auto.js +1 -1
  28. package/build/components/block-preview/auto.js.map +1 -1
  29. package/build/components/block-removal-warning-modal/index.js +3 -2
  30. package/build/components/block-removal-warning-modal/index.js.map +1 -1
  31. package/build/components/block-settings-menu/block-settings-dropdown.js +2 -4
  32. package/build/components/block-settings-menu/block-settings-dropdown.js.map +1 -1
  33. package/build/components/block-switcher/block-transformations-menu.js +12 -1
  34. package/build/components/block-switcher/block-transformations-menu.js.map +1 -1
  35. package/build/components/block-switcher/index.js +119 -90
  36. package/build/components/block-switcher/index.js.map +1 -1
  37. package/build/components/block-tools/insertion-point.js +10 -3
  38. package/build/components/block-tools/insertion-point.js.map +1 -1
  39. package/build/components/dimensions-tool/aspect-ratio-tool.js +2 -1
  40. package/build/components/dimensions-tool/aspect-ratio-tool.js.map +1 -1
  41. package/build/components/font-sizes/fluid-utils.js +7 -1
  42. package/build/components/font-sizes/fluid-utils.js.map +1 -1
  43. package/build/components/global-styles/border-panel.js +5 -14
  44. package/build/components/global-styles/border-panel.js.map +1 -1
  45. package/build/components/global-styles/dimensions-panel.js +30 -5
  46. package/build/components/global-styles/dimensions-panel.js.map +1 -1
  47. package/build/components/global-styles/effects-panel.js +7 -1
  48. package/build/components/global-styles/effects-panel.js.map +1 -1
  49. package/build/components/global-styles/hooks.js +11 -8
  50. package/build/components/global-styles/hooks.js.map +1 -1
  51. package/build/components/global-styles/typography-panel.js +31 -14
  52. package/build/components/global-styles/typography-panel.js.map +1 -1
  53. package/build/components/global-styles/use-global-styles-output.js +6 -0
  54. package/build/components/global-styles/use-global-styles-output.js.map +1 -1
  55. package/build/components/iframe/get-compatibility-styles.js +99 -0
  56. package/build/components/iframe/get-compatibility-styles.js.map +1 -0
  57. package/build/components/iframe/index.js +2 -3
  58. package/build/components/iframe/index.js.map +1 -1
  59. package/build/components/index.js +16 -2
  60. package/build/components/index.js.map +1 -1
  61. package/build/components/index.native.js +16 -2
  62. package/build/components/index.native.js.map +1 -1
  63. package/build/components/inspector-controls/groups.js +2 -0
  64. package/build/components/inspector-controls/groups.js.map +1 -1
  65. package/build/components/inspector-controls-tabs/styles-tab.js +3 -0
  66. package/build/components/inspector-controls-tabs/styles-tab.js.map +1 -1
  67. package/build/components/inspector-controls-tabs/use-inspector-controls-tabs.js +3 -2
  68. package/build/components/inspector-controls-tabs/use-inspector-controls-tabs.js.map +1 -1
  69. package/build/components/link-control/link-preview.js +30 -26
  70. package/build/components/link-control/link-preview.js.map +1 -1
  71. package/build/components/link-control/search-input.js +1 -9
  72. package/build/components/link-control/search-input.js.map +1 -1
  73. package/build/components/list-view/block-contents.js +3 -1
  74. package/build/components/list-view/block-contents.js.map +1 -1
  75. package/build/components/list-view/block.js +10 -1
  76. package/build/components/list-view/block.js.map +1 -1
  77. package/build/components/list-view/branch.js +29 -8
  78. package/build/components/list-view/branch.js.map +1 -1
  79. package/build/components/list-view/drop-indicator.js +100 -32
  80. package/build/components/list-view/drop-indicator.js.map +1 -1
  81. package/build/components/list-view/index.js +52 -4
  82. package/build/components/list-view/index.js.map +1 -1
  83. package/build/components/list-view/leaf.js +2 -2
  84. package/build/components/list-view/leaf.js.map +1 -1
  85. package/build/components/list-view/use-list-view-block-indexes.js +30 -0
  86. package/build/components/list-view/use-list-view-block-indexes.js.map +1 -0
  87. package/build/components/list-view/use-list-view-drop-zone.js +56 -5
  88. package/build/components/list-view/use-list-view-drop-zone.js.map +1 -1
  89. package/build/components/list-view/utils.js +92 -0
  90. package/build/components/list-view/utils.js.map +1 -1
  91. package/build/components/provider/index.js +1 -1
  92. package/build/components/provider/index.js.map +1 -1
  93. package/build/components/recursion-provider/index.js +21 -0
  94. package/build/components/recursion-provider/index.js.map +1 -1
  95. package/build/components/rich-text/index.js +30 -6
  96. package/build/components/rich-text/index.js.map +1 -1
  97. package/build/components/rich-text/native/index.native.js +9 -9
  98. package/build/components/rich-text/native/index.native.js.map +1 -1
  99. package/build/components/use-block-drop-zone/index.js +30 -7
  100. package/build/components/use-block-drop-zone/index.js.map +1 -1
  101. package/build/components/use-on-block-drop/index.js +50 -8
  102. package/build/components/use-on-block-drop/index.js.map +1 -1
  103. package/build/hooks/block-hooks.js +5 -14
  104. package/build/hooks/block-hooks.js.map +1 -1
  105. package/build/hooks/content-lock-ui.js +17 -42
  106. package/build/hooks/content-lock-ui.js.map +1 -1
  107. package/build/hooks/dimensions.js +71 -1
  108. package/build/hooks/dimensions.js.map +1 -1
  109. package/build/hooks/effects.js +66 -0
  110. package/build/hooks/effects.js.map +1 -0
  111. package/build/hooks/index.js +17 -4
  112. package/build/hooks/index.js.map +1 -1
  113. package/build/hooks/index.native.js +13 -0
  114. package/build/hooks/index.native.js.map +1 -1
  115. package/build/hooks/style.js +9 -2
  116. package/build/hooks/style.js.map +1 -1
  117. package/build/hooks/supports.js +2 -1
  118. package/build/hooks/supports.js.map +1 -1
  119. package/build/hooks/typography.native.js +2 -2
  120. package/build/hooks/typography.native.js.map +1 -1
  121. package/build/hooks/use-bindings-attributes.js +115 -0
  122. package/build/hooks/use-bindings-attributes.js.map +1 -0
  123. package/build/hooks/use-shadow-props.js +46 -0
  124. package/build/hooks/use-shadow-props.js.map +1 -0
  125. package/build/hooks/utils.js +12 -7
  126. package/build/hooks/utils.js.map +1 -1
  127. package/build/index.js +14 -0
  128. package/build/index.js.map +1 -1
  129. package/build/store/actions.js +10 -6
  130. package/build/store/actions.js.map +1 -1
  131. package/build/store/index.js +2 -0
  132. package/build/store/index.js.map +1 -1
  133. package/build/store/private-actions.js +37 -0
  134. package/build/store/private-actions.js.map +1 -1
  135. package/build/store/private-selectors.js +60 -9
  136. package/build/store/private-selectors.js.map +1 -1
  137. package/build/store/reducer.js +44 -3
  138. package/build/store/reducer.js.map +1 -1
  139. package/build/store/resolvers.js +27 -0
  140. package/build/store/resolvers.js.map +1 -0
  141. package/build/store/selectors.js +94 -56
  142. package/build/store/selectors.js.map +1 -1
  143. package/build/store/utils.js +5 -26
  144. package/build/store/utils.js.map +1 -1
  145. package/build/utils/index.js +0 -16
  146. package/build/utils/index.js.map +1 -1
  147. package/build/utils/math.js +13 -0
  148. package/build/utils/math.js.map +1 -1
  149. package/build/utils/object.js +17 -0
  150. package/build/utils/object.js.map +1 -1
  151. package/build/utils/transform-styles/index.js +37 -27
  152. package/build/utils/transform-styles/index.js.map +1 -1
  153. package/build-module/components/block-draggable/index.js +11 -3
  154. package/build-module/components/block-draggable/index.js.map +1 -1
  155. package/build-module/components/block-edit/context.js +1 -0
  156. package/build-module/components/block-edit/context.js.map +1 -1
  157. package/build-module/components/block-edit/index.js +5 -3
  158. package/build-module/components/block-edit/index.js.map +1 -1
  159. package/build-module/components/block-editing-mode/index.js +7 -4
  160. package/build-module/components/block-editing-mode/index.js.map +1 -1
  161. package/build-module/components/block-inspector/index.js +5 -2
  162. package/build-module/components/block-inspector/index.js.map +1 -1
  163. package/build-module/components/block-list/block.js +6 -5
  164. package/build-module/components/block-list/block.js.map +1 -1
  165. package/build-module/components/block-list/block.native.js +11 -7
  166. package/build-module/components/block-list/block.native.js.map +1 -1
  167. package/build-module/components/block-list/index.js +31 -5
  168. package/build-module/components/block-list/index.js.map +1 -1
  169. package/build-module/components/block-list/private-block-context.js +1 -1
  170. package/build-module/components/block-list/private-block-context.js.map +1 -1
  171. package/build-module/components/block-list/use-in-between-inserter.js +1 -1
  172. package/build-module/components/block-list/use-in-between-inserter.js.map +1 -1
  173. package/build-module/components/block-lock/toolbar.js +8 -2
  174. package/build-module/components/block-lock/toolbar.js.map +1 -1
  175. package/build-module/components/block-popover/inbetween.js +15 -3
  176. package/build-module/components/block-popover/inbetween.js.map +1 -1
  177. package/build-module/components/block-preview/auto.js +3 -3
  178. package/build-module/components/block-preview/auto.js.map +1 -1
  179. package/build-module/components/block-removal-warning-modal/index.js +3 -2
  180. package/build-module/components/block-removal-warning-modal/index.js.map +1 -1
  181. package/build-module/components/block-settings-menu/block-settings-dropdown.js +2 -4
  182. package/build-module/components/block-settings-menu/block-settings-dropdown.js.map +1 -1
  183. package/build-module/components/block-switcher/block-transformations-menu.js +12 -1
  184. package/build-module/components/block-switcher/block-transformations-menu.js.map +1 -1
  185. package/build-module/components/block-switcher/index.js +116 -86
  186. package/build-module/components/block-switcher/index.js.map +1 -1
  187. package/build-module/components/block-tools/insertion-point.js +10 -3
  188. package/build-module/components/block-tools/insertion-point.js.map +1 -1
  189. package/build-module/components/dimensions-tool/aspect-ratio-tool.js +2 -1
  190. package/build-module/components/dimensions-tool/aspect-ratio-tool.js.map +1 -1
  191. package/build-module/components/font-sizes/fluid-utils.js +7 -1
  192. package/build-module/components/font-sizes/fluid-utils.js.map +1 -1
  193. package/build-module/components/global-styles/border-panel.js +5 -14
  194. package/build-module/components/global-styles/border-panel.js.map +1 -1
  195. package/build-module/components/global-styles/dimensions-panel.js +30 -5
  196. package/build-module/components/global-styles/dimensions-panel.js.map +1 -1
  197. package/build-module/components/global-styles/effects-panel.js +7 -1
  198. package/build-module/components/global-styles/effects-panel.js.map +1 -1
  199. package/build-module/components/global-styles/hooks.js +11 -8
  200. package/build-module/components/global-styles/hooks.js.map +1 -1
  201. package/build-module/components/global-styles/typography-panel.js +32 -15
  202. package/build-module/components/global-styles/typography-panel.js.map +1 -1
  203. package/build-module/components/global-styles/use-global-styles-output.js +6 -0
  204. package/build-module/components/global-styles/use-global-styles-output.js.map +1 -1
  205. package/build-module/components/iframe/get-compatibility-styles.js +93 -0
  206. package/build-module/components/iframe/get-compatibility-styles.js.map +1 -0
  207. package/build-module/components/iframe/index.js +2 -3
  208. package/build-module/components/iframe/index.js.map +1 -1
  209. package/build-module/components/index.js +1 -1
  210. package/build-module/components/index.js.map +1 -1
  211. package/build-module/components/index.native.js +1 -1
  212. package/build-module/components/index.native.js.map +1 -1
  213. package/build-module/components/inspector-controls/groups.js +2 -0
  214. package/build-module/components/inspector-controls/groups.js.map +1 -1
  215. package/build-module/components/inspector-controls-tabs/styles-tab.js +3 -0
  216. package/build-module/components/inspector-controls-tabs/styles-tab.js.map +1 -1
  217. package/build-module/components/inspector-controls-tabs/use-inspector-controls-tabs.js +3 -2
  218. package/build-module/components/inspector-controls-tabs/use-inspector-controls-tabs.js.map +1 -1
  219. package/build-module/components/link-control/link-preview.js +32 -28
  220. package/build-module/components/link-control/link-preview.js.map +1 -1
  221. package/build-module/components/link-control/search-input.js +1 -8
  222. package/build-module/components/link-control/search-input.js.map +1 -1
  223. package/build-module/components/list-view/block-contents.js +3 -1
  224. package/build-module/components/list-view/block-contents.js.map +1 -1
  225. package/build-module/components/list-view/block.js +10 -1
  226. package/build-module/components/list-view/block.js.map +1 -1
  227. package/build-module/components/list-view/branch.js +30 -9
  228. package/build-module/components/list-view/branch.js.map +1 -1
  229. package/build-module/components/list-view/drop-indicator.js +99 -32
  230. package/build-module/components/list-view/drop-indicator.js.map +1 -1
  231. package/build-module/components/list-view/index.js +54 -6
  232. package/build-module/components/list-view/index.js.map +1 -1
  233. package/build-module/components/list-view/leaf.js +2 -2
  234. package/build-module/components/list-view/leaf.js.map +1 -1
  235. package/build-module/components/list-view/use-list-view-block-indexes.js +23 -0
  236. package/build-module/components/list-view/use-list-view-block-indexes.js.map +1 -0
  237. package/build-module/components/list-view/use-list-view-drop-zone.js +58 -7
  238. package/build-module/components/list-view/use-list-view-drop-zone.js.map +1 -1
  239. package/build-module/components/list-view/utils.js +91 -0
  240. package/build-module/components/list-view/utils.js.map +1 -1
  241. package/build-module/components/provider/index.js +1 -1
  242. package/build-module/components/provider/index.js.map +1 -1
  243. package/build-module/components/recursion-provider/index.js +17 -0
  244. package/build-module/components/recursion-provider/index.js.map +1 -1
  245. package/build-module/components/rich-text/index.js +30 -6
  246. package/build-module/components/rich-text/index.js.map +1 -1
  247. package/build-module/components/rich-text/native/index.native.js +9 -9
  248. package/build-module/components/rich-text/native/index.native.js.map +1 -1
  249. package/build-module/components/use-block-drop-zone/index.js +31 -8
  250. package/build-module/components/use-block-drop-zone/index.js.map +1 -1
  251. package/build-module/components/use-on-block-drop/index.js +51 -9
  252. package/build-module/components/use-on-block-drop/index.js.map +1 -1
  253. package/build-module/hooks/block-hooks.js +5 -14
  254. package/build-module/hooks/block-hooks.js.map +1 -1
  255. package/build-module/hooks/content-lock-ui.js +19 -43
  256. package/build-module/hooks/content-lock-ui.js.map +1 -1
  257. package/build-module/hooks/dimensions.js +70 -2
  258. package/build-module/hooks/dimensions.js.map +1 -1
  259. package/build-module/hooks/effects.js +51 -0
  260. package/build-module/hooks/effects.js.map +1 -0
  261. package/build-module/hooks/index.js +5 -3
  262. package/build-module/hooks/index.js.map +1 -1
  263. package/build-module/hooks/index.native.js +1 -0
  264. package/build-module/hooks/index.native.js.map +1 -1
  265. package/build-module/hooks/style.js +9 -2
  266. package/build-module/hooks/style.js.map +1 -1
  267. package/build-module/hooks/supports.js +2 -1
  268. package/build-module/hooks/supports.js.map +1 -1
  269. package/build-module/hooks/typography.native.js +2 -2
  270. package/build-module/hooks/typography.native.js.map +1 -1
  271. package/build-module/hooks/use-bindings-attributes.js +112 -0
  272. package/build-module/hooks/use-bindings-attributes.js.map +1 -0
  273. package/build-module/hooks/use-shadow-props.js +39 -0
  274. package/build-module/hooks/use-shadow-props.js.map +1 -0
  275. package/build-module/hooks/utils.js +14 -9
  276. package/build-module/hooks/utils.js.map +1 -1
  277. package/build-module/index.js +1 -1
  278. package/build-module/index.js.map +1 -1
  279. package/build-module/store/actions.js +10 -6
  280. package/build-module/store/actions.js.map +1 -1
  281. package/build-module/store/index.js +2 -0
  282. package/build-module/store/index.js.map +1 -1
  283. package/build-module/store/private-actions.js +35 -0
  284. package/build-module/store/private-actions.js.map +1 -1
  285. package/build-module/store/private-selectors.js +53 -8
  286. package/build-module/store/private-selectors.js.map +1 -1
  287. package/build-module/store/reducer.js +43 -3
  288. package/build-module/store/reducer.js.map +1 -1
  289. package/build-module/store/resolvers.js +20 -0
  290. package/build-module/store/resolvers.js.map +1 -0
  291. package/build-module/store/selectors.js +89 -52
  292. package/build-module/store/selectors.js.map +1 -1
  293. package/build-module/store/utils.js +3 -23
  294. package/build-module/store/utils.js.map +1 -1
  295. package/build-module/utils/index.js +0 -1
  296. package/build-module/utils/index.js.map +1 -1
  297. package/build-module/utils/math.js +12 -0
  298. package/build-module/utils/math.js.map +1 -1
  299. package/build-module/utils/object.js +16 -0
  300. package/build-module/utils/object.js.map +1 -1
  301. package/build-module/utils/transform-styles/index.js +36 -27
  302. package/build-module/utils/transform-styles/index.js.map +1 -1
  303. package/build-style/content-rtl.css +33 -16
  304. package/build-style/content.css +33 -16
  305. package/build-style/default-editor-styles-rtl.css +1 -1
  306. package/build-style/default-editor-styles.css +1 -1
  307. package/build-style/style-rtl.css +169 -114
  308. package/build-style/style.css +169 -114
  309. package/package.json +31 -31
  310. package/src/components/block-canvas/style.scss +8 -1
  311. package/src/components/block-draggable/index.js +16 -5
  312. package/src/components/block-edit/context.js +1 -0
  313. package/src/components/block-edit/index.js +4 -0
  314. package/src/components/block-editing-mode/index.js +12 -7
  315. package/src/components/block-inspector/index.js +5 -2
  316. package/src/components/block-list/block.js +5 -4
  317. package/src/components/block-list/block.native.js +13 -3
  318. package/src/components/block-list/content.scss +34 -5
  319. package/src/components/block-list/index.js +52 -16
  320. package/src/components/block-list/private-block-context.js +1 -1
  321. package/src/components/block-list/use-in-between-inserter.js +1 -2
  322. package/src/components/block-lock/toolbar.js +10 -2
  323. package/src/components/block-popover/inbetween.js +22 -2
  324. package/src/components/block-preview/auto.js +3 -3
  325. package/src/components/block-removal-warning-modal/index.js +3 -2
  326. package/src/components/block-settings-menu/block-settings-dropdown.js +2 -7
  327. package/src/components/block-switcher/block-transformations-menu.js +18 -1
  328. package/src/components/block-switcher/index.js +133 -111
  329. package/src/components/block-switcher/style.scss +6 -4
  330. package/src/components/block-switcher/test/index.js +113 -230
  331. package/src/components/block-toolbar/style.scss +22 -18
  332. package/src/components/block-tools/insertion-point.js +15 -2
  333. package/src/components/block-tools/style.scss +8 -7
  334. package/src/components/dimensions-tool/aspect-ratio-tool.js +4 -1
  335. package/src/components/font-sizes/fluid-utils.js +8 -2
  336. package/src/components/font-sizes/test/fluid-utils.js +9 -0
  337. package/src/components/global-styles/border-panel.js +7 -17
  338. package/src/components/global-styles/dimensions-panel.js +50 -1
  339. package/src/components/global-styles/effects-panel.js +16 -1
  340. package/src/components/global-styles/hooks.js +11 -6
  341. package/src/components/global-styles/typography-panel.js +45 -13
  342. package/src/components/global-styles/use-global-styles-output.js +6 -0
  343. package/src/components/iframe/get-compatibility-styles.js +120 -0
  344. package/src/components/iframe/index.js +2 -3
  345. package/src/components/index.js +4 -2
  346. package/src/components/index.native.js +4 -2
  347. package/src/components/inspector-controls/groups.js +2 -0
  348. package/src/components/inspector-controls-tabs/styles-tab.js +1 -0
  349. package/src/components/inspector-controls-tabs/use-inspector-controls-tabs.js +2 -0
  350. package/src/components/link-control/link-preview.js +31 -55
  351. package/src/components/link-control/search-input.js +1 -9
  352. package/src/components/link-control/style.scss +31 -85
  353. package/src/components/link-control/test/index.js +2 -1
  354. package/src/components/list-view/block-contents.js +5 -1
  355. package/src/components/list-view/block.js +9 -0
  356. package/src/components/list-view/branch.js +30 -10
  357. package/src/components/list-view/drop-indicator.js +139 -46
  358. package/src/components/list-view/index.js +74 -3
  359. package/src/components/list-view/leaf.js +2 -2
  360. package/src/components/list-view/style.scss +102 -13
  361. package/src/components/list-view/test/use-list-view-drop-zone.js +4 -0
  362. package/src/components/list-view/test/utils.js +218 -1
  363. package/src/components/list-view/use-list-view-block-indexes.js +29 -0
  364. package/src/components/list-view/use-list-view-drop-zone.js +78 -6
  365. package/src/components/list-view/utils.js +116 -0
  366. package/src/components/provider/index.js +3 -1
  367. package/src/components/recursion-provider/README.md +2 -2
  368. package/src/components/recursion-provider/index.js +17 -0
  369. package/src/components/rich-text/index.js +48 -10
  370. package/src/components/rich-text/native/index.native.js +10 -10
  371. package/src/components/use-block-drop-zone/index.js +60 -19
  372. package/src/components/use-block-drop-zone/test/index.js +32 -61
  373. package/src/components/use-on-block-drop/index.js +92 -11
  374. package/src/hooks/block-hooks.js +5 -17
  375. package/src/hooks/content-lock-ui.js +15 -55
  376. package/src/hooks/dimensions.js +74 -3
  377. package/src/hooks/effects.js +57 -0
  378. package/src/hooks/index.js +4 -2
  379. package/src/hooks/index.native.js +1 -0
  380. package/src/hooks/style.js +12 -0
  381. package/src/hooks/supports.js +2 -0
  382. package/src/hooks/test/effects.js +39 -0
  383. package/src/hooks/typography.native.js +2 -2
  384. package/src/hooks/use-bindings-attributes.js +148 -0
  385. package/src/hooks/use-shadow-props.js +37 -0
  386. package/src/hooks/utils.js +30 -10
  387. package/src/index.js +2 -0
  388. package/src/store/actions.js +9 -4
  389. package/src/store/index.js +2 -0
  390. package/src/store/private-actions.js +32 -0
  391. package/src/store/private-selectors.js +78 -21
  392. package/src/store/reducer.js +49 -2
  393. package/src/store/resolvers.js +17 -0
  394. package/src/store/selectors.js +169 -161
  395. package/src/store/test/registry-selectors.js +431 -0
  396. package/src/store/test/selectors.js +14 -400
  397. package/src/store/utils.js +10 -33
  398. package/src/style.scss +0 -1
  399. package/src/utils/index.js +0 -1
  400. package/src/utils/math.js +12 -0
  401. package/src/utils/object.js +16 -0
  402. package/src/utils/transform-styles/index.js +52 -37
  403. package/tsconfig.tsbuildinfo +1 -1
  404. package/build/components/iframe/use-compatibility-styles.js +0 -100
  405. package/build/components/iframe/use-compatibility-styles.js.map +0 -1
  406. package/build/hooks/custom-fields.js +0 -106
  407. package/build/hooks/custom-fields.js.map +0 -1
  408. package/build/utils/block-variation-transforms.js +0 -42
  409. package/build/utils/block-variation-transforms.js.map +0 -1
  410. package/build-module/components/iframe/use-compatibility-styles.js +0 -94
  411. package/build-module/components/iframe/use-compatibility-styles.js.map +0 -1
  412. package/build-module/hooks/custom-fields.js +0 -99
  413. package/build-module/hooks/custom-fields.js.map +0 -1
  414. package/build-module/utils/block-variation-transforms.js +0 -35
  415. package/build-module/utils/block-variation-transforms.js.map +0 -1
  416. package/src/components/block-switcher/test/__snapshots__/index.js.snap +0 -116
  417. package/src/components/contrast-checker/style.scss +0 -3
  418. package/src/components/iframe/use-compatibility-styles.js +0 -122
  419. package/src/hooks/custom-fields.js +0 -115
  420. package/src/utils/block-variation-transforms.js +0 -38
  421. package/src/utils/test/block-variation-transforms.js +0 -94
@@ -1 +1 @@
1
- {"version":3,"names":["_reactNative","require","_memize","_interopRequireDefault","_colord","_reactNativeAztec","_reactNativeBridge","_blockEditor","_components","_element","_compose","_data","_blocks","_htmlEntities","_keycodes","_url","_icons","_i18n","_richText","_useFormatTypes","_formatEdit","_getFormatColors","_style","_toolbarButtonWithOptions","flatColorPalettes","memize","colorsPalettes","theme","custom","default","getSelectionColor","currentSelectionColor","defaultSelectionColor","baseGlobalStyles","isBlockBasedTheme","selectionColor","colordTextColor","colord","colordBackgroundColor","color","background","isColordTextReadable","isReadable","text","gutenbergFormatNamesToAztec","EMPTY_PARAGRAPH_TAGS","DEFAULT_FONT_SIZE","MIN_LINE_HEIGHT","RichText","Component","constructor","value","selectionStart","selectionEnd","arguments","isIOS","Platform","OS","createRecord","bind","onChangeFromAztec","onKeyDown","handleEnter","handleDelete","onPaste","onFocus","onBlur","onTextUpdate","onContentSizeChange","onFormatChange","formatToValue","maxSize","debounceCreateUndoLevel","debounce","onCreateUndoLevel","onSelectionChange","onSelectionChangeFromAztec","valueToFormat","getHtmlToRender","handleSuggestionFunc","handleUserSuggestion","showUserSuggestions","handleXpostSuggestion","showXpostSuggestions","suggestionOptions","insertString","manipulateEventCounterToForceNativeToRefresh","shouldDropEventFromAztec","state","activeFormats","selectedFormat","height","currentFontSize","getFontSize","needsSelectionUpdate","savedContent","isTouched","lastAztecEventType","lastHistoryValue","getRecord","start","end","colorPalette","props","currentValue","formats","replacements","newFormats","getFormatColors","preserveWhiteSpace","create","html","range","Math","min","length","removeRootTagsProducedByAztec","toHTMLString","getActiveFormatNames","record","formatTypes","map","name","filter","getActiveFormat","undefined","Boolean","changeHandlers","Object","fromEntries","entries","key","startsWith","values","forEach","changeHandler","onChange","setState","string","toInsert","insert","__unstableOnCreateUndoLevel","toString","result","removeRootTag","tagName","tagsToEliminate","element","removeTag","tag","openingTagRegexp","RegExp","closingTagRegexp","replace","event","contentWithoutRootTag","nativeEvent","lastEventCount","eventCount","comesFromAztec","firedAfterTextChanged","refresh","contentSize","defaultPrevented","customEditableOnKeyDown","preventDefault","RCTAztecView","KeyCodes","keyCode","handleTriggerKeyCodes","ENTER","onEnter","shiftKey","DELETE","BACKSPACE","isReverse","onDelete","newValue","remove","isCollapsed","triggeredOption","find","option","triggeredKeyCode","triggerChar","charCodeAt","getTextContent","useTrigger","charAt","onClick","areMentionsSupported","areXPostsSupported","allOptions","supported","title","__","label","icon","atSymbol","plus","op","suggestionFunction","prefix","then","suggestion","catch","pastedText","pastedHtml","files","currentRecord","trimmedText","trim","isURL","linkedRecord","applyFormat","type","attributes","href","decodeEntities","window","console","log","plainText","unstableOnFocus","hasChanged","isManual","getActiveFormats","logText","shouldDrop","shouldFocusTextInputAfterMerge","prevProps","__unstableIsSelected","isSelected","blockIsSelected","__unstableMobileNoFocusOnMount","prevIsSelected","prevBlockIsSelected","noSelectionValues","textInputWasNotFocused","realStart","realEnd","max","isEmpty","Array","isArray","childrenBlock","toHTML","format","shouldComponentUpdate","nextProps","nextState","reversed","fontSize","style","lineHeight","componentDidMount","_editor","focus","componentDidUpdate","_this$value$toString$","lastCharacterPosition","blur","currentFontSizeStyle","getParsedFontSize","prevFontSizeStyle","isDifferentTag","extraAttributes","getEditableProps","className","_getPxFromCssUnit","width","Dimensions","get","cssUnitOptions","selectedPxValue","getPxFromCssUnit","parseFloat","tagNameFontSize","elements","typography","newFontSize","getLineHeight","tagNameLineHeight","newLineHeight","getIsBlockBasedTheme","isNaN","getBlockUseDefaultFont","tagsToMatch","test","getLinkTextColor","defaultColor","customColor","linkColor","isValid","toHex","getPlaceholderTextColor","_ref","_ref2","getStylesFromColorScheme","placeholderTextColor","placeholderStyle","styles","richTextPlaceholder","richTextPlaceholderDark","defaultPlaceholderTextColor","placeholderOpacity","inheritPlaceholderColor","placeholderColor","globalStylesPlaceholderColor","render","children","minWidth","maxWidth","parentBlockStyles","accessibilityLabel","disableEditingMenu","disableSuggestions","containerWidth","editableProps","blockUseDefaultFont","textDecorationColor","defaultTextDecorationColor","fontFamily","defaultFontFamily","richText","richTextDark","linkTextColor","currentSelectionStart","currentSelectionEnd","selection","brBeforeParaMatches","match","warn","count","newSelectionStart","newSelectionEnd","containerStyles","padding","backgroundColor","EditableView","_react","createElement","Fragment","View","editableTagName","ref","setRef","minHeight","placeholder","deleteEnter","triggerKeyCodes","blockType","maxImagesWidth","fontWeight","fontStyle","isMultiline","textAlign","id","disableAutocorrection","forwardedRef","BlockFormatControls","options","exports","defaultProps","withFormatTypes","WrappedComponent","clientId","identifier","withoutInteractiveFormatting","allowedFormats","useFormatTypes","_default","compose","withSelect","select","getBlockParents","getBlock","getSettings","parents","parentBlock","childrenStyles","settings","__experimentalGlobalStylesBaseStyles","colorPalettes","__experimentalFeatures","palette","colors","capabilities","mentions","xposts","withPreferredColorScheme"],"sources":["@wordpress/block-editor/src/components/rich-text/native/index.native.js"],"sourcesContent":["/* eslint no-console: [\"error\", { allow: [\"warn\"] }] */\n\n/**\n * External dependencies\n */\nimport { View, Platform, Dimensions } from 'react-native';\nimport memize from 'memize';\nimport { colord } from 'colord';\n\n/**\n * WordPress dependencies\n */\nimport RCTAztecView from '@wordpress/react-native-aztec';\nimport {\n\tshowUserSuggestions,\n\tshowXpostSuggestions,\n} from '@wordpress/react-native-bridge';\nimport { BlockFormatControls } from '@wordpress/block-editor';\nimport { getPxFromCssUnit } from '@wordpress/components';\nimport { Component } from '@wordpress/element';\nimport {\n\tcompose,\n\tdebounce,\n\twithPreferredColorScheme,\n} from '@wordpress/compose';\nimport { withSelect } from '@wordpress/data';\nimport { childrenBlock } from '@wordpress/blocks';\nimport { decodeEntities } from '@wordpress/html-entities';\nimport { BACKSPACE, DELETE, ENTER } from '@wordpress/keycodes';\nimport { isURL } from '@wordpress/url';\nimport { atSymbol, plus } from '@wordpress/icons';\nimport { __ } from '@wordpress/i18n';\nimport {\n\tapplyFormat,\n\tgetActiveFormat,\n\tgetActiveFormats,\n\tinsert,\n\tgetTextContent,\n\tisEmpty,\n\tcreate,\n\ttoHTMLString,\n\tisCollapsed,\n\tremove,\n} from '@wordpress/rich-text';\n\n/**\n * Internal dependencies\n */\nimport { useFormatTypes } from './use-format-types';\nimport FormatEdit from './format-edit';\nimport { getFormatColors } from './get-format-colors';\nimport styles from './style.scss';\nimport ToolbarButtonWithOptions from './toolbar-button-with-options';\n\n// The flattened color palettes array is memoized to ensure that the same array instance is\n// returned for the colors palettes. This value might be used as a prop, so having the same\n// instance will prevent unnecessary re-renders of the RichText component.\nconst flatColorPalettes = memize( ( colorsPalettes ) => [\n\t...( colorsPalettes?.theme || [] ),\n\t...( colorsPalettes?.custom || [] ),\n\t...( colorsPalettes?.default || [] ),\n] );\n\nconst getSelectionColor = memize(\n\t(\n\t\tcurrentSelectionColor,\n\t\tdefaultSelectionColor,\n\t\tbaseGlobalStyles,\n\t\tisBlockBasedTheme\n\t) => {\n\t\tlet selectionColor = defaultSelectionColor;\n\t\tif ( currentSelectionColor ) {\n\t\t\tselectionColor = currentSelectionColor;\n\t\t}\n\n\t\tif ( isBlockBasedTheme ) {\n\t\t\tconst colordTextColor = colord( selectionColor );\n\t\t\tconst colordBackgroundColor = colord(\n\t\t\t\tbaseGlobalStyles?.color?.background\n\t\t\t);\n\t\t\tconst isColordTextReadable = colordTextColor.isReadable(\n\t\t\t\tcolordBackgroundColor\n\t\t\t);\n\t\t\tif ( ! isColordTextReadable ) {\n\t\t\t\tselectionColor = baseGlobalStyles?.color?.text;\n\t\t\t}\n\t\t}\n\n\t\treturn selectionColor;\n\t}\n);\n\nconst gutenbergFormatNamesToAztec = {\n\t'core/bold': 'bold',\n\t'core/italic': 'italic',\n\t'core/strikethrough': 'strikethrough',\n\t'core/text-color': 'mark',\n};\n\nconst EMPTY_PARAGRAPH_TAGS = '<p></p>';\nconst DEFAULT_FONT_SIZE = 16;\nconst MIN_LINE_HEIGHT = 1;\n\nexport class RichText extends Component {\n\tconstructor( { value, selectionStart, selectionEnd } ) {\n\t\tsuper( ...arguments );\n\n\t\tthis.isIOS = Platform.OS === 'ios';\n\t\tthis.createRecord = this.createRecord.bind( this );\n\t\tthis.onChangeFromAztec = this.onChangeFromAztec.bind( this );\n\t\tthis.onKeyDown = this.onKeyDown.bind( this );\n\t\tthis.handleEnter = this.handleEnter.bind( this );\n\t\tthis.handleDelete = this.handleDelete.bind( this );\n\t\tthis.onPaste = this.onPaste.bind( this );\n\t\tthis.onFocus = this.onFocus.bind( this );\n\t\tthis.onBlur = this.onBlur.bind( this );\n\t\tthis.onTextUpdate = this.onTextUpdate.bind( this );\n\t\tthis.onContentSizeChange = this.onContentSizeChange.bind( this );\n\t\tthis.onFormatChange = this.onFormatChange.bind( this );\n\t\tthis.formatToValue = memize( this.formatToValue.bind( this ), {\n\t\t\tmaxSize: 1,\n\t\t} );\n\t\tthis.debounceCreateUndoLevel = debounce( this.onCreateUndoLevel, 1000 );\n\t\t// This prevents a bug in Aztec which triggers onSelectionChange twice on format change.\n\t\tthis.onSelectionChange = this.onSelectionChange.bind( this );\n\t\tthis.onSelectionChangeFromAztec =\n\t\t\tthis.onSelectionChangeFromAztec.bind( this );\n\t\tthis.valueToFormat = this.valueToFormat.bind( this );\n\t\tthis.getHtmlToRender = this.getHtmlToRender.bind( this );\n\t\tthis.handleSuggestionFunc = this.handleSuggestionFunc.bind( this );\n\t\tthis.handleUserSuggestion = this.handleSuggestionFunc(\n\t\t\tshowUserSuggestions,\n\t\t\t'@'\n\t\t).bind( this );\n\t\tthis.handleXpostSuggestion = this.handleSuggestionFunc(\n\t\t\tshowXpostSuggestions,\n\t\t\t'+'\n\t\t).bind( this );\n\t\tthis.suggestionOptions = this.suggestionOptions.bind( this );\n\t\tthis.insertString = this.insertString.bind( this );\n\t\tthis.manipulateEventCounterToForceNativeToRefresh =\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh.bind( this );\n\t\tthis.shouldDropEventFromAztec =\n\t\t\tthis.shouldDropEventFromAztec.bind( this );\n\t\tthis.state = {\n\t\t\tactiveFormats: [],\n\t\t\tselectedFormat: null,\n\t\t\theight: 0,\n\t\t\tcurrentFontSize: this.getFontSize( arguments[ 0 ] ),\n\t\t};\n\t\tthis.needsSelectionUpdate = false;\n\t\tthis.savedContent = '';\n\t\tthis.isTouched = false;\n\t\tthis.lastAztecEventType = null;\n\n\t\tthis.lastHistoryValue = value;\n\n\t\t// Internal values that are update synchronously, unlike props.\n\t\tthis.value = value;\n\t\tthis.selectionStart = selectionStart;\n\t\tthis.selectionEnd = selectionEnd;\n\t}\n\n\t/**\n\t * Get the current record (value and selection) from props and state.\n\t *\n\t * @return {Object} The current record (value and selection).\n\t */\n\tgetRecord() {\n\t\tconst {\n\t\t\tselectionStart: start,\n\t\t\tselectionEnd: end,\n\t\t\tcolorPalette,\n\t\t} = this.props;\n\t\tconst { value } = this.props;\n\t\tconst currentValue = this.formatToValue( value );\n\n\t\tconst { formats, replacements, text } = currentValue;\n\t\tconst { activeFormats } = this.state;\n\t\tconst newFormats = getFormatColors( formats, colorPalette );\n\n\t\treturn {\n\t\t\tformats: newFormats,\n\t\t\treplacements,\n\t\t\ttext,\n\t\t\tstart,\n\t\t\tend,\n\t\t\tactiveFormats,\n\t\t};\n\t}\n\n\t/**\n\t * Creates a RichText value \"record\" from the current content and selection\n\t * information\n\t *\n\t *\n\t * @return {Object} A RichText value with formats and selection.\n\t */\n\tcreateRecord() {\n\t\tconst { preserveWhiteSpace } = this.props;\n\t\tconst value = {\n\t\t\tstart: this.selectionStart,\n\t\t\tend: this.selectionEnd,\n\t\t\t...create( {\n\t\t\t\thtml: this.value,\n\t\t\t\trange: null,\n\t\t\t\tpreserveWhiteSpace,\n\t\t\t} ),\n\t\t};\n\t\tconst start = Math.min( this.selectionStart, value.text.length );\n\t\tconst end = Math.min( this.selectionEnd, value.text.length );\n\t\treturn { ...value, start, end };\n\t}\n\n\tvalueToFormat( value ) {\n\t\t// Remove the outer root tags.\n\t\treturn this.removeRootTagsProducedByAztec( toHTMLString( { value } ) );\n\t}\n\n\tgetActiveFormatNames( record ) {\n\t\tconst { formatTypes } = this.props;\n\n\t\treturn formatTypes\n\t\t\t.map( ( { name } ) => name )\n\t\t\t.filter( ( name ) => {\n\t\t\t\treturn getActiveFormat( record, name ) !== undefined;\n\t\t\t} )\n\t\t\t.map( ( name ) => gutenbergFormatNamesToAztec[ name ] )\n\t\t\t.filter( Boolean );\n\t}\n\n\tonFormatChange( record ) {\n\t\tconst { start = 0, end = 0, activeFormats = [] } = record;\n\t\tconst changeHandlers = Object.fromEntries(\n\t\t\tObject.entries( this.props ).filter( ( [ key ] ) =>\n\t\t\t\tkey.startsWith( 'format_on_change_functions_' )\n\t\t\t)\n\t\t);\n\n\t\tObject.values( changeHandlers ).forEach( ( changeHandler ) => {\n\t\t\tchangeHandler( record.formats, record.text );\n\t\t} );\n\n\t\tthis.value = this.valueToFormat( record );\n\t\tthis.props.onChange( this.value );\n\t\tthis.setState( { activeFormats } );\n\t\tthis.props.onSelectionChange( start, end );\n\t\tthis.selectionStart = start;\n\t\tthis.selectionEnd = end;\n\n\t\tthis.onCreateUndoLevel();\n\n\t\tthis.lastAztecEventType = 'format change';\n\t}\n\n\tinsertString( record, string ) {\n\t\tif ( record && string ) {\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\tconst toInsert = insert( record, string );\n\t\t\tthis.onFormatChange( toInsert );\n\t\t}\n\t}\n\n\tonCreateUndoLevel() {\n\t\tconst { __unstableOnCreateUndoLevel: onCreateUndoLevel } = this.props;\n\t\t// If the content is the same, no level needs to be created.\n\t\tif ( this.lastHistoryValue.toString() === this.value.toString() ) {\n\t\t\treturn;\n\t\t}\n\n\t\tonCreateUndoLevel();\n\t\tthis.lastHistoryValue = this.value;\n\t}\n\n\t/*\n\t * Cleans up any root tags produced by aztec.\n\t * TODO: This should be removed on a later version when aztec doesn't return the top tag of the text being edited\n\t */\n\tremoveRootTagsProducedByAztec( html ) {\n\t\tlet result = this.removeRootTag( this.props.tagName, html );\n\n\t\tif ( this.props.tagsToEliminate ) {\n\t\t\tthis.props.tagsToEliminate.forEach( ( element ) => {\n\t\t\t\tresult = this.removeTag( element, result );\n\t\t\t} );\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tremoveRootTag( tag, html ) {\n\t\tconst openingTagRegexp = RegExp( '^<' + tag + '[^>]*>', 'gim' );\n\t\tconst closingTagRegexp = RegExp( '</' + tag + '>$', 'gim' );\n\n\t\treturn html\n\t\t\t.replace( openingTagRegexp, '' )\n\t\t\t.replace( closingTagRegexp, '' );\n\t}\n\n\tremoveTag( tag, html ) {\n\t\tconst openingTagRegexp = RegExp( '<' + tag + '>', 'gim' );\n\t\tconst closingTagRegexp = RegExp( '</' + tag + '>', 'gim' );\n\t\treturn html\n\t\t\t.replace( openingTagRegexp, '' )\n\t\t\t.replace( closingTagRegexp, '' );\n\t}\n\n\t/*\n\t * Handles any case where the content of the AztecRN instance has changed\n\t */\n\tonChangeFromAztec( event ) {\n\t\tif ( this.shouldDropEventFromAztec( event, 'onChange' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst contentWithoutRootTag = this.removeRootTagsProducedByAztec(\n\t\t\tevent.nativeEvent.text\n\t\t);\n\t\t// On iOS, onChange can be triggered after selection changes, even though there are no content changes.\n\t\tif ( contentWithoutRootTag === this.value.toString() ) {\n\t\t\treturn;\n\t\t}\n\t\tthis.lastEventCount = event.nativeEvent.eventCount;\n\t\tthis.comesFromAztec = true;\n\t\tthis.firedAfterTextChanged = true; // The onChange event always fires after the fact.\n\t\tthis.onTextUpdate( event );\n\t\tthis.lastAztecEventType = 'input';\n\t}\n\n\tonTextUpdate( event ) {\n\t\tconst contentWithoutRootTag = this.removeRootTagsProducedByAztec(\n\t\t\tevent.nativeEvent.text\n\t\t);\n\n\t\tthis.debounceCreateUndoLevel();\n\t\tconst refresh = this.value.toString() !== contentWithoutRootTag;\n\t\tthis.value = contentWithoutRootTag;\n\n\t\t// We don't want to refresh if our goal is just to create a record.\n\t\tif ( refresh ) {\n\t\t\tthis.props.onChange( contentWithoutRootTag );\n\t\t}\n\t}\n\n\t/*\n\t * Handles any case where the content of the AztecRN instance has changed in size\n\t */\n\tonContentSizeChange( contentSize ) {\n\t\tthis.setState( contentSize );\n\t\tthis.lastAztecEventType = 'content size change';\n\t}\n\n\tonKeyDown( event ) {\n\t\tif ( event.defaultPrevented ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Add stubs for conformance in downstream autocompleters logic.\n\t\tthis.customEditableOnKeyDown?.( {\n\t\t\tpreventDefault: () => undefined,\n\t\t\t...event,\n\t\t\tkey: RCTAztecView.KeyCodes[ event?.keyCode ],\n\t\t} );\n\n\t\tthis.handleDelete( event );\n\t\tthis.handleEnter( event );\n\t\tthis.handleTriggerKeyCodes( event );\n\t}\n\n\thandleEnter( event ) {\n\t\tif ( event.keyCode !== ENTER ) {\n\t\t\treturn;\n\t\t}\n\t\tconst { onEnter } = this.props;\n\n\t\tif ( ! onEnter ) {\n\t\t\treturn;\n\t\t}\n\n\t\tonEnter( {\n\t\t\tvalue: this.createRecord(),\n\t\t\tonChange: this.onFormatChange,\n\t\t\tshiftKey: event.shiftKey,\n\t\t} );\n\t\tthis.lastAztecEventType = 'input';\n\t}\n\n\thandleDelete( event ) {\n\t\tif ( this.shouldDropEventFromAztec( event, 'handleDelete' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst { keyCode } = event;\n\n\t\tif ( keyCode !== DELETE && keyCode !== BACKSPACE ) {\n\t\t\treturn;\n\t\t}\n\t\tconst isReverse = keyCode === BACKSPACE;\n\n\t\tconst { onDelete } = this.props;\n\t\tthis.lastEventCount = event.nativeEvent.eventCount;\n\t\tthis.comesFromAztec = true;\n\t\tthis.firedAfterTextChanged = event.nativeEvent.firedAfterTextChanged;\n\t\tconst value = this.createRecord();\n\t\tconst { start, end, text } = value;\n\t\tlet newValue;\n\n\t\t// Always handle full content deletion ourselves.\n\t\tif ( start === 0 && end !== 0 && end >= text.length ) {\n\t\t\tnewValue = remove( value );\n\t\t\tthis.onFormatChange( newValue );\n\t\t\tevent.preventDefault();\n\t\t\treturn;\n\t\t}\n\n\t\t// Only process delete if the key press occurs at an uncollapsed edge.\n\t\tif (\n\t\t\t! onDelete ||\n\t\t\t! isCollapsed( value ) ||\n\t\t\t( isReverse && start !== 0 ) ||\n\t\t\t( ! isReverse && end !== text.length )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tonDelete( { isReverse, value } );\n\n\t\tevent.preventDefault();\n\t\tthis.lastAztecEventType = 'input';\n\t}\n\n\thandleTriggerKeyCodes( event ) {\n\t\tconst { keyCode } = event;\n\t\tconst triggeredOption = this.suggestionOptions().find( ( option ) => {\n\t\t\tconst triggeredKeyCode = option.triggerChar.charCodeAt( 0 );\n\t\t\treturn triggeredKeyCode === keyCode;\n\t\t} );\n\n\t\tif ( triggeredOption ) {\n\t\t\tconst record = this.getRecord();\n\t\t\tconst text = getTextContent( record );\n\t\t\t// Only respond to the trigger if the selection is on the start of text or line\n\t\t\t// or if the character before is a space.\n\t\t\tconst useTrigger =\n\t\t\t\ttext.length === 0 ||\n\t\t\t\trecord.start === 0 ||\n\t\t\t\ttext.charAt( record.start - 1 ) === '\\n' ||\n\t\t\t\ttext.charAt( record.start - 1 ) === ' ';\n\n\t\t\tif ( useTrigger && triggeredOption.onClick ) {\n\t\t\t\ttriggeredOption.onClick();\n\t\t\t} else {\n\t\t\t\tthis.insertString( record, triggeredOption.triggerChar );\n\t\t\t}\n\t\t}\n\t}\n\n\tsuggestionOptions() {\n\t\tconst { areMentionsSupported, areXPostsSupported } = this.props;\n\t\tconst allOptions = [\n\t\t\t{\n\t\t\t\tsupported: areMentionsSupported,\n\t\t\t\ttitle: __( 'Insert mention' ),\n\t\t\t\tonClick: this.handleUserSuggestion,\n\t\t\t\ttriggerChar: '@',\n\t\t\t\tvalue: 'mention',\n\t\t\t\tlabel: __( 'Mention' ),\n\t\t\t\ticon: atSymbol,\n\t\t\t},\n\t\t\t{\n\t\t\t\tsupported: areXPostsSupported,\n\t\t\t\ttitle: __( 'Insert crosspost' ),\n\t\t\t\tonClick: this.handleXpostSuggestion,\n\t\t\t\ttriggerChar: '+',\n\t\t\t\tvalue: 'crosspost',\n\t\t\t\tlabel: __( 'Crosspost' ),\n\t\t\t\ticon: plus,\n\t\t\t},\n\t\t];\n\t\treturn allOptions.filter( ( op ) => op.supported );\n\t}\n\n\thandleSuggestionFunc( suggestionFunction, prefix ) {\n\t\treturn () => {\n\t\t\tconst record = this.getRecord();\n\t\t\tsuggestionFunction()\n\t\t\t\t.then( ( suggestion ) => {\n\t\t\t\t\tthis.insertString( record, `${ prefix }${ suggestion } ` );\n\t\t\t\t} )\n\t\t\t\t.catch( () => {} );\n\t\t};\n\t}\n\n\t/**\n\t * Handles a paste event from the native Aztec Wrapper.\n\t *\n\t * @param {Object} event The paste event which wraps `nativeEvent`.\n\t */\n\tonPaste( event ) {\n\t\tconst { onPaste, onChange } = this.props;\n\t\tconst { activeFormats = [] } = this.state;\n\n\t\tconst { pastedText, pastedHtml, files } = event.nativeEvent;\n\t\tconst currentRecord = this.createRecord();\n\n\t\tevent.preventDefault();\n\n\t\t// There is a selection, check if a URL is pasted.\n\t\tif ( ! isCollapsed( currentRecord ) ) {\n\t\t\tconst trimmedText = ( pastedHtml || pastedText )\n\t\t\t\t.replace( /<[^>]+>/g, '' )\n\t\t\t\t.trim();\n\n\t\t\t// A URL was pasted, turn the selection into a link.\n\t\t\tif ( isURL( trimmedText ) ) {\n\t\t\t\tconst linkedRecord = applyFormat( currentRecord, {\n\t\t\t\t\ttype: 'a',\n\t\t\t\t\tattributes: {\n\t\t\t\t\t\thref: decodeEntities( trimmedText ),\n\t\t\t\t\t},\n\t\t\t\t} );\n\t\t\t\tthis.value = this.valueToFormat( linkedRecord );\n\t\t\t\tonChange( this.value );\n\n\t\t\t\t// Allows us to ask for this information when we get a report.\n\t\t\t\twindow.console.log( 'Created link:\\n\\n', trimmedText );\n\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif ( onPaste ) {\n\t\t\tonPaste( {\n\t\t\t\tvalue: currentRecord,\n\t\t\t\tonChange: this.onFormatChange,\n\t\t\t\thtml: pastedHtml,\n\t\t\t\tplainText: pastedText,\n\t\t\t\tfiles,\n\t\t\t\tactiveFormats,\n\t\t\t} );\n\t\t}\n\t}\n\n\tonFocus() {\n\t\tthis.isTouched = true;\n\n\t\tconst { unstableOnFocus, onSelectionChange } = this.props;\n\n\t\tif ( unstableOnFocus ) {\n\t\t\tunstableOnFocus();\n\t\t}\n\n\t\t// We know for certain that on focus, the old selection is invalid. It\n\t\t// will be recalculated on `selectionchange`.\n\n\t\tonSelectionChange( this.selectionStart, this.selectionEnd );\n\n\t\tthis.lastAztecEventType = 'focus';\n\t}\n\n\tonBlur( event ) {\n\t\tthis.isTouched = false;\n\n\t\t// Check if value is up to date with latest state of native AztecView.\n\t\tif (\n\t\t\tevent.nativeEvent.text &&\n\t\t\tevent.nativeEvent.text !== this.props.value.toString()\n\t\t) {\n\t\t\tthis.onTextUpdate( event );\n\t\t}\n\n\t\tif ( this.props.onBlur ) {\n\t\t\tthis.props.onBlur( event );\n\t\t}\n\n\t\tthis.lastAztecEventType = 'blur';\n\t}\n\n\tonSelectionChange( start, end ) {\n\t\tconst hasChanged =\n\t\t\tthis.selectionStart !== start || this.selectionEnd !== end;\n\n\t\tthis.selectionStart = start;\n\t\tthis.selectionEnd = end;\n\n\t\t// This is a manual selection change event if onChange was not triggered just before\n\t\t// and we did not just trigger a text update\n\t\t// `onChange` could be the last event and could have been triggered a long time ago so\n\t\t// this approach is not perfectly reliable.\n\t\tconst isManual =\n\t\t\tthis.lastAztecEventType !== 'input' &&\n\t\t\tthis.props.value.toString() === this.value.toString();\n\t\tif ( hasChanged && isManual ) {\n\t\t\tconst value = this.createRecord();\n\t\t\tconst activeFormats = getActiveFormats( value );\n\t\t\tthis.setState( { activeFormats } );\n\t\t}\n\n\t\tthis.props.onSelectionChange( start, end );\n\t}\n\n\tshouldDropEventFromAztec( event, logText ) {\n\t\tconst shouldDrop =\n\t\t\t! this.isIOS && event.nativeEvent.eventCount <= this.lastEventCount;\n\t\tif ( shouldDrop ) {\n\t\t\twindow.console.log(\n\t\t\t\t`Dropping ${ logText } from Aztec as its event counter is older than latest sent to the native side. Got ${ event.nativeEvent.eventCount } but lastEventCount is ${ this.lastEventCount }.`\n\t\t\t);\n\t\t}\n\t\treturn shouldDrop;\n\t}\n\n\t/**\n\t * Determines whether the text input should receive focus after an update.\n\t * For cases where a RichText with a value is merged with an empty one.\n\t *\n\t * @param {Object} prevProps - The previous props of the component.\n\t * @return {boolean} True if the text input should receive focus, false otherwise.\n\t */\n\tshouldFocusTextInputAfterMerge( prevProps ) {\n\t\tconst {\n\t\t\t__unstableIsSelected: isSelected,\n\t\t\tblockIsSelected,\n\t\t\tselectionStart,\n\t\t\tselectionEnd,\n\t\t\t__unstableMobileNoFocusOnMount,\n\t\t} = this.props;\n\n\t\tconst {\n\t\t\t__unstableIsSelected: prevIsSelected,\n\t\t\tblockIsSelected: prevBlockIsSelected,\n\t\t} = prevProps;\n\n\t\tconst noSelectionValues =\n\t\t\tselectionStart === undefined && selectionEnd === undefined;\n\t\tconst textInputWasNotFocused = ! prevIsSelected && ! isSelected;\n\n\t\treturn (\n\t\t\t! __unstableMobileNoFocusOnMount &&\n\t\t\tnoSelectionValues &&\n\t\t\ttextInputWasNotFocused &&\n\t\t\t! prevBlockIsSelected &&\n\t\t\tblockIsSelected\n\t\t);\n\t}\n\n\tonSelectionChangeFromAztec( start, end, text, event ) {\n\t\tif ( this.shouldDropEventFromAztec( event, 'onSelectionChange' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// `end` can be less than `start` on iOS\n\t\t// Let's fix that here so `rich-text/slice` can work properly.\n\t\tconst realStart = Math.min( start, end );\n\t\tconst realEnd = Math.max( start, end );\n\n\t\t// Check and dicsard stray event, where the text and selection is equal to the ones already cached.\n\t\tconst contentWithoutRootTag = this.removeRootTagsProducedByAztec(\n\t\t\tevent.nativeEvent.text\n\t\t);\n\t\tif (\n\t\t\tcontentWithoutRootTag === this.value.toString() &&\n\t\t\trealStart === this.selectionStart &&\n\t\t\trealEnd === this.selectionEnd\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.comesFromAztec = true;\n\t\tthis.firedAfterTextChanged = true; // Selection change event always fires after the fact.\n\n\t\t// Update text before updating selection\n\t\t// Make sure there are changes made to the content before upgrading it upward.\n\t\tthis.onTextUpdate( event );\n\n\t\t// Aztec can send us selection change events after it has lost focus.\n\t\t// For instance the autocorrect feature will complete a partially written\n\t\t// word when resigning focus, causing a selection change event.\n\t\t// Forwarding this selection change could cause this RichText to regain\n\t\t// focus and start a focus loop.\n\t\t//\n\t\t// See https://github.com/wordpress-mobile/gutenberg-mobile/issues/1696\n\t\tif ( this.props.__unstableIsSelected ) {\n\t\t\tthis.onSelectionChange( realStart, realEnd );\n\t\t}\n\t\t// Update lastEventCount to prevent Aztec from re-rendering the content it just sent.\n\t\tthis.lastEventCount = event.nativeEvent.eventCount;\n\n\t\tthis.lastAztecEventType = 'selection change';\n\t}\n\n\tisEmpty() {\n\t\treturn isEmpty( this.formatToValue( this.props.value ) );\n\t}\n\n\tformatToValue( value ) {\n\t\tconst { preserveWhiteSpace } = this.props;\n\t\t// Handle deprecated `children` and `node` sources.\n\t\tif ( Array.isArray( value ) ) {\n\t\t\treturn create( {\n\t\t\t\thtml: childrenBlock.toHTML( value ),\n\t\t\t\tpreserveWhiteSpace,\n\t\t\t} );\n\t\t}\n\n\t\tif ( this.props.format === 'string' ) {\n\t\t\treturn create( {\n\t\t\t\thtml: value,\n\t\t\t\tpreserveWhiteSpace,\n\t\t\t} );\n\t\t}\n\n\t\t// Guard for blocks passing `null` in onSplit callbacks. May be removed\n\t\t// if onSplit is revised to not pass a `null` value.\n\t\tif ( value === null ) {\n\t\t\treturn create();\n\t\t}\n\n\t\treturn value;\n\t}\n\n\tmanipulateEventCounterToForceNativeToRefresh() {\n\t\tif ( this.isIOS ) {\n\t\t\tthis.lastEventCount = undefined;\n\t\t\treturn;\n\t\t}\n\n\t\tif ( typeof this.lastEventCount !== 'undefined' ) {\n\t\t\tthis.lastEventCount += 100; // bump by a hundred, hopefully native hasn't bombarded the JS side in the meantime.\n\t\t} // no need to bump when 'undefined' as native side won't receive the key when the value is undefined, and that will cause force updating anyway,\n\t\t// see https://github.com/WordPress/gutenberg/blob/82e578dcc75e67891c750a41a04c1e31994192fc/packages/react-native-aztec/android/src/main/java/org/wordpress/mobile/ReactNativeAztec/ReactAztecManager.java#L213-L215\n\t}\n\n\tshouldComponentUpdate( nextProps, nextState ) {\n\t\tif (\n\t\t\tnextProps.tagName !== this.props.tagName ||\n\t\t\tnextProps.reversed !== this.props.reversed ||\n\t\t\tnextProps.start !== this.props.start\n\t\t) {\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\tthis.value = undefined;\n\t\t\treturn true;\n\t\t}\n\n\t\t// TODO: Please re-introduce the check to avoid updating the content right after an `onChange` call.\n\t\t// It was removed in https://github.com/WordPress/gutenberg/pull/12417 to fix undo/redo problem.\n\n\t\t// If the component is changed React side (undo/redo/merging/splitting/custom text actions)\n\t\t// we need to make sure the native is updated as well.\n\n\t\t// Also, don't trust the \"this.lastContent\" as on Android, incomplete text events arrive\n\t\t// with only some of the text, while the virtual keyboard's suggestion system does its magic.\n\t\t// ** compare with this.lastContent for optimizing performance by not forcing Aztec with text it already has\n\t\t// , but compare with props.value to not lose \"half word\" text because of Android virtual keyb autosuggestion behavior\n\t\tif (\n\t\t\ttypeof nextProps.value !== 'undefined' &&\n\t\t\ttypeof this.props.value !== 'undefined' &&\n\t\t\t( ! this.comesFromAztec || ! this.firedAfterTextChanged ) &&\n\t\t\tnextProps.value.toString() !== this.props.value.toString()\n\t\t) {\n\t\t\t// Gutenberg seems to try to mirror the caret state even on events that only change the content so,\n\t\t\t// let's force caret update if state has selection set.\n\t\t\tif (\n\t\t\t\ttypeof nextProps.selectionStart !== 'undefined' &&\n\t\t\t\ttypeof nextProps.selectionEnd !== 'undefined'\n\t\t\t) {\n\t\t\t\tthis.needsSelectionUpdate = true;\n\t\t\t}\n\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t}\n\n\t\tif ( ! this.comesFromAztec ) {\n\t\t\tif (\n\t\t\t\ttypeof nextProps.selectionStart !== 'undefined' &&\n\t\t\t\ttypeof nextProps.selectionEnd !== 'undefined' &&\n\t\t\t\tnextProps.selectionStart !== this.props.selectionStart &&\n\t\t\t\tnextProps.selectionStart !== this.selectionStart &&\n\t\t\t\tnextProps.__unstableIsSelected\n\t\t\t) {\n\t\t\t\tthis.needsSelectionUpdate = true;\n\t\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\t}\n\n\t\t\t// For font size changes from a prop value a force refresh\n\t\t\t// is needed without the selection update.\n\t\t\tif ( nextProps?.fontSize !== this.props?.fontSize ) {\n\t\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\t}\n\n\t\t\tif (\n\t\t\t\t( nextProps?.style?.fontSize !== this.props?.style?.fontSize &&\n\t\t\t\t\tnextState.currentFontSize !==\n\t\t\t\t\t\tthis.state.currentFontSize ) ||\n\t\t\t\tnextState.currentFontSize !== this.state.currentFontSize ||\n\t\t\t\tnextProps?.style?.lineHeight !== this.props?.style?.lineHeight\n\t\t\t) {\n\t\t\t\tthis.needsSelectionUpdate = true;\n\t\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tcomponentDidMount() {\n\t\t// Request focus if wrapping block is selected and parent hasn't inhibited the focus request. This method of focusing\n\t\t// is trying to implement the web-side counterpart of BlockList's `focusTabbable` where the BlockList is focusing an\n\t\t// inputbox by searching the DOM. We don't have the DOM in RN so, using the combination of blockIsSelected and __unstableMobileNoFocusOnMount\n\t\t// to determine if we should focus the RichText.\n\t\tif (\n\t\t\tthis.props.blockIsSelected &&\n\t\t\t! this.props.__unstableMobileNoFocusOnMount\n\t\t) {\n\t\t\tthis._editor.focus();\n\t\t\tthis.onSelectionChange(\n\t\t\t\tthis.props.selectionStart || 0,\n\t\t\t\tthis.props.selectionEnd || 0\n\t\t\t);\n\t\t}\n\t}\n\n\tcomponentDidUpdate( prevProps ) {\n\t\tconst { style, tagName } = this.props;\n\t\tconst { currentFontSize } = this.state;\n\n\t\tif ( this.props.value.toString() !== this.value.toString() ) {\n\t\t\tthis.value = this.props.value;\n\t\t}\n\t\tconst { __unstableIsSelected: prevIsSelected } = prevProps;\n\t\tconst { __unstableIsSelected: isSelected } = this.props;\n\n\t\tif ( isSelected && ! prevIsSelected ) {\n\t\t\tthis._editor.focus();\n\t\t\t// Update selection props explicitly when component is selected as Aztec won't call onSelectionChange\n\t\t\t// if its internal value hasn't change. When created, default value is 0, 0.\n\t\t\tthis.onSelectionChange(\n\t\t\t\tthis.props.selectionStart || 0,\n\t\t\t\tthis.props.selectionEnd || 0\n\t\t\t);\n\t\t} else if ( this.shouldFocusTextInputAfterMerge( prevProps ) ) {\n\t\t\t// Since this is happening when merging blocks, the selection should be at the last character position.\n\t\t\t// As a fallback the internal selectionEnd value is used.\n\t\t\tconst lastCharacterPosition =\n\t\t\t\tthis.value?.toString().length ?? this.selectionEnd;\n\t\t\tthis._editor.focus();\n\t\t\tthis.props.onSelectionChange(\n\t\t\t\tlastCharacterPosition,\n\t\t\t\tlastCharacterPosition\n\t\t\t);\n\t\t} else if ( ! isSelected && prevIsSelected ) {\n\t\t\tthis._editor.blur();\n\t\t}\n\n\t\t// For font size values changes from the font size picker\n\t\t// we compare previous values to refresh the selected font size,\n\t\t// this is also used when the tag name changes\n\t\t// e.g Heading block and a level change like h1->h2.\n\t\tconst currentFontSizeStyle = this.getParsedFontSize( style?.fontSize );\n\t\tconst prevFontSizeStyle = this.getParsedFontSize(\n\t\t\tprevProps?.style?.fontSize\n\t\t);\n\t\tconst isDifferentTag = prevProps.tagName !== tagName;\n\t\tif (\n\t\t\t( currentFontSize &&\n\t\t\t\t( currentFontSizeStyle || prevFontSizeStyle ) &&\n\t\t\t\tcurrentFontSizeStyle !== currentFontSize ) ||\n\t\t\tisDifferentTag\n\t\t) {\n\t\t\tthis.setState( {\n\t\t\t\tcurrentFontSize: this.getFontSize( this.props ),\n\t\t\t} );\n\t\t}\n\t}\n\n\tgetHtmlToRender( record, tagName ) {\n\t\t// Save back to HTML from React tree.\n\t\tlet value = this.valueToFormat( record );\n\n\t\tif ( value === undefined ) {\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\tvalue = '';\n\t\t}\n\t\t// On android if content is empty we need to send no content or else the placeholder will not show.\n\t\tif (\n\t\t\t! this.isIOS &&\n\t\t\t( value.toString() === '' ||\n\t\t\t\tvalue.toString() === EMPTY_PARAGRAPH_TAGS )\n\t\t) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif ( tagName ) {\n\t\t\tlet extraAttributes = ``;\n\t\t\tif ( tagName === `ol` ) {\n\t\t\t\tif ( this.props.reversed ) {\n\t\t\t\t\textraAttributes += ` reversed`;\n\t\t\t\t}\n\t\t\t\tif ( this.props.start ) {\n\t\t\t\t\textraAttributes += ` start=${ this.props.start }`;\n\t\t\t\t}\n\t\t\t}\n\t\t\tvalue = `<${ tagName }${ extraAttributes }>${ value }</${ tagName }>`;\n\t\t}\n\t\treturn value;\n\t}\n\n\tgetEditableProps() {\n\t\treturn {\n\t\t\t// Overridable props.\n\t\t\tstyle: {},\n\t\t\tclassName: 'rich-text',\n\t\t\tonKeyDown: () => null,\n\t\t};\n\t}\n\n\tgetParsedFontSize( fontSize ) {\n\t\tconst { height, width } = Dimensions.get( 'window' );\n\t\tconst cssUnitOptions = { height, width, fontSize: DEFAULT_FONT_SIZE };\n\n\t\tif ( ! fontSize ) {\n\t\t\treturn fontSize;\n\t\t}\n\n\t\tconst selectedPxValue =\n\t\t\tgetPxFromCssUnit( fontSize, cssUnitOptions ) ?? DEFAULT_FONT_SIZE;\n\n\t\treturn parseFloat( selectedPxValue );\n\t}\n\n\tgetFontSize( props ) {\n\t\tconst { baseGlobalStyles, tagName, fontSize, style } = props;\n\t\tconst tagNameFontSize =\n\t\t\tbaseGlobalStyles?.elements?.[ tagName ]?.typography?.fontSize;\n\n\t\tlet newFontSize = DEFAULT_FONT_SIZE;\n\n\t\t// Disables line-height rendering for pre elements until we fix some issues with AztecAndroid.\n\t\tif ( tagName === 'pre' && ! this.isIOS ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// For block-based themes, get the default editor font size.\n\t\tif ( baseGlobalStyles?.typography?.fontSize && tagName === 'p' ) {\n\t\t\tnewFontSize = baseGlobalStyles?.typography?.fontSize;\n\t\t}\n\n\t\t// For block-based themes, get the default element font size\n\t\t// e.g h1, h2.\n\t\tif ( tagNameFontSize ) {\n\t\t\tnewFontSize = tagNameFontSize;\n\t\t}\n\n\t\t// For font size values provided from the styles,\n\t\t// usually from values set from the font size picker.\n\t\tif ( style?.fontSize ) {\n\t\t\tnewFontSize = style.fontSize;\n\t\t}\n\n\t\t// Fall-back to a font size provided from its props (if there's any)\n\t\t// and there are no other default values to use.\n\t\tif ( fontSize && ! tagNameFontSize && ! style?.fontSize ) {\n\t\t\tnewFontSize = fontSize;\n\t\t}\n\n\t\t// We need to always convert to px units because the selected value\n\t\t// could be coming from the web where it could be stored as a different unit.\n\t\tconst selectedPxValue = this.getParsedFontSize( newFontSize );\n\n\t\treturn selectedPxValue;\n\t}\n\n\tgetLineHeight() {\n\t\tconst { baseGlobalStyles, tagName, lineHeight, style } = this.props;\n\t\tconst tagNameLineHeight =\n\t\t\tbaseGlobalStyles?.elements?.[ tagName ]?.typography?.lineHeight;\n\t\tlet newLineHeight;\n\n\t\t// Disables line-height rendering for pre elements until we fix some issues with AztecAndroid.\n\t\tif ( tagName === 'pre' && ! this.isIOS ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\tif ( ! this.getIsBlockBasedTheme() ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// For block-based themes, get the default editor line height.\n\t\tif ( baseGlobalStyles?.typography?.lineHeight && tagName === 'p' ) {\n\t\t\tnewLineHeight = parseFloat(\n\t\t\t\tbaseGlobalStyles?.typography?.lineHeight\n\t\t\t);\n\t\t}\n\n\t\t// For block-based themes, get the default element line height\n\t\t// e.g h1, h2.\n\t\tif ( tagNameLineHeight ) {\n\t\t\tnewLineHeight = parseFloat( tagNameLineHeight );\n\t\t}\n\n\t\t// For line height values provided from the styles,\n\t\t// usually from values set from the line height picker.\n\t\tif ( style?.lineHeight ) {\n\t\t\tnewLineHeight = parseFloat( style.lineHeight );\n\t\t}\n\n\t\t// Fall-back to a line height provided from its props (if there's any)\n\t\t// and there are no other default values to use.\n\t\tif ( lineHeight && ! tagNameLineHeight && ! style?.lineHeight ) {\n\t\t\tnewLineHeight = lineHeight;\n\t\t}\n\n\t\t// Check the final value is not over the minimum supported value.\n\t\tif ( newLineHeight && newLineHeight < MIN_LINE_HEIGHT ) {\n\t\t\tnewLineHeight = MIN_LINE_HEIGHT;\n\t\t}\n\n\t\t// Until we parse CSS values correctly, avoid passing NaN values to Aztec\n\t\tif ( isNaN( newLineHeight ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\treturn newLineHeight;\n\t}\n\n\tgetIsBlockBasedTheme() {\n\t\tconst { baseGlobalStyles } = this.props;\n\n\t\treturn (\n\t\t\tbaseGlobalStyles && Object.entries( baseGlobalStyles ).length !== 0\n\t\t);\n\t}\n\n\tgetBlockUseDefaultFont() {\n\t\t// For block-based themes it enables using the defaultFont\n\t\t// in Aztec for iOS so it allows customizing the font size\n\t\t// for the Preformatted/Code and Heading blocks.\n\t\tif ( ! this.isIOS ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst { tagName } = this.props;\n\t\tconst isBlockBasedTheme = this.getIsBlockBasedTheme();\n\t\tconst tagsToMatch = /pre|h([1-6])$/gm;\n\n\t\treturn isBlockBasedTheme && tagsToMatch.test( tagName );\n\t}\n\n\tgetLinkTextColor( defaultColor ) {\n\t\tconst { style } = this.props;\n\t\tconst customColor = style?.linkColor && colord( style.linkColor );\n\n\t\treturn customColor && customColor.isValid()\n\t\t\t? customColor.toHex()\n\t\t\t: defaultColor;\n\t}\n\n\tgetPlaceholderTextColor() {\n\t\tconst {\n\t\t\tbaseGlobalStyles,\n\t\t\tgetStylesFromColorScheme,\n\t\t\tplaceholderTextColor,\n\t\t\tstyle,\n\t\t} = this.props;\n\n\t\t// Default placeholder text color.\n\t\tconst placeholderStyle = getStylesFromColorScheme(\n\t\t\tstyles.richTextPlaceholder,\n\t\t\tstyles.richTextPlaceholderDark\n\t\t);\n\t\tconst { color: defaultPlaceholderTextColor } = placeholderStyle;\n\t\t// Custom 63% opacity for theme and inherited colors.\n\t\tconst placeholderOpacity = 'A1';\n\n\t\t// Determine inherited placeholder color if available.\n\t\tconst inheritPlaceholderColor = style?.placeholderColor\n\t\t\t? `${ style.placeholderColor }${ placeholderOpacity }`\n\t\t\t: undefined;\n\n\t\t// If using block-based themes, derive the placeholder color from global styles.\n\t\tconst globalStylesPlaceholderColor = baseGlobalStyles?.color?.text\n\t\t\t? `${ baseGlobalStyles.color.text }${ placeholderOpacity }`\n\t\t\t: undefined;\n\n\t\treturn (\n\t\t\tinheritPlaceholderColor ??\n\t\t\tplaceholderTextColor ??\n\t\t\tglobalStylesPlaceholderColor ??\n\t\t\tdefaultPlaceholderTextColor\n\t\t);\n\t}\n\n\trender() {\n\t\tconst {\n\t\t\ttagName,\n\t\t\tstyle,\n\t\t\t__unstableIsSelected: isSelected,\n\t\t\tchildren,\n\t\t\tgetStylesFromColorScheme,\n\t\t\tminWidth,\n\t\t\tmaxWidth,\n\t\t\tformatTypes,\n\t\t\tparentBlockStyles,\n\t\t\taccessibilityLabel,\n\t\t\tdisableEditingMenu = false,\n\t\t\tbaseGlobalStyles,\n\t\t\tselectionStart,\n\t\t\tselectionEnd,\n\t\t\tdisableSuggestions,\n\t\t\tcontainerWidth,\n\t\t} = this.props;\n\t\tconst { currentFontSize } = this.state;\n\n\t\tconst record = this.getRecord();\n\t\tconst html = this.getHtmlToRender( record, tagName );\n\t\tconst editableProps = this.getEditableProps();\n\t\tconst blockUseDefaultFont = this.getBlockUseDefaultFont();\n\n\t\tconst fontSize = currentFontSize;\n\t\tconst lineHeight = this.getLineHeight();\n\n\t\tconst {\n\t\t\tcolor: defaultColor,\n\t\t\ttextDecorationColor: defaultTextDecorationColor,\n\t\t\tfontFamily: defaultFontFamily,\n\t\t} = getStylesFromColorScheme( styles.richText, styles.richTextDark );\n\t\tconst linkTextColor = this.getLinkTextColor(\n\t\t\tdefaultTextDecorationColor\n\t\t);\n\n\t\tconst currentSelectionStart = selectionStart ?? 0;\n\t\tconst currentSelectionEnd = selectionEnd ?? 0;\n\t\tlet selection = null;\n\t\tif ( this.needsSelectionUpdate ) {\n\t\t\tthis.needsSelectionUpdate = false;\n\t\t\tselection = {\n\t\t\t\tstart: currentSelectionStart,\n\t\t\t\tend: currentSelectionEnd,\n\t\t\t};\n\n\t\t\t// On AztecAndroid, setting the caret to an out-of-bounds position will crash the editor so, let's check for some cases.\n\t\t\tif ( ! this.isIOS ) {\n\t\t\t\t// The following regular expression is used in Aztec here:\n\t\t\t\t// https://github.com/wordpress-mobile/AztecEditor-Android/blob/b1fad439d56fa6d4aa0b78526fef355c59d00dd3/aztec/src/main/kotlin/org/wordpress/aztec/AztecParser.kt#L656\n\t\t\t\tconst brBeforeParaMatches = html.match( /(<br>)+<\\/p>$/g );\n\t\t\t\tif ( brBeforeParaMatches ) {\n\t\t\t\t\tconsole.warn(\n\t\t\t\t\t\t'Oops, BR tag(s) at the end of content. Aztec will remove them, adapting the selection...'\n\t\t\t\t\t);\n\t\t\t\t\tconst count = (\n\t\t\t\t\t\tbrBeforeParaMatches[ 0 ].match( /br/g ) || []\n\t\t\t\t\t).length;\n\t\t\t\t\tif ( count > 0 ) {\n\t\t\t\t\t\tlet newSelectionStart = currentSelectionStart - count;\n\t\t\t\t\t\tif ( newSelectionStart < 0 ) {\n\t\t\t\t\t\t\tnewSelectionStart = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlet newSelectionEnd = currentSelectionEnd - count;\n\t\t\t\t\t\tif ( newSelectionEnd < 0 ) {\n\t\t\t\t\t\t\tnewSelectionEnd = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tselection = {\n\t\t\t\t\t\t\tstart: newSelectionStart,\n\t\t\t\t\t\t\tend: newSelectionEnd,\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\n\t\tif ( this.comesFromAztec ) {\n\t\t\tthis.comesFromAztec = false;\n\t\t\tthis.firedAfterTextChanged = false;\n\t\t}\n\n\t\t// Logic below assures that `RichText` width will always have equal value when container is almost fully filled.\n\t\tconst width =\n\t\t\tmaxWidth && this.state.width && maxWidth - this.state.width < 10\n\t\t\t\t? maxWidth\n\t\t\t\t: this.state.width;\n\t\tconst containerStyles = [\n\t\t\tstyle?.padding &&\n\t\t\t\tstyle?.backgroundColor && {\n\t\t\t\t\tpadding: style.padding,\n\t\t\t\t\tbackgroundColor: style.backgroundColor,\n\t\t\t\t},\n\t\t\tcontainerWidth && {\n\t\t\t\twidth: containerWidth,\n\t\t\t},\n\t\t];\n\n\t\tconst defaultSelectionColor = getStylesFromColorScheme(\n\t\t\tstyles[ 'rich-text-selection' ],\n\t\t\tstyles[ 'rich-text-selection--dark' ]\n\t\t).color;\n\t\tconst selectionColor = getSelectionColor(\n\t\t\tthis.props.selectionColor,\n\t\t\tdefaultSelectionColor,\n\t\t\tbaseGlobalStyles,\n\t\t\tthis.getIsBlockBasedTheme()\n\t\t);\n\n\t\tconst EditableView = ( props ) => {\n\t\t\tthis.customEditableOnKeyDown = props?.onKeyDown;\n\n\t\t\treturn <></>;\n\t\t};\n\n\t\treturn (\n\t\t\t<View style={ containerStyles }>\n\t\t\t\t{ children &&\n\t\t\t\t\tchildren( {\n\t\t\t\t\t\tisSelected,\n\t\t\t\t\t\tvalue: record,\n\t\t\t\t\t\tonChange: this.onFormatChange,\n\t\t\t\t\t\tonFocus: () => {},\n\t\t\t\t\t\teditableProps,\n\t\t\t\t\t\teditableTagName: EditableView,\n\t\t\t\t\t} ) }\n\t\t\t\t<RCTAztecView\n\t\t\t\t\taccessibilityLabel={ accessibilityLabel }\n\t\t\t\t\tref={ ( ref ) => {\n\t\t\t\t\t\tthis._editor = ref;\n\n\t\t\t\t\t\tif ( this.props.setRef ) {\n\t\t\t\t\t\t\tthis.props.setRef( ref );\n\t\t\t\t\t\t}\n\t\t\t\t\t} }\n\t\t\t\t\tstyle={ {\n\t\t\t\t\t\tbackgroundColor: styles.richText.backgroundColor,\n\t\t\t\t\t\t...style,\n\t\t\t\t\t\t...( this.isIOS && minWidth && maxWidth\n\t\t\t\t\t\t\t? { width }\n\t\t\t\t\t\t\t: { maxWidth } ),\n\t\t\t\t\t\tminHeight: this.state.height,\n\t\t\t\t\t} }\n\t\t\t\t\tblockUseDefaultFont={ blockUseDefaultFont }\n\t\t\t\t\ttext={ {\n\t\t\t\t\t\ttext: html,\n\t\t\t\t\t\teventCount: this.lastEventCount,\n\t\t\t\t\t\tselection,\n\t\t\t\t\t\tlinkTextColor,\n\t\t\t\t\t\ttag: tagName,\n\t\t\t\t\t} }\n\t\t\t\t\tplaceholder={ this.props.placeholder }\n\t\t\t\t\tplaceholderTextColor={ this.getPlaceholderTextColor() }\n\t\t\t\t\tdeleteEnter={ this.props.deleteEnter }\n\t\t\t\t\tonChange={ this.onChangeFromAztec }\n\t\t\t\t\tonFocus={ this.onFocus }\n\t\t\t\t\tonBlur={ this.onBlur }\n\t\t\t\t\tonKeyDown={ this.onKeyDown }\n\t\t\t\t\ttriggerKeyCodes={\n\t\t\t\t\t\tdisableEditingMenu\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: this.suggestionOptions().map(\n\t\t\t\t\t\t\t\t\t( op ) => op.triggerChar\n\t\t\t\t\t\t\t )\n\t\t\t\t\t}\n\t\t\t\t\tonPaste={ this.onPaste }\n\t\t\t\t\tactiveFormats={ this.getActiveFormatNames( record ) }\n\t\t\t\t\tonContentSizeChange={ this.onContentSizeChange }\n\t\t\t\t\tonSelectionChange={ this.onSelectionChangeFromAztec }\n\t\t\t\t\tblockType={ { tag: tagName } }\n\t\t\t\t\tcolor={\n\t\t\t\t\t\t( style && style.color ) ||\n\t\t\t\t\t\t( parentBlockStyles && parentBlockStyles.color ) ||\n\t\t\t\t\t\t( baseGlobalStyles && baseGlobalStyles?.color?.text ) ||\n\t\t\t\t\t\tdefaultColor\n\t\t\t\t\t}\n\t\t\t\t\tmaxImagesWidth={ 200 }\n\t\t\t\t\tfontFamily={ this.props.fontFamily || defaultFontFamily }\n\t\t\t\t\tfontSize={ fontSize }\n\t\t\t\t\tlineHeight={ lineHeight }\n\t\t\t\t\tfontWeight={ this.props.fontWeight }\n\t\t\t\t\tfontStyle={ this.props.fontStyle }\n\t\t\t\t\tdisableEditingMenu={ disableEditingMenu }\n\t\t\t\t\tisMultiline={ false }\n\t\t\t\t\ttextAlign={ this.props.textAlign }\n\t\t\t\t\t{ ...( this.isIOS ? { maxWidth } : {} ) }\n\t\t\t\t\tminWidth={ minWidth }\n\t\t\t\t\tid={ this.props.id }\n\t\t\t\t\tselectionColor={ selectionColor }\n\t\t\t\t\tdisableAutocorrection={ this.props.disableAutocorrection }\n\t\t\t\t/>\n\t\t\t\t{ isSelected && (\n\t\t\t\t\t<>\n\t\t\t\t\t\t<FormatEdit\n\t\t\t\t\t\t\tforwardedRef={ this._editor }\n\t\t\t\t\t\t\tformatTypes={ formatTypes }\n\t\t\t\t\t\t\tvalue={ record }\n\t\t\t\t\t\t\tonChange={ this.onFormatChange }\n\t\t\t\t\t\t\tonFocus={ () => {} }\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t{ ! disableSuggestions && (\n\t\t\t\t\t\t\t<BlockFormatControls>\n\t\t\t\t\t\t\t\t<ToolbarButtonWithOptions\n\t\t\t\t\t\t\t\t\toptions={ this.suggestionOptions() }\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</BlockFormatControls>\n\t\t\t\t\t\t) }\n\t\t\t\t\t</>\n\t\t\t\t) }\n\t\t\t</View>\n\t\t);\n\t}\n}\n\nRichText.defaultProps = {\n\tformat: 'string',\n\tvalue: '',\n\ttagName: 'div',\n};\n\nconst withFormatTypes = ( WrappedComponent ) => ( props ) => {\n\tconst {\n\t\tclientId,\n\t\tidentifier,\n\t\twithoutInteractiveFormatting,\n\t\tallowedFormats,\n\t} = props;\n\tconst { formatTypes } = useFormatTypes( {\n\t\tclientId,\n\t\tidentifier,\n\t\twithoutInteractiveFormatting,\n\t\tallowedFormats,\n\t} );\n\n\treturn <WrappedComponent { ...props } formatTypes={ formatTypes } />;\n};\n\nexport default compose( [\n\twithSelect( ( select, { clientId } ) => {\n\t\tconst { getBlockParents, getBlock, getSettings } =\n\t\t\tselect( 'core/block-editor' );\n\t\tconst parents = getBlockParents( clientId, true );\n\t\tconst parentBlock = parents ? getBlock( parents[ 0 ] ) : undefined;\n\t\tconst parentBlockStyles = parentBlock?.attributes?.childrenStyles;\n\n\t\tconst settings = getSettings();\n\t\tconst baseGlobalStyles = settings?.__experimentalGlobalStylesBaseStyles;\n\n\t\tconst colorPalettes = settings?.__experimentalFeatures?.color?.palette;\n\t\tconst colorPalette = colorPalettes\n\t\t\t? flatColorPalettes( colorPalettes )\n\t\t\t: settings?.colors;\n\n\t\treturn {\n\t\t\tareMentionsSupported: settings?.capabilities?.mentions === true,\n\t\t\tareXPostsSupported: settings?.capabilities?.xposts === true,\n\t\t\tparentBlockStyles,\n\t\t\tbaseGlobalStyles,\n\t\t\tcolorPalette,\n\t\t};\n\t} ),\n\twithPreferredColorScheme,\n\twithFormatTypes,\n] )( RichText );\n"],"mappings":"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"}
1
+ {"version":3,"names":["_reactNative","require","_memize","_interopRequireDefault","_colord","_reactNativeAztec","_reactNativeBridge","_blockEditor","_components","_element","_compose","_data","_blocks","_htmlEntities","_keycodes","_url","_icons","_i18n","_richText","_useFormatTypes","_formatEdit","_getFormatColors","_style","_toolbarButtonWithOptions","flatColorPalettes","memize","colorsPalettes","theme","custom","default","getSelectionColor","currentSelectionColor","defaultSelectionColor","baseGlobalStyles","isBlockBasedTheme","selectionColor","colordTextColor","colord","colordBackgroundColor","color","background","isColordTextReadable","isReadable","text","gutenbergFormatNamesToAztec","EMPTY_PARAGRAPH_TAGS","DEFAULT_FONT_SIZE","MIN_LINE_HEIGHT","RichText","Component","constructor","value","selectionStart","selectionEnd","arguments","isIOS","Platform","OS","createRecord","bind","onChangeFromAztec","onKeyDown","handleEnter","handleDelete","onPaste","onFocus","onBlur","onTextUpdate","onContentSizeChange","onFormatChange","formatToValue","maxSize","debounceCreateUndoLevel","debounce","onCreateUndoLevel","onSelectionChange","onSelectionChangeFromAztec","valueToFormat","getHtmlToRender","handleSuggestionFunc","handleUserSuggestion","showUserSuggestions","handleXpostSuggestion","showXpostSuggestions","suggestionOptions","insertString","manipulateEventCounterToForceNativeToRefresh","shouldDropEventFromAztec","state","activeFormats","selectedFormat","height","currentFontSize","getFontSize","needsSelectionUpdate","savedContent","isTouched","lastAztecEventType","lastHistoryValue","getRecord","start","end","colorPalette","props","currentValue","formats","replacements","newFormats","getFormatColors","preserveWhiteSpace","create","html","range","Math","min","length","removeRootTagsProducedByAztec","toHTMLString","getActiveFormatNames","record","formatTypes","map","name","filter","getActiveFormat","undefined","Boolean","changeHandlers","Object","fromEntries","entries","key","startsWith","values","forEach","changeHandler","onChange","setState","string","toInsert","insert","__unstableOnCreateUndoLevel","toString","result","removeRootTag","tagName","tagsToEliminate","element","removeTag","tag","openingTagRegexp","RegExp","closingTagRegexp","replace","event","contentWithoutRootTag","nativeEvent","lastEventCount","eventCount","comesFromAztec","firedAfterTextChanged","refresh","contentSize","defaultPrevented","customEditableOnKeyDown","preventDefault","RCTAztecView","KeyCodes","keyCode","handleTriggerKeyCodes","ENTER","onEnter","shiftKey","DELETE","BACKSPACE","isReverse","onDelete","newValue","remove","isCollapsed","triggeredOption","find","option","triggeredKeyCode","triggerChar","charCodeAt","getTextContent","useTrigger","charAt","onClick","areMentionsSupported","areXPostsSupported","allOptions","supported","title","__","label","icon","atSymbol","plus","op","suggestionFunction","prefix","then","suggestion","catch","pastedText","pastedHtml","files","currentRecord","trimmedText","trim","isURL","linkedRecord","applyFormat","type","attributes","href","decodeEntities","window","console","log","plainText","unstableOnFocus","hasChanged","isManual","getActiveFormats","logText","shouldDrop","shouldFocusTextInputAfterMerge","prevProps","__unstableIsSelected","isSelected","blockIsSelected","__unstableMobileNoFocusOnMount","prevIsSelected","prevBlockIsSelected","noSelectionValues","textInputWasNotFocused","realStart","realEnd","max","isEmpty","Array","isArray","childrenBlock","toHTML","format","shouldComponentUpdate","nextProps","nextState","reversed","fontSize","style","lineHeight","componentDidMount","_editor","focus","componentDidUpdate","_this$value$toString$","lastCharacterPosition","blur","currentFontSizeStyle","getParsedFontSize","prevFontSizeStyle","isDifferentTag","extraAttributes","getEditableProps","className","_getPxFromCssUnit","width","Dimensions","get","cssUnitOptions","selectedPxValue","getPxFromCssUnit","parseFloat","tagNameFontSize","elements","typography","newFontSize","getLineHeight","tagNameLineHeight","newLineHeight","getIsBlockBasedTheme","isNaN","getBlockUseDefaultFont","tagsToMatch","test","getLinkTextColor","defaultColor","customColor","linkColor","isValid","toHex","getPlaceholderTextColor","_ref","_ref2","getStylesFromColorScheme","placeholderTextColor","placeholderStyle","styles","richTextPlaceholder","richTextPlaceholderDark","defaultPlaceholderTextColor","placeholderOpacity","inheritPlaceholderColor","placeholderColor","globalStylesPlaceholderColor","render","children","minWidth","maxWidth","parentBlockStyles","accessibilityLabel","disableEditingMenu","disableSuggestions","containerWidth","editableProps","blockUseDefaultFont","textDecorationColor","defaultTextDecorationColor","fontFamily","defaultFontFamily","richText","richTextDark","linkTextColor","currentSelectionStart","currentSelectionEnd","selection","brBeforeParaMatches","match","warn","count","newSelectionStart","newSelectionEnd","containerStyles","padding","backgroundColor","EditableView","_react","createElement","Fragment","View","editableTagName","ref","setRef","minHeight","placeholder","deleteEnter","triggerKeyCodes","blockType","maxImagesWidth","fontWeight","fontStyle","isMultiline","textAlign","id","disableAutocorrection","forwardedRef","BlockFormatControls","options","exports","defaultProps","withFormatTypes","WrappedComponent","clientId","identifier","withoutInteractiveFormatting","allowedFormats","useFormatTypes","_default","compose","withSelect","select","getBlockParents","getBlock","getSettings","parents","parentBlock","childrenStyles","settings","__experimentalGlobalStylesBaseStyles","colorPalettes","__experimentalFeatures","palette","colors","capabilities","mentions","xposts","withPreferredColorScheme"],"sources":["@wordpress/block-editor/src/components/rich-text/native/index.native.js"],"sourcesContent":["/* eslint no-console: [\"error\", { allow: [\"warn\"] }] */\n\n/**\n * External dependencies\n */\nimport { View, Platform, Dimensions } from 'react-native';\nimport memize from 'memize';\nimport { colord } from 'colord';\n\n/**\n * WordPress dependencies\n */\nimport RCTAztecView from '@wordpress/react-native-aztec';\nimport {\n\tshowUserSuggestions,\n\tshowXpostSuggestions,\n} from '@wordpress/react-native-bridge';\nimport { BlockFormatControls } from '@wordpress/block-editor';\nimport { getPxFromCssUnit } from '@wordpress/components';\nimport { Component } from '@wordpress/element';\nimport {\n\tcompose,\n\tdebounce,\n\twithPreferredColorScheme,\n} from '@wordpress/compose';\nimport { withSelect } from '@wordpress/data';\nimport { childrenBlock } from '@wordpress/blocks';\nimport { decodeEntities } from '@wordpress/html-entities';\nimport { BACKSPACE, DELETE, ENTER } from '@wordpress/keycodes';\nimport { isURL } from '@wordpress/url';\nimport { atSymbol, plus } from '@wordpress/icons';\nimport { __ } from '@wordpress/i18n';\nimport {\n\tapplyFormat,\n\tgetActiveFormat,\n\tgetActiveFormats,\n\tinsert,\n\tgetTextContent,\n\tisEmpty,\n\tcreate,\n\ttoHTMLString,\n\tisCollapsed,\n\tremove,\n} from '@wordpress/rich-text';\n\n/**\n * Internal dependencies\n */\nimport { useFormatTypes } from './use-format-types';\nimport FormatEdit from './format-edit';\nimport { getFormatColors } from './get-format-colors';\nimport styles from './style.scss';\nimport ToolbarButtonWithOptions from './toolbar-button-with-options';\n\n// The flattened color palettes array is memoized to ensure that the same array instance is\n// returned for the colors palettes. This value might be used as a prop, so having the same\n// instance will prevent unnecessary re-renders of the RichText component.\nconst flatColorPalettes = memize( ( colorsPalettes ) => [\n\t...( colorsPalettes?.theme || [] ),\n\t...( colorsPalettes?.custom || [] ),\n\t...( colorsPalettes?.default || [] ),\n] );\n\nconst getSelectionColor = memize(\n\t(\n\t\tcurrentSelectionColor,\n\t\tdefaultSelectionColor,\n\t\tbaseGlobalStyles,\n\t\tisBlockBasedTheme\n\t) => {\n\t\tlet selectionColor = defaultSelectionColor;\n\t\tif ( currentSelectionColor ) {\n\t\t\tselectionColor = currentSelectionColor;\n\t\t}\n\n\t\tif ( isBlockBasedTheme ) {\n\t\t\tconst colordTextColor = colord( selectionColor );\n\t\t\tconst colordBackgroundColor = colord(\n\t\t\t\tbaseGlobalStyles?.color?.background\n\t\t\t);\n\t\t\tconst isColordTextReadable = colordTextColor.isReadable(\n\t\t\t\tcolordBackgroundColor\n\t\t\t);\n\t\t\tif ( ! isColordTextReadable ) {\n\t\t\t\tselectionColor = baseGlobalStyles?.color?.text;\n\t\t\t}\n\t\t}\n\n\t\treturn selectionColor;\n\t}\n);\n\nconst gutenbergFormatNamesToAztec = {\n\t'core/bold': 'bold',\n\t'core/italic': 'italic',\n\t'core/strikethrough': 'strikethrough',\n\t'core/text-color': 'mark',\n};\n\nconst EMPTY_PARAGRAPH_TAGS = '<p></p>';\nconst DEFAULT_FONT_SIZE = 16;\nconst MIN_LINE_HEIGHT = 1;\n\nexport class RichText extends Component {\n\tconstructor( { value, selectionStart, selectionEnd } ) {\n\t\tsuper( ...arguments );\n\n\t\tthis.isIOS = Platform.OS === 'ios';\n\t\tthis.createRecord = this.createRecord.bind( this );\n\t\tthis.onChangeFromAztec = this.onChangeFromAztec.bind( this );\n\t\tthis.onKeyDown = this.onKeyDown.bind( this );\n\t\tthis.handleEnter = this.handleEnter.bind( this );\n\t\tthis.handleDelete = this.handleDelete.bind( this );\n\t\tthis.onPaste = this.onPaste.bind( this );\n\t\tthis.onFocus = this.onFocus.bind( this );\n\t\tthis.onBlur = this.onBlur.bind( this );\n\t\tthis.onTextUpdate = this.onTextUpdate.bind( this );\n\t\tthis.onContentSizeChange = this.onContentSizeChange.bind( this );\n\t\tthis.onFormatChange = this.onFormatChange.bind( this );\n\t\tthis.formatToValue = memize( this.formatToValue.bind( this ), {\n\t\t\tmaxSize: 1,\n\t\t} );\n\t\tthis.debounceCreateUndoLevel = debounce( this.onCreateUndoLevel, 1000 );\n\t\t// This prevents a bug in Aztec which triggers onSelectionChange twice on format change.\n\t\tthis.onSelectionChange = this.onSelectionChange.bind( this );\n\t\tthis.onSelectionChangeFromAztec =\n\t\t\tthis.onSelectionChangeFromAztec.bind( this );\n\t\tthis.valueToFormat = this.valueToFormat.bind( this );\n\t\tthis.getHtmlToRender = this.getHtmlToRender.bind( this );\n\t\tthis.handleSuggestionFunc = this.handleSuggestionFunc.bind( this );\n\t\tthis.handleUserSuggestion = this.handleSuggestionFunc(\n\t\t\tshowUserSuggestions,\n\t\t\t'@'\n\t\t).bind( this );\n\t\tthis.handleXpostSuggestion = this.handleSuggestionFunc(\n\t\t\tshowXpostSuggestions,\n\t\t\t'+'\n\t\t).bind( this );\n\t\tthis.suggestionOptions = this.suggestionOptions.bind( this );\n\t\tthis.insertString = this.insertString.bind( this );\n\t\tthis.manipulateEventCounterToForceNativeToRefresh =\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh.bind( this );\n\t\tthis.shouldDropEventFromAztec =\n\t\t\tthis.shouldDropEventFromAztec.bind( this );\n\t\tthis.state = {\n\t\t\tactiveFormats: [],\n\t\t\tselectedFormat: null,\n\t\t\theight: 0,\n\t\t\tcurrentFontSize: this.getFontSize( arguments[ 0 ] ),\n\t\t};\n\t\tthis.needsSelectionUpdate = false;\n\t\tthis.savedContent = '';\n\t\tthis.isTouched = false;\n\t\tthis.lastAztecEventType = null;\n\n\t\tthis.lastHistoryValue = value;\n\n\t\t// Internal values that are update synchronously, unlike props.\n\t\tthis.value = value;\n\t\tthis.selectionStart = selectionStart;\n\t\tthis.selectionEnd = selectionEnd;\n\t}\n\n\t/**\n\t * Get the current record (value and selection) from props and state.\n\t *\n\t * @return {Object} The current record (value and selection).\n\t */\n\tgetRecord() {\n\t\tconst {\n\t\t\tselectionStart: start,\n\t\t\tselectionEnd: end,\n\t\t\tcolorPalette,\n\t\t} = this.props;\n\t\tconst { value } = this.props;\n\t\tconst currentValue = this.formatToValue( value );\n\n\t\tconst { formats, replacements, text } = currentValue;\n\t\tconst { activeFormats } = this.state;\n\t\tconst newFormats = getFormatColors( formats, colorPalette );\n\n\t\treturn {\n\t\t\tformats: newFormats,\n\t\t\treplacements,\n\t\t\ttext,\n\t\t\tstart,\n\t\t\tend,\n\t\t\tactiveFormats,\n\t\t};\n\t}\n\n\t/**\n\t * Creates a RichText value \"record\" from the current content and selection\n\t * information\n\t *\n\t *\n\t * @return {Object} A RichText value with formats and selection.\n\t */\n\tcreateRecord() {\n\t\tconst { preserveWhiteSpace } = this.props;\n\t\tconst value = {\n\t\t\tstart: this.selectionStart,\n\t\t\tend: this.selectionEnd,\n\t\t\t...create( {\n\t\t\t\thtml: this.value,\n\t\t\t\trange: null,\n\t\t\t\tpreserveWhiteSpace,\n\t\t\t} ),\n\t\t};\n\t\tconst start = Math.min( this.selectionStart, value.text.length );\n\t\tconst end = Math.min( this.selectionEnd, value.text.length );\n\t\treturn { ...value, start, end };\n\t}\n\n\tvalueToFormat( value ) {\n\t\t// Remove the outer root tags.\n\t\treturn this.removeRootTagsProducedByAztec( toHTMLString( { value } ) );\n\t}\n\n\tgetActiveFormatNames( record ) {\n\t\tconst { formatTypes } = this.props;\n\n\t\treturn formatTypes\n\t\t\t.map( ( { name } ) => name )\n\t\t\t.filter( ( name ) => {\n\t\t\t\treturn getActiveFormat( record, name ) !== undefined;\n\t\t\t} )\n\t\t\t.map( ( name ) => gutenbergFormatNamesToAztec[ name ] )\n\t\t\t.filter( Boolean );\n\t}\n\n\tonFormatChange( record ) {\n\t\tconst { start = 0, end = 0, activeFormats = [] } = record;\n\t\tconst changeHandlers = Object.fromEntries(\n\t\t\tObject.entries( this.props ).filter( ( [ key ] ) =>\n\t\t\t\tkey.startsWith( 'format_on_change_functions_' )\n\t\t\t)\n\t\t);\n\n\t\tObject.values( changeHandlers ).forEach( ( changeHandler ) => {\n\t\t\tchangeHandler( record.formats, record.text );\n\t\t} );\n\n\t\tthis.value = this.valueToFormat( record );\n\t\tthis.props.onChange( this.value );\n\t\tthis.setState( { activeFormats } );\n\t\tthis.props.onSelectionChange( start, end );\n\t\tthis.selectionStart = start;\n\t\tthis.selectionEnd = end;\n\n\t\tthis.onCreateUndoLevel();\n\n\t\tthis.lastAztecEventType = 'format change';\n\t}\n\n\tinsertString( record, string ) {\n\t\tif ( record && string ) {\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\tconst toInsert = insert( record, string );\n\t\t\tthis.onFormatChange( toInsert );\n\t\t}\n\t}\n\n\tonCreateUndoLevel() {\n\t\tconst { __unstableOnCreateUndoLevel: onCreateUndoLevel } = this.props;\n\t\t// If the content is the same, no level needs to be created.\n\t\tif ( this.lastHistoryValue?.toString() === this.value?.toString() ) {\n\t\t\treturn;\n\t\t}\n\n\t\tonCreateUndoLevel();\n\t\tthis.lastHistoryValue = this.value;\n\t}\n\n\t/*\n\t * Cleans up any root tags produced by aztec.\n\t * TODO: This should be removed on a later version when aztec doesn't return the top tag of the text being edited\n\t */\n\tremoveRootTagsProducedByAztec( html ) {\n\t\tlet result = this.removeRootTag( this.props.tagName, html );\n\n\t\tif ( this.props.tagsToEliminate ) {\n\t\t\tthis.props.tagsToEliminate.forEach( ( element ) => {\n\t\t\t\tresult = this.removeTag( element, result );\n\t\t\t} );\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tremoveRootTag( tag, html ) {\n\t\tconst openingTagRegexp = RegExp( '^<' + tag + '[^>]*>', 'gim' );\n\t\tconst closingTagRegexp = RegExp( '</' + tag + '>$', 'gim' );\n\n\t\treturn html\n\t\t\t.replace( openingTagRegexp, '' )\n\t\t\t.replace( closingTagRegexp, '' );\n\t}\n\n\tremoveTag( tag, html ) {\n\t\tconst openingTagRegexp = RegExp( '<' + tag + '>', 'gim' );\n\t\tconst closingTagRegexp = RegExp( '</' + tag + '>', 'gim' );\n\t\treturn html\n\t\t\t.replace( openingTagRegexp, '' )\n\t\t\t.replace( closingTagRegexp, '' );\n\t}\n\n\t/*\n\t * Handles any case where the content of the AztecRN instance has changed\n\t */\n\tonChangeFromAztec( event ) {\n\t\tif ( this.shouldDropEventFromAztec( event, 'onChange' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst contentWithoutRootTag = this.removeRootTagsProducedByAztec(\n\t\t\tevent.nativeEvent.text\n\t\t);\n\t\t// On iOS, onChange can be triggered after selection changes, even though there are no content changes.\n\t\tif ( contentWithoutRootTag === this.value?.toString() ) {\n\t\t\treturn;\n\t\t}\n\t\tthis.lastEventCount = event.nativeEvent.eventCount;\n\t\tthis.comesFromAztec = true;\n\t\tthis.firedAfterTextChanged = true; // The onChange event always fires after the fact.\n\t\tthis.onTextUpdate( event );\n\t\tthis.lastAztecEventType = 'input';\n\t}\n\n\tonTextUpdate( event ) {\n\t\tconst contentWithoutRootTag = this.removeRootTagsProducedByAztec(\n\t\t\tevent.nativeEvent.text\n\t\t);\n\n\t\tthis.debounceCreateUndoLevel();\n\t\tconst refresh = this.value?.toString() !== contentWithoutRootTag;\n\t\tthis.value = contentWithoutRootTag;\n\n\t\t// We don't want to refresh if our goal is just to create a record.\n\t\tif ( refresh ) {\n\t\t\tthis.props.onChange( contentWithoutRootTag );\n\t\t}\n\t}\n\n\t/*\n\t * Handles any case where the content of the AztecRN instance has changed in size\n\t */\n\tonContentSizeChange( contentSize ) {\n\t\tthis.setState( contentSize );\n\t\tthis.lastAztecEventType = 'content size change';\n\t}\n\n\tonKeyDown( event ) {\n\t\tif ( event.defaultPrevented ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Add stubs for conformance in downstream autocompleters logic.\n\t\tthis.customEditableOnKeyDown?.( {\n\t\t\tpreventDefault: () => undefined,\n\t\t\t...event,\n\t\t\tkey: RCTAztecView.KeyCodes[ event?.keyCode ],\n\t\t} );\n\n\t\tthis.handleDelete( event );\n\t\tthis.handleEnter( event );\n\t\tthis.handleTriggerKeyCodes( event );\n\t}\n\n\thandleEnter( event ) {\n\t\tif ( event.keyCode !== ENTER ) {\n\t\t\treturn;\n\t\t}\n\t\tconst { onEnter } = this.props;\n\n\t\tif ( ! onEnter ) {\n\t\t\treturn;\n\t\t}\n\n\t\tonEnter( {\n\t\t\tvalue: this.createRecord(),\n\t\t\tonChange: this.onFormatChange,\n\t\t\tshiftKey: event.shiftKey,\n\t\t} );\n\t\tthis.lastAztecEventType = 'input';\n\t}\n\n\thandleDelete( event ) {\n\t\tif ( this.shouldDropEventFromAztec( event, 'handleDelete' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst { keyCode } = event;\n\n\t\tif ( keyCode !== DELETE && keyCode !== BACKSPACE ) {\n\t\t\treturn;\n\t\t}\n\t\tconst isReverse = keyCode === BACKSPACE;\n\n\t\tconst { onDelete } = this.props;\n\t\tthis.lastEventCount = event.nativeEvent.eventCount;\n\t\tthis.comesFromAztec = true;\n\t\tthis.firedAfterTextChanged = event.nativeEvent.firedAfterTextChanged;\n\t\tconst value = this.createRecord();\n\t\tconst { start, end, text } = value;\n\t\tlet newValue;\n\n\t\t// Always handle full content deletion ourselves.\n\t\tif ( start === 0 && end !== 0 && end >= text.length ) {\n\t\t\tnewValue = remove( value );\n\t\t\tthis.onFormatChange( newValue );\n\t\t\tevent.preventDefault();\n\t\t\treturn;\n\t\t}\n\n\t\t// Only process delete if the key press occurs at an uncollapsed edge.\n\t\tif (\n\t\t\t! onDelete ||\n\t\t\t! isCollapsed( value ) ||\n\t\t\t( isReverse && start !== 0 ) ||\n\t\t\t( ! isReverse && end !== text.length )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tonDelete( { isReverse, value } );\n\n\t\tevent.preventDefault();\n\t\tthis.lastAztecEventType = 'input';\n\t}\n\n\thandleTriggerKeyCodes( event ) {\n\t\tconst { keyCode } = event;\n\t\tconst triggeredOption = this.suggestionOptions().find( ( option ) => {\n\t\t\tconst triggeredKeyCode = option.triggerChar.charCodeAt( 0 );\n\t\t\treturn triggeredKeyCode === keyCode;\n\t\t} );\n\n\t\tif ( triggeredOption ) {\n\t\t\tconst record = this.getRecord();\n\t\t\tconst text = getTextContent( record );\n\t\t\t// Only respond to the trigger if the selection is on the start of text or line\n\t\t\t// or if the character before is a space.\n\t\t\tconst useTrigger =\n\t\t\t\ttext.length === 0 ||\n\t\t\t\trecord.start === 0 ||\n\t\t\t\ttext.charAt( record.start - 1 ) === '\\n' ||\n\t\t\t\ttext.charAt( record.start - 1 ) === ' ';\n\n\t\t\tif ( useTrigger && triggeredOption.onClick ) {\n\t\t\t\ttriggeredOption.onClick();\n\t\t\t} else {\n\t\t\t\tthis.insertString( record, triggeredOption.triggerChar );\n\t\t\t}\n\t\t}\n\t}\n\n\tsuggestionOptions() {\n\t\tconst { areMentionsSupported, areXPostsSupported } = this.props;\n\t\tconst allOptions = [\n\t\t\t{\n\t\t\t\tsupported: areMentionsSupported,\n\t\t\t\ttitle: __( 'Insert mention' ),\n\t\t\t\tonClick: this.handleUserSuggestion,\n\t\t\t\ttriggerChar: '@',\n\t\t\t\tvalue: 'mention',\n\t\t\t\tlabel: __( 'Mention' ),\n\t\t\t\ticon: atSymbol,\n\t\t\t},\n\t\t\t{\n\t\t\t\tsupported: areXPostsSupported,\n\t\t\t\ttitle: __( 'Insert crosspost' ),\n\t\t\t\tonClick: this.handleXpostSuggestion,\n\t\t\t\ttriggerChar: '+',\n\t\t\t\tvalue: 'crosspost',\n\t\t\t\tlabel: __( 'Crosspost' ),\n\t\t\t\ticon: plus,\n\t\t\t},\n\t\t];\n\t\treturn allOptions.filter( ( op ) => op.supported );\n\t}\n\n\thandleSuggestionFunc( suggestionFunction, prefix ) {\n\t\treturn () => {\n\t\t\tconst record = this.getRecord();\n\t\t\tsuggestionFunction()\n\t\t\t\t.then( ( suggestion ) => {\n\t\t\t\t\tthis.insertString( record, `${ prefix }${ suggestion } ` );\n\t\t\t\t} )\n\t\t\t\t.catch( () => {} );\n\t\t};\n\t}\n\n\t/**\n\t * Handles a paste event from the native Aztec Wrapper.\n\t *\n\t * @param {Object} event The paste event which wraps `nativeEvent`.\n\t */\n\tonPaste( event ) {\n\t\tconst { onPaste, onChange } = this.props;\n\t\tconst { activeFormats = [] } = this.state;\n\n\t\tconst { pastedText, pastedHtml, files } = event.nativeEvent;\n\t\tconst currentRecord = this.createRecord();\n\n\t\tevent.preventDefault();\n\n\t\t// There is a selection, check if a URL is pasted.\n\t\tif ( ! isCollapsed( currentRecord ) ) {\n\t\t\tconst trimmedText = ( pastedHtml || pastedText )\n\t\t\t\t.replace( /<[^>]+>/g, '' )\n\t\t\t\t.trim();\n\n\t\t\t// A URL was pasted, turn the selection into a link.\n\t\t\tif ( isURL( trimmedText ) ) {\n\t\t\t\tconst linkedRecord = applyFormat( currentRecord, {\n\t\t\t\t\ttype: 'a',\n\t\t\t\t\tattributes: {\n\t\t\t\t\t\thref: decodeEntities( trimmedText ),\n\t\t\t\t\t},\n\t\t\t\t} );\n\t\t\t\tthis.value = this.valueToFormat( linkedRecord );\n\t\t\t\tonChange( this.value );\n\n\t\t\t\t// Allows us to ask for this information when we get a report.\n\t\t\t\twindow.console.log( 'Created link:\\n\\n', trimmedText );\n\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif ( onPaste ) {\n\t\t\tonPaste( {\n\t\t\t\tvalue: currentRecord,\n\t\t\t\tonChange: this.onFormatChange,\n\t\t\t\thtml: pastedHtml,\n\t\t\t\tplainText: pastedText,\n\t\t\t\tfiles,\n\t\t\t\tactiveFormats,\n\t\t\t} );\n\t\t}\n\t}\n\n\tonFocus() {\n\t\tthis.isTouched = true;\n\n\t\tconst { unstableOnFocus, onSelectionChange } = this.props;\n\n\t\tif ( unstableOnFocus ) {\n\t\t\tunstableOnFocus();\n\t\t}\n\n\t\t// We know for certain that on focus, the old selection is invalid. It\n\t\t// will be recalculated on `selectionchange`.\n\n\t\tonSelectionChange( this.selectionStart, this.selectionEnd );\n\n\t\tthis.lastAztecEventType = 'focus';\n\t}\n\n\tonBlur( event ) {\n\t\tthis.isTouched = false;\n\n\t\t// Check if value is up to date with latest state of native AztecView.\n\t\tif (\n\t\t\tevent.nativeEvent.text &&\n\t\t\tevent.nativeEvent.text !== this.props.value?.toString()\n\t\t) {\n\t\t\tthis.onTextUpdate( event );\n\t\t}\n\n\t\tif ( this.props.onBlur ) {\n\t\t\tthis.props.onBlur( event );\n\t\t}\n\n\t\tthis.lastAztecEventType = 'blur';\n\t}\n\n\tonSelectionChange( start, end ) {\n\t\tconst hasChanged =\n\t\t\tthis.selectionStart !== start || this.selectionEnd !== end;\n\n\t\tthis.selectionStart = start;\n\t\tthis.selectionEnd = end;\n\n\t\t// This is a manual selection change event if onChange was not triggered just before\n\t\t// and we did not just trigger a text update\n\t\t// `onChange` could be the last event and could have been triggered a long time ago so\n\t\t// this approach is not perfectly reliable.\n\t\tconst isManual =\n\t\t\tthis.lastAztecEventType !== 'input' &&\n\t\t\tthis.props.value?.toString() === this.value?.toString();\n\t\tif ( hasChanged && isManual ) {\n\t\t\tconst value = this.createRecord();\n\t\t\tconst activeFormats = getActiveFormats( value );\n\t\t\tthis.setState( { activeFormats } );\n\t\t}\n\n\t\tthis.props.onSelectionChange( start, end );\n\t}\n\n\tshouldDropEventFromAztec( event, logText ) {\n\t\tconst shouldDrop =\n\t\t\t! this.isIOS && event.nativeEvent.eventCount <= this.lastEventCount;\n\t\tif ( shouldDrop ) {\n\t\t\twindow.console.log(\n\t\t\t\t`Dropping ${ logText } from Aztec as its event counter is older than latest sent to the native side. Got ${ event.nativeEvent.eventCount } but lastEventCount is ${ this.lastEventCount }.`\n\t\t\t);\n\t\t}\n\t\treturn shouldDrop;\n\t}\n\n\t/**\n\t * Determines whether the text input should receive focus after an update.\n\t * For cases where a RichText with a value is merged with an empty one.\n\t *\n\t * @param {Object} prevProps - The previous props of the component.\n\t * @return {boolean} True if the text input should receive focus, false otherwise.\n\t */\n\tshouldFocusTextInputAfterMerge( prevProps ) {\n\t\tconst {\n\t\t\t__unstableIsSelected: isSelected,\n\t\t\tblockIsSelected,\n\t\t\tselectionStart,\n\t\t\tselectionEnd,\n\t\t\t__unstableMobileNoFocusOnMount,\n\t\t} = this.props;\n\n\t\tconst {\n\t\t\t__unstableIsSelected: prevIsSelected,\n\t\t\tblockIsSelected: prevBlockIsSelected,\n\t\t} = prevProps;\n\n\t\tconst noSelectionValues =\n\t\t\tselectionStart === undefined && selectionEnd === undefined;\n\t\tconst textInputWasNotFocused = ! prevIsSelected && ! isSelected;\n\n\t\treturn (\n\t\t\t! __unstableMobileNoFocusOnMount &&\n\t\t\tnoSelectionValues &&\n\t\t\ttextInputWasNotFocused &&\n\t\t\t! prevBlockIsSelected &&\n\t\t\tblockIsSelected\n\t\t);\n\t}\n\n\tonSelectionChangeFromAztec( start, end, text, event ) {\n\t\tif ( this.shouldDropEventFromAztec( event, 'onSelectionChange' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// `end` can be less than `start` on iOS\n\t\t// Let's fix that here so `rich-text/slice` can work properly.\n\t\tconst realStart = Math.min( start, end );\n\t\tconst realEnd = Math.max( start, end );\n\n\t\t// Check and dicsard stray event, where the text and selection is equal to the ones already cached.\n\t\tconst contentWithoutRootTag = this.removeRootTagsProducedByAztec(\n\t\t\tevent.nativeEvent.text\n\t\t);\n\t\tif (\n\t\t\tcontentWithoutRootTag === this.value?.toString() &&\n\t\t\trealStart === this.selectionStart &&\n\t\t\trealEnd === this.selectionEnd\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.comesFromAztec = true;\n\t\tthis.firedAfterTextChanged = true; // Selection change event always fires after the fact.\n\n\t\t// Update text before updating selection\n\t\t// Make sure there are changes made to the content before upgrading it upward.\n\t\tthis.onTextUpdate( event );\n\n\t\t// Aztec can send us selection change events after it has lost focus.\n\t\t// For instance the autocorrect feature will complete a partially written\n\t\t// word when resigning focus, causing a selection change event.\n\t\t// Forwarding this selection change could cause this RichText to regain\n\t\t// focus and start a focus loop.\n\t\t//\n\t\t// See https://github.com/wordpress-mobile/gutenberg-mobile/issues/1696\n\t\tif ( this.props.__unstableIsSelected ) {\n\t\t\tthis.onSelectionChange( realStart, realEnd );\n\t\t}\n\t\t// Update lastEventCount to prevent Aztec from re-rendering the content it just sent.\n\t\tthis.lastEventCount = event.nativeEvent.eventCount;\n\n\t\tthis.lastAztecEventType = 'selection change';\n\t}\n\n\tisEmpty() {\n\t\treturn isEmpty( this.formatToValue( this.props.value ) );\n\t}\n\n\tformatToValue( value ) {\n\t\tconst { preserveWhiteSpace } = this.props;\n\t\t// Handle deprecated `children` and `node` sources.\n\t\tif ( Array.isArray( value ) ) {\n\t\t\treturn create( {\n\t\t\t\thtml: childrenBlock.toHTML( value ),\n\t\t\t\tpreserveWhiteSpace,\n\t\t\t} );\n\t\t}\n\n\t\tif ( this.props.format === 'string' ) {\n\t\t\treturn create( {\n\t\t\t\thtml: value,\n\t\t\t\tpreserveWhiteSpace,\n\t\t\t} );\n\t\t}\n\n\t\t// Guard for blocks passing `null` in onSplit callbacks. May be removed\n\t\t// if onSplit is revised to not pass a `null` value.\n\t\tif ( value === null ) {\n\t\t\treturn create();\n\t\t}\n\n\t\treturn value;\n\t}\n\n\tmanipulateEventCounterToForceNativeToRefresh() {\n\t\tif ( this.isIOS ) {\n\t\t\tthis.lastEventCount = undefined;\n\t\t\treturn;\n\t\t}\n\n\t\tif ( typeof this.lastEventCount !== 'undefined' ) {\n\t\t\tthis.lastEventCount += 100; // bump by a hundred, hopefully native hasn't bombarded the JS side in the meantime.\n\t\t} // no need to bump when 'undefined' as native side won't receive the key when the value is undefined, and that will cause force updating anyway,\n\t\t// see https://github.com/WordPress/gutenberg/blob/82e578dcc75e67891c750a41a04c1e31994192fc/packages/react-native-aztec/android/src/main/java/org/wordpress/mobile/ReactNativeAztec/ReactAztecManager.java#L213-L215\n\t}\n\n\tshouldComponentUpdate( nextProps, nextState ) {\n\t\tif (\n\t\t\tnextProps.tagName !== this.props.tagName ||\n\t\t\tnextProps.reversed !== this.props.reversed ||\n\t\t\tnextProps.start !== this.props.start\n\t\t) {\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\tthis.value = undefined;\n\t\t\treturn true;\n\t\t}\n\n\t\t// TODO: Please re-introduce the check to avoid updating the content right after an `onChange` call.\n\t\t// It was removed in https://github.com/WordPress/gutenberg/pull/12417 to fix undo/redo problem.\n\n\t\t// If the component is changed React side (undo/redo/merging/splitting/custom text actions)\n\t\t// we need to make sure the native is updated as well.\n\n\t\t// Also, don't trust the \"this.lastContent\" as on Android, incomplete text events arrive\n\t\t// with only some of the text, while the virtual keyboard's suggestion system does its magic.\n\t\t// ** compare with this.lastContent for optimizing performance by not forcing Aztec with text it already has\n\t\t// , but compare with props.value to not lose \"half word\" text because of Android virtual keyb autosuggestion behavior\n\t\tif (\n\t\t\ttypeof nextProps.value !== 'undefined' &&\n\t\t\ttypeof this.props.value !== 'undefined' &&\n\t\t\t( ! this.comesFromAztec || ! this.firedAfterTextChanged ) &&\n\t\t\tnextProps.value?.toString() !== this.props.value?.toString()\n\t\t) {\n\t\t\t// Gutenberg seems to try to mirror the caret state even on events that only change the content so,\n\t\t\t// let's force caret update if state has selection set.\n\t\t\tif (\n\t\t\t\ttypeof nextProps.selectionStart !== 'undefined' &&\n\t\t\t\ttypeof nextProps.selectionEnd !== 'undefined'\n\t\t\t) {\n\t\t\t\tthis.needsSelectionUpdate = true;\n\t\t\t}\n\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t}\n\n\t\tif ( ! this.comesFromAztec ) {\n\t\t\tif (\n\t\t\t\ttypeof nextProps.selectionStart !== 'undefined' &&\n\t\t\t\ttypeof nextProps.selectionEnd !== 'undefined' &&\n\t\t\t\tnextProps.selectionStart !== this.props.selectionStart &&\n\t\t\t\tnextProps.selectionStart !== this.selectionStart &&\n\t\t\t\tnextProps.__unstableIsSelected\n\t\t\t) {\n\t\t\t\tthis.needsSelectionUpdate = true;\n\t\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\t}\n\n\t\t\t// For font size changes from a prop value a force refresh\n\t\t\t// is needed without the selection update.\n\t\t\tif ( nextProps?.fontSize !== this.props?.fontSize ) {\n\t\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\t}\n\n\t\t\tif (\n\t\t\t\t( nextProps?.style?.fontSize !== this.props?.style?.fontSize &&\n\t\t\t\t\tnextState.currentFontSize !==\n\t\t\t\t\t\tthis.state.currentFontSize ) ||\n\t\t\t\tnextState.currentFontSize !== this.state.currentFontSize ||\n\t\t\t\tnextProps?.style?.lineHeight !== this.props?.style?.lineHeight\n\t\t\t) {\n\t\t\t\tthis.needsSelectionUpdate = true;\n\t\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tcomponentDidMount() {\n\t\t// Request focus if wrapping block is selected and parent hasn't inhibited the focus request. This method of focusing\n\t\t// is trying to implement the web-side counterpart of BlockList's `focusTabbable` where the BlockList is focusing an\n\t\t// inputbox by searching the DOM. We don't have the DOM in RN so, using the combination of blockIsSelected and __unstableMobileNoFocusOnMount\n\t\t// to determine if we should focus the RichText.\n\t\tif (\n\t\t\tthis.props.blockIsSelected &&\n\t\t\t! this.props.__unstableMobileNoFocusOnMount\n\t\t) {\n\t\t\tthis._editor.focus();\n\t\t\tthis.onSelectionChange(\n\t\t\t\tthis.props.selectionStart || 0,\n\t\t\t\tthis.props.selectionEnd || 0\n\t\t\t);\n\t\t}\n\t}\n\n\tcomponentDidUpdate( prevProps ) {\n\t\tconst { style, tagName } = this.props;\n\t\tconst { currentFontSize } = this.state;\n\n\t\tif ( this.props.value?.toString() !== this.value?.toString() ) {\n\t\t\tthis.value = this.props.value;\n\t\t}\n\t\tconst { __unstableIsSelected: prevIsSelected } = prevProps;\n\t\tconst { __unstableIsSelected: isSelected } = this.props;\n\n\t\tif ( isSelected && ! prevIsSelected ) {\n\t\t\tthis._editor.focus();\n\t\t\t// Update selection props explicitly when component is selected as Aztec won't call onSelectionChange\n\t\t\t// if its internal value hasn't change. When created, default value is 0, 0.\n\t\t\tthis.onSelectionChange(\n\t\t\t\tthis.props.selectionStart || 0,\n\t\t\t\tthis.props.selectionEnd || 0\n\t\t\t);\n\t\t} else if ( this.shouldFocusTextInputAfterMerge( prevProps ) ) {\n\t\t\t// Since this is happening when merging blocks, the selection should be at the last character position.\n\t\t\t// As a fallback the internal selectionEnd value is used.\n\t\t\tconst lastCharacterPosition =\n\t\t\t\tthis.value?.toString().length ?? this.selectionEnd;\n\t\t\tthis._editor.focus();\n\t\t\tthis.props.onSelectionChange(\n\t\t\t\tlastCharacterPosition,\n\t\t\t\tlastCharacterPosition\n\t\t\t);\n\t\t} else if ( ! isSelected && prevIsSelected ) {\n\t\t\tthis._editor.blur();\n\t\t}\n\n\t\t// For font size values changes from the font size picker\n\t\t// we compare previous values to refresh the selected font size,\n\t\t// this is also used when the tag name changes\n\t\t// e.g Heading block and a level change like h1->h2.\n\t\tconst currentFontSizeStyle = this.getParsedFontSize( style?.fontSize );\n\t\tconst prevFontSizeStyle = this.getParsedFontSize(\n\t\t\tprevProps?.style?.fontSize\n\t\t);\n\t\tconst isDifferentTag = prevProps.tagName !== tagName;\n\t\tif (\n\t\t\t( currentFontSize &&\n\t\t\t\t( currentFontSizeStyle || prevFontSizeStyle ) &&\n\t\t\t\tcurrentFontSizeStyle !== currentFontSize ) ||\n\t\t\tisDifferentTag\n\t\t) {\n\t\t\tthis.setState( {\n\t\t\t\tcurrentFontSize: this.getFontSize( this.props ),\n\t\t\t} );\n\t\t}\n\t}\n\n\tgetHtmlToRender( record, tagName ) {\n\t\t// Save back to HTML from React tree.\n\t\tlet value = this.valueToFormat( record );\n\n\t\tif ( value === undefined ) {\n\t\t\tthis.manipulateEventCounterToForceNativeToRefresh(); // force a refresh on the native side\n\t\t\tvalue = '';\n\t\t}\n\t\t// On android if content is empty we need to send no content or else the placeholder will not show.\n\t\tif (\n\t\t\t! this.isIOS &&\n\t\t\t( value?.toString() === '' ||\n\t\t\t\tvalue?.toString() === EMPTY_PARAGRAPH_TAGS )\n\t\t) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif ( tagName ) {\n\t\t\tlet extraAttributes = ``;\n\t\t\tif ( tagName === `ol` ) {\n\t\t\t\tif ( this.props.reversed ) {\n\t\t\t\t\textraAttributes += ` reversed`;\n\t\t\t\t}\n\t\t\t\tif ( this.props.start ) {\n\t\t\t\t\textraAttributes += ` start=${ this.props.start }`;\n\t\t\t\t}\n\t\t\t}\n\t\t\tvalue = `<${ tagName }${ extraAttributes }>${ value }</${ tagName }>`;\n\t\t}\n\t\treturn value;\n\t}\n\n\tgetEditableProps() {\n\t\treturn {\n\t\t\t// Overridable props.\n\t\t\tstyle: {},\n\t\t\tclassName: 'rich-text',\n\t\t\tonKeyDown: () => null,\n\t\t};\n\t}\n\n\tgetParsedFontSize( fontSize ) {\n\t\tconst { height, width } = Dimensions.get( 'window' );\n\t\tconst cssUnitOptions = { height, width, fontSize: DEFAULT_FONT_SIZE };\n\n\t\tif ( ! fontSize ) {\n\t\t\treturn fontSize;\n\t\t}\n\n\t\tconst selectedPxValue =\n\t\t\tgetPxFromCssUnit( fontSize, cssUnitOptions ) ?? DEFAULT_FONT_SIZE;\n\n\t\treturn parseFloat( selectedPxValue );\n\t}\n\n\tgetFontSize( props ) {\n\t\tconst { baseGlobalStyles, tagName, fontSize, style } = props;\n\t\tconst tagNameFontSize =\n\t\t\tbaseGlobalStyles?.elements?.[ tagName ]?.typography?.fontSize;\n\n\t\tlet newFontSize = DEFAULT_FONT_SIZE;\n\n\t\t// Disables line-height rendering for pre elements until we fix some issues with AztecAndroid.\n\t\tif ( tagName === 'pre' && ! this.isIOS ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// For block-based themes, get the default editor font size.\n\t\tif ( baseGlobalStyles?.typography?.fontSize && tagName === 'p' ) {\n\t\t\tnewFontSize = baseGlobalStyles?.typography?.fontSize;\n\t\t}\n\n\t\t// For block-based themes, get the default element font size\n\t\t// e.g h1, h2.\n\t\tif ( tagNameFontSize ) {\n\t\t\tnewFontSize = tagNameFontSize;\n\t\t}\n\n\t\t// For font size values provided from the styles,\n\t\t// usually from values set from the font size picker.\n\t\tif ( style?.fontSize ) {\n\t\t\tnewFontSize = style.fontSize;\n\t\t}\n\n\t\t// Fall-back to a font size provided from its props (if there's any)\n\t\t// and there are no other default values to use.\n\t\tif ( fontSize && ! tagNameFontSize && ! style?.fontSize ) {\n\t\t\tnewFontSize = fontSize;\n\t\t}\n\n\t\t// We need to always convert to px units because the selected value\n\t\t// could be coming from the web where it could be stored as a different unit.\n\t\tconst selectedPxValue = this.getParsedFontSize( newFontSize );\n\n\t\treturn selectedPxValue;\n\t}\n\n\tgetLineHeight() {\n\t\tconst { baseGlobalStyles, tagName, lineHeight, style } = this.props;\n\t\tconst tagNameLineHeight =\n\t\t\tbaseGlobalStyles?.elements?.[ tagName ]?.typography?.lineHeight;\n\t\tlet newLineHeight;\n\n\t\t// Disables line-height rendering for pre elements until we fix some issues with AztecAndroid.\n\t\tif ( tagName === 'pre' && ! this.isIOS ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\tif ( ! this.getIsBlockBasedTheme() ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// For block-based themes, get the default editor line height.\n\t\tif ( baseGlobalStyles?.typography?.lineHeight && tagName === 'p' ) {\n\t\t\tnewLineHeight = parseFloat(\n\t\t\t\tbaseGlobalStyles?.typography?.lineHeight\n\t\t\t);\n\t\t}\n\n\t\t// For block-based themes, get the default element line height\n\t\t// e.g h1, h2.\n\t\tif ( tagNameLineHeight ) {\n\t\t\tnewLineHeight = parseFloat( tagNameLineHeight );\n\t\t}\n\n\t\t// For line height values provided from the styles,\n\t\t// usually from values set from the line height picker.\n\t\tif ( style?.lineHeight ) {\n\t\t\tnewLineHeight = parseFloat( style.lineHeight );\n\t\t}\n\n\t\t// Fall-back to a line height provided from its props (if there's any)\n\t\t// and there are no other default values to use.\n\t\tif ( lineHeight && ! tagNameLineHeight && ! style?.lineHeight ) {\n\t\t\tnewLineHeight = lineHeight;\n\t\t}\n\n\t\t// Check the final value is not over the minimum supported value.\n\t\tif ( newLineHeight && newLineHeight < MIN_LINE_HEIGHT ) {\n\t\t\tnewLineHeight = MIN_LINE_HEIGHT;\n\t\t}\n\n\t\t// Until we parse CSS values correctly, avoid passing NaN values to Aztec\n\t\tif ( isNaN( newLineHeight ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\treturn newLineHeight;\n\t}\n\n\tgetIsBlockBasedTheme() {\n\t\tconst { baseGlobalStyles } = this.props;\n\n\t\treturn (\n\t\t\tbaseGlobalStyles && Object.entries( baseGlobalStyles ).length !== 0\n\t\t);\n\t}\n\n\tgetBlockUseDefaultFont() {\n\t\t// For block-based themes it enables using the defaultFont\n\t\t// in Aztec for iOS so it allows customizing the font size\n\t\t// for the Preformatted/Code and Heading blocks.\n\t\tif ( ! this.isIOS ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst { tagName } = this.props;\n\t\tconst isBlockBasedTheme = this.getIsBlockBasedTheme();\n\t\tconst tagsToMatch = /pre|h([1-6])$/gm;\n\n\t\treturn isBlockBasedTheme && tagsToMatch.test( tagName );\n\t}\n\n\tgetLinkTextColor( defaultColor ) {\n\t\tconst { style } = this.props;\n\t\tconst customColor = style?.linkColor && colord( style.linkColor );\n\n\t\treturn customColor && customColor.isValid()\n\t\t\t? customColor.toHex()\n\t\t\t: defaultColor;\n\t}\n\n\tgetPlaceholderTextColor() {\n\t\tconst {\n\t\t\tbaseGlobalStyles,\n\t\t\tgetStylesFromColorScheme,\n\t\t\tplaceholderTextColor,\n\t\t\tstyle,\n\t\t} = this.props;\n\n\t\t// Default placeholder text color.\n\t\tconst placeholderStyle = getStylesFromColorScheme(\n\t\t\tstyles.richTextPlaceholder,\n\t\t\tstyles.richTextPlaceholderDark\n\t\t);\n\t\tconst { color: defaultPlaceholderTextColor } = placeholderStyle;\n\t\t// Custom 63% opacity for theme and inherited colors.\n\t\tconst placeholderOpacity = 'A1';\n\n\t\t// Determine inherited placeholder color if available.\n\t\tconst inheritPlaceholderColor = style?.placeholderColor\n\t\t\t? `${ style.placeholderColor }${ placeholderOpacity }`\n\t\t\t: undefined;\n\n\t\t// If using block-based themes, derive the placeholder color from global styles.\n\t\tconst globalStylesPlaceholderColor = baseGlobalStyles?.color?.text\n\t\t\t? `${ baseGlobalStyles.color.text }${ placeholderOpacity }`\n\t\t\t: undefined;\n\n\t\treturn (\n\t\t\tinheritPlaceholderColor ??\n\t\t\tplaceholderTextColor ??\n\t\t\tglobalStylesPlaceholderColor ??\n\t\t\tdefaultPlaceholderTextColor\n\t\t);\n\t}\n\n\trender() {\n\t\tconst {\n\t\t\ttagName,\n\t\t\tstyle,\n\t\t\t__unstableIsSelected: isSelected,\n\t\t\tchildren,\n\t\t\tgetStylesFromColorScheme,\n\t\t\tminWidth,\n\t\t\tmaxWidth,\n\t\t\tformatTypes,\n\t\t\tparentBlockStyles,\n\t\t\taccessibilityLabel,\n\t\t\tdisableEditingMenu = false,\n\t\t\tbaseGlobalStyles,\n\t\t\tselectionStart,\n\t\t\tselectionEnd,\n\t\t\tdisableSuggestions,\n\t\t\tcontainerWidth,\n\t\t} = this.props;\n\t\tconst { currentFontSize } = this.state;\n\n\t\tconst record = this.getRecord();\n\t\tconst html = this.getHtmlToRender( record, tagName );\n\t\tconst editableProps = this.getEditableProps();\n\t\tconst blockUseDefaultFont = this.getBlockUseDefaultFont();\n\n\t\tconst fontSize = currentFontSize;\n\t\tconst lineHeight = this.getLineHeight();\n\n\t\tconst {\n\t\t\tcolor: defaultColor,\n\t\t\ttextDecorationColor: defaultTextDecorationColor,\n\t\t\tfontFamily: defaultFontFamily,\n\t\t} = getStylesFromColorScheme( styles.richText, styles.richTextDark );\n\t\tconst linkTextColor = this.getLinkTextColor(\n\t\t\tdefaultTextDecorationColor\n\t\t);\n\n\t\tconst currentSelectionStart = selectionStart ?? 0;\n\t\tconst currentSelectionEnd = selectionEnd ?? 0;\n\t\tlet selection = null;\n\t\tif ( this.needsSelectionUpdate ) {\n\t\t\tthis.needsSelectionUpdate = false;\n\t\t\tselection = {\n\t\t\t\tstart: currentSelectionStart,\n\t\t\t\tend: currentSelectionEnd,\n\t\t\t};\n\n\t\t\t// On AztecAndroid, setting the caret to an out-of-bounds position will crash the editor so, let's check for some cases.\n\t\t\tif ( ! this.isIOS ) {\n\t\t\t\t// The following regular expression is used in Aztec here:\n\t\t\t\t// https://github.com/wordpress-mobile/AztecEditor-Android/blob/b1fad439d56fa6d4aa0b78526fef355c59d00dd3/aztec/src/main/kotlin/org/wordpress/aztec/AztecParser.kt#L656\n\t\t\t\tconst brBeforeParaMatches = html.match( /(<br>)+<\\/p>$/g );\n\t\t\t\tif ( brBeforeParaMatches ) {\n\t\t\t\t\tconsole.warn(\n\t\t\t\t\t\t'Oops, BR tag(s) at the end of content. Aztec will remove them, adapting the selection...'\n\t\t\t\t\t);\n\t\t\t\t\tconst count = (\n\t\t\t\t\t\tbrBeforeParaMatches[ 0 ].match( /br/g ) || []\n\t\t\t\t\t).length;\n\t\t\t\t\tif ( count > 0 ) {\n\t\t\t\t\t\tlet newSelectionStart = currentSelectionStart - count;\n\t\t\t\t\t\tif ( newSelectionStart < 0 ) {\n\t\t\t\t\t\t\tnewSelectionStart = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlet newSelectionEnd = currentSelectionEnd - count;\n\t\t\t\t\t\tif ( newSelectionEnd < 0 ) {\n\t\t\t\t\t\t\tnewSelectionEnd = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tselection = {\n\t\t\t\t\t\t\tstart: newSelectionStart,\n\t\t\t\t\t\t\tend: newSelectionEnd,\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\n\t\tif ( this.comesFromAztec ) {\n\t\t\tthis.comesFromAztec = false;\n\t\t\tthis.firedAfterTextChanged = false;\n\t\t}\n\n\t\t// Logic below assures that `RichText` width will always have equal value when container is almost fully filled.\n\t\tconst width =\n\t\t\tmaxWidth && this.state.width && maxWidth - this.state.width < 10\n\t\t\t\t? maxWidth\n\t\t\t\t: this.state.width;\n\t\tconst containerStyles = [\n\t\t\tstyle?.padding &&\n\t\t\t\tstyle?.backgroundColor && {\n\t\t\t\t\tpadding: style.padding,\n\t\t\t\t\tbackgroundColor: style.backgroundColor,\n\t\t\t\t},\n\t\t\tcontainerWidth && {\n\t\t\t\twidth: containerWidth,\n\t\t\t},\n\t\t];\n\n\t\tconst defaultSelectionColor = getStylesFromColorScheme(\n\t\t\tstyles[ 'rich-text-selection' ],\n\t\t\tstyles[ 'rich-text-selection--dark' ]\n\t\t).color;\n\t\tconst selectionColor = getSelectionColor(\n\t\t\tthis.props.selectionColor,\n\t\t\tdefaultSelectionColor,\n\t\t\tbaseGlobalStyles,\n\t\t\tthis.getIsBlockBasedTheme()\n\t\t);\n\n\t\tconst EditableView = ( props ) => {\n\t\t\tthis.customEditableOnKeyDown = props?.onKeyDown;\n\n\t\t\treturn <></>;\n\t\t};\n\n\t\treturn (\n\t\t\t<View style={ containerStyles }>\n\t\t\t\t{ children &&\n\t\t\t\t\tchildren( {\n\t\t\t\t\t\tisSelected,\n\t\t\t\t\t\tvalue: record,\n\t\t\t\t\t\tonChange: this.onFormatChange,\n\t\t\t\t\t\tonFocus: () => {},\n\t\t\t\t\t\teditableProps,\n\t\t\t\t\t\teditableTagName: EditableView,\n\t\t\t\t\t} ) }\n\t\t\t\t<RCTAztecView\n\t\t\t\t\taccessibilityLabel={ accessibilityLabel }\n\t\t\t\t\tref={ ( ref ) => {\n\t\t\t\t\t\tthis._editor = ref;\n\n\t\t\t\t\t\tif ( this.props.setRef ) {\n\t\t\t\t\t\t\tthis.props.setRef( ref );\n\t\t\t\t\t\t}\n\t\t\t\t\t} }\n\t\t\t\t\tstyle={ {\n\t\t\t\t\t\tbackgroundColor: styles.richText.backgroundColor,\n\t\t\t\t\t\t...style,\n\t\t\t\t\t\t...( this.isIOS && minWidth && maxWidth\n\t\t\t\t\t\t\t? { width }\n\t\t\t\t\t\t\t: { maxWidth } ),\n\t\t\t\t\t\tminHeight: this.state.height,\n\t\t\t\t\t} }\n\t\t\t\t\tblockUseDefaultFont={ blockUseDefaultFont }\n\t\t\t\t\ttext={ {\n\t\t\t\t\t\ttext: html,\n\t\t\t\t\t\teventCount: this.lastEventCount,\n\t\t\t\t\t\tselection,\n\t\t\t\t\t\tlinkTextColor,\n\t\t\t\t\t\ttag: tagName,\n\t\t\t\t\t} }\n\t\t\t\t\tplaceholder={ this.props.placeholder }\n\t\t\t\t\tplaceholderTextColor={ this.getPlaceholderTextColor() }\n\t\t\t\t\tdeleteEnter={ this.props.deleteEnter }\n\t\t\t\t\tonChange={ this.onChangeFromAztec }\n\t\t\t\t\tonFocus={ this.onFocus }\n\t\t\t\t\tonBlur={ this.onBlur }\n\t\t\t\t\tonKeyDown={ this.onKeyDown }\n\t\t\t\t\ttriggerKeyCodes={\n\t\t\t\t\t\tdisableEditingMenu\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: this.suggestionOptions().map(\n\t\t\t\t\t\t\t\t\t( op ) => op.triggerChar\n\t\t\t\t\t\t\t )\n\t\t\t\t\t}\n\t\t\t\t\tonPaste={ this.onPaste }\n\t\t\t\t\tactiveFormats={ this.getActiveFormatNames( record ) }\n\t\t\t\t\tonContentSizeChange={ this.onContentSizeChange }\n\t\t\t\t\tonSelectionChange={ this.onSelectionChangeFromAztec }\n\t\t\t\t\tblockType={ { tag: tagName } }\n\t\t\t\t\tcolor={\n\t\t\t\t\t\t( style && style.color ) ||\n\t\t\t\t\t\t( parentBlockStyles && parentBlockStyles.color ) ||\n\t\t\t\t\t\t( baseGlobalStyles && baseGlobalStyles?.color?.text ) ||\n\t\t\t\t\t\tdefaultColor\n\t\t\t\t\t}\n\t\t\t\t\tmaxImagesWidth={ 200 }\n\t\t\t\t\tfontFamily={ this.props.fontFamily || defaultFontFamily }\n\t\t\t\t\tfontSize={ fontSize }\n\t\t\t\t\tlineHeight={ lineHeight }\n\t\t\t\t\tfontWeight={ this.props.fontWeight }\n\t\t\t\t\tfontStyle={ this.props.fontStyle }\n\t\t\t\t\tdisableEditingMenu={ disableEditingMenu }\n\t\t\t\t\tisMultiline={ false }\n\t\t\t\t\ttextAlign={ this.props.textAlign }\n\t\t\t\t\t{ ...( this.isIOS ? { maxWidth } : {} ) }\n\t\t\t\t\tminWidth={ minWidth }\n\t\t\t\t\tid={ this.props.id }\n\t\t\t\t\tselectionColor={ selectionColor }\n\t\t\t\t\tdisableAutocorrection={ this.props.disableAutocorrection }\n\t\t\t\t/>\n\t\t\t\t{ isSelected && (\n\t\t\t\t\t<>\n\t\t\t\t\t\t<FormatEdit\n\t\t\t\t\t\t\tforwardedRef={ this._editor }\n\t\t\t\t\t\t\tformatTypes={ formatTypes }\n\t\t\t\t\t\t\tvalue={ record }\n\t\t\t\t\t\t\tonChange={ this.onFormatChange }\n\t\t\t\t\t\t\tonFocus={ () => {} }\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t{ ! disableSuggestions && (\n\t\t\t\t\t\t\t<BlockFormatControls>\n\t\t\t\t\t\t\t\t<ToolbarButtonWithOptions\n\t\t\t\t\t\t\t\t\toptions={ this.suggestionOptions() }\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</BlockFormatControls>\n\t\t\t\t\t\t) }\n\t\t\t\t\t</>\n\t\t\t\t) }\n\t\t\t</View>\n\t\t);\n\t}\n}\n\nRichText.defaultProps = {\n\tformat: 'string',\n\tvalue: '',\n\ttagName: 'div',\n};\n\nconst withFormatTypes = ( WrappedComponent ) => ( props ) => {\n\tconst {\n\t\tclientId,\n\t\tidentifier,\n\t\twithoutInteractiveFormatting,\n\t\tallowedFormats,\n\t} = props;\n\tconst { formatTypes } = useFormatTypes( {\n\t\tclientId,\n\t\tidentifier,\n\t\twithoutInteractiveFormatting,\n\t\tallowedFormats,\n\t} );\n\n\treturn <WrappedComponent { ...props } formatTypes={ formatTypes } />;\n};\n\nexport default compose( [\n\twithSelect( ( select, { clientId } ) => {\n\t\tconst { getBlockParents, getBlock, getSettings } =\n\t\t\tselect( 'core/block-editor' );\n\t\tconst parents = getBlockParents( clientId, true );\n\t\tconst parentBlock = parents ? getBlock( parents[ 0 ] ) : undefined;\n\t\tconst parentBlockStyles = parentBlock?.attributes?.childrenStyles;\n\n\t\tconst settings = getSettings();\n\t\tconst baseGlobalStyles = settings?.__experimentalGlobalStylesBaseStyles;\n\n\t\tconst colorPalettes = settings?.__experimentalFeatures?.color?.palette;\n\t\tconst colorPalette = colorPalettes\n\t\t\t? flatColorPalettes( colorPalettes )\n\t\t\t: settings?.colors;\n\n\t\treturn {\n\t\t\tareMentionsSupported: settings?.capabilities?.mentions === true,\n\t\t\tareXPostsSupported: settings?.capabilities?.xposts === true,\n\t\t\tparentBlockStyles,\n\t\t\tbaseGlobalStyles,\n\t\t\tcolorPalette,\n\t\t};\n\t} ),\n\twithPreferredColorScheme,\n\twithFormatTypes,\n] )( RichText );\n"],"mappings":"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"}
@@ -63,6 +63,8 @@ function getDropTargetPosition(blocksData, position, orientation = 'vertical', o
63
63
  let nearestIndex = 0;
64
64
  let insertPosition = 'before';
65
65
  let minDistance = Infinity;
66
+ let targetBlockIndex = null;
67
+ let nearestSide = 'right';
66
68
  const {
67
69
  dropZoneElement,
68
70
  parentBlockOrientation,
@@ -108,13 +110,26 @@ function getDropTargetPosition(blocksData, position, orientation = 'vertical', o
108
110
  blocksData.forEach(({
109
111
  isUnmodifiedDefaultBlock,
110
112
  getBoundingClientRect,
111
- blockIndex
113
+ blockIndex,
114
+ blockOrientation
112
115
  }) => {
113
116
  const rect = getBoundingClientRect();
114
117
  let [distance, edge] = (0, _math.getDistanceToNearestEdge)(position, rect, allowedEdges);
118
+ // If the the point is close to a side, prioritize that side.
119
+ const [sideDistance, sideEdge] = (0, _math.getDistanceToNearestEdge)(position, rect, ['left', 'right']);
120
+ const isPointInsideRect = (0, _math.isPointContainedByRect)(position, rect);
121
+
115
122
  // Prioritize the element if the point is inside of an unmodified default block.
116
- if (isUnmodifiedDefaultBlock && (0, _math.isPointContainedByRect)(position, rect)) {
123
+ if (isUnmodifiedDefaultBlock && isPointInsideRect) {
117
124
  distance = 0;
125
+ } else if (orientation === 'vertical' && blockOrientation !== 'horizontal' && (isPointInsideRect && sideDistance < THRESHOLD_DISTANCE || !isPointInsideRect && (0, _math.isPointWithinTopAndBottomBoundariesOfRect)(position, rect))) {
126
+ /**
127
+ * This condition should only apply when the layout is vertical (otherwise there's
128
+ * no need to create a Row) and dropzones should only activate when the block is
129
+ * either within and close to the sides of the target block or on its outer sides.
130
+ */
131
+ targetBlockIndex = blockIndex;
132
+ nearestSide = sideEdge;
118
133
  }
119
134
  if (distance < minDistance) {
120
135
  // Where the dropped block will be inserted on the nearest block.
@@ -129,6 +144,10 @@ function getDropTargetPosition(blocksData, position, orientation = 'vertical', o
129
144
  const isNearestBlockUnmodifiedDefaultBlock = !!blocksData[nearestIndex]?.isUnmodifiedDefaultBlock;
130
145
  const isAdjacentBlockUnmodifiedDefaultBlock = !!blocksData[adjacentIndex]?.isUnmodifiedDefaultBlock;
131
146
 
147
+ // If the target index is set then group with the block at that index.
148
+ if (targetBlockIndex !== null) {
149
+ return [targetBlockIndex, 'group', nearestSide];
150
+ }
132
151
  // If both blocks are not unmodified default blocks then just insert between them.
133
152
  if (!isNearestBlockUnmodifiedDefaultBlock && !isAdjacentBlockUnmodifiedDefaultBlock) {
134
153
  // If the user is dropping to the trailing edge of the block
@@ -215,7 +234,8 @@ function useBlockDropZone({
215
234
  hideInsertionPoint
216
235
  } = (0, _data.useDispatch)(_store.store);
217
236
  const onBlockDrop = (0, _useOnBlockDrop.default)(dropTarget.operation === 'before' || dropTarget.operation === 'after' ? parentBlockClientId : targetRootClientId, dropTarget.index, {
218
- operation: dropTarget.operation
237
+ operation: dropTarget.operation,
238
+ nearestSide: dropTarget.nearestSide
219
239
  });
220
240
  const throttled = (0, _compose.useThrottle)((0, _element.useCallback)((event, ownerDocument) => {
221
241
  const allowedBlocks = getAllowedBlocks(targetRootClientId);
@@ -245,10 +265,11 @@ function useBlockDropZone({
245
265
  return {
246
266
  isUnmodifiedDefaultBlock: (0, _blocks.isUnmodifiedDefaultBlock)(block),
247
267
  getBoundingClientRect: () => ownerDocument.getElementById(`block-${clientId}`).getBoundingClientRect(),
248
- blockIndex: getBlockIndex(clientId)
268
+ blockIndex: getBlockIndex(clientId),
269
+ blockOrientation: getBlockListSettings(clientId)?.orientation
249
270
  };
250
271
  });
251
- const [targetIndex, operation] = getDropTargetPosition(blocksData, {
272
+ const [targetIndex, operation, nearestSide] = getDropTargetPosition(blocksData, {
252
273
  x: event.clientX,
253
274
  y: event.clientY
254
275
  }, getBlockListSettings(targetRootClientId)?.orientation, {
@@ -260,11 +281,13 @@ function useBlockDropZone({
260
281
  registry.batch(() => {
261
282
  setDropTarget({
262
283
  index: targetIndex,
263
- operation
284
+ operation,
285
+ nearestSide
264
286
  });
265
287
  const insertionPointClientId = ['before', 'after'].includes(operation) ? parentBlockClientId : targetRootClientId;
266
288
  showInsertionPoint(insertionPointClientId, targetIndex, {
267
- operation
289
+ operation,
290
+ nearestSide
268
291
  });
269
292
  });
270
293
  }, [getAllowedBlocks, targetRootClientId, getBlockNamesByClientId, getDraggedBlockClientIds, getBlockType, getBlocks, getBlockListSettings, dropZoneElement, parentBlockClientId, getBlockIndex, registry, showInsertionPoint]), 200);