-
Notifications
You must be signed in to change notification settings - Fork 1
/
Discussion.js
244 lines (225 loc) · 6.85 KB
/
Discussion.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
import React, { Component } from "react";
import { db } from "../Firebase";
import ReactTable from "react-table";
import "react-table/react-table.css";
import AddTopic from "./AddTopic";
import Loader from "./Loader";
import { notify } from "../utils";
import SearchIcon from "@material-ui/icons/Search";
import VisibilityIcon from "@material-ui/icons/Visibility";
import { StateContext } from "../contextAPI/StateProvider";
import EditIcon from "@material-ui/icons/Edit";
import DeleteIcon from "@material-ui/icons/Delete";
import Pagination from "./Pagination";
var topicsData = [];
const adminEmail = "kushagra@o2h.com";
export default class Discussion extends Component {
constructor(props) {
super(props);
this.state = {
topics: null,
openAddTopicPopup: false,
filterData: null,
editTopicData: null,
};
this.openResourcePage = this.openResourcePage.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
this.openAddNewTopicPopup = this.openAddNewTopicPopup.bind(this);
this.handleChangeOnSearch = this.handleChangeOnSearch.bind(this);
this.globalSearch = this.globalSearch.bind(this);
this.deleteTopic = this.deleteTopic.bind(this);
this.editTopic = this.editTopic.bind(this);
this.handleSubmitOnEdit = this.handleSubmitOnEdit.bind(this);
this.closePopup = this.closePopup.bind(this);
}
static contextType = StateContext;
componentDidMount() {
db.collection("discussions")
.orderBy("date", "desc")
.onSnapshot((snapshot) => this.setState({ topics: snapshot.docs }));
}
openResourcePage(topic) {
const { topics } = this.state;
const { history } = this.props;
var checkId = topics?.map((data) => {
if (data.data().topic === topic) {
return data.id;
}
});
var topicId = checkId.toString().replace(/,/g, "");
history.push({
pathname: "/resource",
state: { topicId: topicId },
});
}
handleSubmit(data) {
const { topic, date } = data;
db.collection("discussions").add({
topic: topic,
date: date,
});
this.setState({ openAddTopicPopup: false });
notify("Topic added Successfully", "success");
}
handleSubmitOnEdit(data) {
const { topic, date, id } = data;
db.collection("discussions").doc(id).update({
topic: topic,
date: date,
});
notify("Topic updated Successfully", "success");
this.setState({
openAddTopicPopup: false,
editTopicData: null,
});
}
openAddNewTopicPopup() {
this.setState({ openAddTopicPopup: true });
}
closePopup = () => {
this.setState({ openAddTopicPopup: false, editTopicData: null });
};
/**
* @author Kushagra
* @param {*} event
* global search in discussion table
*/
handleChangeOnSearch = (event) => {
this.globalSearch(event.target.value);
};
globalSearch = (input) => {
let filterData = topicsData.filter((value) => {
return (
value.topic.toLowerCase().includes(input.toLowerCase()) ||
value.date.toString().toLowerCase().includes(input.toLowerCase())
);
});
this.setState({ filterData: filterData });
};
deleteTopic(id) {
db.collection("discussions").doc(id).delete();
notify("Topic deleted Successfully", "success");
}
editTopic(data) {
this.setState({ openAddTopicPopup: true, editTopicData: data });
}
render() {
const { topics, openAddTopicPopup, filterData, editTopicData } = this.state;
const { user } = this.context[0];
topicsData = topics?.map((data) => {
return {
id: data.id,
topic: data.data().topic,
date: data.data().date,
};
});
const columns = [
{
Header: "Id",
accessor: "id",
show: false,
},
{
Header: "Topic",
accessor: "topic",
},
{
Header: "Date",
accessor: "date",
},
{
Header: "Action",
accessor: "Action",
filterable: false,
sortable: false,
Cell: (e) => (
<div className="actions">
<a
className="btn view"
onClick={() => this.openResourcePage(e.original.topic)}
>
<VisibilityIcon />
</a>
{user?.email == adminEmail ? (
<>
<a
className="btn edit"
onClick={() => this.editTopic(e.original)}
>
<EditIcon />
</a>
<a
className="btn delete"
onClick={() => this.deleteTopic(e.original.id.toString())}
>
<DeleteIcon />
</a>
</>
) : (
""
)}
</div>
),
},
];
return (
<>
{topicsData ? (
<>
<div className="dashboard" id="dashboard">
<div className="discussion" id="discussion">
<div className="discussion-wrapper">
<div className="discussion-container">
<h2>Meetup Discussions</h2>
<div className="align-right clearfix">
{user?.email === adminEmail ? (
<a
className="button"
onClick={this.openAddNewTopicPopup}
>
Add New Topic
</a>
) : (
""
)}
{openAddTopicPopup && (
<AddTopic
handleSubmit={this.handleSubmit}
editTopicData={editTopicData}
handleSubmitOnEdit={this.handleSubmitOnEdit}
closePopup={this.closePopup}
/>
)}
<div className="search_container">
<input
size="large"
name="searchInput"
onChange={this.handleChangeOnSearch}
placeholder="Search"
className="search"
/>
<SearchIcon fontSize="small" />
</div>
</div>
</div>
<ReactTable
data={
filterData && filterData.length != topicsData.length
? filterData
: topicsData
}
columns={columns}
defaultPageSize={5}
PaginationComponent={Pagination}
/>
</div>
</div>
</div>
</>
) : (
<Loader />
)}
</>
);
}
}