Skip to content

Commit 2b0ab83

Browse files
committed
refine the AIGC dropdown list
1 parent 07f098f commit 2b0ab83

File tree

3 files changed

+77
-63
lines changed

3 files changed

+77
-63
lines changed

Word-Add-in-AIGC/src/taskpane/components/Home.tsx

+44-38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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";
33
import React from "react";
44
import AIKeyConfigDialog from "./AIKeyConfigDialog";
55
import { apiKey, deployment, dropdownMenus, endpoint, generateText } from "./utility/AIData";
@@ -231,21 +231,21 @@ export default class Home extends React.Component {
231231
case "commentPredefined":
232232
await this.insertComment(predefinedComment);
233233
break;
234-
case "formatPredefined":
235-
await this.formatDocument();
236-
break;
237-
case "picturePredefined":
238-
await this.insertPicture(predefinedPictureBase64);
239-
break;
240234
}
241235
}
242236

243237
generateMenuItems = (type: string): MenuProps["items"] => {
244238
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+
};
249249
}
250250
})
251251
}
@@ -258,10 +258,6 @@ export default class Home extends React.Component {
258258

259259
const addCommentItems: MenuProps['items'] = this.generateMenuItems("comment");
260260

261-
const formatDocumentItems: MenuProps['items'] = this.generateMenuItems("format");
262-
263-
const addPictureItems: MenuProps['items'] = this.generateMenuItems("picture");
264-
265261
return (
266262
<>
267263
<div className="wrapper">
@@ -275,26 +271,36 @@ export default class Home extends React.Component {
275271
</div>
276272
</div>
277273
<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>
280281
</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>
283289
</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>
297297
</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>
298304
</div>
299305
<AIKeyConfigDialog
300306
isOpen={this.state.openKeyConfigDialog}
@@ -332,17 +338,17 @@ export default class Home extends React.Component {
332338
onClick={this.insertTemplateDocument}
333339
loading={this.state.importTemplateLoading}
334340
>
335-
Generate Sample Document
341+
Generate sample content
336342
</Button>
337343
<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>
341347
</>
342348
)}
343349
</div>
344350
<div className="bottom">
345-
<div className="item_desc">For next steps:</div>
351+
<div className="item_desc">Explore more resources:</div>
346352
<div className="bottom_item">
347353
<RightOutlined className="item_icon" />
348354
<div className="bottom_item_info">

Word-Add-in-AIGC/src/taskpane/components/utility/AIData.tsx

+20-23
Original file line numberDiff line numberDiff line change
@@ -10,45 +10,42 @@ export const deployment = ""
1010

1111
export const dropdownMenus = {
1212
title: [
13-
{
14-
desc: "Add a title generated by Azure OpenAI",
15-
key: "titleAI"
16-
},
1713
{
1814
desc: "Add a predefined title",
1915
key: "titlePredefined"
20-
}
21-
],
22-
citation: [
16+
},
2317
{
24-
desc: "Add a citation generated by Azure OpenAI",
25-
key: "citationAI"
18+
type: "divider"
2619
},
2720
{
28-
desc: "Add a predefined citation",
29-
key: "citationPredefined"
21+
desc: "Add a title generated by AI",
22+
key: "titleAI"
3023
}
3124
],
3225
comment: [
33-
{
34-
desc: "Add a comment generated by Azure OpenAI",
35-
key: "commentAI"
36-
},
3726
{
3827
desc: "Add a predefined comment",
3928
key: "commentPredefined"
40-
}
41-
],
42-
format: [
29+
},
4330
{
44-
desc: "Format the document by predefined rules",
45-
key: "formatPredefined"
31+
type: "divider"
32+
},
33+
{
34+
desc: "Add a comment generated by AI",
35+
key: "commentAI"
4636
}
4737
],
48-
picture: [
38+
citation: [
4939
{
50-
desc: "Add a predefined picture",
51-
key: "picturePredefined"
40+
desc: "Add a predefined citation",
41+
key: "citationPredefined"
42+
},
43+
{
44+
type: "divider"
45+
},
46+
{
47+
desc: "Add a citation generated by AI",
48+
key: "citationAI"
5249
}
5350
]
5451
}

Word-Add-in-AIGC/src/taskpane/css/sample.css

+13-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ body,
1515
margin: 0;
1616
padding: 0;
1717
border-width: 0;
18+
overflow: hidden;
1819
}
1920

2021
.f1i3iumi {
@@ -23,6 +24,7 @@ body,
2324
margin: 0;
2425
padding: 0;
2526
border-width: 0;
27+
overflow: hidden;
2628
}
2729

2830
.wrapper {
@@ -32,7 +34,8 @@ body,
3234
flex-direction: column;
3335
align-items: center;
3436
justify-content: center;
35-
overflow: hidden;
37+
overflow-x: hidden;
38+
overflow-y: auto;
3639
background-color: #F0F0F0;
3740
}
3841

@@ -77,7 +80,7 @@ a {
7780
display: flex;
7881
flex-direction: column;
7982
align-items: center;
80-
justify-content: center;
83+
justify-content: flex-start;
8184
}
8285

8386
.back {
@@ -108,6 +111,14 @@ a {
108111
font-size: 1rem;
109112
}
110113

114+
.dropdown_list,
115+
.insert_button {
116+
width: 90%;
117+
color: var(--blue);
118+
margin: 1.5rem;
119+
font-weight: 500;
120+
}
121+
111122
.bottom {
112123
width: 100%;
113124
}

0 commit comments

Comments
 (0)