feat: add curl feed api guide
This commit is contained in:
parent
87b4000c47
commit
5588aca522
@ -2,12 +2,57 @@ import { Card, CardContent, CardHeader } from '@/components/ui/card';
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { CodeBlock } from '../CodeBlock';
|
import { CodeBlock } from '../CodeBlock';
|
||||||
import { useTranslation } from '@i18next-toolkit/react';
|
import { useTranslation } from '@i18next-toolkit/react';
|
||||||
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from '../ui/tabs';
|
||||||
|
|
||||||
export const FeedApiGuide: React.FC<{ channelId: string }> = React.memo(
|
export const FeedApiGuide: React.FC<{ channelId: string }> = React.memo(
|
||||||
(props) => {
|
(props) => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
const code = `fetch('${window.location.origin}/open/feed/${props.channelId}/send', {
|
return (
|
||||||
|
<Card className="w-full overflow-hidden">
|
||||||
|
<CardHeader>
|
||||||
|
<div>{t('You can send any message into this channel with:')}</div>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="flex w-full flex-col gap-5 overflow-hidden">
|
||||||
|
<Tabs defaultValue="curl">
|
||||||
|
<TabsList>
|
||||||
|
<TabsTrigger value="curl">curl</TabsTrigger>
|
||||||
|
<TabsTrigger value="fetch">fetch</TabsTrigger>
|
||||||
|
</TabsList>
|
||||||
|
<TabsContent value="curl">
|
||||||
|
<CodeBlock code={generateCurlCode(props.channelId)} />
|
||||||
|
</TabsContent>
|
||||||
|
<TabsContent value="fetch">
|
||||||
|
<CodeBlock code={generateFetchCode(props.channelId)} />
|
||||||
|
</TabsContent>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
<div className="pl-2 font-bold">{t('OR')}</div>
|
||||||
|
|
||||||
|
<div>{t('Integrate with third party with webhook')}</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
FeedApiGuide.displayName = 'FeedApiGuide';
|
||||||
|
|
||||||
|
function generateCurlCode(channelId: string) {
|
||||||
|
const code = `curl -X POST ${window.location.origin}/open/feed/${channelId}/send \\
|
||||||
|
-H "Content-Type: application/json" \\
|
||||||
|
-d '{
|
||||||
|
"eventName": "test name",
|
||||||
|
"eventContent": "test content",
|
||||||
|
"tags": ["test"],
|
||||||
|
"source": "custom",
|
||||||
|
"important": false
|
||||||
|
}'`;
|
||||||
|
|
||||||
|
return code;
|
||||||
|
}
|
||||||
|
|
||||||
|
function generateFetchCode(channelId: string) {
|
||||||
|
const code = `fetch('${window.location.origin}/open/feed/${channelId}/send', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
@ -21,20 +66,5 @@ export const FeedApiGuide: React.FC<{ channelId: string }> = React.memo(
|
|||||||
})
|
})
|
||||||
})`;
|
})`;
|
||||||
|
|
||||||
return (
|
return code;
|
||||||
<Card className="w-full overflow-hidden">
|
}
|
||||||
<CardHeader>
|
|
||||||
<div>{t('You can send any message into this channel with:')}</div>
|
|
||||||
</CardHeader>
|
|
||||||
<CardContent className="flex w-full flex-col gap-5 overflow-hidden">
|
|
||||||
<CodeBlock code={code} />
|
|
||||||
|
|
||||||
<div className="pl-2 font-bold">{t('OR')}</div>
|
|
||||||
|
|
||||||
<div>{t('Integrate with third party with webhook')}</div>
|
|
||||||
</CardContent>
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
FeedApiGuide.displayName = 'FeedApiGuide';
|
|
||||||
|
Loading…
Reference in New Issue
Block a user