useContent()
We can effectively handle data management through the utilization of useContent().
To streamline data management within your application, you can utilize the powerful capabilities offered by useContent
, a feature provided by the @magicjs.dev/frontend
library.
Here's a concise example of how to integrate useContent
into your application:
Here are some key points to consider:
Unique Service ID: It's crucial to assign a unique
serviceId
to each instance ofuseContent
. This identifier distinguishes between different data services and ensures proper management and isolation of data.Default Content: If you wish to provide default content upon initialization, you can do so by setting the
defaultContent
parameter. This allows for seamless rendering of content without the need for additional checks or handling.Redux Store Integration: By toggling the
useReduxStore
parameter, you can control whether changes to data propagate across components. Setting it totrue
enables synchronization of data changes, facilitating consistent state management throughout your application.
Operations
setContent
Type: Function
The setContent()
function is used to update the content with new information. It accepts an object with various properties as its argument. For example, it could be used to update the contents of a text editor or content management system.
Example:
You can use console.log(contentEditor.content)
to see the data contained by the content
property of contentEditor
.
updateKey
Type: Function
The updateKey()
function is used to update a property in an object. It accepts two arguments:
Example:
pushItem
Type: Function
The pushItem()
function is used to push data to an array. It accepts two arguments:
Example:
Push a value to an array:
In the code above, pushItem
is a function that takes two arguments: the name of the array and the value you want to push to that array. In this case, we are pushing the number 4
to the items
array. When the button is clicked, the onClick
event executes the pushItem
function, which updates the items
array by adding 4
to the end of it.
removeItemAt
Type: Function
The removeItemAt()
function is used to remove an item from an array at a specific index. It accepts two arguments:
Example:
Remove an item at a specific index:
In the code above, you can replace itemsToRemoveFrom
with the variable that you want to remove an item from, and 5
with the index of the item that you want to remove.
runBatch
Type: Function
The runBatch()
function is used to perform multiple operations (remove, update, and push) in a single operation. It accepts an object with various properties as its argument.
Example:
Button that updates multiple keys at once
Here, two functions named runBatch
and updateKey
to update the values of two keys ('keyA' and 'keyB') in the object.
Button that push multiple items to an array at once
Here, two functions named runBatch
and pushItem
to push two items (100 and 200) to an array named emptyArrayToPush
.
Remove Items at specific indices from an array at once
Here, two functions named runBatch
and removeItemAt
to remove items from an array named itemsToRemoveFrom
. In this case, items at index 3 and index 5 will be removed.
The
runBatch
function accepts a function as an argument and runs it as a batch operation, which can help improve performance when updating multiple operations at once.
It is not recommended to use asynchronous code inside runBatch
function as it may cause unexpected behavior.
hasChanged
Type: Boolean
The hasChanged
is a boolean that indicates whether any changes have been made to the content.
markAsSaved
Type: Function
The markAsSaved()
is used to mark the content as saved.
saveLocally
Type: Function
The saveLocally()
is used to save the content in local storage.
getPendingLogs
Type: Function
The getPendingLogs()
is used to retrieve the pending action logs.
resetPendingLogs
Type: Function
The resetPendingLogs()
is used to reset the pending action logs.
insertItem
Type: Function
The insertItem()
is used to insert an item into a specified key at the given index.
unshiftItem
Type: Function
The unshiftItem()
facilitates moving an item to the initial position within a collection.
reset
Type: Function
The reset()
is used to reset content to its initial state.
Last updated