Skip to content

Commit 15b426d

Browse files
authored
Add realtime / react hooks examples snippet (#1770)
* Added realtime / react hooks examples snippet and added it to all the relevant pages * Fix link
1 parent b29f3ff commit 15b426d

File tree

6 files changed

+77
-3
lines changed

6 files changed

+77
-3
lines changed

docs/frontend/react-hooks/overview.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebarTitle: Overview
44
description: Using the Trigger.dev v3 API from your React application.
55
---
66

7+
import RealtimeExamplesCards from "/snippets/realtime-examples-cards.mdx";
8+
79
Our react hooks package provides a set of hooks that make it easy to interact with the Trigger.dev API from your React application, using our [frontend API](/frontend/overview). You can use these hooks to fetch runs, and subscribe to real-time updates, and trigger tasks from your frontend application.
810

911
## Installation
@@ -331,3 +333,5 @@ See our [Realtime hooks documentation](/frontend/react-hooks/realtime) for more
331333
## Trigger Hooks
332334

333335
See our [Trigger hooks documentation](/frontend/react-hooks/triggering) for more information.
336+
337+
<RealtimeExamplesCards />

docs/frontend/react-hooks/realtime.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebarTitle: Realtime
44
description: Get live updates from the Trigger.dev API in your frontend application.
55
---
66

7+
import RealtimeExamplesCards from "/snippets/realtime-examples-cards.mdx";
8+
79
These hooks allow you to subscribe to runs, batches, and streams using [Trigger.dev realtime](/realtime). Before reading this guide:
810

911
- Read our [Realtime documentation](/realtime) to understand how the Trigger.dev realtime API works.
@@ -414,3 +416,5 @@ export function MyComponent({
414416
);
415417
}
416418
```
419+
420+
<RealtimeExamplesCards />

docs/frontend/react-hooks/triggering.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebarTitle: Triggering
44
description: Triggering tasks from your frontend application.
55
---
66

7+
import RealtimeExamplesCards from "/snippets/realtime-examples-cards.mdx";
8+
79
We provide a set of hooks that can be used to trigger tasks from your frontend application.
810

911
## Demo
@@ -248,3 +250,5 @@ export function MyComponent({ publicAccessToken }: { publicAccessToken: string }
248250
);
249251
}
250252
```
253+
254+
<RealtimeExamplesCards />

docs/realtime/overview.mdx

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebarTitle: Overview
44
description: Using the Trigger.dev v3 realtime API
55
---
66

7+
import RealtimeExamplesCards from "/snippets/realtime-examples-cards.mdx";
8+
79
Trigger.dev Realtime is a set of APIs that allow you to subscribe to runs and get real-time updates on the run status. This is useful for monitoring runs, updating UIs, and building realtime dashboards.
810

911
## How it works
@@ -17,9 +19,9 @@ The Realtime API is built on top of [Electric SQL](https://electric-sql.com/), a
1719
height="315"
1820
src="https://www.youtube.com/embed/RhJAbSGkS88?si=4Z72SfygeklNI3As"
1921
title="YouTube video player"
20-
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
21-
referrerPolicy="strict-origin-when-cross-origin"
22-
allowFullScreen
22+
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
23+
referrerPolicy="strict-origin-when-cross-origin"
24+
allowFullScreen
2325
/>
2426

2527
## Usage
@@ -266,3 +268,5 @@ The Realtime API in the Trigger.dev Cloud limits the number of concurrent subscr
266268
## Known issues
267269

268270
There is currently a known issue where the realtime API does not work if subscribing to a run that has a large payload or large output and are stored in object store instead of the database. We are working on a fix for this issue: https://github.com/triggerdotdev/trigger.dev/issues/1451. As a workaround you'll need to keep payloads and outputs below 128KB when using the realtime API.
271+
272+
<RealtimeExamplesCards />

docs/realtime/streams.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebarTitle: Streams
44
description: Stream data in realtime from inside your tasks
55
---
66

7+
import RealtimeExamplesCards from "/snippets/realtime-examples-cards.mdx";
8+
79
The world is going realtime, and so should your tasks. With the Streams API, you can stream data from your tasks to the outside world in realtime. This is useful for a variety of use cases, including AI.
810

911
## How it works
@@ -449,3 +451,5 @@ export const aiStreamingWithTools = schemaTask({
449451
},
450452
});
451453
```
454+
455+
<RealtimeExamplesCards />
+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
## Examples
2+
3+
<CardGroup cols={2}>
4+
<Card
5+
title="Image Generation with fal.ai"
6+
icon="image"
7+
href="/guides/example-projects/realtime-fal-ai"
8+
>
9+
A Next.js app that uses the Realtime API and react hooks to create on-demand image generation
10+
through fal.ai's services.
11+
</Card>
12+
<Card
13+
title="Realtime CSV Importer"
14+
icon="file-csv"
15+
href="/guides/example-projects/realtime-csv-importer"
16+
>
17+
Upload CSV files and view the progress of the task being processed on the frontend live using
18+
the Realtime API.
19+
</Card>
20+
<Card
21+
title="Batch LLM Evaluator"
22+
icon="sparkles"
23+
href="/guides/example-projects/batch-llm-evaluator"
24+
>
25+
A Next.js app that uses the Realtime API and react hooks to evaluate language model responses on
26+
the frontend in real-time.
27+
</Card>
28+
<Card
29+
title="Claude Thinking Chatbot"
30+
icon="messages"
31+
href="/guides/example-projects/claude-thinking-chatbot"
32+
>
33+
A chatbot that demonstrates Claude 3.7's thinking capabilities through the Realtime API and
34+
react hooks.
35+
</Card>
36+
37+
</CardGroup>
38+
39+
### Learn more
40+
41+
<CardGroup cols={2}>
42+
<Card title="View all our guides & examples" icon="books" href="/guides">
43+
Guides, example projects and example tasks. Copy any of the code and use it in your own
44+
projects.
45+
</Card>
46+
<Card
47+
title="Example projects repo"
48+
icon="github"
49+
href="https://github.com/triggerdotdev/examples"
50+
>
51+
Star/Fork our examples repo to learn more about how to use Trigger.dev in full stack
52+
applications.
53+
</Card>
54+
</CardGroup>

0 commit comments

Comments
 (0)