about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/list_editor/containers/search_container.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-08-20 16:34:17 +0200
committerThibG <thib@sitedethib.com>2018-08-22 16:18:23 +0200
commit9fbaaefe59c56e4cd6874be87fb961df39ead3d0 (patch)
tree4b4a75cb1a2747ee27650e175e69da0ec84fda46 /app/javascript/flavours/glitch/features/list_editor/containers/search_container.js
parentd69f045681e4b48ff55077eefda388904d06b158 (diff)
Split list editor into components and containers
Diffstat (limited to 'app/javascript/flavours/glitch/features/list_editor/containers/search_container.js')
-rw-r--r--app/javascript/flavours/glitch/features/list_editor/containers/search_container.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/list_editor/containers/search_container.js b/app/javascript/flavours/glitch/features/list_editor/containers/search_container.js
new file mode 100644
index 000000000..5af20efbd
--- /dev/null
+++ b/app/javascript/flavours/glitch/features/list_editor/containers/search_container.js
@@ -0,0 +1,17 @@
+import React from 'react';
+import { connect } from 'react-redux';
+import { injectIntl } from 'react-intl';
+import { fetchListSuggestions, clearListSuggestions, changeListSuggestions } from '../../../actions/lists';
+import Search from '../components/search';
+
+const mapStateToProps = state => ({
+  value: state.getIn(['listEditor', 'suggestions', 'value']),
+});
+
+const mapDispatchToProps = dispatch => ({
+  onSubmit: value => dispatch(fetchListSuggestions(value)),
+  onClear: () => dispatch(clearListSuggestions()),
+  onChange: value => dispatch(changeListSuggestions(value)),
+});
+
+export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(Search));