Yes, it’s possible and you’d use wp.data.select( 'core/data' ).isResolving().
Example based on your code:
const MyComponent = withSelect(select => {
const { isResolving } = select( 'core/data' );
const query = { _fields: 'id,name,slug' };
return {
terms: select('core').getEntityRecords("taxonomy", "my_taxonomy", query),
isRequesting: isResolving( 'core', 'getEntityRecords', [ 'taxonomy', 'my_taxonomy', query ] )
};
})(props => {
if ( props.isRequesting ) {
return (
<div className="loading">
Loading...
</div>
);
}
return (
<ul>
{ props.terms.map( term => (<li key={ term.id }>{ term.name }</li>) ) }
</ul>
);
});
And you might also want to check the “edit” component for the Categories block.
Related Posts:
- Gutenberg custom block plugin with custom image sizes
- How to transform a legacy widget into a block
- Get Block Attributes in JSON REST API
- Checks when fetching data from multiple REST API endpoints in Gutenberg
- Search for a keyword across post types in a Gutenberg component
- Using apiFetch for retrieving post data in Gutenberg
- Get terms of a taxonomy using useSelect
- Update block once an API request returns with a value
- What are all the query parameters for getEntityRecords?
- How to use wp.hooks.addAction() in React JS/Gutenberg?
- REST API: Backbone and custom endpoint
- How to only enqueue block javascript on the frontend when its needed [duplicate]
- Extend core block in Gutenberg
- Hooking a callback into the code within a Gutenberg block
- Gutenberg extend blocks add new class name
- initial open/toggle PluginDocumentSettingPanel panel in document setting block editor gutenberg
- WP REST – video and audio players
- Get post from custom REST endpoint in Gutenberg
- Headless WordPress: How to authenticate front end requests?
- Correctly handling WordPress core data retrieval in Gutenberg
- Is there a client side API for handling transients or options?
- How to handle malformed response from WP REST API?
- Rest API authentication issue when called from fetch request in bundle.js
- WordPress Rest API only returns content when posttype has editor capability
- Adding a text element in between title and blocks container
- Gutenberg RichText
- How to handle Gutenberg wp.data async errors?
- How to use wp.hooks.addAction() in React JS/Gutenberg?
- How to get value of selected page template in Gutenberg editor?
- How do I access site and block editor state data and use `useSelect()` or `withSelect()` to bind it to my components?
- @wordpress/components Button variants not styled
- Block Editor: How to get title and post content within the WordPress admin UI in Javascript?
- Custom block SelectControl works but equivalent ComboboxControl gives errors – where’s my mistake?
- Gutenberg add extra attributes to custom format
- event/callback on block update?
- can a buttongroup have a label?
- How to disable inline css styles generated by Gutenberg editor?
- Gutenberg getMedia() in post query doesn’t return all featured images
- InnerBlocks restricting does not work on nested blocks
- Add A Tag To A Post Through JavaScript In Gutenberg UI?
- Gutenberg select categories
- Authentication with the Rest API when using an External Application
- How to return div with custom attributes(Coding a Gutenberg Block)
- What is the correct way to import the blocks-editor?
- Open MediaUpload from external component in Gutenberg
- Setting/unsetting terms using the Backbone JavaScript client
- Open Featured Image Modal in WordPress Gutenberg onClick of a button
- Gutenberg extend blocks add new class name
- Looping over wordpress meta to create “ ‘s?
- How to display post content in the block editor
- How to load an additional script for a block in the block editor?
- what is the purpose of the namespace argument when customizing blocks?
- Gutenberg consume wp-json data and reflect in frontend the content
- How can I import one custom block into another?
- Gutenberg Blocks: how to determine an index of the current inner block?
- Gutenberg select excerpt, use generated excerpt or use more block excerpt
- Gutenberg dependencies in package.json
- find out reason of “Updating failed” in Post-editor
- How to render WP Rest-API Endpoints in a React.js Theme with Woocommerce
- Gutenberg RangeControl
- Custom Gutenberg block: access dom element via JavaScript
- Problem extending a core block
- how to use nimble-API and Display data?
- Cannot read properties of undefined (reading ‘show_ui’) Error on WordPress Post Editor
- Add a Page Screen is Visually Blank
- wp-api Backbone JS Client fetch options
- Gutenberg sidebar show input field on toggle
- Get the ID of a page in Parent combobox in editor
- Uncaught TypeError: r is not a function
- Issue migrating a checkbox-type meta field to the block editor
- [Vue warn]: Error in render: “TypeError: Cannot read property ‘wp:featuredmedia’ of undefined – REST API
- Get user in rest API endpoint
- How to improve WP-Rest atrocious response time?
- How do I make a savable preview like Youtube Gutenberg block?
- iFrame onLoad in custom Gutenberg block
- I would like to retrive JSON value and display it in wordpress page or widget
- Connecting a wordpress site to an AngularJS APP
- WordPress Gutenberg: Attribute overwritten by block duplicate
- Filtering Gutenberg Components, not Blocks
- WordPress REST API response is empty in browser and script, but not in Postman
- How to delete child block for associated parent block
- WP REST API – “rest_user_cannot_view” ONLY on specific users
- Passing object to FormTokenField suggestions
- How to add a new attribute to core wp block editor without npm?
- How do i get an Inline style in Gutenberg Block show up in front end?
- WordPress adds and tags into HTML blocks after saving
- Gutenberg core/file add style support in js/ json
- Working with a non-React external library in a custom block
- Create Youtube embed block with createBlock
- Masonry gallery block is working in the block editor but not the template editor
- How to import the imagesLoaded and Masonry libs that come with WP in a Gutenberg block?
- config @wordpress/scripts with webpack and postCSS features
- How to build BOTH non-block components and blocks present in the /src directory using @wordpress/scripts
- How to add an additional dependency to a block index.asset.php file
- Why is the Gutenberg editor not recognizing my updates?
- How to transform a shortcode into a block
- How to re-render Gutenberg component when object instance is available
- Gutenberg DatePicker component with time set to zero
- How to render HTML content using the Interactivity API?
- How to render initial posts on page load in a Gutenberg block using the Interactivity API?