-
-
Notifications
You must be signed in to change notification settings - Fork 504
/
Copy pathcustom-protocol.tsx
87 lines (80 loc) · 2.25 KB
/
custom-protocol.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { TagsOutlined } from '@ant-design/icons';
import { ThoughtChain, XStream } from '@ant-design/x';
import { Button, Splitter } from 'antd';
import React from 'react';
const sipHeaders = [
'INVITE sip:[email protected] SIP/2.0\n',
'Via: SIP/2.0/UDP [host];branch=123456\n',
'Content-Type: application/sdp\n\n',
];
const sdp = [
'v=0\n',
'o=alice 2890844526 2890844526 IN IP4 [host]\n',
's=\n',
'c=IN IP4 [host]\n',
't=0 0\n',
'm=audio 49170 RTP/AVP 0\n',
'a=rtpmap:0 PCMU/8000\n',
'm=video 51372 RTP/AVP 31\n',
'a=rtpmap:31 H261/90000\n',
'm=video 53000 RTP/AVP 32\n',
'a=rtpmap:32 MPV/90000\n\n',
];
function mockReadableStream() {
return new ReadableStream({
async start(controller) {
for (const chunk of sipHeaders.concat(sdp)) {
await new Promise((resolve) => setTimeout(resolve, 100));
controller.enqueue(new TextEncoder().encode(chunk));
}
controller.close();
},
});
}
const App = () => {
const [lines, setLines] = React.useState<string[]>([]);
async function readStream() {
// 🌟 Read the stream
for await (const chunk of XStream({
readableStream: mockReadableStream(),
transformStream: new TransformStream<string, string>({
transform(chunk, controller) {
controller.enqueue(chunk);
},
}),
})) {
setLines((pre) => [...pre, chunk]);
}
}
return (
<Splitter>
<Splitter.Panel>
<Button type="primary" onClick={readStream} style={{ marginBottom: 16 }}>
Mock Custom Protocol - SIP
</Button>
</Splitter.Panel>
{/* -------------- Log -------------- */}
<Splitter.Panel style={{ marginLeft: 16 }}>
<ThoughtChain
items={
lines.length
? [
{
title: 'Mock Custom Protocol - Log',
status: 'success',
icon: <TagsOutlined />,
content: (
<pre style={{ overflow: 'scroll' }}>
<code>{lines.join('')}</code>
</pre>
),
},
]
: []
}
/>
</Splitter.Panel>
</Splitter>
);
};
export default App;