superglue 0.54.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +32 -0
- data/lib/generators/superglue/install/install_generator.rb +119 -0
- data/lib/{install/templates/web → generators/superglue/install/templates}/application.json.props +2 -2
- data/lib/generators/superglue/install/templates/js/application.jsx +35 -0
- data/lib/generators/superglue/install/templates/js/application_visit.js +113 -0
- data/lib/generators/superglue/install/templates/js/components.js +2 -0
- data/lib/generators/superglue/install/templates/js/flash.js +44 -0
- data/lib/generators/superglue/install/templates/js/inputs.jsx +370 -0
- data/lib/generators/superglue/install/templates/js/jsconfig.json +9 -0
- data/lib/generators/superglue/install/templates/js/layout.jsx +16 -0
- data/lib/generators/superglue/install/templates/js/page_to_page_mapping.js +35 -0
- data/lib/generators/superglue/install/templates/js/store.js +30 -0
- data/lib/{install/templates/web/application.js → generators/superglue/install/templates/ts/application.tsx} +10 -16
- data/lib/generators/superglue/install/templates/ts/application_visit.ts +122 -0
- data/lib/generators/superglue/install/templates/ts/components.ts +2 -0
- data/lib/generators/superglue/install/templates/ts/flash.ts +46 -0
- data/lib/generators/superglue/install/templates/ts/inputs.tsx +554 -0
- data/lib/generators/superglue/install/templates/ts/layout.tsx +16 -0
- data/lib/generators/superglue/install/templates/ts/page_to_page_mapping.ts +34 -0
- data/lib/generators/superglue/install/templates/ts/store.ts +34 -0
- data/lib/generators/superglue/install/templates/ts/tsconfig.json +27 -0
- data/lib/generators/superglue/scaffold/scaffold_generator.rb +16 -0
- data/lib/generators/superglue/scaffold_controller/scaffold_controller_generator.rb +61 -0
- data/lib/generators/superglue/view_collection/templates/js/edit.jsx +40 -0
- data/lib/generators/superglue/view_collection/templates/js/index.jsx +62 -0
- data/lib/generators/superglue/view_collection/templates/js/new.jsx +38 -0
- data/lib/generators/superglue/view_collection/templates/js/show.jsx +26 -0
- data/lib/generators/superglue/view_collection/templates/props/edit.json.props +9 -0
- data/lib/generators/superglue/view_collection/templates/props/index.json.props +14 -0
- data/lib/generators/superglue/view_collection/templates/props/new.json.props +10 -0
- data/lib/generators/superglue/view_collection/templates/props/show.json.props +6 -0
- data/lib/generators/superglue/view_collection/templates/ts/edit.tsx +54 -0
- data/lib/generators/superglue/view_collection/templates/ts/index.tsx +77 -0
- data/lib/generators/superglue/view_collection/templates/ts/new.tsx +50 -0
- data/lib/generators/superglue/view_collection/templates/ts/show.tsx +37 -0
- data/lib/generators/superglue/view_collection/view_collection_generator.rb +180 -0
- data/lib/superglue/helpers.rb +1 -1
- data/lib/superglue.rb +2 -1
- metadata +62 -41
- data/lib/generators/rails/scaffold_controller_generator.rb +0 -12
- data/lib/generators/rails/superglue_generator.rb +0 -98
- data/lib/generators/rails/templates/controller.rb.tt +0 -68
- data/lib/generators/rails/templates/edit.json.props +0 -12
- data/lib/generators/rails/templates/index.json.props +0 -14
- data/lib/generators/rails/templates/new.json.props +0 -13
- data/lib/generators/rails/templates/show.json.props +0 -6
- data/lib/generators/rails/templates/web/edit.js +0 -35
- data/lib/generators/rails/templates/web/index.js +0 -56
- data/lib/generators/rails/templates/web/new.js +0 -33
- data/lib/generators/rails/templates/web/show.js +0 -28
- data/lib/install/templates/web/actions.js +0 -6
- data/lib/install/templates/web/application_visit.js +0 -65
- data/lib/install/templates/web/flash.js +0 -19
- data/lib/install/templates/web/page_to_page_mapping.js +0 -12
- data/lib/install/templates/web/pages.js +0 -15
- data/lib/install/templates/web/store.js +0 -32
- data/lib/install/web.rb +0 -55
- data/lib/tasks/install.rake +0 -9
- /data/lib/{install/templates/web → generators/superglue/install/templates}/initializer.rb +0 -0
- /data/lib/generators/{rails/templates/web → superglue/view_collection/templates/erb}/edit.html.erb +0 -0
- /data/lib/generators/{rails/templates/web → superglue/view_collection/templates/erb}/index.html.erb +0 -0
- /data/lib/generators/{rails/templates/web → superglue/view_collection/templates/erb}/new.html.erb +0 -0
- /data/lib/generators/{rails/templates/web → superglue/view_collection/templates/erb}/show.html.erb +0 -0
- /data/lib/generators/{rails/templates → superglue/view_collection/templates/props}/_form.json.props +0 -0
@@ -0,0 +1,370 @@
|
|
1
|
+
/**
|
2
|
+
* Vanilla is a minimum set of
|
3
|
+
* [candy_wrappers](https://github.com/thoughtbot/candy_wrapper) around react
|
4
|
+
* HTML tags. It works with the output from
|
5
|
+
* [FormProps](https://github.com/thoughtbot/form_props).
|
6
|
+
*
|
7
|
+
* There is no style and structured with bare necessities. You should modify
|
8
|
+
* these components to fit your design needs.
|
9
|
+
*/
|
10
|
+
import React, { useContext, createContext, useMemo } from 'react'
|
11
|
+
export const ValidationContext = createContext({})
|
12
|
+
export const useErrorMessage = (errorKey) => {
|
13
|
+
const errors = useContext(ValidationContext)
|
14
|
+
return useMemo(() => {
|
15
|
+
if (!errorKey) {
|
16
|
+
return null
|
17
|
+
}
|
18
|
+
const validationError = errors[errorKey]
|
19
|
+
const hasErrors = errorKey && validationError
|
20
|
+
if (!hasErrors) {
|
21
|
+
return null
|
22
|
+
}
|
23
|
+
const errorMessages = Array.isArray(validationError)
|
24
|
+
? validationError
|
25
|
+
: [validationError]
|
26
|
+
return errorMessages.join(' ')
|
27
|
+
}, [errors, errorKey])
|
28
|
+
}
|
29
|
+
/**
|
30
|
+
* Extras renders the hidden inputs generated by form_props.
|
31
|
+
*
|
32
|
+
* Its meant to be used with a form component and renders hidden values for
|
33
|
+
* utf8, crsf_token, _method
|
34
|
+
*/
|
35
|
+
export const Extras = (hiddenInputAttributes) => {
|
36
|
+
const hiddenProps = Object.values(hiddenInputAttributes)
|
37
|
+
const hiddenInputs = hiddenProps.map((props) => (
|
38
|
+
<input {...props} type="hidden" key={props.name} />
|
39
|
+
))
|
40
|
+
return <>{hiddenInputs}</>
|
41
|
+
}
|
42
|
+
/**
|
43
|
+
* A basic form component that supports inline errors.
|
44
|
+
*
|
45
|
+
* It's meant to be used with FormProps and mimics the ways that
|
46
|
+
* Rails forms are generated.
|
47
|
+
*/
|
48
|
+
export const Form = ({ extras, validationErrors = {}, children, ...props }) => {
|
49
|
+
return (
|
50
|
+
<form {...props}>
|
51
|
+
<ValidationContext.Provider value={validationErrors}>
|
52
|
+
<Extras {...extras}></Extras>
|
53
|
+
{children}
|
54
|
+
</ValidationContext.Provider>
|
55
|
+
</form>
|
56
|
+
)
|
57
|
+
}
|
58
|
+
/**
|
59
|
+
* An inline error component.
|
60
|
+
*
|
61
|
+
* When a Field has an error, this will show below the label and input.
|
62
|
+
* Please modify this to your liking.
|
63
|
+
*/
|
64
|
+
export const FieldError = ({ errorKey }) => {
|
65
|
+
const errorMessage = useErrorMessage(errorKey)
|
66
|
+
return <span>{errorMessage}</span>
|
67
|
+
}
|
68
|
+
/**
|
69
|
+
* A Field component.
|
70
|
+
*
|
71
|
+
* Combines a label, input and a FieldError. Please modify this to your liking.
|
72
|
+
*/
|
73
|
+
export const FieldBase = ({ label, errorKey, children, ...props }) => {
|
74
|
+
return (
|
75
|
+
<>
|
76
|
+
<label htmlFor={props.id}>{label}</label>
|
77
|
+
{children || <input {...props} />}
|
78
|
+
<FieldError errorKey={errorKey} />
|
79
|
+
</>
|
80
|
+
)
|
81
|
+
}
|
82
|
+
export const Checkbox = ({
|
83
|
+
type: _type,
|
84
|
+
includeHidden,
|
85
|
+
uncheckedValue,
|
86
|
+
errorKey,
|
87
|
+
...rest
|
88
|
+
}) => {
|
89
|
+
const { name } = rest
|
90
|
+
return (
|
91
|
+
<FieldBase {...rest} errorKey={errorKey}>
|
92
|
+
{includeHidden && (
|
93
|
+
<input
|
94
|
+
type="hidden"
|
95
|
+
name={name}
|
96
|
+
defaultValue={uncheckedValue}
|
97
|
+
autoComplete="off"
|
98
|
+
/>
|
99
|
+
)}
|
100
|
+
<input type="checkbox" {...rest}></input>
|
101
|
+
</FieldBase>
|
102
|
+
)
|
103
|
+
}
|
104
|
+
/**
|
105
|
+
* A collection checkbox component.
|
106
|
+
*
|
107
|
+
* Designed to work with a payload form_props's [collection_check_boxes helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#collection-select).
|
108
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
109
|
+
*/
|
110
|
+
export const CollectionCheckboxes = ({
|
111
|
+
includeHidden,
|
112
|
+
collection,
|
113
|
+
label,
|
114
|
+
errorKey,
|
115
|
+
}) => {
|
116
|
+
if (collection.length == 0) {
|
117
|
+
return null
|
118
|
+
}
|
119
|
+
const checkboxes = collection.map((options) => {
|
120
|
+
return <Checkbox {...options} key={options.id} />
|
121
|
+
})
|
122
|
+
const { name } = collection[0]
|
123
|
+
return (
|
124
|
+
<>
|
125
|
+
{includeHidden && (
|
126
|
+
<input type="hidden" name={name} defaultValue={''} autoComplete="off" />
|
127
|
+
)}
|
128
|
+
<label>{label}</label>
|
129
|
+
{checkboxes}
|
130
|
+
<FieldError errorKey={errorKey} />
|
131
|
+
</>
|
132
|
+
)
|
133
|
+
}
|
134
|
+
/**
|
135
|
+
* A collection radio button component.
|
136
|
+
*
|
137
|
+
* Designed to work with a payload form_props's [collection_radio_buttons helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#collection-select).
|
138
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
139
|
+
*/
|
140
|
+
export const CollectionRadioButtons = ({
|
141
|
+
includeHidden,
|
142
|
+
collection,
|
143
|
+
label,
|
144
|
+
errorKey,
|
145
|
+
}) => {
|
146
|
+
if (collection.length == 0) {
|
147
|
+
return null
|
148
|
+
}
|
149
|
+
const radioButtons = collection.map((options) => {
|
150
|
+
return (
|
151
|
+
<div key={options.value}>
|
152
|
+
<input {...options} type="radio" />
|
153
|
+
<label htmlFor={options.id}>{options.label}</label>
|
154
|
+
</div>
|
155
|
+
)
|
156
|
+
})
|
157
|
+
const { name } = collection[0]
|
158
|
+
return (
|
159
|
+
<>
|
160
|
+
{includeHidden && (
|
161
|
+
<input type="hidden" name={name} defaultValue={''} autoComplete="off" />
|
162
|
+
)}
|
163
|
+
<label>{label}</label>
|
164
|
+
{radioButtons}
|
165
|
+
<FieldError errorKey={errorKey} />
|
166
|
+
</>
|
167
|
+
)
|
168
|
+
}
|
169
|
+
/**
|
170
|
+
* A text field component.
|
171
|
+
*
|
172
|
+
* Designed to work with a payload form_props's [text_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
173
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
174
|
+
*/
|
175
|
+
export const TextField = ({ type: _type, ...rest }) => {
|
176
|
+
return <FieldBase {...rest} type="text" />
|
177
|
+
}
|
178
|
+
/**
|
179
|
+
* A email field component.
|
180
|
+
*
|
181
|
+
* Designed to work with a payload form_props's [email_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
182
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
183
|
+
*/
|
184
|
+
export const EmailField = ({ type: _type, ...rest }) => {
|
185
|
+
return <FieldBase {...rest} type="email" />
|
186
|
+
}
|
187
|
+
/**
|
188
|
+
* A color field component.
|
189
|
+
*
|
190
|
+
* Designed to work with a payload form_props's [color_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
191
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
192
|
+
*/
|
193
|
+
export const ColorField = ({ type: _type, ...rest }) => {
|
194
|
+
return <FieldBase {...rest} type="color" />
|
195
|
+
}
|
196
|
+
/**
|
197
|
+
* A date field component.
|
198
|
+
*
|
199
|
+
* Designed to work with a payload form_props's [date_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#date-helpers).
|
200
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
201
|
+
*/
|
202
|
+
export const DateField = ({ type: _type, ...rest }) => {
|
203
|
+
return <FieldBase {...rest} type="date" />
|
204
|
+
}
|
205
|
+
/**
|
206
|
+
* A date field component.
|
207
|
+
*
|
208
|
+
* Designed to work with a payload form_props's [date_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#date-helpers).
|
209
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
210
|
+
*/
|
211
|
+
export const DateTimeLocalField = ({ type: _type, ...rest }) => {
|
212
|
+
return <FieldBase {...rest} type="datetime-local" />
|
213
|
+
}
|
214
|
+
/**
|
215
|
+
* A search field component.
|
216
|
+
*
|
217
|
+
* Designed to work with a payload form_props's [search_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
218
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
219
|
+
*/
|
220
|
+
export const SearchField = ({ type: _type, ...rest }) => {
|
221
|
+
return <FieldBase {...rest} type="search" />
|
222
|
+
}
|
223
|
+
/**
|
224
|
+
* A tel field component.
|
225
|
+
*
|
226
|
+
* Designed to work with a payload form_props's [tel_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
227
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
228
|
+
*/
|
229
|
+
export const TelField = ({ type: _type, ...rest }) => {
|
230
|
+
return <FieldBase {...rest} type="tel" />
|
231
|
+
}
|
232
|
+
/**
|
233
|
+
* A url field component.
|
234
|
+
*
|
235
|
+
* Designed to work with a payload form_props's [tel_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
236
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
237
|
+
*/
|
238
|
+
export const UrlField = ({ type: _type, ...rest }) => {
|
239
|
+
return <FieldBase {...rest} type="url" />
|
240
|
+
}
|
241
|
+
/**
|
242
|
+
* A month field component.
|
243
|
+
*
|
244
|
+
* Designed to work with a payload form_props's [month_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#date-helpers).
|
245
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
246
|
+
*/
|
247
|
+
export const MonthField = ({ type: _type, ...rest }) => {
|
248
|
+
return <FieldBase {...rest} type="month" />
|
249
|
+
}
|
250
|
+
/**
|
251
|
+
* A time field component.
|
252
|
+
*
|
253
|
+
* Designed to work with a payload form_props's [month_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#date-helpers).
|
254
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
255
|
+
*/
|
256
|
+
export const TimeField = ({ type: _type, ...rest }) => {
|
257
|
+
return <FieldBase {...rest} type="time" />
|
258
|
+
}
|
259
|
+
/**
|
260
|
+
* A number field component.
|
261
|
+
*
|
262
|
+
* Designed to work with a payload form_props's [month_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#number-helpers).
|
263
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
264
|
+
*/
|
265
|
+
export const NumberField = ({ type: _type, ...rest }) => {
|
266
|
+
return <FieldBase {...rest} type="number" />
|
267
|
+
}
|
268
|
+
/**
|
269
|
+
* A range field component.
|
270
|
+
*
|
271
|
+
* Designed to work with a payload form_props's [range_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#number-helpers).
|
272
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
273
|
+
*/
|
274
|
+
export const RangeField = ({ type: _type, ...rest }) => {
|
275
|
+
return <FieldBase {...rest} type="range" />
|
276
|
+
}
|
277
|
+
/**
|
278
|
+
* A password field component.
|
279
|
+
*
|
280
|
+
* Designed to work with a payload form_props's [password_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
281
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
282
|
+
*/
|
283
|
+
export const PasswordField = ({ type: _type, ...rest }) => {
|
284
|
+
return <FieldBase {...rest} type="password" />
|
285
|
+
}
|
286
|
+
/**
|
287
|
+
* A select component.
|
288
|
+
*
|
289
|
+
* Designed to work with a payload form_props's [select helpers](https://github.com/thoughtbot/form_props?tab=readme-ov-file#select-helpers),
|
290
|
+
* [collection_select helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#collection-select), and [grouped_collection_select helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#group-collection-select).
|
291
|
+
*
|
292
|
+
* Please modify to your liking.
|
293
|
+
*/
|
294
|
+
export const Select = ({
|
295
|
+
includeHidden,
|
296
|
+
name,
|
297
|
+
id,
|
298
|
+
children,
|
299
|
+
options,
|
300
|
+
label,
|
301
|
+
errorKey,
|
302
|
+
multiple,
|
303
|
+
type: _type,
|
304
|
+
...rest
|
305
|
+
}) => {
|
306
|
+
const addHidden = includeHidden && multiple
|
307
|
+
const optionElements = options.map((item) => {
|
308
|
+
if ('options' in item) {
|
309
|
+
return (
|
310
|
+
<optgroup label={item.label} key={item.label}>
|
311
|
+
{item.options.map((opt) => (
|
312
|
+
<option key={opt.label} {...opt} />
|
313
|
+
))}
|
314
|
+
</optgroup>
|
315
|
+
)
|
316
|
+
} else {
|
317
|
+
return <option key={item.label} {...item} />
|
318
|
+
}
|
319
|
+
})
|
320
|
+
return (
|
321
|
+
<>
|
322
|
+
{addHidden && (
|
323
|
+
<input type="hidden" name={name} value={''} autoComplete="off" />
|
324
|
+
)}
|
325
|
+
<FieldBase label={label} errorKey={errorKey} id={id}>
|
326
|
+
<select name={name} id={id} multiple={multiple} {...rest}>
|
327
|
+
{children}
|
328
|
+
{optionElements}
|
329
|
+
</select>
|
330
|
+
</FieldBase>
|
331
|
+
</>
|
332
|
+
)
|
333
|
+
}
|
334
|
+
/**
|
335
|
+
* A text area component.
|
336
|
+
*
|
337
|
+
* Designed to work with a payload form_props's text_area helper.
|
338
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
339
|
+
*/
|
340
|
+
export const TextArea = ({ type: _type, errorKey, ...rest }) => {
|
341
|
+
const { label } = rest
|
342
|
+
return (
|
343
|
+
<FieldBase label={label} errorKey={errorKey} id={rest.id}>
|
344
|
+
<textarea {...rest} />
|
345
|
+
</FieldBase>
|
346
|
+
)
|
347
|
+
}
|
348
|
+
/**
|
349
|
+
* A file field component.
|
350
|
+
*
|
351
|
+
* Designed to work with a payload form_props's [file_field helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#text-helpers).
|
352
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
353
|
+
*/
|
354
|
+
export const FileField = ({ type: _type, ...rest }) => {
|
355
|
+
return <FieldBase {...rest} type="file" />
|
356
|
+
}
|
357
|
+
/**
|
358
|
+
* A SubmitButton component.
|
359
|
+
*
|
360
|
+
* Designed to work with a payload form_props's [submit helper](https://github.com/thoughtbot/form_props?tab=readme-ov-file#form-helpers).
|
361
|
+
* Mimics the rails equivalent. Please modify to your liking.
|
362
|
+
*/
|
363
|
+
export const SubmitButton = ({ type: _type, text, ...rest }) => {
|
364
|
+
return (
|
365
|
+
<button {...rest} type="submit">
|
366
|
+
{' '}
|
367
|
+
{text}{' '}
|
368
|
+
</button>
|
369
|
+
)
|
370
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import { useSelector } from 'react-redux'
|
3
|
+
|
4
|
+
export const Layout = ({children}) => {
|
5
|
+
const flash = useSelector((state) => state.flash)
|
6
|
+
|
7
|
+
return (
|
8
|
+
<div>
|
9
|
+
{flash.success && <p>{flash.success}</p>}
|
10
|
+
{flash.notice && <p>{flash.notice}</p>}
|
11
|
+
{flash.error && <p>{flash.error}</p>}
|
12
|
+
|
13
|
+
{children}
|
14
|
+
</div>
|
15
|
+
)
|
16
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
// import your page component
|
2
|
+
// e.g import PostsEdit from '../views/posts/edit'
|
3
|
+
|
4
|
+
// Mapping between your props template to Component, you must add to this
|
5
|
+
// to register any new page level component you create. If you are using the
|
6
|
+
// scaffold, it will auto append the identifers for you.
|
7
|
+
//
|
8
|
+
// For example:
|
9
|
+
//
|
10
|
+
// const pageIdentifierToPageComponent = {
|
11
|
+
// 'posts/new': PostNew
|
12
|
+
// };
|
13
|
+
//
|
14
|
+
//
|
15
|
+
// If you are using a build tool that supports globbing, you can automatically
|
16
|
+
// populate `pageIdentiferToPageComponent`. For example, if you are using vite,
|
17
|
+
// you can use the following snippet instead of manually importing.
|
18
|
+
//
|
19
|
+
// ```
|
20
|
+
// const pageIdentifierToPageComponent = {}
|
21
|
+
// const pages = import.meta.glob('../views/**/*.jsx', {eager: true})
|
22
|
+
//
|
23
|
+
// for (const key in pages) {
|
24
|
+
// if (pages.hasOwnProperty(key)) {
|
25
|
+
// const identifier = key.replace("../views/", "").split('.')[0];
|
26
|
+
// pageIdentifierToPageComponent[identifier] = pages[key].default;
|
27
|
+
// }
|
28
|
+
// }
|
29
|
+
// ```
|
30
|
+
//
|
31
|
+
const pageIdentifierToPageComponent = {
|
32
|
+
};
|
33
|
+
|
34
|
+
export { pageIdentifierToPageComponent }
|
35
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { configureStore } from "@reduxjs/toolkit"
|
2
|
+
import { useDispatch, useSelector, useStore } from "react-redux"
|
3
|
+
import { flashSlice } from "./slices/flash"
|
4
|
+
import {
|
5
|
+
beforeVisit,
|
6
|
+
beforeFetch,
|
7
|
+
beforeRemote,
|
8
|
+
rootReducer
|
9
|
+
} from "@thoughtbot/superglue"
|
10
|
+
|
11
|
+
const { pages, superglue } = rootReducer
|
12
|
+
|
13
|
+
export const store = configureStore({
|
14
|
+
devTools: process.env.NODE_ENV !== "production",
|
15
|
+
middleware: getDefaultMiddleware =>
|
16
|
+
getDefaultMiddleware({
|
17
|
+
serializableCheck: {
|
18
|
+
ignoredActions: [beforeFetch.type, beforeVisit.type, beforeRemote.type]
|
19
|
+
}
|
20
|
+
}),
|
21
|
+
reducer: {
|
22
|
+
superglue,
|
23
|
+
pages,
|
24
|
+
flash: flashSlice.reducer
|
25
|
+
}
|
26
|
+
})
|
27
|
+
|
28
|
+
export const useAppDispatch = useDispatch.withTypes()
|
29
|
+
export const useAppSelector = useSelector.withTypes()
|
30
|
+
export const useAppStore = useStore.withTypes()
|
@@ -1,22 +1,12 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { createRoot } from 'react-dom/client';
|
3
|
-
import {
|
3
|
+
import { Application, VisitResponse } from '@thoughtbot/superglue';
|
4
4
|
import { buildVisitAndRemote } from './application_visit';
|
5
5
|
import { pageIdentifierToPageComponent } from './page_to_page_mapping';
|
6
|
-
import {
|
6
|
+
import { store } from './store'
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
return pageIdentifierToPageComponent;
|
11
|
-
}
|
12
|
-
|
13
|
-
visitAndRemote(navRef, store) {
|
14
|
-
return buildVisitAndRemote(navRef, store);
|
15
|
-
}
|
16
|
-
|
17
|
-
buildStore(initialState, { superglue, pages}) {
|
18
|
-
return buildStore(initialState, superglue, pages);
|
19
|
-
}
|
8
|
+
declare global {
|
9
|
+
interface Window { SUPERGLUE_INITIAL_PAGE_STATE: VisitResponse; }
|
20
10
|
}
|
21
11
|
|
22
12
|
if (typeof window !== "undefined") {
|
@@ -28,7 +18,6 @@ if (typeof window !== "undefined") {
|
|
28
18
|
const root = createRoot(appEl);
|
29
19
|
root.render(
|
30
20
|
<Application
|
31
|
-
appEl={appEl}
|
32
21
|
// The base url prefixed to all calls made by the `visit`
|
33
22
|
// and `remote` thunks.
|
34
23
|
baseUrl={location.origin}
|
@@ -37,10 +26,15 @@ if (typeof window !== "undefined") {
|
|
37
26
|
initialPage={window.SUPERGLUE_INITIAL_PAGE_STATE}
|
38
27
|
// The initial path of the page, e.g., /foobar
|
39
28
|
path={location.pathname + location.search + location.hash}
|
29
|
+
// Callback used to setup visit and remote
|
30
|
+
buildVisitAndRemote={buildVisitAndRemote}
|
31
|
+
// Callback used to setup the store
|
32
|
+
store={store}
|
33
|
+
// Mapping between the page identifier to page component
|
34
|
+
mapping={pageIdentifierToPageComponent}
|
40
35
|
/>
|
41
36
|
);
|
42
37
|
}
|
43
38
|
});
|
44
39
|
}
|
45
40
|
|
46
|
-
|
@@ -0,0 +1,122 @@
|
|
1
|
+
import {
|
2
|
+
ApplicationRemote,
|
3
|
+
ApplicationVisit,
|
4
|
+
SuperglueStore,
|
5
|
+
BuildVisitAndRemote,
|
6
|
+
} from "@thoughtbot/superglue";
|
7
|
+
import { visit, remote } from "@thoughtbot/superglue/action_creators";
|
8
|
+
|
9
|
+
/**
|
10
|
+
* This function returns a wrapped visit and remote that will be used by UJS,
|
11
|
+
* the Navigation component, and passed to your page components through the
|
12
|
+
* NavigationContext.
|
13
|
+
*
|
14
|
+
* You can customize both functions to your liking. For example, for a progress
|
15
|
+
* bar. This file also adds support for data-sg-remote.
|
16
|
+
*/
|
17
|
+
export const buildVisitAndRemote: BuildVisitAndRemote = (
|
18
|
+
ref,
|
19
|
+
store: SuperglueStore
|
20
|
+
) => {
|
21
|
+
const appRemote: ApplicationRemote = (path, { dataset, ...options }) => {
|
22
|
+
/**
|
23
|
+
* You can make use of `dataset` to add custom UJS options.
|
24
|
+
* If you are implementing a progress bar, you can selectively
|
25
|
+
* hide it for some links. For example:
|
26
|
+
*
|
27
|
+
* ```
|
28
|
+
* <a href="/posts?props_at=data.header" data-sg-remote data-sg-hide-progress>
|
29
|
+
* Click me
|
30
|
+
* </a>
|
31
|
+
* ```
|
32
|
+
*
|
33
|
+
* This would be available as `sgHideProgress` on the dataset
|
34
|
+
*/
|
35
|
+
return store.dispatch(remote(path, options));
|
36
|
+
};
|
37
|
+
|
38
|
+
const appVisit: ApplicationVisit = (path, { dataset, ...options } = {}) => {
|
39
|
+
/**
|
40
|
+
* Do something before we make a request.
|
41
|
+
* e.g, show a [progress bar](https://thoughtbot.github.io/superglue/recipes/progress-bar/).
|
42
|
+
*
|
43
|
+
* Hint: you can access the current pageKey
|
44
|
+
* via `store.getState().superglue.currentPageKey`
|
45
|
+
*/
|
46
|
+
return store
|
47
|
+
.dispatch(visit(path, options))
|
48
|
+
.then((meta) => {
|
49
|
+
/**
|
50
|
+
* The assets fingerprints changed, instead of transitioning
|
51
|
+
* just go to the URL directly to retrieve new assets
|
52
|
+
*/
|
53
|
+
if (meta.needsRefresh) {
|
54
|
+
window.location.href = meta.pageKey;
|
55
|
+
return meta;
|
56
|
+
}
|
57
|
+
|
58
|
+
/**
|
59
|
+
* Your first expanded UJS option, `data-sg-replace`
|
60
|
+
*
|
61
|
+
* This option overrides the `navigationAction` to allow a link click or
|
62
|
+
* a form submission to replace history instead of the usual push.
|
63
|
+
*/
|
64
|
+
const navigatonAction = !!dataset?.sgReplace
|
65
|
+
? "replace"
|
66
|
+
: meta.navigationAction;
|
67
|
+
ref.current?.navigateTo(meta.pageKey, {
|
68
|
+
action: navigatonAction,
|
69
|
+
});
|
70
|
+
|
71
|
+
/**
|
72
|
+
* Return the meta object, it's used for scroll restoration when
|
73
|
+
* handling the back button. You can skip returning, but Superglue
|
74
|
+
* will warn you about scroll restoration.
|
75
|
+
*/
|
76
|
+
return meta;
|
77
|
+
})
|
78
|
+
.finally(() => {
|
79
|
+
/**
|
80
|
+
* Do something after a request.
|
81
|
+
*
|
82
|
+
* This is where you hide a progress bar.
|
83
|
+
*/
|
84
|
+
})
|
85
|
+
.catch((err) => {
|
86
|
+
const response = err.response;
|
87
|
+
|
88
|
+
if (!response) {
|
89
|
+
/**
|
90
|
+
* This is for errors that are NOT from a HTTP request.
|
91
|
+
*
|
92
|
+
* Tooling like Sentry can capture console errors. If not, feel
|
93
|
+
* free to customize to send the error to your telemetry tool of choice.
|
94
|
+
*/
|
95
|
+
console.error(err);
|
96
|
+
return;
|
97
|
+
}
|
98
|
+
|
99
|
+
if (response.ok) {
|
100
|
+
/**
|
101
|
+
* This is for errors that are from a HTTP request.
|
102
|
+
*
|
103
|
+
* If the response is OK, it must be an HTML body, we'll
|
104
|
+
* go to that locaton directly.
|
105
|
+
*/
|
106
|
+
window.location = response.url;
|
107
|
+
} else {
|
108
|
+
if (response.status >= 400 && response.status < 500) {
|
109
|
+
window.location.href = "/400.html";
|
110
|
+
return;
|
111
|
+
}
|
112
|
+
|
113
|
+
if (response.status >= 500) {
|
114
|
+
window.location.href = "/500.html";
|
115
|
+
return;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
});
|
119
|
+
};
|
120
|
+
|
121
|
+
return { visit: appVisit, remote: appRemote };
|
122
|
+
};
|
@@ -0,0 +1,46 @@
|
|
1
|
+
import { createSlice } from "@reduxjs/toolkit";
|
2
|
+
import { saveResponse, beforeVisit } from "@thoughtbot/superglue";
|
3
|
+
|
4
|
+
type FlashState = Record<string, any>
|
5
|
+
|
6
|
+
const initialState: FlashState = {};
|
7
|
+
|
8
|
+
export const flashSlice = createSlice({
|
9
|
+
name: "flash",
|
10
|
+
initialState: initialState,
|
11
|
+
reducers: {
|
12
|
+
clearFlash(state, { payload }: { payload: string }) {
|
13
|
+
const key = payload;
|
14
|
+
if (!key) {
|
15
|
+
return {};
|
16
|
+
}
|
17
|
+
|
18
|
+
delete state[key];
|
19
|
+
|
20
|
+
return {
|
21
|
+
...state,
|
22
|
+
};
|
23
|
+
},
|
24
|
+
flash(state, { payload }) {
|
25
|
+
return {
|
26
|
+
...state,
|
27
|
+
...payload,
|
28
|
+
};
|
29
|
+
},
|
30
|
+
},
|
31
|
+
extraReducers: (builder) => {
|
32
|
+
builder.addCase(beforeVisit, (_state, _action) => {
|
33
|
+
return {};
|
34
|
+
});
|
35
|
+
builder.addCase(saveResponse, (state, action) => {
|
36
|
+
const { page } = action.payload;
|
37
|
+
|
38
|
+
return {
|
39
|
+
...state,
|
40
|
+
...(page.slices.flash as FlashState),
|
41
|
+
};
|
42
|
+
});
|
43
|
+
},
|
44
|
+
});
|
45
|
+
|
46
|
+
export const { clearFlash, flash } = flashSlice.actions;
|