Last active
December 15, 2023 22:00
-
-
Save HardeepAsrani/3dad7fa91c4cea47c4f3d29ee0dfbd99 to your computer and use it in GitHub Desktop.
useMeta.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* WordPress dependencies. | |
*/ | |
import { useDispatch, useSelect } from '@wordpress/data'; | |
/** | |
* useMeta Hook. | |
* | |
* useMeta hook to get/update WordPress' meta fields. | |
* | |
* Meta field needs to be registered to REST using `register_post_meta` function. | |
* | |
* This will return an array of all the meta fields and you return an object of meta values. | |
* const [ metaValue, changeMetaValue ] = useMeta(); | |
* | |
* If you want to get/change a particular meta field then you can pass the key as argument. | |
* const [ metaValue, changeMetaValue ] = useMeta( 'meta_key' ); | |
* | |
* @see https://developer.wordpress.org/reference/functions/register_post_meta/ | |
* @author Hardeep Asrani <[email protected]> | |
* @version 1.0 | |
* | |
*/ | |
const useMeta = key => { | |
const metaValue = useSelect( select => { | |
const { getEditedPostAttribute } = select( 'core/editor' ); | |
if ( undefined === key ) { | |
return getEditedPostAttribute( 'meta' ); | |
} | |
return getEditedPostAttribute( 'meta' )[ key ] || ''; | |
}, [ key ]); | |
const { editPost } = useDispatch( 'core/editor' ); | |
const changeMetaValue = value => { | |
if ( undefined === key ) { | |
return editPost({ | |
meta: { ...value } | |
}); | |
} | |
return editPost({ | |
meta: { | |
[ key ]: value | |
} | |
}); | |
}; | |
return [ metaValue, changeMetaValue ]; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment