You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`ra-realtime` provides helper functions to add real-time capabilities to an existing data provider if you use the following real-time backends:
9
+
10
+
-[Supabase](#supabase)
11
+
-[API Platform](#api-platform)
12
+
-[Mercure](#mercure)
13
+
14
+
For other backends, you'll need to write your own implementation. Check the [Writing a custom adapter](#writing-a-custom-adapter) section below for more information.
15
+
16
+
## Realtime Methods & Signature
17
+
8
18
To enable real-time features, the `dataProvider` must implement three new methods:
9
19
10
20
-`subscribe(topic, callback)`
@@ -20,7 +30,87 @@ In addition, to support the lock features, the `dataProvider` must implement 4 m
20
30
-`getLock(resource, { id, meta })`
21
31
-`getLocks(resource, { meta })`
22
32
23
-
## API-Platform Adapter
33
+
## Supabase
34
+
35
+
The `ra-realtime` package contains a function augmenting a regular (API-based) `dataProvider` with real-time methods based on the capabilities of [Supabase](https://supabase.com/docs/guides/realtime).
36
+
37
+
This adapter subscribes to [Postgres Changes](https://supabase.com/docs/guides/realtime/extensions/postgres-changes), and transforms the events into the format expected by `ra-realtime`.
**Tip:** Realtime features are not enabled in Supabase by default, you need to enable them. This can be done either from the [Replication](https://app.supabase.com/project/_/database/replication) section of your Supabase Dashboard, or by running the following SQL query with the [SQL Editor](https://app.supabase.com/project/_/sql):
80
+
81
+
```sql
82
+
begin;
83
+
84
+
-- remove the supabase_realtime publication
85
+
drop
86
+
publication if exists supabase_realtime;
87
+
88
+
-- re-create the supabase_realtime publication with no tables
Have a look at the Supabase [Replication Setup](https://supabase.com/docs/guides/realtime/extensions/postgres-changes#replication-setup) documentation section for more info.
103
+
104
+
`addRealTimeMethodsBasedOnSupabase` accepts the following parameters:
|`dataProvider`| Required |`DataProvider`| - | The base dataProvider to augment with realtime methods |
109
+
|`supabaseClient`| Required |`SupabaseClient`| - | The Supabase JS Client |
110
+
111
+
**Tip**: You may choose to sign your own tokens to customize claims that can be checked in your RLS policies. In order to use these custom tokens with `addRealTimeMethodsBasedOnSupabase`, you must pass an `apikey` field in both Realtime's `headers` and `params` when creating the `supabaseClient`. Please follow the instructions from the [Supabase documentation](https://supabase.com/docs/guides/realtime/extensions/postgres-changes#custom-tokens) for more information about how to do so.
112
+
113
+
## API-Platform
24
114
25
115
The `ra-realtime` package contains a function augmenting a regular (API-based) `dataProvider` with real-time methods based on the capabilities of [API-Platform](https://api-platform.com/). Use it as follows:
26
116
@@ -70,7 +160,7 @@ const GreetingsList = () => (
70
160
);
71
161
```
72
162
73
-
## Mercure Adapter
163
+
## Mercure
74
164
75
165
The `ra-realtime` package contains a function augmenting a regular (API-based) `dataProvider` with real-time methods based on [a Mercure hub](https://mercure.rocks/). Use it as follows:
76
166
@@ -95,7 +185,7 @@ const App = () => (
95
185
96
186
If you're using another transport for real-time messages (WebSockets, long polling, GraphQL subscriptions, etc.), you'll have to implement `subscribe`, `unsubscribe`, and `publish` yourself in your `dataProvider`. As an example, here is an implementation using a local variable, that `ra-realtime` uses in tests:
0 commit comments