Skip to content

Commit 42ecd5d

Browse files
authored
Merge pull request #2043 from lindapaiste/refactor/redux-hooks
use react-redux hooks in Toast component
2 parents 91208e5 + 3651d83 commit 42ecd5d

File tree

4 files changed

+14
-42
lines changed

4 files changed

+14
-42
lines changed
+10-22
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,27 @@
1-
import PropTypes from 'prop-types';
21
import React from 'react';
3-
import { bindActionCreators } from 'redux';
4-
import { connect } from 'react-redux';
2+
import { useDispatch, useSelector } from 'react-redux';
53
import { useTranslation } from 'react-i18next';
6-
import * as ToastActions from '../actions/toast';
4+
import { hideToast } from '../actions/toast';
75

86
import ExitIcon from '../../../images/exit.svg';
97

10-
function Toast(props) {
8+
export default function Toast() {
9+
const { text, isVisible } = useSelector((state) => state.toast);
10+
const dispatch = useDispatch();
1111
const { t } = useTranslation();
12+
if (!isVisible) {
13+
return null;
14+
}
1215
return (
1316
<section className="toast">
14-
<p>{t(props.text)}</p>
17+
<p>{t(text)}</p>
1518
<button
1619
className="toast__close"
17-
onClick={props.hideToast}
20+
onClick={() => dispatch(hideToast())}
1821
aria-label="Close Alert"
1922
>
2023
<ExitIcon focusable="false" aria-hidden="true" />
2124
</button>
2225
</section>
2326
);
2427
}
25-
26-
Toast.propTypes = {
27-
text: PropTypes.string.isRequired,
28-
hideToast: PropTypes.func.isRequired
29-
};
30-
31-
function mapStateToProps(state) {
32-
return state.toast;
33-
}
34-
35-
function mapDispatchToProps(dispatch) {
36-
return bindActionCreators(ToastActions, dispatch);
37-
}
38-
39-
export default connect(mapStateToProps, mapDispatchToProps)(Toast);

client/modules/IDE/pages/IDEView.jsx

+1-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import * as ProjectActions from '../actions/project';
2626
import * as EditorAccessibilityActions from '../actions/editorAccessibility';
2727
import * as PreferencesActions from '../actions/preferences';
2828
import * as UserActions from '../../User/actions';
29-
import * as ToastActions from '../actions/toast';
3029
import * as ConsoleActions from '../actions/console';
3130
import { getHTMLFile } from '../reducers/files';
3231
import Overlay from '../../App/components/Overlay';
@@ -255,7 +254,7 @@ class IDEView extends React.Component {
255254
<Helmet>
256255
<title>{getTitle(this.props)}</title>
257256
</Helmet>
258-
{this.props.toast.isVisible && <Toast />}
257+
<Toast />
259258
<Nav
260259
warnIfUnsavedChanges={this.handleUnsavedChanges}
261260
cmController={this.cmController}
@@ -561,9 +560,6 @@ IDEView.propTypes = {
561560
closeNewFileModal: PropTypes.func.isRequired,
562561
closeShareModal: PropTypes.func.isRequired,
563562
closeKeyboardShortcutModal: PropTypes.func.isRequired,
564-
toast: PropTypes.shape({
565-
isVisible: PropTypes.bool.isRequired
566-
}).isRequired,
567563
autosaveProject: PropTypes.func.isRequired,
568564
router: PropTypes.shape({
569565
setRouteLeaveHook: PropTypes.func
@@ -594,7 +590,6 @@ function mapStateToProps(state) {
594590
editorAccessibility: state.editorAccessibility,
595591
user: state.user,
596592
project: state.project,
597-
toast: state.toast,
598593
console: state.console,
599594
isUserOwner: getIsUserOwner(state)
600595
};
@@ -610,7 +605,6 @@ function mapDispatchToProps(dispatch) {
610605
IDEActions,
611606
PreferencesActions,
612607
UserActions,
613-
ToastActions,
614608
ConsoleActions
615609
),
616610
dispatch

client/modules/IDE/pages/MobileIDEView.jsx

+1-7
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ const MobileIDEView = (props) => {
278278
files,
279279
toggleForceDesktop,
280280
logoutUser,
281-
toast,
282281
isUserOwner
283282
} = props;
284283

@@ -383,7 +382,7 @@ const MobileIDEView = (props) => {
383382
/>
384383
</li>
385384
</Header>
386-
{toast.isVisible && <Toast />}
385+
<Toast />
387386

388387
<IDEWrapper>
389388
<Editor provideController={setCmController} />
@@ -456,10 +455,6 @@ MobileIDEView.propTypes = {
456455
username: PropTypes.string
457456
}).isRequired,
458457

459-
toast: PropTypes.shape({
460-
isVisible: PropTypes.bool
461-
}).isRequired,
462-
463458
logoutUser: PropTypes.func.isRequired,
464459

465460
getProject: PropTypes.func.isRequired,
@@ -490,7 +485,6 @@ function mapStateToProps(state) {
490485
preferences: state.preferences,
491486
user: state.user,
492487
project: state.project,
493-
toast: state.toast,
494488
console: state.console,
495489
isUserOwner: getIsUserOwner(state)
496490
};

client/modules/User/pages/AccountView.jsx

+2-6
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class AccountView extends React.Component {
6868
<Helmet>
6969
<title>{this.props.t('AccountView.Title')}</title>
7070
</Helmet>
71-
{this.props.toast.isVisible && <Toast />}
71+
<Toast />
7272

7373
<Nav layout="dashboard" />
7474

@@ -129,8 +129,7 @@ function mapStateToProps(state) {
129129
previousPath: state.ide.previousPath,
130130
user: state.user,
131131
apiKeys: state.user.apiKeys,
132-
theme: state.preferences.theme,
133-
toast: state.toast
132+
theme: state.preferences.theme
134133
};
135134
}
136135

@@ -151,9 +150,6 @@ AccountView.propTypes = {
151150
location: PropTypes.shape({
152151
search: PropTypes.string.isRequired,
153152
pathname: PropTypes.string.isRequired
154-
}).isRequired,
155-
toast: PropTypes.shape({
156-
isVisible: PropTypes.bool.isRequired
157153
}).isRequired
158154
};
159155

0 commit comments

Comments
 (0)