Function useAssetsBySchema

  • Custom React hook to fetch and manage assets specific to a schema.

    This hook is a wrapper around useAssets, pre-configured to fetch assets for a specific schema by providing the schemaId parameter.

    Parameters

    • schemaId: string

      The ID of the schema to fetch assets for.

    • Optional params: any = {}

      Additional parameters to filter and paginate assets.

    Returns UseAssetsReturn

    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.

    Example

    import { useAssetsBySchema } from 'react-playmakers';

    const AssetsComponent = () => {
    // Using the hook to fetch and display schema-specific assets
    const { assets, fetched, hasMore, fetchMore, refresh } = useAssetsBySchema("sXXXXXXXX",
    { tags: ["vehicle", "3D model"], limit: 10 });

    // Side effect to log fetching status
    useEffect(() => {
    if (!fetched) {
    console.log("Fetching schema assets...");
    }
    }, [fetched]);

    return (
    <div>
    <h1>Assets List</h1>
    {assets.length > 0 ? (
    assets.map(asset => (
    <div key={asset.id}>
    <p>{asset.name}</p>
    <button onClick={() => asset.delete()}>Delete</button>
    </div>
    ))
    ) : (
    <p>No assets available.</p>
    )}
    {hasMore && <button onClick={() => fetchMore()}>Load More</button>}

    <button onClick={refresh}>Refresh</button>
    </div>
    );
    };

    export default AssetsComponent;

Generated using TypeDoc