Skip to content

Commit 419aae4

Browse files
committed
Fix lint errors
1 parent 859b52d commit 419aae4

File tree

3 files changed

+29
-33
lines changed

3 files changed

+29
-33
lines changed

src/components/ActionCard/CommentEditToggle.jsx

Lines changed: 27 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ export default class CommentEditToggle extends React.Component {
77

88
constructor(props) {
99
super(props)
10-
this.state = {isOpen: false}
1110
this.onEdit = this.onEdit.bind(this)
1211
this.onDelete = this.onDelete.bind(this)
1312
this.showDelete = this.showDelete.bind(this)
1413
this.cancelDelete = this.cancelDelete.bind(this)
1514
}
1615

1716
onEdit() {
18-
this.setState({isOpen: false})
1917
this.props.onEdit()
2018
}
2119

@@ -24,16 +22,16 @@ export default class CommentEditToggle extends React.Component {
2422
}
2523

2624
cancelDelete() {
27-
this.setState({isOpen: false, showDeleteConfirm: false})
25+
this.setState({showDeleteConfirm: false})
2826
}
2927

3028
onDelete() {
31-
this.setState({isOpen: false, showDeleteConfirm: false})
29+
this.setState({showDeleteConfirm: false})
3230
this.props.onDelete()
3331
}
3432

3533
render() {
36-
const { isOpen, showDeleteConfirm } = this.state
34+
const {showDeleteConfirm } = this.state
3735
const editOptions = {label:this.props.forTopic ? 'Edit post' : 'Edit comment', val:'1'}
3836
const deleteOptions = {label:this.props.forTopic ? 'Delete post' : 'Delete comment', val:'2'}
3937
return (
@@ -44,39 +42,37 @@ export default class CommentEditToggle extends React.Component {
4442
<div className="dropdown-menu-list down-layer">
4543
<ul>
4644
<DropdownItem key={1} item={editOptions}
47-
onItemClick={this.onEdit}
48-
currentSelection=''
49-
/>
45+
onItemClick={this.onEdit}
46+
currentSelection=""
47+
/>
5048
<DropdownItem key={2} item={deleteOptions}
51-
onItemClick={this.showDelete}
52-
currentSelection=''
53-
/>
49+
onItemClick={this.showDelete}
50+
currentSelection=""
51+
/>
5452
</ul>
5553
</div>
56-
57-
58-
5954
</Dropdown>
6055
<Modal
61-
isOpen={ showDeleteConfirm }
62-
className="delete-post-dialog"
63-
overlayClassName="delete-post-dialog-overlay"
64-
onRequestClose={ this.cancelDelete }
65-
contentLabel=""
66-
>
67-
<div className="modal-title">
68-
Are you sure you want to delete this post?
69-
</div>
56+
isOpen={ showDeleteConfirm }
57+
className="delete-post-dialog"
58+
overlayClassName="delete-post-dialog-overlay"
59+
onRequestClose={ this.cancelDelete }
60+
contentLabel=""
61+
>
62+
63+
<div className="modal-title">
64+
Are you sure you want to delete this post?
65+
</div>
7066

71-
<div className="modal-body">
72-
This action cannot be undone.
73-
</div>
67+
<div className="modal-body">
68+
This action cannot be undone.
69+
</div>
7470

75-
<div className="button-area flex center action-area">
76-
<button className="tc-btn tc-btn-default tc-btn-sm action-btn btn-cancel" onClick={this.cancelDelete}>Cancel</button>
77-
<button className="tc-btn tc-btn-warning tc-btn-sm action-btn " onClick={this.onDelete}>Delete Post</button>
78-
</div>
79-
</Modal>
71+
<div className="button-area flex center action-area">
72+
<button className="tc-btn tc-btn-default tc-btn-sm action-btn btn-cancel" onClick={this.cancelDelete}>Cancel</button>
73+
<button className="tc-btn tc-btn-warning tc-btn-sm action-btn " onClick={this.onDelete}>Delete Post</button>
74+
</div>
75+
</Modal>
8076

8177
</div>
8278

src/projects/detail/containers/FeedContainer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class FeedView extends React.Component {
7474
// Notify user if they navigate away while the form is modified.
7575
onLeave(e) {
7676
if (this.isChanged()) {
77-
return e.returnValue = "You haven't saved your edits. Leaving this page would discard all edits. Are you sure you want to leave?"
77+
return e.returnValue = 'You haven\'t saved your edits. Leaving this page would discard all edits. Are you sure you want to leave?'
7878
}
7979
}
8080

src/projects/detail/containers/MessagesContainer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class MessagesView extends React.Component {
7979
// Notify user if they navigate away while the form is modified.
8080
onLeave(e) {
8181
if (this.isChanged()) {
82-
return e.returnValue = "You haven't saved your edits. Leaving this page would discard all edits. Are you sure you want to leave?"
82+
return e.returnValue = 'You haven\'t saved your edits. Leaving this page would discard all edits. Are you sure you want to leave?'
8383
}
8484
}
8585

0 commit comments

Comments
 (0)