first commit
This commit is contained in:
82
packages/admin/src/components/SandboxedPluginWidget.tsx
Normal file
82
packages/admin/src/components/SandboxedPluginWidget.tsx
Normal file
@@ -0,0 +1,82 @@
|
||||
/**
|
||||
* SandboxedPluginWidget
|
||||
*
|
||||
* Renders a plugin's dashboard widget using Block Kit. Sends a page_load
|
||||
* interaction with page="widget:<widgetId>" to the plugin's admin route.
|
||||
*/
|
||||
|
||||
import { CircleNotch } from "@phosphor-icons/react";
|
||||
import { BlockRenderer } from "@emdashcms/blocks";
|
||||
import type { Block, BlockInteraction, BlockResponse } from "@emdashcms/blocks";
|
||||
import { useCallback, useEffect, useState } from "react";
|
||||
|
||||
import { apiFetch, API_BASE } from "../lib/api/client.js";
|
||||
|
||||
interface SandboxedPluginWidgetProps {
|
||||
pluginId: string;
|
||||
widgetId: string;
|
||||
}
|
||||
|
||||
export function SandboxedPluginWidget({ pluginId, widgetId }: SandboxedPluginWidgetProps) {
|
||||
const [blocks, setBlocks] = useState<Block[]>([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
|
||||
const sendInteraction = useCallback(
|
||||
async (interaction: BlockInteraction) => {
|
||||
try {
|
||||
const response = await apiFetch(`${API_BASE}/plugins/${pluginId}/admin`, {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify(interaction),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
setError(`Plugin error (${response.status})`);
|
||||
return;
|
||||
}
|
||||
|
||||
const body = (await response.json()) as { data: BlockResponse };
|
||||
const data = body.data;
|
||||
setBlocks(data.blocks);
|
||||
setError(null);
|
||||
} catch {
|
||||
setError("Failed to load widget");
|
||||
}
|
||||
},
|
||||
[pluginId],
|
||||
);
|
||||
|
||||
// Initial widget load
|
||||
useEffect(() => {
|
||||
setLoading(true);
|
||||
void sendInteraction({ type: "page_load", page: `widget:${widgetId}` }).finally(() =>
|
||||
setLoading(false),
|
||||
);
|
||||
}, [sendInteraction, widgetId]);
|
||||
|
||||
const handleAction = useCallback(
|
||||
(interaction: BlockInteraction) => {
|
||||
void sendInteraction(interaction);
|
||||
},
|
||||
[sendInteraction],
|
||||
);
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<div className="flex items-center justify-center py-6">
|
||||
<CircleNotch className="h-5 w-5 animate-spin text-kumo-subtle" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (error) {
|
||||
return <p className="text-sm text-kumo-subtle">{error}</p>;
|
||||
}
|
||||
|
||||
if (blocks.length === 0) {
|
||||
return <p className="text-sm text-kumo-subtle">No content</p>;
|
||||
}
|
||||
|
||||
return <BlockRenderer blocks={blocks} onAction={handleAction} />;
|
||||
}
|
||||
Reference in New Issue
Block a user