remove redundant checks

jh-changes
Shin'ya Ueoka 7 years ago
parent 93bd0bc54f
commit 4923cb20c7
  1. 21
      src/content/components/top-content/find.js

@ -1,6 +1,5 @@
import * as findActions from 'content/actions/find';
import messages from 'shared/messages';
import * as consoleFrames from '../../console-frames';
export default class FindComponent {
constructor(win, store) {
@ -32,31 +31,11 @@ export default class FindComponent {
next() {
let state = this.store.getState().find;
if (!state.found) {
return consoleFrames.postError(
window.document,
'Pattern not found: ' + state.keyword);
}
consoleFrames.postInfo(
window.document,
'Pattern found: ' + state.keyword,
);
return this.store.dispatch(findActions.next(state.keyword, false));
}
prev() {
let state = this.store.getState().find;
if (!state.found) {
return consoleFrames.postError(
window.document,
'Pattern not found: ' + state.keyword);
}
consoleFrames.postInfo(
window.document,
'Pattern found: ' + state.keyword,
);
return this.store.dispatch(findActions.prev(state.keyword, false));
}
}