At what i am trying to do is when i click on checkbox 1st row in table and then click submit button then url image is not open .
i want to make when i click on checkbox then click submit button then url image is open.
how can we do that any idea or help its very thankful.
my code https://codepen.io/svpan/pen/NWdJvmX?editors=1010
JavaScript
x
126
126
1
let ref = null;
2
class TableComponent extends React.Component {
3
constructor(props) {
4
super(props);
5
this.state = {
6
selectedRow: ""
7
};
8
ref = this;
9
}
10
11
handleRowClick = async (rowID) => {
12
// make an API call here, sth like
13
console.log(rowID);
14
if (rowID) {
15
const url1 =
16
"https://mocki.io/v1/b512f8b8-64ab-46e4-9e0c-9db538a0ad9e?id=" + rowID;
17
// const url2 =
18
// "https://grandiose-mulberry-garnet.glitch.me/params/" + rowID;
19
// const url = "https://mocki.io/v1/4d51be0b-4add-4108-8c30-df4d60e8df54";
20
// you can use any of the above API to test.
21
const response = await fetch(url1);
22
const res = await response.json();
23
// console.log(res)
24
this.setState({
25
res
26
});
27
window.open(res.url, "_blank");
28
}
29
};
30
31
onSelectChange = (rowId) => {
32
this.setState({
33
selectedRow: rowId
34
});
35
};
36
37
render() {
38
var dataColumns = this.props.data.columns;
39
var dataRows = this.props.data.rows;
40
41
var tableHeaders = (
42
<thead>
43
<tr>
44
{" "}
45
{dataColumns.map(function (column) {
46
return <th> {column} </th>;
47
})}{" "}
48
</tr>{" "}
49
</thead>
50
);
51
52
var tableBody = dataRows.map((row) => {
53
return (
54
<tr key={row.id}>
55
{dataColumns.map(function (column) {
56
if (column == "Select")
57
return (
58
<td>
59
<input
60
type="checkbox"
61
checked={ref.state.selectedRow === row.id}
62
onChange={() => ref.onSelectChange(row.id)}
63
/>
64
</td>
65
);
66
else
67
return (
68
<td>
69
<a target="_blank" rel="noopener noreferrer" href={row.url}>
70
{row[column]}
71
</a>
72
</td>
73
);
74
})}
75
</tr>
76
);
77
});
78
79
// Decorate with Bootstrap CSS
80
return (
81
<div>
82
<table className="table table-bordered table-hover" width="100%">
83
{tableHeaders} {tableBody}
84
</table>
85
<input
86
type="submit"
87
value="submit"
88
onClick={() => this.handleRowClick(this.state.selectedRow)}
89
/>
90
</div>
91
);
92
}
93
}
94
95
// Example Data
96
var tableData = {
97
columns: ["Select", "Service_Name", "Cost/Unit"],
98
rows: [
99
{
100
Service_Name: "airplan",
101
"Cost/Unit": 50,
102
id: 1
103
},
104
{
105
Service_Name: "cat",
106
"Cost/Unit": 50,
107
id: 2
108
},
109
{
110
Service_Name: "fruits",
111
"Cost/Unit": 50,
112
id: 5
113
},
114
{
115
Service_Name: "pool",
116
"Cost/Unit": 50,
117
id: 4
118
}
119
]
120
};
121
122
ReactDOM.render(
123
<TableComponent data={tableData} />,
124
document.getElementById("table-component")
125
);
126
Advertisement
Answer
JavaScript
1
34
34
1
handleRowClick = async (rowID) => {
2
// make an API call here, sth like
3
console.log(rowID);
4
if (rowID) {
5
const url1 =
6
"https://mocki.io/v1/b512f8b8-64ab-46e4-9e0c-9db538a0ad9e?id=" + rowID;
7
// const url2 =
8
// "https://grandiose-mulberry-garnet.glitch.me/params/" + rowID;
9
// const url = "https://mocki.io/v1/4d51be0b-4add-4108-8c30-df4d60e8df54";
10
// you can use any of the above API to test.
11
const response = await fetch(url1);
12
13
const res = await response.json();
14
// alert(res.url)
15
console.log(res)
16
console.log("row id " + rowID)
17
18
let object_ = {};
19
20
res.map(item=>{
21
// console.log(item.url)
22
if(item.id === rowID){
23
object_ = item;
24
}
25
})
26
27
this.setState({
28
res
29
});
30
window.open(object_.url, "_blank");
31
}
32
};
33
34