@topthink/components 1.1.7 → 1.1.9
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.
- package/es/editor-widget-ZqrBTAWC.js +355 -0
- package/es/image-xVpjTjcN.js +1 -0
- package/es/{index-pdAII942.js → index-4j3qlSEA.js} +1 -1
- package/es/{index-7Eo6mqDi.js → index-alLkMNpj.js} +2 -2
- package/es/index-fW_tvsVH.js +1 -0
- package/es/index-tFUwxWXk.js +78 -0
- package/es/index.js +1 -1
- package/es/infinite-scroller-toFkixFC.js +1 -0
- package/package.json +3 -2
- package/types/components/card.d.ts +1 -1
- package/types/components/clipboard.d.ts +1 -1
- package/types/components/dimmer.d.ts +1 -1
- package/types/components/error.d.ts +1 -2
- package/types/components/image-zoom.d.ts +1 -1
- package/types/components/lazy/form/widgets/editor-widget.d.ts +3 -4
- package/types/components/lazy/lightbox/image.d.ts +1 -1
- package/types/components/lazy/lightbox/index.d.ts +1 -1
- package/types/components/lazy/slider.d.ts +1 -2
- package/types/components/lazy/steps.d.ts +1 -1
- package/types/components/lazy/table/search.d.ts +2 -3
- package/types/components/lightbox.d.ts +4 -4
- package/types/components/loading-button.d.ts +1 -2
- package/types/components/modal/index.d.ts +1 -1
- package/types/components/modal/message.d.ts +1 -1
- package/types/components/number-format.d.ts +1 -2
- package/types/components/offcanvas.d.ts +1 -1
- package/types/components/pagination.d.ts +1 -2
- package/types/components/panel.d.ts +2 -2
- package/types/components/qrcode.d.ts +1 -2
- package/types/components/result.d.ts +5 -5
- package/types/components/slider.d.ts +1 -1
- package/types/components/space.d.ts +1 -1
- package/types/components/statistic.d.ts +1 -1
- package/types/components/steps.d.ts +3 -3
- package/types/components/toast-provider.d.ts +2 -0
- package/types/components/tooltip.d.ts +1 -2
- package/types/index.d.ts +2 -1
- package/types/theme.d.ts +7 -0
- package/es/editor-widget-CQ3zv-Xu.js +0 -355
- package/es/image-TAFDJRLj.js +0 -1
- package/es/index-rwu3sC2k.js +0 -76
- package/es/index-xM26Eo_f.js +0 -1
- package/es/infinite-scroller-5Z8JxvFT.js +0 -1
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
import{jsx as e}from"react/jsx-runtime";import"@toast-ui/editor/dist/toastui-editor-only.css";import"@toast-ui/editor/dist/i18n/zh-cn";import{Editor as t}from"@toast-ui/react-editor";import{useRef as i}from"react";import o from"styled-components";function r(o){const{value:r,onChange:a,placeholder:g,autofocus:d,options:l}=o,{editType:s="wysiwyg",outputType:p="markdown",onUpload:c}=l,I=i(null),m={};return c&&(m.addImageBlobHook=async(e,t)=>{t(await c(e))}),e(n,{children:e(t,{ref:I,placeholder:g,usageStatistics:!1,hooks:m,autofocus:d,linkAttributes:{target:"_blank"},onChange:()=>{const e=I.current?.getInstance();e&&a("markdown"===p?e.getMarkdown():e.getHTML())},language:"zh-CN",initialValue:r,previewStyle:"vertical",height:"600px",initialEditType:s})})}const n=o.div`
|
|
2
|
+
.ProseMirror {
|
|
3
|
+
position: relative;
|
|
4
|
+
word-wrap: break-word;
|
|
5
|
+
white-space: break-spaces;
|
|
6
|
+
-webkit-font-variant-ligatures: none;
|
|
7
|
+
font-variant-ligatures: none;
|
|
8
|
+
font-feature-settings: "liga" 0;
|
|
9
|
+
font-size: 15px;
|
|
10
|
+
overflow-y: auto;
|
|
11
|
+
overflow-X: hidden;
|
|
12
|
+
height: 100%;
|
|
13
|
+
|
|
14
|
+
&:focus {
|
|
15
|
+
outline: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
pre {
|
|
19
|
+
white-space: pre-wrap;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
li {
|
|
23
|
+
position: relative;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.placeholder {
|
|
27
|
+
color: #999;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ProseMirror-hideselection *::selection {
|
|
32
|
+
background: transparent;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.ProseMirror-hideselection *::-moz-selection {
|
|
36
|
+
background: transparent;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.ProseMirror-hideselection {
|
|
40
|
+
caret-color: transparent;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.ProseMirror-selectednode {
|
|
44
|
+
outline: 2px solid #8cf;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* Make sure li selections wrap around markers */
|
|
48
|
+
|
|
49
|
+
li.ProseMirror-selectednode {
|
|
50
|
+
outline: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
li.ProseMirror-selectednode:after {
|
|
54
|
+
content: "";
|
|
55
|
+
position: absolute;
|
|
56
|
+
left: -32px;
|
|
57
|
+
right: -2px;
|
|
58
|
+
top: -2px;
|
|
59
|
+
bottom: -2px;
|
|
60
|
+
border: 2px solid #8cf;
|
|
61
|
+
pointer-events: none;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* Protect against generic img rules */
|
|
65
|
+
|
|
66
|
+
img.ProseMirror-separator {
|
|
67
|
+
display: inline !important;
|
|
68
|
+
border: none !important;
|
|
69
|
+
margin: 0 !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
.ProseMirror-selectednode {
|
|
74
|
+
outline: none;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
table.ProseMirror-selectednode {
|
|
78
|
+
border-radius: 2px;
|
|
79
|
+
outline: 2px solid #00a9ff;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.html-block.ProseMirror-selectednode {
|
|
83
|
+
border-radius: 2px;
|
|
84
|
+
outline: 2px solid #00a9ff;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.toastui-editor-pseudo-clipboard {
|
|
88
|
+
position: fixed;
|
|
89
|
+
opacity: 0;
|
|
90
|
+
width: 0;
|
|
91
|
+
height: 0;
|
|
92
|
+
left: -1000px;
|
|
93
|
+
top: -1000px;
|
|
94
|
+
z-index: -1;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.toastui-editor-defaultUI {
|
|
98
|
+
font-family: inherit;
|
|
99
|
+
|
|
100
|
+
.ProseMirror {
|
|
101
|
+
height: 100%;
|
|
102
|
+
padding: 14px !important;
|
|
103
|
+
font-size: 1rem;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.toastui-editor-defaultUI-toolbar {
|
|
107
|
+
padding: 0 5px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.toastui-editor-md-container {
|
|
111
|
+
.toastui-editor-md-preview {
|
|
112
|
+
padding: 5px 10px;
|
|
113
|
+
|
|
114
|
+
.toastui-editor-contents {
|
|
115
|
+
padding-top: 0;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.toastui-editor-contents {
|
|
122
|
+
-ms-text-size-adjust: 100%;
|
|
123
|
+
-webkit-text-size-adjust: 100%;
|
|
124
|
+
line-height: 1.2;
|
|
125
|
+
word-wrap: break-word;
|
|
126
|
+
|
|
127
|
+
& > *:first-child {
|
|
128
|
+
margin-top: 0 !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
& > *:last-child {
|
|
132
|
+
margin-bottom: 0 !important;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, pre, table, audio, video {
|
|
136
|
+
margin: 1em 0;
|
|
137
|
+
line-height: 1.2;
|
|
138
|
+
padding: 0;
|
|
139
|
+
|
|
140
|
+
&:last-child {
|
|
141
|
+
margin-bottom: 0 !important;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
&:first-child {
|
|
145
|
+
margin-top: 0 !important;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
p {
|
|
150
|
+
margin-bottom: 1em;
|
|
151
|
+
line-height: 2;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
h1, h2, h3, h4, h5, h6 {
|
|
155
|
+
font-weight: normal;
|
|
156
|
+
|
|
157
|
+
&.align-right {
|
|
158
|
+
text-align: right;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
&.align-center {
|
|
162
|
+
text-align: center;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
h1 {
|
|
167
|
+
font-size: 2em;
|
|
168
|
+
line-height: 1.2;
|
|
169
|
+
border-bottom: 1px solid #eeeeee;
|
|
170
|
+
padding-bottom: .5em;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
h2 {
|
|
174
|
+
padding-bottom: .4em;
|
|
175
|
+
font-size: 1.3em;
|
|
176
|
+
line-height: 1.2;
|
|
177
|
+
border-bottom: 1px solid #eeeeee
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
h3 {
|
|
181
|
+
font-size: 1.2em;
|
|
182
|
+
line-height: 1.2;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
h4 {
|
|
186
|
+
font-size: 1.1em;
|
|
187
|
+
line-height: 1.2;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
h5 {
|
|
191
|
+
font-size: 1em;
|
|
192
|
+
line-height: 1.2;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
hr {
|
|
196
|
+
border: 0;
|
|
197
|
+
border-bottom: 1px solid #eeeeee;
|
|
198
|
+
margin-bottom: 0.5em;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
ul {
|
|
202
|
+
padding-left: 2em;
|
|
203
|
+
|
|
204
|
+
ul {
|
|
205
|
+
margin: 0;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
ol {
|
|
210
|
+
padding-left: 2em;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
li {
|
|
214
|
+
line-height: 2;
|
|
215
|
+
|
|
216
|
+
&.task-list-item {
|
|
217
|
+
list-style: none;
|
|
218
|
+
position: relative;
|
|
219
|
+
|
|
220
|
+
input[type=checkbox] {
|
|
221
|
+
position: absolute;
|
|
222
|
+
left: -1.5em;
|
|
223
|
+
top: 0.5em;
|
|
224
|
+
width: 1em;
|
|
225
|
+
height: 1em;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
code {
|
|
231
|
+
display: inline-block;
|
|
232
|
+
border-radius: 4px;
|
|
233
|
+
padding: .2em .4em;
|
|
234
|
+
background-color: #f7f7f7;
|
|
235
|
+
word-break: break-all;
|
|
236
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
237
|
+
white-space: pre;
|
|
238
|
+
line-height: 1.3;
|
|
239
|
+
margin: -.2em .4em;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
pre {
|
|
243
|
+
padding: 1.05em;
|
|
244
|
+
overflow: auto;
|
|
245
|
+
line-height: 1.45;
|
|
246
|
+
background-color: #f7f7f7;
|
|
247
|
+
border: 0;
|
|
248
|
+
border-radius: 3px;
|
|
249
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
pre > code {
|
|
254
|
+
display: inline;
|
|
255
|
+
max-width: 100%;
|
|
256
|
+
padding: 0;
|
|
257
|
+
margin: 0;
|
|
258
|
+
overflow: initial;
|
|
259
|
+
line-height: inherit;
|
|
260
|
+
background-color: rgba(0, 0, 0, 0);
|
|
261
|
+
border: 0;
|
|
262
|
+
tab-size: 4;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
table {
|
|
266
|
+
border-collapse: collapse;
|
|
267
|
+
table-layout: fixed;
|
|
268
|
+
width: 100%;
|
|
269
|
+
line-height: 1.8;
|
|
270
|
+
border-spacing: 0;
|
|
271
|
+
|
|
272
|
+
th {
|
|
273
|
+
text-align: left;
|
|
274
|
+
|
|
275
|
+
&[align='center'] {
|
|
276
|
+
text-align: center;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
&[align='right'] {
|
|
280
|
+
text-align: right;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
th, td {
|
|
285
|
+
border: 1px solid #e0e0e0;
|
|
286
|
+
padding: 3px 12px;
|
|
287
|
+
height: 34px;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
tr:hover td {
|
|
291
|
+
background-color: #f1f1f1;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
img {
|
|
296
|
+
max-width: 100%;
|
|
297
|
+
display: inline-block;
|
|
298
|
+
padding: 3px;
|
|
299
|
+
vertical-align: middle;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
a {
|
|
303
|
+
text-decoration: none;
|
|
304
|
+
color: var(--bs-primary);
|
|
305
|
+
|
|
306
|
+
&:hover {
|
|
307
|
+
text-decoration: underline;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
blockquote {
|
|
312
|
+
padding: 5px 5px 5px 15px;
|
|
313
|
+
color: #777777;
|
|
314
|
+
border-left: 4px solid #dddddd;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
video {
|
|
318
|
+
display: block;
|
|
319
|
+
width: 100%;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
audio {
|
|
323
|
+
display: block;
|
|
324
|
+
width: 100%;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.task-list-item {
|
|
328
|
+
border: 0;
|
|
329
|
+
list-style: none;
|
|
330
|
+
padding-left: 24px;
|
|
331
|
+
margin-left: -24px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.task-list-item::before {
|
|
335
|
+
background-repeat: no-repeat;
|
|
336
|
+
background-size: 18px 18px;
|
|
337
|
+
background-position: center;
|
|
338
|
+
content: '';
|
|
339
|
+
margin-left: 0;
|
|
340
|
+
margin-top: 0;
|
|
341
|
+
border-radius: 2px;
|
|
342
|
+
height: 18px;
|
|
343
|
+
width: 18px;
|
|
344
|
+
position: absolute;
|
|
345
|
+
left: 0;
|
|
346
|
+
top: 7px;
|
|
347
|
+
cursor: pointer;
|
|
348
|
+
background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iI0ZGRiIgc3Ryb2tlPSIjQ0NDIj4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAzMCAtMjk2KSB0cmFuc2xhdGUoNzg4IDE5MikgdHJhbnNsYXRlKDI0MiAxMDQpIj4KICAgICAgICAgICAgICAgICAgICA8cmVjdCB3aWR0aD0iMTciIGhlaWdodD0iMTciIHg9Ii41IiB5PSIuNSIgcng9IjIiLz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.task-list-item.checked::before {
|
|
352
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iIzRCOTZFNiI+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE2IDBjMS4xMDUgMCAyIC44OTUgMiAydjE0YzAgMS4xMDUtLjg5NSAyLTIgMkgyYy0xLjEwNSAwLTItLjg5NS0yLTJWMkMwIC44OTUuODk1IDAgMiAwaDE0em0tMS43OTMgNS4yOTNjLS4zOS0uMzktMS4wMjQtLjM5LTEuNDE0IDBMNy41IDEwLjU4NSA1LjIwNyA4LjI5M2wtLjA5NC0uMDgzYy0uMzkyLS4zMDUtLjk2LS4yNzgtMS4zMi4wODMtLjM5LjM5LS4zOSAxLjAyNCAwIDEuNDE0bDMgMyAuMDk0LjA4M2MuMzkyLjMwNS45Ni4yNzggMS4zMi0uMDgzbDYtNiAuMDgzLS4wOTRjLjMwNS0uMzkyLjI3OC0uOTYtLjA4My0xLjMyeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNTAgLTI5NikgdHJhbnNsYXRlKDc4OCAxOTIpIHRyYW5zbGF0ZSgyNjIgMTA0KSIvPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K);
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
`;export{r as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as t,Fragment as r}from"react/jsx-runtime";import{memo as e,useContext as i,useState as o,useEffect as s}from"react";import{I as a}from"./index-tFUwxWXk.js";import{useInView as m}from"react-intersection-observer";import"sweetalert2/dist/sweetalert2.js";import"sweetalert2-react-content";import"react-bootstrap";import"lodash";import"axios";import"query-string";import"retry-axios";import"notistack";import"path";import"react-async-hook";import"styled-components";import"dayjs";import"dayjs/locale/zh-cn";import"dayjs/plugin/relativeTime";import"classnames";import"use-url-search-params";import"copy-to-clipboard";import"goober";import"immer";var n=e((e=>{let{lazy:n=!0,...c}=e;const{registerImage:p,setShow:l,setCurrent:h,getId:d}=i(a),[g,w]=o(),[u,f]=o(!1),{ref:y,inView:v}=m({threshold:.2,skip:!n,initialInView:!0}),[x]=o(d);if(s((()=>{if(c.src)return p(x,c.src)}),[]),u)return t(r,{children:c.alt?`[图片加载失败:${c.alt}]`:" "});const j=!v&&n&&g?"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3e %3crect width='1' height='1' fill='none'/%3e%3c/svg%3e":c.src;return t("img",{width:g?.[0],height:g?.[1],onLoad:t=>{g||w([t.currentTarget.clientWidth,t.currentTarget.clientHeight])},onError:()=>{f(!0)},ref:y,...c,alt:void 0,src:j,onClick:()=>{h(x),l(!0)}})}));export{n as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{jsx as e,jsxs as t,Fragment as r}from"react/jsx-runtime";import n from"rc-table";import{unstable_batchedUpdates as o}from"react-dom";import{FormControl as a,Table as i}from"react-bootstrap";import{useUrlSearchParams as c}from"use-url-search-params";import{isEqual as l,omit as s}from"lodash";import*as d from"react";import{useState as p,useCallback as m,useRef as u,useEffect as h,useMemo as f,memo as g,forwardRef as y,useImperativeHandle as v}from"react";import{B as b,u as x,P as w,a as j,b as C,r as k,i as S,N as E,L as z,T as O,C as V,S as N}from"./index-
|
|
1
|
+
import{jsx as e,jsxs as t,Fragment as r}from"react/jsx-runtime";import n from"rc-table";import{unstable_batchedUpdates as o}from"react-dom";import{FormControl as a,Table as i}from"react-bootstrap";import{useUrlSearchParams as c}from"use-url-search-params";import{isEqual as l,omit as s}from"lodash";import*as d from"react";import{useState as p,useCallback as m,useRef as u,useEffect as h,useMemo as f,memo as g,forwardRef as y,useImperativeHandle as v}from"react";import{B as b,u as x,P as w,a as j,b as C,r as k,i as S,N as E,L as z,T as O,C as V,S as N}from"./index-tFUwxWXk.js";import M from"styled-components";import H from"./index-fW_tvsVH.js";import q from"dayjs";import"sweetalert2/dist/sweetalert2.js";import"sweetalert2-react-content";import"axios";import"query-string";import"retry-axios";import"notistack";import"path";import"react-async-hook";import"dayjs/locale/zh-cn";import"dayjs/plugin/relativeTime";import"classnames";import"copy-to-clipboard";import"goober";import"immer";import"react-intersection-observer";import"@topthink/json-form";const K=function(t){let{indeterminate:r=!1,...n}=t;const o=u(null);return h((()=>{o.current&&(o.current.indeterminate=r)}),[r]),e("input",{ref:o,...n,className:"form-check-input",type:"checkbox"})};var B;function D(){return D=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},D.apply(this,arguments)}const P=e=>d.createElement("svg",D({xmlns:"http://www.w3.org/2000/svg",width:16,height:16,fill:"currentColor",viewBox:"0 0 1024 1024"},e),B||(B=d.createElement("path",{d:"M252.069 906.496h520.283c89.582 0 134.144-44.562 134.144-132.846V250.331c0-88.283-44.562-132.845-134.144-132.845H252.069c-89.143 0-134.583 44.141-134.583 132.845V773.67c0 88.704 45.44 132.845 134.583 132.845zm1.28-68.992c-42.844 0-66.853-22.71-66.853-67.291V253.806c0-44.58 24.01-67.292 66.853-67.292h517.723c42.423 0 66.432 22.711 66.432 67.292v516.388c0 44.58-24.01 67.292-66.432 67.292zM511.78 714.496c22.71 0 36.425-15.854 36.425-40.704V547.365H682.35c24.009 0 40.722-12.874 40.722-35.584 0-23.132-15.854-36.426-40.722-36.426H548.206V340.773c0-24.85-13.715-40.704-36.425-40.704s-35.566 16.713-35.566 40.722v134.583H342.49c-24.85 0-41.142 13.275-41.142 36.407 0 22.71 17.152 35.584 41.142 35.584h133.724v126.427c0 23.99 12.855 40.704 35.566 40.704"})));var T;function Y(){return Y=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Y.apply(this,arguments)}const F=e=>d.createElement("svg",Y({xmlns:"http://www.w3.org/2000/svg",width:16,height:16,fill:"currentColor",viewBox:"0 0 1024 1024"},e),T||(T=d.createElement("path",{d:"M252.069 906.496h520.283c89.582 0 134.144-44.562 134.144-132.846V250.331c0-88.283-44.562-132.845-134.144-132.845H252.069c-89.143 0-134.583 44.141-134.583 132.845V773.67c0 88.704 45.44 132.845 134.583 132.845zm1.28-68.992c-42.844 0-66.853-22.71-66.853-67.291V253.806c0-44.58 24.01-67.292 66.853-67.292h517.723c42.423 0 66.432 22.711 66.432 67.292v516.388c0 44.58-24.01 67.292-66.432 67.292zm86.582-289.719h344.576c23.991 0 40.704-12.855 40.704-35.566 0-23.15-15.433-36.425-40.704-36.425H339.931c-24.868 0-40.722 13.276-40.722 36.425 0 22.711 16.713 35.566 40.722 35.566"})));function I(r){let{data:n,options:o,columns:a,onSearch:i}=r;const[c,s]=p(0),[d,u]=p(n);h((()=>{l(n,d)||(u(n),s((e=>e+1)))}),[n]);const[g,y,v]=f((()=>{const e={"ui:col":10,"ui:order":o.order},t={},r={};o.fields.forEach((n=>{const i=a.find((e=>e.dataIndex===n));if(i){const a=i.title;if("string"==typeof a){if(e[n]={"ui:col":4,"ui:labelCol":3,"ui:placeholder":"请输入",...o.ui?.[n]},i.valueEnum){const t=i.valueEnum;return e[n]["ui:placeholder"]="请选择",r[n]={title:a,type:"string",enum:Object.keys(t).flatMap((e=>"string"==typeof t[e].text?[e]:[])),enumNames:Object.keys(t).flatMap((e=>{const r=t[e].text;return"string"==typeof r?[r]:[]}))}}t[n]=void 0,r[n]={title:a,type:"string"}}}})),o.extraFields&&Object.entries(o.extraFields).forEach((n=>{let[a,i]=n;e[a]={"ui:col":4,"ui:labelCol":3,"ui:placeholder":"请输入",...o.ui?.[a]},t[a]=void 0,r[a]={title:i,type:"string"}}));return[{type:"object",properties:r},e,t]}),[o.fields,o.extraFields]),x=m((e=>{let{formData:t}=e;u(t),i({...v,...t})}),[i,v]),w=m((()=>{i(v)}),[i,v]);return e(R,{children:e(H,{formContext:{layout:"horizontal"},schema:g,uiSchema:y,onSubmit:x,formData:d,children:e("div",{className:"col-12 col-md-2 ms-auto mt-md-auto",children:t("div",{className:"justify-content-end d-flex gap-2 ",children:[e(b,{className:"px-4",onClick:w,variant:"secondary",children:"重置"}),e(b,{className:"px-4",type:"submit",variant:"primary",children:"查询"})]})})})},c)}const R=M.div`
|
|
2
2
|
margin-bottom: 1rem;
|
|
3
3
|
`;function _(t){let{keyword:r,onKeywordChange:n}=t;const[o,i]=p(r),c=x(n,500);h((()=>{i(r)}),[r]);const l=m((e=>{i(e.target.value),c(e.target.value)}),[c,i]);return e(a,{value:o,onChange:l,type:"search",placeholder:"Search..."})}const A=M.thead`
|
|
4
4
|
th {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{jsxs as t,jsx as r}from"react/jsx-runtime";import{useState as o,useCallback as e}from"react";import i,{useController as n,useLightboxState as a}from"yet-another-react-lightbox";import s from"yet-another-react-lightbox/plugins/counter";import l from"yet-another-react-lightbox/plugins/download";import m from"yet-another-react-lightbox/plugins/zoom";import p from"yet-another-react-lightbox/plugins/thumbnails";import"yet-another-react-lightbox/styles.css";import"yet-another-react-lightbox/plugins/counter.css";import"yet-another-react-lightbox/plugins/thumbnails.css";import{I as c}from"./index-
|
|
1
|
+
import{jsxs as t,jsx as r}from"react/jsx-runtime";import{useState as o,useCallback as e}from"react";import i,{useController as n,useLightboxState as a}from"yet-another-react-lightbox";import s from"yet-another-react-lightbox/plugins/counter";import l from"yet-another-react-lightbox/plugins/download";import m from"yet-another-react-lightbox/plugins/zoom";import p from"yet-another-react-lightbox/plugins/thumbnails";import"yet-another-react-lightbox/styles.css";import"yet-another-react-lightbox/plugins/counter.css";import"yet-another-react-lightbox/plugins/thumbnails.css";import{I as c}from"./index-tFUwxWXk.js";import u from"styled-components";import"sweetalert2/dist/sweetalert2.js";import"sweetalert2-react-content";import"react-bootstrap";import"lodash";import"axios";import"query-string";import"retry-axios";import"notistack";import"path";import"react-async-hook";import"dayjs";import"dayjs/locale/zh-cn";import"dayjs/plugin/relativeTime";import"classnames";import"use-url-search-params";import"copy-to-clipboard";import"goober";import"immer";import"react-intersection-observer";const d={counter:s,zoom:m,download:l,thumbnails:p};let g=0;function h(i){let{children:s,render:l,zoom:m,toolbar:p,plugins:u=["counter","zoom","download"]}=i;const[h,y]=o((()=>new Map)),[x,f]=o(),[w,_]=o(!1),k=e(((t,r)=>(y((o=>new Map(o).set(t,r))),()=>{y((r=>{const o=new Map(r);return o.delete(t)?o:r}))})),[]),v=Array.from(h.keys()),j=v.indexOf(x),z=v.map((t=>{const r=h.get(t);return"string"==typeof r?{src:r}:{render:r}})),C=e((()=>g++),[]);return t(c.Provider,{value:{images:h,current:x,setCurrent:f,setShow:_,registerImage:k,getId:C},children:[s,r(b,{plugins:u.map((t=>d[t])),open:w,index:j,close:()=>_(!1),slides:z,carousel:{finite:!0,preload:3},toolbar:p?.({useController:n,useLightboxState:a}),zoom:m,render:{...l,buttonPrev:z.length<=1?()=>null:void 0,buttonNext:z.length<=1?()=>null:void 0,slide:t=>{let{slide:r}=t;if("render"in r)return r.render()}},controller:{closeOnBackdropClick:!0}})]})}const b=u(i)`
|
|
2
2
|
--yarl__color_backdrop: rgba(0, 0, 0, .7);
|
|
3
3
|
--yarl__thumbnails_container_background_color: rgba(0, 0, 0, .9);
|
|
4
|
-
`;export{
|
|
4
|
+
`;export{h as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as t}from"react/jsx-runtime";import o,{getRegistry as r}from"@topthink/json-form";import*as a from"react";import{forwardRef as e,useState as n,useCallback as i}from"react";import s from"axios";import{c as p,r as m,B as l}from"./index-tFUwxWXk.js";import{mapValues as c}from"lodash";import"sweetalert2/dist/sweetalert2.js";import"sweetalert2-react-content";import"react-bootstrap";import"query-string";import"retry-axios";import"notistack";import"path";import"react-async-hook";import"styled-components";import"dayjs";import"dayjs/locale/zh-cn";import"dayjs/plugin/relativeTime";import"classnames";import"use-url-search-params";import"copy-to-clipboard";import"goober";import"immer";import"react-intersection-observer";const d=require("ajv-i18n/localize/zh"),u=a.lazy((()=>import("./editor-widget-ZqrBTAWC.js"))),f=o=>t(a.Suspense,{fallback:null,children:t(u,{...o})}),y={upload:function(o){let{options:a,...e}=o;const{widgets:n}=r();return a.endpoint&&(a.onUpload=async t=>{const o=new FormData;o.set("file",t);const{url:r,value:e}=await m({url:a.endpoint,method:"post",data:o});return{url:r,value:e}}),t(n.upload,{...e,options:a})},avatar:function(o){let{options:a,...e}=o;const{widgets:n}=r();return a.endpoint&&(a.onUpload=async t=>{const o=new FormData;o.set("file",t);const{url:r}=await m({url:a.endpoint,method:"post",data:o});return r}),t(n.avatar,{...e,options:a})},editor:function(o){let{options:r,...a}=o;return r.endpoint&&(r.onUpload=async t=>{const o=new FormData;o.set("file",t);const{url:a}=await m({url:r.endpoint,method:"post",data:o});return a}),t(f,{...a,options:r})},typeahead:function(o){let{options:a,...e}=o;const{widgets:n}=r();return a.endpoint&&(a.onSearch=async t=>{let{value:o,query:r}=t;return await m({url:a.endpoint,params:{value:o,query:r}})}),t(n.typeahead,{...e,options:a})}},h=e(((r,a)=>{let{action:e,method:u="post",onSuccess:f,formData:h,onSubmitting:w,onSubmit:g,onChange:v,submitText:b="保存",transformData:j,children:x,...D}=r;const[S,k]=n(),[q,z]=p(!1),[_,E]=n(h),F=i((async(t,o)=>{if(!q)try{if(z(!0),w&&w(!0),e){let{formData:o}=t;j&&(o=j(o));try{const t=await m({url:e,method:u,data:o});return k(void 0),f&&await f(t),t}catch(t){if(!s.isAxiosError(t))throw t;k((t=>{const o=t.errors;return"string"==typeof o?{__errors:[o]}:c(o,(t=>({__errors:[t]})))})(t))}}else if(g)return await g(t,o)}finally{z(!1),w&&w(!1)}}),[e,u,g]),U=i((t=>{const{formData:o}=t;E(o),v&&v(t)}),[E,v]),C=i((t=>(t=t.map((t=>({keyword:t.name,dataPath:t.property,...t}))),d(t),t)),[]),N=t(l,{className:"px-4",loading:q,type:"submit",variant:"primary",children:b});return"function"==typeof x&&(x=x({submit:N,loading:q})),t(o,{ref:a,extraErrors:S,onSubmit:F,transformErrors:C,noHtml5Validate:!0,noValidate:!0,...D,formData:_,onChange:U,widgets:y,children:x||t("div",{className:"col-12",children:N})})}));export{h as default};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import e from"sweetalert2/dist/sweetalert2.js";import t from"sweetalert2-react-content";import{jsx as n,jsxs as r,Fragment as o}from"react/jsx-runtime";import{useRef as a,useState as i,useEffect as s,createContext as c,Fragment as l,useContext as d,useCallback as u,useMemo as h,forwardRef as m,lazy as f,Suspense as p,Children as g,createElement as y,useImperativeHandle as w,memo as v}from"react";import{OverlayTrigger as b,Tooltip as x,Spinner as k,Button as C,Modal as N,ButtonGroup as S,ToggleButton as z,Card as P,Accordion as j,Stack as T,Alert as $,Pagination as H,Offcanvas as B,Row as E,Col as L}from"react-bootstrap";import{uniqueId as _,values as D,omit as R,debounce as M}from"lodash";import F from"axios";import O from"query-string";import*as A from"retry-axios";import{enqueueSnackbar as U,SnackbarProvider as I}from"notistack";import q from"path";import{useAsyncCallback as W}from"react-async-hook";import G,{css as K,createGlobalStyle as V}from"styled-components";import Y from"dayjs";import"dayjs/locale/zh-cn";import Q from"dayjs/plugin/relativeTime";import J from"classnames";import{useUrlSearchParams as X}from"use-url-search-params";import Z from"copy-to-clipboard";import*as ee from"goober";import{freeze as te,produce as ne}from"immer";import"react-intersection-observer";const re=()=>{document.body.style.setProperty("--vh",window.innerHeight/100+"px"),document.body.style.setProperty("--100vh",window.innerHeight+"px")};window.addEventListener("resize",re),re();const oe=t(e),ae={confirmButtonText:"确定",cancelButtonText:"取消"},ie={confirm:async e=>{const{isConfirmed:t}=await oe.fire({...ae,icon:"warning",showCancelButton:!0,...e,async preConfirm(t){if(e.preConfirm)try{return await e.preConfirm(t)}catch(e){return e instanceof Error&&oe.showValidationMessage(e.message),!1}return!0}});return t},success:e=>{oe.fire({...ae,toast:!0,position:"top",icon:"success",timer:2e3,showConfirmButton:!1,...e})},error:e=>{oe.fire({...ae,toast:!0,position:"top",icon:"error",timer:5e3,showConfirmButton:!1,...e})},close:e=>{oe.close(e)},defaults:ae};const se=c({});function ce(e){return t=>{let{resolve:r,destroy:o,message:c}=t;const[l,m]=function(e){const t=a(null),[n,r]=i(e);return s((()=>{t.current&&(t.current(),t.current=null)}),[n]),[n,(e,n)=>{t.current="function"==typeof n?n:null,r(e)}]}(!0),f=d(se),p=u((e=>{m(!1,(()=>{r(e)}))}),[m,r]),g=h((()=>({show:l,onHide:()=>p(),onExited:()=>o(),container:f.container})),[l,p,o]);return n(e,{resolve:p,state:g,message:c})}}function le(e){return t=>new Promise((r=>{const o=n(e,{resolve:r,destroy:()=>{me(o)},message:t});he(o)}))}let de=()=>{},ue=new Set;const he=e=>{ue=new Set(ue),ue.add(e),de(ue)},me=e=>{ue=new Set(ue),ue.delete(e),de(ue)};function fe(e,t){return le(ce(e))(t)}function pe(e){let{tooltip:t,children:r,placement:o="bottom"}=e;return n(b,{placement:o,overlay:n(x,{id:_(),children:t}),children:r})}const ge=c(!1),ye=m(((e,t)=>{let{loading:a,percent:i,disabled:s,children:c,tooltip:l,variant:u,...h}=e;d(ge)&&!u&&(u="link"),a&&(s=!0,c=r(o,{children:[n(k,{ref:t,as:"span",size:"sm",role:"status","aria-hidden":"true",animation:"border"}),i?r("span",{className:"ms-2",children:[i,"%"]}):null]}));const m=n(C,{ref:t,...h,variant:u,disabled:s,children:c});return l?n(pe,{tooltip:l,children:n("span",{className:"d-inline-block",children:m})}):m})),we=function(e){let{state:t,message:{title:o,message:a,okText:i,cancelText:s},resolve:c}=e;return r(N,{...t,children:[n(N.Header,{children:n(N.Title,{as:"h5",children:o||"确认"})}),n(N.Body,{children:a}),r(N.Footer,{children:[n(ye,{variant:"secondary",onClick:()=>c(),children:s||"取消"}),n(ye,{onClick:()=>c(!0),children:i||"确定"})]})]})};const ve=e=>{let{header:t,children:a,footer:s,closable:c=!0,show:l,cancelText:d="取消",okText:u="确定",onOk:m,onCancel:f,onHide:p,okButtonProps:g,bodyAs:y,headerAs:w="h5",confirmLoading:v=!1,...b}=e;const[x,k]=i(!1),C=h((()=>n(ye,{loading:x||v,variant:"primary",onClick:async e=>{k(!0);try{await(m?.(e)),e.defaultPrevented||p?.()}finally{k(!1)}},...g,children:u})),[g,u,m,p,x,v]),S=h((()=>n(ye,{variant:"secondary",onClick:e=>{f?.(e),e.defaultPrevented||p?.()},children:d})),[f,p,d]),z={close:()=>{p?.()}};switch(typeof s){case"undefined":s=r(o,{children:[S,C]});break;case"function":s=s({okButton:C,cancelButton:S,action:z})}return r(N,{...b,onHide:p,show:l,children:[t&&n(N.Header,{closeButton:c,children:n(N.Title,{as:w,children:t})}),n(N.Body,{as:y,children:a}),s&&n(N.Footer,{children:s})]})};ve.Message=function(e){const[t,r]=i(ue);return s((()=>{de=r}),[]),n(se.Provider,{value:e,children:Array.from(t).map(((e,t)=>n(l,{children:e},`message-${t}`)))})},ve.confirm=function(e){return le(ce(we))(e)},ve.show=fe;const be=["default","error","warning","success","info"].reduce(((e,t)=>(e[t]=(e,n)=>U(e,{variant:t,autoHideDuration:3e3,anchorOrigin:{vertical:"top",horizontal:"center"},...n}),e)),{});function xe(e){return e&&"object"==typeof e}A.attach(),F.defaults.raxConfig={retryDelay:2e3,backoffType:"static",shouldRetry:e=>{let{config:t,response:n}=e;return!(t.raxConfig?.retryDecider&&!t.raxConfig.retryDecider())&&("GET"===t.method?.toUpperCase()&&449===n?.status)}},F.defaults.maxContentLength=1/0,F.defaults.maxBodyLength=1/0,F.defaults.baseURL="/api",F.defaults.authTokenName="authorization";const ke=F.isAxiosError,Ce=e=>{if(!F.isAxiosError(e))throw e;be.error(e.message)},Ne=function(e){e?.baseURL&&(e.baseURL=q.resolve(F.defaults.baseURL||"/",e.baseURL));const t=F.create(e);return A.attach(t),t.interceptors.request.use((e=>{const t=e.authTokenName;if(t){const n=localStorage.getItem(t);n&&(e.headers={Authorization:`Bearer ${n}`,...e.headers})}return e}),(e=>Promise.reject(e))),t.interceptors.response.use((e=>(201===e.status&&e.data.location&&(window.location.href=e.data.location,e.data=void 0),e)),(e=>{if(F.isAxiosError(e)&&e.response){const{data:t,status:n}=e.response;401===n?e.errors="Unauthorized":xe(t)?422===n?e.errors=t:"message"in t&&(e.errors=t.message):e.errors=t,"string"!=typeof e.errors?e.message=Object.values(e.errors).join("<br />"):e.message=e.errors}return Promise.reject(e)})),t},Se=async function(e,t){if(t||(t=Ne()),e="string"==typeof e?{url:e}:e,(e={paramsSerializer:function(e){return O.stringify(e,{sort:!1,skipNull:!0,skipEmptyString:!0,arrayFormat:"bracket"})},...e}).onMessage){let t=0,n="",r=null;const o=e.onMessage;e.onDownloadProgress=e=>{const a=e.target,{responseText:i}=a;for(;t<e.loaded;){const e=i.substring(t,++t);if(n+=e,"\n"===e){if(r||(r={id:"",event:"",data:""}),"\n"===n)o(r),r=null;else{const e=n.match(/^data:(?<data>.*)/);e&&(r.data=e.groups.data.trim())}n=""}}}}const{data:n}=await t.request(e);return n};Se.create=function(e){const t=Ne(e),n=e=>Se(e,t);return n.interceptors=t.interceptors,n},Se.defaults=F.defaults,Se.interceptors=F.interceptors;function ze(e){const t=(()=>{const e=a(!1);return s((()=>(e.current=!1,()=>{e.current=!0})),[]),e})(),[n,r]=i(e);return[n,u((e=>{t.current||r(e)}),[])]}function Pe(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{locale:n="zh-CN",currency:r=!0,...o}=t;let a;a=r?{style:"currency",currency:"CNY"}:{minimumFractionDigits:2};return new Intl.NumberFormat(n,{...a,...o}).format(e)}function je(e){let{manual:t,refreshDeps:n,...r}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{execute:o,currentParams:a,error:i,...c}=W((async t=>(e="string"==typeof e?{url:e}:e,await Se({...e,...t}))),r);s((()=>{if(!t&&!n)try{o()}catch{}}),[]),s((()=>{n&&l()}),n);const l=u((async()=>{try{a?await o(...a):await o()}catch{}}),[o,a]);if(i&&ke(i)){const e=i.errors;i=new Error("string"==typeof e?e:D(e).join(""))}return{refresh:l,execute:o,error:i,...c}}function Te(e){let{active:t,inverted:r,...o}=e;return n($e,{$active:t,$inverted:r,...o})}G.div`
|
|
2
|
+
position: relative;
|
|
3
|
+
`;const $e=G.div`
|
|
4
|
+
display: ${e=>e.$active?"flex":"none"};
|
|
5
|
+
position: absolute;
|
|
6
|
+
top: 0 !important;
|
|
7
|
+
left: 0 !important;
|
|
8
|
+
width: 100%;
|
|
9
|
+
height: 100%;
|
|
10
|
+
text-align: center;
|
|
11
|
+
vertical-align: middle;
|
|
12
|
+
padding: 1em;
|
|
13
|
+
background-color: ${e=>e.$inverted?"rgba(255, 255, 255, .85)":"rgba(0, 0, 0, .85)"};
|
|
14
|
+
opacity: ${e=>e.$active?1:0};
|
|
15
|
+
line-height: 1;
|
|
16
|
+
animation-fill-mode: both;
|
|
17
|
+
animation-duration: .5s;
|
|
18
|
+
transition: background-color .5s linear;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
user-select: none;
|
|
23
|
+
will-change: opacity;
|
|
24
|
+
z-index: 990;
|
|
25
|
+
`;function He(e){let{loading:t=!0,children:o,variant:a="primary",animation:i="border",wrap:s,...c}=e;return t?(o&&(o=n("p",{className:"mt-3 text-secondary",children:o})),o=r(Te,{inverted:!0,active:!0,children:[n(k,{animation:i,variant:a,...c}),o]}),s?n(Be,{$height:"number"==typeof s?s:150,children:o}):o):null}const Be=G.div`
|
|
26
|
+
position: relative;
|
|
27
|
+
height: ${e=>`${e.$height}px`};
|
|
28
|
+
`,Ee=f((async()=>{const{QRCodeSVG:e}=await import("qrcode.react");return{default:e}}));function Le(e){return n(p,{fallback:null,children:n(Ee,{...e})})}const _e=function(e){let{state:t,message:r,resolve:o}=e;const i=a(!0),{result:c,checkUrl:l,onComplete:d}=r,[u,h]=ze(!1);return s((()=>{Se({url:l,method:"post",data:{order_no:c.order_no},raxConfig:{shouldRetry:e=>i.current&&449===e.response?.status}}).then((()=>{d?.(),o()})).catch((()=>null))}),[]),n(ve,{...t,centered:!0,onHide:()=>{i.current=!1,t.onHide()},backdrop:"static",header:"支付结果",okText:"已完成支付",okButtonProps:{loading:u},onOk:async e=>{e.preventDefault();try{h(!0),await Se({url:l,method:"post",data:{order_no:c.order_no,force:!0},raxConfig:{shouldRetry:()=>!1}}),d?.(),o()}catch(e){ke(e)&&be.error(e.message)}finally{h(!1)}},cancelText:"取消",children:"请在新打开的页面上进行支付,支付完成后再关闭此窗口"})},De=function(e){let{state:t,message:o,resolve:i}=e;const c=a(!0),{result:{pay_options:l,order_no:d},checkUrl:u,onComplete:h}=o,[m,f]=ze(l.channels.alipay?"alipay":"wechat"),[p,g]=ze(!1);s((()=>{Se({url:u,method:"post",data:{order_no:d},raxConfig:{shouldRetry:e=>c.current&&449===e.response?.status}}).then((()=>{h?.(),i()})).catch((()=>null))}),[]);const{loading:y,result:w}=je({url:l.url,method:"POST",data:{channel:m,order_no:d}},{refreshDeps:[m]});return r(ve,{...t,onHide:()=>{c.current=!1,t.onHide()},centered:!0,backdrop:"static",header:"收银台",okText:"已完成支付",okButtonProps:{loading:p},onOk:async e=>{e.preventDefault();try{g(!0),await Se({url:u,method:"post",data:{order_no:d,force:{channel:m}},raxConfig:{shouldRetry:()=>!1}}),h?.(),i()}catch(e){ke(e)&&be.error(e.message)}finally{g(!1)}},cancelText:"取消",children:[r("dl",{className:"row",children:[n("dt",{className:"col-3",children:"商品名称"}),n("dd",{className:"col-9",children:l.subject})]}),r("dl",{className:"row",children:[n("dt",{className:"col-3",children:"支付金额"}),n("dd",{className:"col-9 text-success h3",children:Pe(l.amount/100)})]}),r("dl",{className:"row",children:[n("dt",{className:"col-3",children:"支付方式"}),n("dd",{className:"col-9",children:r(S,{children:[l.channels.alipay&&n(z,{id:"payment-alipay",type:"radio",variant:"alipay"===m?"primary":"outline-primary",name:"alipay",value:"alipay",checked:"alipay"===m,onChange:()=>f("alipay"),children:"支付宝"}),l.channels.alipay&&n(z,{id:"payment-wechat",type:"radio",variant:"wechat"===m?"primary":"outline-primary",name:"wechat",value:"wechat",checked:"wechat"===m,onChange:()=>f("wechat"),children:"微信支付"})]})})]}),r("dl",{className:"row mb-0",children:[n("dt",{className:"col-3",children:"扫码支付"}),r("dd",{className:"col-9",children:[n(He,{loading:y,wrap:200}),w&&n(Le,{size:200,value:w.data})]})]})]})};function Re(e){const{result:t}=e;t.pay_url?(window.opener=null,window.innerWidth<992?location.href=t.pay_url:(window.open(t.pay_url),fe(_e,e))):fe(De,e)}function Me(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;const n=["","K","M","G"];let r=0;for(;e>=1024&&r<n.length-1;)e/=1024,r++;return e%1==0&&(t=0),e.toFixed(t)+n[r]}function Fe(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;const n=["","K","M","G"];let r=0;for(;e>=1e3&&r<n.length-1;)e/=1e3,r++;return e%1==0&&(t=0),e.toFixed(t)+n[r]}function Oe(e){const t=q.extname(e);return!(!/^data:image\//.test(e)&&!/(webp|svg|png|gif|jpg|jpeg|jfif|bmp|dpg|ico)$/i.test(t))||!/^data:/.test(e)&&!t}function Ae(e){const t=document.createElement("a");return t.href=e,t.href}Y.locale("zh-cn"),Y.extend(Q);const Ue={success:n("i",{className:"bi bi-check-circle-fill text-success"}),error:n("i",{className:"bi bi-exclamation-circle-fill text-danger"}),info:n("i",{className:"bi bi-info-circle-fill text-info"}),warning:n("i",{className:"bi bi-exclamation-triangle-fill text-warning"})};function Ie(e){let{className:t,status:o,title:a,icon:i,extra:s}=e;return!i&&o&&(i=Ue[o]),r(qe,{className:t,children:[i&&n(We,{children:i}),a&&n(Ge,{children:a}),s&&n(Ke,{children:s})]})}const qe=G.div`
|
|
29
|
+
padding: 48px 32px;
|
|
30
|
+
`,We=G.div`
|
|
31
|
+
margin-bottom: 24px;
|
|
32
|
+
text-align: center;
|
|
33
|
+
font-size: 72px;
|
|
34
|
+
`,Ge=G.div`
|
|
35
|
+
color: rgba(0, 0, 0, .85);
|
|
36
|
+
font-size: 24px;
|
|
37
|
+
line-height: 1.8;
|
|
38
|
+
text-align: center;
|
|
39
|
+
`,Ke=G.div`
|
|
40
|
+
margin-top: 32px;
|
|
41
|
+
text-align: center;
|
|
42
|
+
`;function Ve(e){let{children:t,title:a,className:i,...s}=e;return n(Ye,{className:J("border-0 shadow-sm",i),...s,children:r("div",{className:"card-body",children:[a&&r(o,{children:[n("h5",{children:a}),n("hr",{})]}),t]})})}const Ye=G(P)`
|
|
43
|
+
&:not(:last-child) {
|
|
44
|
+
margin-bottom: 1rem;
|
|
45
|
+
}
|
|
46
|
+
`,Qe=c(void 0);function Je(e){let{children:t}=e;const[r,o]=i(new Set),a=u((e=>{e&&"string"==typeof e&&(e=[e]),o(new Set(e))}),[o]);return n(Qe.Provider,{value:[r,o],children:n(j,{activeKey:Array.from(r),onSelect:a,alwaysOpen:!0,children:t})})}const Xe=()=>{const e=d(Qe);if(!e)throw new Error("usePanel must be used within a PanelGroup");return e};function Ze(e){let{title:t,action:a,children:i,eventKey:c,open:l}=e;if(c){const[,e]=Xe();s((()=>{void 0!==l&&e((e=>l?new Set([...e,c]):new Set([...e].filter((e=>e!==c)))))}),[l]),i=n(j.Collapse,{eventKey:c,children:r(o,{children:[n("hr",{}),i]})})}else i=r(o,{children:[n("hr",{}),i]});return r(Ve,{children:[r(T,{direction:"horizontal",children:[n("div",{className:"fs-5 me-auto",children:t}),a]}),i]})}function et(e){let{errors:t}=e;return t?n($,{variant:"danger",children:n("ul",{className:"mb-0",children:"string"==typeof t?n("li",{children:t}):Object.entries(t).map((e=>{let[t,r]=e;return n("li",{children:r},t)}))})}):null}function tt(e){let{children:t,className:r,size:o="small",direction:a="horizontal"}=e;"string"==typeof o&&(o={small:8,middle:16,large:24}[o]);const i=g.map(t,(e=>{if(e)return n(rt,{children:e})}));return n(nt,{className:r,$direction:a,$size:o,children:i})}const nt=G.div`
|
|
47
|
+
display: inline-flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
gap: ${e=>e.$size}px;
|
|
50
|
+
|
|
51
|
+
${e=>"vertical"===e.$direction&&K`
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-direction: column;
|
|
54
|
+
align-items: inherit;
|
|
55
|
+
`}
|
|
56
|
+
`,rt=G.div`
|
|
57
|
+
|
|
58
|
+
`,ot=f((()=>import("./steps-b_BcYIwk.js"))),at=f((()=>import("./steps-b_BcYIwk.js").then((e=>{let{Step:t}=e;return{default:t}}))));function it(e){return n(p,{fallback:null,children:n(ot,{...e})})}const st=function(e){return n(p,{fallback:null,children:n(at,{...e})})};function ct(e){let{title:t,content:o,footer:a}=e;return r(Ve,{children:[n(ut,{children:t}),n(dt,{children:o}),a&&n(lt,{children:a})]})}it.Step=st;const lt=G.div`
|
|
59
|
+
margin-top: 9px;
|
|
60
|
+
padding-top: 10px;
|
|
61
|
+
border-top: 1px solid #f0f0f0;
|
|
62
|
+
color: rgba(0, 0, 0, .65);
|
|
63
|
+
`,dt=G.div`
|
|
64
|
+
color: rgba(0, 0, 0, .85);
|
|
65
|
+
font-size: 24px;
|
|
66
|
+
`,ut=G.div`
|
|
67
|
+
margin-bottom: 4px;
|
|
68
|
+
color: rgba(0, 0, 0, .45);
|
|
69
|
+
font-size: 1.1rem;
|
|
70
|
+
`;function ht(){}function mt(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e}function ft(e){return"current_page"in e}function pt(e){let{total:t=0,onChange:r=ht,defaultCurrent:o=1,defaultPageSize:a=10,className:c,...l}=e;const[d,m]=i(o),[f,p]=i(a);s((()=>{mt(l.current)&&m(l.current)}),[l.current]),s((()=>{mt(l.pageSize)&&p(l.pageSize)}),[l.pageSize]);const g=h((()=>Math.floor((t-1)/f)+1),[t,f]),y=u((e=>()=>{e!==d&&(m(e),r(e,f))}),[r,d,f]),w=d-1>0?d-1:0,v=d+1<g?d+1:g,b=[];let x=null,k=null,C=null,N=null;if(g<=7)for(let e=1;e<=g;e+=1){const t=d===e;b.push(n(H.Item,{active:t,onClick:y(e),children:e},e))}else{N=n(H.Last,{onClick:y(g)},"last"),C=n(H.First,{onClick:y(1)},"first"),x=n(H.Prev,{onClick:y(w)},"prev"),k=n(H.Next,{onClick:y(v)},"next");let e=Math.max(1,d-2),t=Math.min(d+2,g);d-1<=2&&(t=5),g-d<=2&&(e=g-4);for(let r=e;r<=t;r+=1){const e=d===r;b.push(n(H.Item,{active:e,onClick:y(r),children:r},r))}d-1>=4&&3!==d&&b.unshift(x),g-d>=4&&d!==g-2&&b.push(k),1!==e&&b.unshift(C),t!==g&&b.push(N)}return n(H,{className:c,children:b})}function gt(e){let{className:t,value:r,locale:a="zh-CN",currency:i=!0,options:s={}}=e;const c=h((()=>{let e;return e=i?{style:"currency",currency:"CNY"}:{minimumFractionDigits:2},new Intl.NumberFormat(a,{...e,...s})}),[i,a,s]);return t?n("span",{className:t,children:c.format(r)}):n(o,{children:c.format(r)})}function yt(e){let{loading:t,disabled:r,children:o,...a}=e;return n(C,{...a,disabled:t||r,children:t?"Loading…":o})}const wt=f((()=>import("./image-zoom-OrIPGqh0.js")));function vt(e){return n(p,{fallback:null,children:n(wt,{...e})})}const bt=m(((e,t)=>{let{confirm:n,onSuccess:r,children:o,disabled:a,as:i=ye,onError:s,...c}=e;const[l,d]=ze(!1),h=u((async e=>{e.preventDefault(),e.stopPropagation();try{if(d(!0),n&&!await ve.confirm({message:n}))return;let e;if("onRequest"in c)e=await c.onRequest();else{const t="string"==typeof c.url?{url:c.url,method:c.method}:{method:c.method,...c.url};e=await Se(t)}r&&r(e)}catch(e){if(!(e instanceof Error))throw e;s?s(e):be.error(e.message,{preventDuplicate:!0})}finally{d(!1)}}),[c,d]);return y(i,{...R(c,["onRequest","url","method"]),disabled:a||l,onClick:h,ref:t},o)})),xt=f((()=>import("./index-fW_tvsVH.js"))),kt=m(((e,t)=>n(p,{fallback:null,children:n(xt,{...e,ref:t})}))),Ct=f((()=>import("./index-4j3qlSEA.js"))),Nt=m(((e,t)=>n(p,{fallback:null,children:n(Ct,{...e,ref:t})})));let St=0;function zt(){let{onHide:e,onShow:t}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};const[n,r]=i(!1),[o,a]=i(`visible-${St}`),s=u((()=>{r(!1),e&&e()}),[r,e]),c=u((()=>{a("visible-"+ ++St)}),[a,St]);return{visible:n,show:u((()=>{r(!0),t&&t()}),[r,t]),hide:s,state:{show:n,onHide:s,onExited:c,key:o}}}const Pt=m(((e,t)=>{let{text:a,onOk:i,modalProps:s,children:c,onShow:l,onHide:d,confirmLoading:u,as:h=ye,...m}=e;const{state:f,show:p,hide:g}=zt({onShow:l,onHide:d});w(t,(()=>({close:g})));const v=y(h,{...m,onClick:e=>{e.preventDefault(),e.stopPropagation(),p()}},a);return r(o,{children:[v,n(ve,{header:a,...s,...f,confirmLoading:u,onOk:async e=>{if(i){!1===await i()&&e.preventDefault()}},children:c})]})})),jt=m(((e,t)=>{let{text:o,onSuccess:s,onSubmit:c,buttonProps:l,modalProps:d,children:h,...m}=e;const[f,p]=i(!1),g=a(null),y=a(null);w(t,(()=>({close:()=>{g.current?.close()}})));const v=u((()=>(y.current?.submit(),!1)),[]),b=u((e=>{s&&s(e),g.current?.close()}),[s]),x=u((async(e,t)=>{c&&await c(e,t)&&g.current?.close()}),[c]);return n(Pt,{ref:g,text:o,...l,modalProps:d,onOk:v,confirmLoading:f,children:r(kt,{...m,onSubmitting:p,ref:y,onSuccess:b,onSubmit:x,children:[h,n("input",{type:"submit",hidden:!0})]})})}));function Tt(e){let{header:t,children:o,closable:a=!0,show:i,onHide:s,bodyAs:c,headerAs:l="h5",...d}=e;return r(B,{...d,onHide:s,show:i,children:[t&&n(B.Header,{closeButton:a,children:n(B.Title,{as:l,children:t})}),n(B.Body,{as:c,children:o})]})}const $t=m(((e,t)=>{let{text:a,offcanvasProps:i,children:s,onShow:c,onHide:l,as:d=ye,...u}=e;const{state:h,show:m,hide:f}=zt({onShow:c,onHide:l});w(t,(()=>({close:f})));const p=y(d,{...u,onClick:m},a);return r(o,{children:[p,n(Tt,{header:a,...i,...h,children:s})]})}));function Ht(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];const n=a(e);return s((()=>{n.current=e})),u((function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return n.current?.(...t)}),t)}function Bt(e){const{value:t,defaultValue:n,onChange:r,shouldUpdate:o=((e,t)=>e!==t)}=e,a=Ht(r),s=Ht(o),[c,l]=i(n),d=void 0!==t,u=d?t:c,h=Ht((e=>{const t="function"==typeof e?e(u):e;s(u,t)&&(d||l(t),a(t))}),[d,a,u,s]);return[u,h]}const Et=m(((e,t)=>{let{className:o,rowClassName:c,paginate:l=!0,sync:d=!1,columns:h=3,source:m,renderItem:f,renderEmpty:p}=e;const[g,y]=i([]),[v,b]=i(l?{total:0,current:1,pageSize:10}:null),[x,k]=i(!0),[C,N]=X({}),[S,z]=Bt({value:d?C.page||1:void 0,defaultValue:1,onChange:e=>{d&&N({page:e||void 0})}}),P=u((async function(){arguments.length>0&&void 0!==arguments[0]&&arguments[0]||k(!0);try{let e;const t={page:S>1?S:void 0};e="string"==typeof m?await Se({url:m,params:t}):await m(t),l&&ft(e)&&(e.last_page>1&&b({total:e.total,current:e.current_page,pageSize:e.per_page}),e=e.data),y(e)}catch(e){}finally{k(!1)}}),[m,y,S]);s((()=>{P()}),[S]),s((()=>{j.current={reload:P}}),[P]);const j=a({reload:P});return w(t,(()=>j.current)),r(Lt,{className:o,children:[n(He,{wrap:!0,loading:x}),0===g.length&&!x&&p?.(),n(E,{className:J(c,"g-4"),children:g.map(((e,t)=>n(L,{className:"d-flex",md:12/h,children:f(e)},`card-${t}`)))}),v&&n(_t,{...v,onChange:z})]})})),Lt=G.div`
|
|
71
|
+
|
|
72
|
+
`,_t=G(pt)`
|
|
73
|
+
margin-bottom: 0;
|
|
74
|
+
justify-content: flex-end;
|
|
75
|
+
margin-top: 1rem;
|
|
76
|
+
`;var Dt=v(Et);function Rt(){const[e,t]=i(!1),n=a();return s((()=>()=>{n.current&&clearTimeout(n.current)}),[]),{copied:e,copy:u((e=>{Z(e),t(!0),n.current&&clearTimeout(n.current),n.current=setTimeout((()=>{t(!1),n.current=void 0}),3e3)}),[])}}function Mt(e){let{as:t="div",className:r,content:o,tooltip:a=!0,placement:i}=e;const{copy:s,copied:c}=Rt(),l=a?n("i",c?{className:"bi bi-clipboard-check"}:{className:"bi bi-clipboard"}):c?"已复制":"复制",d=y(t,{role:"button",className:r,onClick:()=>{"function"==typeof o&&(o=o()),s(o)}},l);return a?n(pe,{tooltip:c?"已复制":"复制",placement:i,children:d}):d}const Ft=c({images:new Map,current:0,setCurrent:()=>null,setShow:()=>null,registerImage:()=>()=>null,getId:()=>0}),Ot=f((()=>import("./index-alLkMNpj.js"))),At=f((()=>import("./image-xVpjTjcN.js")));function Ut(e){return n(p,{fallback:null,children:n(Ot,{...e})})}Ut.Image=function(e){return n(p,{fallback:null,children:n(At,{...e})})},Ut.Context=Ft;const It=f((()=>import("./infinite-scroller-toFkixFC.js"))),qt=m(((e,t)=>n(p,{fallback:null,children:n(It,{...e,ref:t})}))),Wt=f((()=>import("./slider-KuqHu6UH.js")));function Gt(e){return n(p,{fallback:null,children:n(Wt,{...e})})}function Kt(e){let{children:t}=e;return r(I,{children:[n(Vt,{}),t]})}const Vt=V`
|
|
77
|
+
${ee.extractCss()}
|
|
78
|
+
`;function Yt(e,t,n){const r=a(e),o=a(M(e,t,n));return s((()=>{r.current=e})),s((()=>{o.current=M((function(){r.current(...arguments)}),t,n)}),[t,n]),o.current}function Qt(e){const[t,n]=i((()=>te("function"==typeof e?e():e,!0)));return[t,u((e=>{n("function"==typeof e?ne(e):te(e))}),[])]}function Jt(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"lg";function t(){const t=e=>{switch(e){case"xxl":return window.innerWidth>=1400;case"xl":return window.innerWidth>=1200;case"lg":return window.innerWidth>=992;case"md":return window.innerWidth>=768;case"sm":return window.innerWidth>=576;default:return!0}};return{isMobile:!t(e),width:window.innerWidth,match:t}}const[n,r]=i(t),o=Yt((()=>{r(t())}),100);return s((()=>(window.addEventListener("resize",o),()=>window.removeEventListener("resize",o))),[]),n}var Xt;!function(e){e[e.init=0]="init",e[e.play=1]="play",e[e.pause=2]="pause",e[e.end=3]="end"}(Xt||(Xt={}));const Zt=(e,t)=>{let n=a(!1);const[r,o]=i((()=>{const{lang:e="default",name:n=""}=t.voice||{};return{isPlaying:!1,status:Xt[Xt.init],lang:t.lang||"default",voiceInfo:{lang:e,name:n},rate:t.rate||1,pitch:t.pitch||1,volume:t.volume||1}})),c=u((()=>{n.current&&o((e=>({...e,isPlaying:!0,status:Xt[Xt.play]})))}),[]),l=u((()=>{n.current&&o((e=>({...e,isPlaying:!1,status:Xt[Xt.pause]})))}),[]),d=u((()=>{n.current&&o((e=>({...e,isPlaying:!1,status:Xt[Xt.end]})))}),[]);return s((()=>{n.current=!0;const r=new SpeechSynthesisUtterance(e);return t.lang&&(r.lang=t.lang),t.voice&&(r.voice=t.voice),r.rate=t.rate||1,r.pitch=t.pitch||1,r.volume=t.volume||1,r.onstart=c,r.onpause=l,r.onresume=c,r.onend=d,window.speechSynthesis.speak(r),()=>{n.current=!1}}),[]),r};function en(e,t){s((()=>{const t=e();!async function(){await t}()}),t)}export{Zt as $,Pt as A,ye as B,Ve as C,ve as D,et as E,kt as F,Tt as G,pe as H,Ft as I,Dt as J,Mt as K,He as L,ie as M,gt as N,$t as O,pt as P,Ut as Q,Ie as R,tt as S,ge as T,qt as U,Gt as V,Le as W,Kt as X,je as Y,zt as Z,Rt as _,Jt as a,en as a0,ke as a1,Ce as a2,Bt as b,ze as c,Qt as d,be as e,xe as f,Me as g,Pe as h,ft as i,Fe as j,Oe as k,Ae as l,Ze as m,Je as n,Xe as o,it as p,st as q,Se as r,ct as s,yt as t,Yt as u,vt as v,Re as w,bt as x,Nt as y,jt as z};
|
package/es/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{B as Button,C as Card,J as CardList,K as Clipboard,E as Error,F as Form,v as ImageZoom,U as InfiniteScroller,Q as Lightbox,L as Loader,t as LoadingButton,M as Message,D as Modal,A as ModalButton,z as ModalForm,N as NumberFormat,G as Offcanvas,O as OffcanvasButton,P as Pagination,m as Panel,n as PanelGroup,W as Qrcode,x as RequestButton,R as Result,V as Slider,S as Space,s as Statistic,q as Step,p as Steps,y as Table,e as Toast,H as Tooltip,j as formatLongNumber,h as formatNumber,g as formatSize,l as getAbsoluteUrl,k as isImageUrl,f as isRecord,
|
|
1
|
+
export{B as Button,C as Card,J as CardList,K as Clipboard,E as Error,F as Form,v as ImageZoom,U as InfiniteScroller,Q as Lightbox,L as Loader,t as LoadingButton,M as Message,D as Modal,A as ModalButton,z as ModalForm,N as NumberFormat,G as Offcanvas,O as OffcanvasButton,P as Pagination,m as Panel,n as PanelGroup,W as Qrcode,x as RequestButton,R as Result,V as Slider,S as Space,s as Statistic,q as Step,p as Steps,y as Table,e as Toast,X as ToastProvider,H as Tooltip,j as formatLongNumber,h as formatNumber,g as formatSize,l as getAbsoluteUrl,k as isImageUrl,f as isRecord,a1 as isRequestError,r as request,a2 as showRequestError,a0 as useAsyncEffect,_ as useClipboard,b as useControllableState,u as useDebounce,d as useImmer,Z as useOverlayState,o as usePanel,Y as useRequest,c as useSafeState,$ as useSpeech,a as useWindowSize,w as waitPayComplete}from"./index-tFUwxWXk.js";export{StyleSheetManager,ThemeProvider,createGlobalStyle,css,keyframes,default as styled}from"styled-components";export{useAsync,useAsyncCallback}from"react-async-hook";export{useInView}from"react-intersection-observer";export{default as queryString}from"query-string";export{default as dayjs}from"dayjs";import"sweetalert2/dist/sweetalert2.js";import"sweetalert2-react-content";import"react/jsx-runtime";import"react";import"react-bootstrap";import"lodash";import"axios";import"retry-axios";import"notistack";import"path";import"dayjs/locale/zh-cn";import"dayjs/plugin/relativeTime";import"classnames";import"use-url-search-params";import"copy-to-clipboard";import"goober";import"immer";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as t}from"react/jsx-runtime";import{memo as a,forwardRef as r,useState as e,useCallback as o,useImperativeHandle as i}from"react";import s from"react-infinite-scroller";import{d as m,r as n,i as p}from"./index-tFUwxWXk.js";import{last as d}from"lodash";import"sweetalert2/dist/sweetalert2.js";import"sweetalert2-react-content";import"react-bootstrap";import"axios";import"query-string";import"retry-axios";import"notistack";import"path";import"react-async-hook";import"styled-components";import"dayjs";import"dayjs/locale/zh-cn";import"dayjs/plugin/relativeTime";import"classnames";import"use-url-search-params";import"copy-to-clipboard";import"goober";import"immer";import"react-intersection-observer";var c=a(r(((a,r)=>{let{source:c,render:l,as:u,useWindow:f,className:g,getState:y,limit:h=10}=a;const[w,j]=e(!1),[x,b]=m({params:{},end:!1,data:[]}),v=o((async function(){let t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(!w){j(!0);try{let a;const r=t?{}:x.params;a="string"==typeof c?await n({url:c,params:r}):await c(r),y||(y=t=>p(t)?{params:{page:t.current_page+1},end:t.current_page>=t.last_page,data:t.data}:{params:{offset:d(t)?.id},end:t.length<h,data:t});const e=y(a);b({...e,data:t?e.data:[...x.data,...e.data]})}catch{b({...x,end:!0})}finally{j(!1)}}}),[c,x,y,w]),_=o((()=>{v(!0)}),[v]);i(r,(()=>({reload:_})),[_]);const k=o((t=>{b((a=>{const r=t(a.data);r&&(a.data=r)}))}),[b]);return t(s,{className:g,hasMore:!x.end,pageStart:0,loadMore:()=>{v()},useWindow:f,element:u,children:l({data:x.data,setData:k,end:x.end,loading:w,action:{reload:_}})})})));export{c as default};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topthink/components",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"prebuild": "rimraf es types",
|
|
6
6
|
"build": "rollup -c --environment NODE_ENV:production",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"classnames": "^2.3.1",
|
|
28
28
|
"copy-to-clipboard": "^3.3.3",
|
|
29
29
|
"dayjs": "^1.10.7",
|
|
30
|
+
"goober": "^2.1.16",
|
|
30
31
|
"immer": "^9.0.6",
|
|
31
32
|
"notistack": "^3.0.1",
|
|
32
33
|
"qrcode.react": "^4.0.1",
|
|
@@ -72,5 +73,5 @@
|
|
|
72
73
|
},
|
|
73
74
|
"author": "yunwuxin <tzzhangyajun@qq.com> (https://github.com/yunwuxin)",
|
|
74
75
|
"license": "MIT",
|
|
75
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "71aa5f67c2f6a9788626856addb94249e138b6fd"
|
|
76
77
|
}
|
|
@@ -3,5 +3,5 @@ import { CardProps as BsCardProps } from 'react-bootstrap';
|
|
|
3
3
|
interface CardProps extends BsCardProps {
|
|
4
4
|
title?: string;
|
|
5
5
|
}
|
|
6
|
-
export default function Card({ children, title, className, ...props }: PropsWithChildren<CardProps>): JSX.Element;
|
|
6
|
+
export default function Card({ children, title, className, ...props }: PropsWithChildren<CardProps>): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -7,5 +7,5 @@ interface Props {
|
|
|
7
7
|
placement?: OverlayTriggerProps['placement'];
|
|
8
8
|
tooltip?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export default function Clipboard({ as, className, content, tooltip, placement }: Props): JSX.Element;
|
|
10
|
+
export default function Clipboard({ as, className, content, tooltip, placement }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export {};
|
|
@@ -4,5 +4,5 @@ interface DimmerProps {
|
|
|
4
4
|
active?: boolean;
|
|
5
5
|
inverted?: boolean;
|
|
6
6
|
}
|
|
7
|
-
export default function Dimmer({ active, inverted, ...props }: PropsWithChildren<DimmerProps>): JSX.Element;
|
|
7
|
+
export default function Dimmer({ active, inverted, ...props }: PropsWithChildren<DimmerProps>): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ComponentProps } from 'react';
|
|
2
2
|
declare const LazyImageZoom: import("react").LazyExoticComponent<typeof import("react-medium-image-zoom").default>;
|
|
3
|
-
export default function ImageZoom(props: ComponentProps<typeof LazyImageZoom>): JSX.Element;
|
|
3
|
+
export default function ImageZoom(props: ComponentProps<typeof LazyImageZoom>): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export {};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="
|
|
2
|
-
|
|
3
|
-
import { WidgetProps } from '@rjsf/core';
|
|
1
|
+
/// <reference types="@rjsf/core" />
|
|
2
|
+
import { WidgetProps } from '@topthink/json-form';
|
|
4
3
|
import '@toast-ui/editor/dist/toastui-editor-only.css';
|
|
5
4
|
import '@toast-ui/editor/dist/i18n/zh-cn';
|
|
6
|
-
export default function EditorWidget(props: WidgetProps): JSX.Element;
|
|
5
|
+
export default function EditorWidget(props: WidgetProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,5 +2,5 @@ import { ImgHTMLAttributes } from 'react';
|
|
|
2
2
|
export interface Props extends ImgHTMLAttributes<HTMLImageElement> {
|
|
3
3
|
lazy?: boolean;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: import("react").MemoExoticComponent<({ lazy, ...props }: Props) => JSX.Element>;
|
|
5
|
+
declare const _default: import("react").MemoExoticComponent<({ lazy, ...props }: Props) => import("react/jsx-runtime").JSX.Element>;
|
|
6
6
|
export default _default;
|