1
- import { LeftOutlined , RightOutlined } from "@ant-design/icons" ;
2
- import { Button , Dropdown , MenuProps , message } from "antd" ;
1
+ import { LeftOutlined , RightOutlined , DownOutlined } from "@ant-design/icons" ;
2
+ import { Button , Dropdown , MenuProps , Space , message } from "antd" ;
3
3
import React from "react" ;
4
4
import AIKeyConfigDialog from "./AIKeyConfigDialog" ;
5
5
import { apiKey , deployment , dropdownMenus , endpoint , generateText } from "./utility/AIData" ;
@@ -231,21 +231,21 @@ export default class Home extends React.Component {
231
231
case "commentPredefined" :
232
232
await this . insertComment ( predefinedComment ) ;
233
233
break ;
234
- case "formatPredefined" :
235
- await this . formatDocument ( ) ;
236
- break ;
237
- case "picturePredefined" :
238
- await this . insertPicture ( predefinedPictureBase64 ) ;
239
- break ;
240
234
}
241
235
}
242
236
243
237
generateMenuItems = ( type : string ) : MenuProps [ "items" ] => {
244
238
return dropdownMenus [ type ] . map ( ( item ) => {
245
- return {
246
- key : item . key ,
247
- label : < div style = { { textAlign : "center" } } > < span > { item . desc } </ span > </ div > ,
248
- onClick : this . onMenuClick
239
+ if ( item . type === "divider" ) {
240
+ return { type : "divider" } ;
241
+ }
242
+ else {
243
+ return {
244
+ key : item . key ,
245
+ label : < div style = { { textAlign : "center" } } > < span > { item . desc } </ span > </ div > ,
246
+ onClick : this . onMenuClick ,
247
+ selectable : true ,
248
+ } ;
249
249
}
250
250
} )
251
251
}
@@ -258,10 +258,6 @@ export default class Home extends React.Component {
258
258
259
259
const addCommentItems : MenuProps [ 'items' ] = this . generateMenuItems ( "comment" ) ;
260
260
261
- const formatDocumentItems : MenuProps [ 'items' ] = this . generateMenuItems ( "format" ) ;
262
-
263
- const addPictureItems : MenuProps [ 'items' ] = this . generateMenuItems ( "picture" ) ;
264
-
265
261
return (
266
262
< >
267
263
< div className = "wrapper" >
@@ -275,26 +271,36 @@ export default class Home extends React.Component {
275
271
</ div >
276
272
</ div >
277
273
< div className = "main_func" >
278
- < Dropdown menu = { { items : addTitleItems } } placement = "bottom" className = "generate_button" arrow >
279
- < Button loading = { this . state . titleLoading } > Add a title</ Button >
274
+ < Dropdown menu = { { items : addTitleItems } } className = "dropdown_list" >
275
+ < Button loading = { this . state . titleLoading } >
276
+ < Space >
277
+ Add a title
278
+ < DownOutlined />
279
+ </ Space >
280
+ </ Button >
280
281
</ Dropdown >
281
- < Dropdown menu = { { items : addCommentItems } } placement = "bottom" className = "generate_button" arrow >
282
- < Button loading = { this . state . commentLoading } > Add comments</ Button >
282
+ < Dropdown menu = { { items : addCommentItems } } className = "dropdown_list" >
283
+ < Button loading = { this . state . commentLoading } >
284
+ < Space >
285
+ Add a comment
286
+ < DownOutlined />
287
+ </ Space >
288
+ </ Button >
283
289
</ Dropdown >
284
- < Dropdown menu = { { items : addCitationItems } } placement = "bottom" className = "generate_button" arrow >
285
- < Button loading = { this . state . citationLoading } > Add citation in footnotes</ Button >
286
- </ Dropdown >
287
- < Dropdown
288
- menu = { { items : formatDocumentItems } }
289
- placement = "bottom"
290
- className = "generate_button"
291
- arrow
292
- >
293
- < Button loading = { this . state . formatLoading } > Format the document</ Button >
294
- </ Dropdown >
295
- < Dropdown menu = { { items : addPictureItems } } placement = "bottom" className = "generate_button" arrow >
296
- < Button loading = { this . state . pictureLoading } > Add a picture</ Button >
290
+ < Dropdown menu = { { items : addCitationItems } } className = "dropdown_list" >
291
+ < Button loading = { this . state . citationLoading } >
292
+ < Space >
293
+ Add a citation in footnotes
294
+ < DownOutlined />
295
+ </ Space >
296
+ </ Button >
297
297
</ Dropdown >
298
+ < Button loading = { this . state . pictureLoading } className = "insert_button" onClick = { ( ) => this . insertPicture ( predefinedPictureBase64 ) } >
299
+ Add a predefined picture
300
+ </ Button >
301
+ < Button loading = { this . state . formatLoading } className = "insert_button" onClick = { this . formatDocument } >
302
+ Format the document
303
+ </ Button >
298
304
</ div >
299
305
< AIKeyConfigDialog
300
306
isOpen = { this . state . openKeyConfigDialog }
@@ -332,17 +338,17 @@ export default class Home extends React.Component {
332
338
onClick = { this . insertTemplateDocument }
333
339
loading = { this . state . importTemplateLoading }
334
340
>
335
- Generate Sample Document
341
+ Generate sample content
336
342
</ Button >
337
343
< div className = "generate_button_or" > or</ div >
338
- < Button className = "generate_button" onClick = { this . openMainFunc } >
339
- Skip With Current Document
340
- </ Button >
344
+ < Button className = "generate_button" onClick = { this . openMainFunc } >
345
+ Skip generating sample content
346
+ </ Button >
341
347
</ >
342
348
) }
343
349
</ div >
344
350
< div className = "bottom" >
345
- < div className = "item_desc" > For next steps :</ div >
351
+ < div className = "item_desc" > Explore more resources :</ div >
346
352
< div className = "bottom_item" >
347
353
< RightOutlined className = "item_icon" />
348
354
< div className = "bottom_item_info" >
0 commit comments