9c3e49a568595822ddb58b6d9c33f395294c0e18
[aai/sparky-fe.git] / src / app / globalAutoCompleteSearchBar / GlobalAutoCompleteSearchBar.jsx
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 import {connect} from 'react-redux';
22 import React, {Component} from 'react';
23 import  AutoCompleteSearchBar from 'generic-components/autoCompleteSearchBar/AutoCompleteSearchBar.jsx';
24 import {postAnalyticsData} from 'app/analytics/AnalyticsActions.js';
25 import {getClearGlobalMessageEvent} from 'app/globalInlineMessageBar/GlobalInlineMessageBarActions.js';
26 import {
27   queryRequestedValues,
28   clearSuggestionsTextField,
29   onSuggestionsChange,
30   onSuggestionsClearRequested,
31   getInvalidSearchInputEvent,
32   setNotificationText
33 } from 'app/globalAutoCompleteSearchBar/GlobalAutoCompleteSearchBarActions.js';
34
35 let mapActionToProps = (dispatch) => {
36   return {
37     onSuggestionsFetchRequested: ({value}) => dispatch(
38       queryRequestedValues(value)),
39     onClearSuggestionsTextFieldRequested: () => {
40       dispatch(getClearGlobalMessageEvent());
41       dispatch(clearSuggestionsTextField());
42     },
43     onInputChange: (event, {newValue}) => {
44       dispatch(getClearGlobalMessageEvent());
45       dispatch(onSuggestionsChange(event, newValue));
46     },
47     onSuggestionsClearRequested: () => dispatch(onSuggestionsClearRequested()),
48     dispatchAnalytics: () => dispatch(
49       postAnalyticsData(document.documentElement.outerHTML.replace('\s+', ''))),
50     onInvalidSearch: (searchText) => {
51       dispatch(getInvalidSearchInputEvent(searchText));
52     },
53     onMessageStateChange: (msgText, msgSeverity) => {
54       dispatch(setNotificationText(msgText, msgSeverity));
55     }
56   };
57 };
58
59 let mapStateToProps = ({globalAutoCompleteSearchBarReducer}) => {
60   let {
61         value = '',
62         suggestions = [],
63         cachedSuggestions = [],
64         suggestionName = 'text',
65         clearSearchText = false,
66         feedbackMsgText = '',
67         feedbackMsgSeverity = ''
68       } = globalAutoCompleteSearchBarReducer;
69   
70   return {
71     value,
72     suggestions,
73     cachedSuggestions,
74     suggestionName,
75     clearSearchText,
76     feedbackMsgText,
77     feedbackMsgSeverity
78   };
79 };
80
81 export class GlobalAutoCompleteSearchBar extends Component {
82   componentWillReceiveProps(nextProps) {
83     if (nextProps.clearSearchText) {
84       this.props.onClearSuggestionsTextFieldRequested();
85     }
86     
87     if (nextProps.feedbackMsgText !== this.props.feedbackMsgText) {
88       this.props.onMessageStateChange(nextProps.feedbackMsgText,
89         nextProps.feedbackMsgSeverity);
90     }
91   }
92   
93   render() {
94     return (
95       <AutoCompleteSearchBar {...this.props} />
96     );
97   }
98 }
99 export default connect(mapStateToProps, mapActionToProps)(
100   GlobalAutoCompleteSearchBar);