summaryrefslogtreecommitdiffstats
path: root/src/app/model/modelSearch/components/ModelBreadcrumb.jsx
blob: ffcddb171ea2b3be58063c335737484e70a38ca2 (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
/*
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2021 AT&T 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 React from 'react';
import Col from 'react-bootstrap/lib/Col';
import Label from 'react-bootstrap/lib/Label';
import { Link } from 'react-router-dom';
import {GlobalExtConstants} from 'utils/GlobalExtConstants.js';

const modelBreadcrumb = (props) => {

 let links = null;
 let historyStackArr = [];
 var setURIInSession = function(uri){
    sessionStorage.setItem(GlobalExtConstants.ENVIRONMENT + 'URI', uri);
 }
    if (props.historyStackString) {
      historyStackArr = props.historyStackString.split('||');
      for(var i = 0; i < historyStackArr.length; i++){
         historyStackArr[i] = historyStackArr[i].split(',');
         console.log('[ModelBreadcrumb.jsx] previous url ' + historyStackArr[i][0] + ' previous api call '+ historyStackArr[i][1]);
      }
      links = historyStackArr.map((link, idx) => {
        let breadCrumbTxt=decodeURI(link[2]).replace(/%2F/g,'/');
        return (
                <div className='customBreadCrumb'>
                {idx === historyStackArr.length - 2 ? (
                    <b id={'breadcrumbStatic' + idx} style={{'float' : 'left'}}>{breadCrumbTxt}</b>
                    ) : idx !== historyStackArr.length - 1 ? (
                    <div id={'breadcrumbLink' + idx}>
                      <div style={{'float' : 'left'}}>                          
                        <Link
                          key={idx}
                          to={{
                            pathname: link[0],
                            uri: link[1],
                            historyStackString: (breadCrumbTxt==='Origin')?'':props.historyStackString
                          }} onClick={() => setURIInSession(link[1])}>{breadCrumbTxt}
                        </Link>
                    </div>
                      <div style={{'float' : 'left'}}>&nbsp;&nbsp;&#x3E;&#x3E;&nbsp;&nbsp;</div>
                </div>
                 ):(<div></div>)}
                 </div>
        );
      });
    }
  return (
    <Col md={12}  className='addPaddingTop'>
        {links}
    </Col>
  );
};

export default modelBreadcrumb;