Optional
projectId: stringThe ID of the project to fetch tutorials for.
Optional
params: any = {}Additional parameters to filter and paginate tutorials.
The returning object contains:
assets
: An array of extended asset objects.fetched
: Boolean indicating whether the assets have been successfully fetched.hasMore
: Boolean indicating whether there are more assets available to fetch.currentPage
: The current page number of the fetched assets.fetchMore
: AssetsFetchMoreMethod - Function to fetch more assets, typically for pagination.refresh
: AssetsFetchMethod - Function to refresh or re-fetch the assets.import { useTutorialsByProject } from 'react-playmakers';
const TutorialsList = ({ projectId, filters }) => {
// Using the hook to fetch and display tutorials for the specified project
const { assets, fetched, hasMore, fetchMore, refresh } = useTutorialsByProject(projectId, filters);
// useEffect to log when tutorials are being fetched
useEffect(() => {
if (!fetched) {
console.log("Fetching tutorials for project...");
}
}, [fetched]);
return (
<div>
{assets.length > 0 ? (
assets.map(tutorial => (
<div key={tutorial.id}>
<p>{tutorial.name}</p>
<button onClick={() => tutorial.delete()}>Delete</button>
</div>
))
) : (
<p>No tutorials found</p>
)}
{hasMore && <button onClick={fetchMore}>Load More</button>}
<button onClick={refresh}>Refresh</button>
</div>
);
}
export default TutorialsList;
Generated using TypeDoc
Custom React hook to fetch and manage tutorial assets filtered by a specific project.
This hook is a wrapper around useTutorials, pre-configured to fetch tutorial assets for a given project by providing the
projectId
parameter.