aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/networkMapApp/src/components/searchBar.tsx
blob: 0c7607bb7b9cb1d10bf17ff64390a8cfb6821e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/**
 * ============LICENSE_START========================================================================
 * ONAP : ccsdk feature sdnr wt odlux
 * =================================================================================================
 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
 * =================================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 * ============LICENSE_END==========================================================================
 */

import * as React from 'react';
import { makeStyles, Paper, InputBase, IconButton, Divider, Popover, Typography } from '@material-ui/core';
import SearchIcon from '@material-ui/icons/Search';

import { URL_API } from '../config';
import { isSite } from '../utils/utils';
import { site } from '../model/site';
import { link } from '../model/link';
import { SelectSiteAction, SelectLinkAction } from '../actions/detailsAction';
import { HighlightLinkAction, HighlightSiteAction, ZoomToSearchResultAction } from '../actions/mapActions';
import { calculateMidPoint } from '../utils/mapUtils';
import { SetSearchValueAction } from '../actions/searchAction';
import connect,{ Connect, IDispatcher } from '../../../../framework/src/flux/connect';
import { IApplicationStoreState } from '../../../../framework/src/store/applicationStore';






const styles =  makeStyles({
    root: {
      //{ padding:5, position: 'absolute', display:'flex', flexDirection:"column",top: 150, width: 200}
      padding: '2px 4px',
      position: 'absolute',
      display:'flex',
      alignItems: 'center',
      top: 15,
      marginLeft: 5,
      width: 400,
    },
    input: {
      flex: 1,
      marginLeft: 5
    },
    iconButton: {
      padding: 10,
    },
    divider: {
      height: 28,
      margin: 4,
    },
  });


const SearchBar: React.FunctionComponent<searchBarProps> = (props) =>{

    const classes = styles();
    const [anchorEl, setAnchorEl] = React.useState<any>(null);
    const [errorMessage, setErrorMessage] = React.useState("");

    const divRef = React.useRef();

    const handleClick = (e: any) =>{

      setAnchorEl(null);
      if(props.searchterm.length>0){

        const siteResult = fetch(`${URL_API}/site/${props.searchterm}`)

        const linkResult = fetch(`${URL_API}/link/${props.searchterm}`);
  
           Promise.all([ siteResult, linkResult]).then((result)=>{
              const suceededResults = result.filter(el=> el!==undefined);
  
             if(suceededResults.length==0){
              setAnchorEl(divRef.current);
              setErrorMessage("No element found.")

             }else{
              suceededResults[0].json().then(result =>{
                if(isSite(result)){
                  props.selectSite(result);
                  props.highlightSite(result);
                  props.zoomToSearchResult(result.geoLocation.lat, result.geoLocation.lon);
                }else{
                  props.selectLink(result);
                  props.highlightLink(result);
                  const midPoint = calculateMidPoint(result.locationA.lat, result.locationA.lon, result.locationB.lat, result.locationB.lon);
                  props.zoomToSearchResult(midPoint[1], midPoint[0])
                }
              });
      }  
    });
  }
  e.preventDefault();
}

    const open = Boolean(anchorEl);

    const reachabe = props.isTopoServerReachable && props.isTileServerReachable;

    return (
      <>
        <Paper ref={divRef} component="form" className={classes.root}>
          <InputBase
          disabled={!reachabe}
            className={classes.input}
            placeholder="Find sites or links by name"
            inputProps={{ 'aria-label': 'search sites or links' }}
            value={props.searchterm}
            onChange={e=> props.setSearchTerm(e.currentTarget.value)}
          />
          <Divider className={classes.divider} orientation="vertical" />
          <IconButton type="submit" className={classes.iconButton} aria-label="search" onClick={handleClick}>
            <SearchIcon />
          </IconButton>
        </Paper>
        <Popover open={open} onClose={e=> setAnchorEl(null)} anchorEl={anchorEl} anchorOrigin={{
          vertical: "bottom",
          horizontal: "left"
        }}>
          <Paper style={{width: 380, padding:10}}>
      <Typography variant="body1">{errorMessage}</Typography>
          </Paper>
        </Popover>
        </>
      );
}

const mapStateToProps = (state: IApplicationStoreState) => ({
  searchterm: state.network.search.value,
  isTopoServerReachable: state.network.connectivity.isToplogyServerAvailable,
  isTileServerReachable: state.network.connectivity.isTileServerAvailable

});

type searchBarProps = Connect<typeof mapStateToProps, typeof mapDispatchToProps>;


const mapDispatchToProps = (dispatcher: IDispatcher) => ({ 
  selectSite:(site: site)=> dispatcher.dispatch(new SelectSiteAction(site)), 
  selectLink:(link: link) => dispatcher.dispatch(new SelectLinkAction(link)), 
  highlightLink:(link: link)=> dispatcher.dispatch(new HighlightLinkAction(link)),
  highlightSite: (site: site) => dispatcher.dispatch(new HighlightSiteAction(site)),
  setSearchTerm: (value: string) => dispatcher.dispatch(new SetSearchValueAction(value)),
  zoomToSearchResult: (lat: number, lon: number) => dispatcher.dispatch(new ZoomToSearchResultAction(lat, lon)),
});;

export default (connect(mapStateToProps,mapDispatchToProps)(SearchBar))