I already created a menu button which display some default value, shows below.
And I have a table which have the data I need,
JavaScript
x
19
19
1
return (
2
<UitkTableRow {row.getRowProps()}>
3
{row.cells.map((cell) => {
4
return <UitkTableCell {cell.getCellProps()}>{cell.render('Cell')}</UitkTableCell>
5
})}
6
7
{row.cells.map((cell) => {
8
if(cell.column.Header == "Notes"){
9
console.log(cell)//print result shows below
10
11
return <div style={{margin:'10px 0px 0px 0px'}}>
12
<NotesSelection />
13
</div>
14
}
15
})}
16
17
</UitkTableRow>
18
)
19
I want to put the value, “DELETE COMMENT 1” in my menu list, how can I do this?
I tried something like this, loop through the cell, but got error “cell.map” is not a function
JavaScript
1
6
1
{cell.map(c => {
2
return (
3
<div>display</div>
4
)
5
})}
6
Edit:
JavaScript
1
9
1
const {value} = cell
2
{
3
value.map(c => {
4
return <div>
5
<NotesSelection />
6
</div>
7
})
8
}
9
JavaScript
1
96
96
1
interface NotesSelectionProps {
2
selectNotes(note:string): string;
3
}
4
5
class NotesSelection extends React.Component<NotesSelectionProps, { show: boolean, noteS: string, value: string }> {
6
constructor(props: any) {
7
super(props);
8
this.state = {
9
show: false,
10
noteS: "",
11
value: "",
12
};
13
note = notes.notes[0].name
14
this.handleClick = this.handleClick.bind(this);
15
}
16
17
handleClick(e: any) {
18
const previousState = this.state['show'];
19
this.setState({
20
show: !previousState,
21
noteS: note,
22
value: "",
23
});
24
arrowState = previousState ? " ˅" : " ˄"
25
}
26
27
onMenuItemClick(name: string) {
28
note = name
29
this.setState({
30
show: false,
31
noteS: note,
32
value: "",
33
});
34
35
this.props.selectNotes(note)
36
arrowState = " ˅"
37
return;
38
}
39
40
41
render() {
42
var name = this.props
43
var noes: any = []
44
notes.notes.forEach(element => {
45
var note = {
46
className: 'uitk-list-item',
47
label: element.name,
48
onClick: () => this.onMenuItemClick(element.name),
49
typeAnchor: true,
50
target: "_blank"
51
}
52
noes.push(note)
53
});
54
55
noes.push(value)
56
var buttonStyle = {
57
padding:'5px',
58
width:'170px',
59
display:'flex',
60
justifyContent:'space-between',
61
background:'white',
62
borderRadius: "10px",
63
border:'1px solid rgba(0,0,0,.1)',
64
fontSize: '14px',
65
boxShadow: '0px 2px 2px rgb(0 0 0 / 10%)'
66
};
67
68
return (
69
<><div>
70
71
<UitkMenu
72
id="show10"
73
isOpen={this.state.show}
74
onTriggerClick={this.handleClick}
75
>
76
<UitkMenuTrigger >
77
<button style={buttonStyle}>
78
<div className="notes">
79
{note}
80
</div>
81
<div className="arrowState">
82
{arrowState}
83
</div>
84
</button>
85
</UitkMenuTrigger>
86
<UitkMenuContainer position={PositionType.LEFT} width={200}>
87
<UitkMenuList items={noes} />
88
</UitkMenuContainer>
89
90
</UitkMenu>
91
</div>
92
</>
93
)
94
}
95
}
96
Advertisement
Answer
Since you need to modify the menu list (NotesSelection) pass the value to that component and render it there.
NotesSelection component
JavaScript
1
94
94
1
interface NotesSelectionProps {
2
selectNotes(note:string): string;
3
}
4
5
class NotesSelection extends React.Component<NotesSelectionProps, { show: boolean, noteS: string, value: string }> {
6
constructor(props: any) {
7
super(props);
8
this.state = {
9
show: false,
10
noteS: ""
11
};
12
note = notes.notes[0].name
13
this.handleClick = this.handleClick.bind(this);
14
}
15
16
handleClick(e: any) {
17
const previousState = this.state['show'];
18
this.setState({
19
show: !previousState,
20
noteS: note
21
});
22
arrowState = previousState ? " ˅" : " ˄"
23
}
24
25
onMenuItemClick(name: string) {
26
note = name
27
this.setState({
28
show: false,
29
noteS: note
30
});
31
32
this.props.selectNotes(note)
33
arrowState = " ˅"
34
return;
35
}
36
37
38
render() {
39
var name = this.props
40
var noes: any = []
41
notes.notes.forEach(element => {
42
var note = {
43
className: 'uitk-list-item',
44
label: element.name,
45
onClick: () => this.onMenuItemClick(element.name),
46
typeAnchor: true,
47
target: "_blank"
48
}
49
noes.push(note)
50
});
51
52
noes.push(value)
53
54
var buttonStyle = {
55
padding:'5px',
56
width:'170px',
57
display:'flex',
58
justifyContent:'space-between',
59
background:'white',
60
borderRadius: "10px",
61
border:'1px solid rgba(0,0,0,.1)',
62
fontSize: '14px',
63
boxShadow: '0px 2px 2px rgb(0 0 0 / 10%)'
64
};
65
66
return (
67
<><div>
68
69
<UitkMenu
70
id="show10"
71
isOpen={this.state.show}
72
onTriggerClick={this.handleClick}
73
>
74
<UitkMenuTrigger >
75
<button style={buttonStyle}>
76
<div className="notes">
77
{note}
78
</div>
79
<div className="arrowState">
80
{arrowState}
81
</div>
82
</button>
83
</UitkMenuTrigger>
84
<UitkMenuContainer position={PositionType.LEFT} width={200}>
85
<UitkMenuList items={noes} />
86
</UitkMenuContainer>
87
88
</UitkMenu>
89
</div>
90
</>
91
)
92
}
93
}
94
Table component
JavaScript
1
19
19
1
return (
2
<UitkTableRow {row.getRowProps()}>
3
{row.cells.map((cell) => {
4
return <UitkTableCell {cell.getCellProps()}>{cell.render('Cell')}</UitkTableCell>
5
})}
6
7
{row.cells.map((cell) => {
8
if(cell.column.Header == "Notes"){
9
console.log(cell)//print result shows below
10
11
return <div style={{margin:'10px 0px 0px 0px'}}>
12
<NotesSelection value={cell.value} />
13
</div>
14
}
15
})}
16
17
</UitkTableRow>
18
)
19