@secretstache/wordpress-gutenberg 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/helpers.js +74 -4
package/package.json
CHANGED
package/src/utils/helpers.js
CHANGED
@@ -2,7 +2,17 @@ import { filters } from '@wordpress/hooks';
|
|
2
2
|
import apiFetch from '@wordpress/api-fetch';
|
3
3
|
import slugify from 'slugify';
|
4
4
|
import classNames from 'classnames';
|
5
|
+
import { select, subscribe } from '@wordpress/data';
|
6
|
+
import { getBlockType, unregisterBlockType } from '@wordpress/blocks';
|
5
7
|
|
8
|
+
/**
|
9
|
+
* Loads select options by fetching posts from WordPress REST API.
|
10
|
+
* @async
|
11
|
+
* @param {string} inputValue - Search term to filter posts
|
12
|
+
* @param {string} postType - WordPress post type to query
|
13
|
+
* @param {Function|null} [mapper=null] - Optional function to transform API response items
|
14
|
+
* @returns {Promise<Array<{value: number, label: string}>>} Array of select options
|
15
|
+
*/
|
6
16
|
export const loadSelectOptions = async (inputValue, postType, mapper = null) => {
|
7
17
|
const response = await apiFetch({
|
8
18
|
path: `/wp/v2/${postType}?search=${encodeURIComponent(inputValue)}`,
|
@@ -24,12 +34,22 @@ export const loadSelectOptions = async (inputValue, postType, mapper = null) =>
|
|
24
34
|
}
|
25
35
|
};
|
26
36
|
|
37
|
+
/**
|
38
|
+
* Converts a string to a URL-friendly slug.
|
39
|
+
* @param {string} name - String to convert to slug
|
40
|
+
* @returns {string} URL-friendly slug in lowercase with hyphens
|
41
|
+
*/
|
27
42
|
export const getSlug = (name) => slugify(name, {
|
28
43
|
replacement: '-',
|
29
44
|
lower: true,
|
30
45
|
strict: true,
|
31
46
|
});
|
32
47
|
|
48
|
+
/**
|
49
|
+
* Cleans SVG string by removing XML declaration and extra whitespace.
|
50
|
+
* @param {string} svgString - Raw SVG string
|
51
|
+
* @returns {string} Cleaned SVG string
|
52
|
+
*/
|
33
53
|
export const cleanSvgString = (svgString) => {
|
34
54
|
if (svgString.startsWith('<?xml')) {
|
35
55
|
const endOfXml = svgString.indexOf('?>');
|
@@ -44,9 +64,20 @@ export const cleanSvgString = (svgString) => {
|
|
44
64
|
return svgString;
|
45
65
|
};
|
46
66
|
|
47
|
-
|
48
|
-
|
67
|
+
/**
|
68
|
+
* Fetches and processes image data, handling both SVG and regular images.
|
69
|
+
* @async
|
70
|
+
* @param {Object} mediaData - WordPress media object
|
71
|
+
* @param {string} mediaData.mime - Media MIME type
|
72
|
+
* @param {string} mediaData.mime_type - Alternative MIME type property
|
73
|
+
* @param {string} mediaData.url - Media URL
|
74
|
+
* @param {number} mediaData.width - Image width
|
75
|
+
* @param {number} mediaData.height - Image height
|
76
|
+
* @returns {Promise<{isSvg: boolean, imageUrl: string|null, svgCode: string|null, width: number, height: number}>}
|
77
|
+
*/
|
49
78
|
export const getImage = async (mediaData) => {
|
79
|
+
const SVG_MIME_TYPE = 'image/svg+xml';
|
80
|
+
|
50
81
|
const isSvg = mediaData?.mime === SVG_MIME_TYPE || mediaData?.mime_type === SVG_MIME_TYPE;
|
51
82
|
const imagePayload = {
|
52
83
|
isSvg,
|
@@ -65,6 +96,11 @@ export const getImage = async (mediaData) => {
|
|
65
96
|
return imagePayload;
|
66
97
|
};
|
67
98
|
|
99
|
+
/**
|
100
|
+
* Formats a phone number string into XXX-XXX-XXXX format.
|
101
|
+
* @param {string} phone - Phone number starting with '+1' followed by 10 digits
|
102
|
+
* @returns {string} Formatted phone number or empty string if invalid
|
103
|
+
*/
|
68
104
|
export const getPhoneNumber = (phone) => {
|
69
105
|
if (!phone) return '';
|
70
106
|
|
@@ -80,6 +116,16 @@ export const getPhoneNumber = (phone) => {
|
|
80
116
|
return formatted;
|
81
117
|
};
|
82
118
|
|
119
|
+
/**
|
120
|
+
* Generates a formatted address string from location components.
|
121
|
+
* @param {Object} location - Location object
|
122
|
+
* @param {string} [location.street_number] - Street number
|
123
|
+
* @param {string} [location.street_name] - Street name
|
124
|
+
* @param {string} [location.city] - City
|
125
|
+
* @param {string} [location.state_short] - State abbreviation
|
126
|
+
* @param {string} [location.post_code] - Postal code
|
127
|
+
* @returns {string} Formatted address with HTML line breaks
|
128
|
+
*/
|
83
129
|
export const getLocationAddress = (location) => {
|
84
130
|
const {
|
85
131
|
street_number = '',
|
@@ -111,6 +157,11 @@ export const getLocationAddress = (location) => {
|
|
111
157
|
return addressParts.join('');
|
112
158
|
};
|
113
159
|
|
160
|
+
/**
|
161
|
+
* Decodes HTML entities to their corresponding characters.
|
162
|
+
* @param {string} text - Text containing HTML entities
|
163
|
+
* @returns {string} Decoded text
|
164
|
+
*/
|
114
165
|
export const decodeHtmlEntities = (text) => {
|
115
166
|
const tempElement = document.createElement('div');
|
116
167
|
tempElement.innerHTML = text;
|
@@ -147,8 +198,9 @@ export const getSpacingClasses = (
|
|
147
198
|
};
|
148
199
|
|
149
200
|
/**
|
150
|
-
*
|
151
|
-
* @
|
201
|
+
* Retrieves WordPress filters by namespace.
|
202
|
+
* @param {string} namespace - Filter namespace to search for
|
203
|
+
* @returns {Array<{filterName: string, namespace: string}>} Array of matching filters
|
152
204
|
*/
|
153
205
|
const getFiltersByNamespace = (namespace) => {
|
154
206
|
const list = [];
|
@@ -165,3 +217,21 @@ const getFiltersByNamespace = (namespace) => {
|
|
165
217
|
|
166
218
|
return list;
|
167
219
|
};
|
220
|
+
|
221
|
+
/**
|
222
|
+
* Unregisters a block type for a specific post type when editor loads.
|
223
|
+
* @param {string} blockName - Name of the block to unregister
|
224
|
+
* @param {string} postType - Post type to check against
|
225
|
+
*/
|
226
|
+
const unsetBlockForPostType = (blockName, postType) => {
|
227
|
+
const unsubscribe = subscribe(
|
228
|
+
() => {
|
229
|
+
const currentPostType = select('core/editor').getCurrentPostType();
|
230
|
+
if (currentPostType === postType && getBlockType(blockName)) {
|
231
|
+
unregisterBlockType(blockName);
|
232
|
+
unsubscribe();
|
233
|
+
}
|
234
|
+
},
|
235
|
+
'core/editor'
|
236
|
+
);
|
237
|
+
}
|