forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInTheWild.js
More file actions
216 lines (198 loc) · 5.26 KB
/
InTheWild.js
File metadata and controls
216 lines (198 loc) · 5.26 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
import React from 'react';
import { listen } from 'codesandbox-api';
import { storiesOf, setAddon } from '@storybook/react';
import JSXAddon from 'storybook-addon-jsx';
import { withKnobs } from '@storybook/addon-knobs/react';
import SandpackProvider from '../src/components/SandpackProvider/index.ts';
import SandpackConsumer from '../src/components/SandpackConsumer/index.ts';
import FileExplorer from '../src/components/FileExplorer/index.ts';
import BrowserPreview from '../src/components/BrowserPreview/index.ts';
import TranspiledCodeView from '../src/components/TranspiledCodeView/index.ts';
import CodeEditor from '../src/components/CodeEditor/CodeMirror/index.ts';
import '../dist/styles.css';
setAddon(JSXAddon);
listen(console.log);
const stories = storiesOf('InTheWild', module);
stories.addDecorator(withKnobs);
stories.addWithJSX('one file', () => (
<SandpackProvider
files={{
'/index.js': {
code: `document.body.innerHTML = \`<div>$\{require('uuid')()}</div>\``,
},
}}
dependencies={{ uuid: 'latest' }}
entry="/index.js"
>
<div style={{ display: 'flex', width: '100vw', height: '100vh' }}>
<FileExplorer style={{ width: 300 }} />
<CodeEditor
style={{
width: '33%',
overflow: 'hidden',
}}
/>
<BrowserPreview
style={{
width: '33%',
overflow: 'hidden',
}}
/>
<TranspiledCodeView
style={{
width: '33%',
overflow: 'hidden',
}}
/>
<SandpackConsumer>
{sandpack => console.log(sandpack) || <div />}
</SandpackConsumer>
</div>
</SandpackProvider>
));
stories.addWithJSX('custom bundler url', () => (
<SandpackProvider
files={{
'/index.js': {
code: `document.body.innerHTML = \`<div>$\{require('uuid')()}</div>\``,
},
}}
dependencies={{ uuid: 'latest' }}
entry="/index.js"
bundlerURL="https://sandpack.ives.now.sh"
>
<div style={{ display: 'flex', width: '100vw', height: '100vh' }}>
<FileExplorer style={{ width: 300 }} />
<CodeEditor
style={{
width: '33%',
overflow: 'hidden',
}}
/>
<BrowserPreview
style={{
width: '33%',
overflow: 'hidden',
}}
/>
<TranspiledCodeView
style={{
width: '33%',
overflow: 'hidden',
}}
/>
<SandpackConsumer>
{sandpack => console.log(sandpack) || <div />}
</SandpackConsumer>
</div>
</SandpackProvider>
));
stories.addWithJSX('subdirectories', () => (
<SandpackProvider
files={{
'/index.js': {
code: `document.body.innerHTML = \`<div>$\{require('uuid')()}</div>\``,
},
'/test/index.js': {
code: 'module.exports = "test"',
},
}}
dependencies={{ uuid: 'latest' }}
entry="/index.js"
skipEval
>
<div
style={{
display: 'flex',
width: '100vw',
height: '100vh',
}}
>
<FileExplorer style={{ width: 300 }} />
<CodeEditor style={{ width: '100%', overflowX: 'hidden' }} />
<TranspiledCodeView style={{ width: '100%', overflowX: 'hidden' }} />
</div>
</SandpackProvider>
));
stories.addWithJSX('transpiled view', () => (
<SandpackProvider
files={{
'/index.js': {
code: `document.body.innerHTML = \`<div>$\{require('uuid')()}</div>\``,
},
}}
dependencies={{ uuid: 'latest' }}
entry="/index.js"
bundlerURL="http://localhost:3002"
fileResolver={{
isFile: p => p === '/hello.js',
readFile: p => `export default 'hello'`,
}}
>
<div
style={{
display: 'flex',
width: '100vw',
height: '100vh',
}}
>
<FileExplorer style={{ width: 300 }} />
<CodeEditor style={{ width: '100%', overflowX: 'hidden' }} />
<TranspiledCodeView style={{ width: '100%', overflowX: 'hidden' }} />
</div>
</SandpackProvider>
));
stories.addWithJSX('babel', () => (
<SandpackProvider
files={{
'/index.js': {
code: `import React from 'react';`,
},
'/.babelrc': {
code: JSON.stringify(
{
plugins: [],
presets: [
'typescript',
[
'@babel/preset-env',
{
targets: {},
forceAllTransforms: false,
shippedProposals: false,
useBuiltIns: false,
},
],
],
sourceMaps: false,
},
null,
2
),
},
'/babel-transpiler.json': {
code: JSON.stringify({
babelURL:
'https://7358-24560307-gh.circle-artifacts.com/0/home/circleci/babel/packages/babel-standalone/babel.js',
}),
},
}}
dependencies={{
'@babel/preset-env': 'latest',
}}
entry="/index.js"
template="babel-repl"
>
<div
style={{
display: 'flex',
width: '100vw',
height: '100vh',
}}
>
<FileExplorer style={{ width: 300 }} />
<CodeEditor style={{ width: '100%', overflowX: 'hidden' }} />
<TranspiledCodeView style={{ width: '100%', overflowX: 'hidden' }} />
</div>
</SandpackProvider>
));