searchResult.html 2.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!--
  ~ Licensed to the Apache Software Foundation (ASF) under one
  ~ or more contributor license agreements.  See the NOTICE file
  ~ distributed with this work for additional information
  ~ regarding copyright ownership.  The ASF licenses this file
  ~ to you 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.
  -->

19
<h4 ng-show="searchMessage">{{searchMessage}}</h4>
20 21

<ul class="list-unstyled">
22
    <li ng-repeat="result in filteredResults" class="search-results">
dileep bhimineni committed
23 24
        <h4><a data-ui-sref="details({id:result['$id$'].id})">{{result.name}}</a></h4>
        <p>{{result.description}}</p>
25 26 27
            <span ng-repeat="(key, value) in filterSearchResults(result)" >
                <span ng-show="$index < 4"><b>{{key}}: </b>{{value}}{{$index+1 === limit ? '' : ', '}}</span>
            </span>
dileep bhimineni committed
28
        <div collapse="isCollapsed">
29
                <span ng-repeat="(key, value) in filterSearchResults(result)" >
30
                <span ng-show="$index > 4"><b>{{key}}: </b>{{value}}{{$last ? '' : ', '}}</span>
31
            </span>
dileep bhimineni committed
32 33 34
        </div>
        <a href ng-show="isCollapsed && (keyLength > 4)"  ng-click="doToggle($event,isCollapsed)">..show more</a>
        <a href ng-show="!isCollapsed"  ng-click="doToggle($event,isCollapsed)">..show less</a>
35

dileep bhimineni committed
36 37 38
        <h5>Tags :  <a ng-repeat="(key, value) in result['$traits$']" data-ui-sref="search.results({query: key})">{{key}}</a> </h5>
        <div data-ng-if="!searchTypesAvailable" data-ng-include="'/modules/search/views/types/guid.html'"></div>
    </li>
39
</ul>
40
<div class="resultsPagination" ng-show='filteredResults.length > 0'>
41 42 43
    <pagination total-items="totalItems" items-per-page="itemsPerPage" ng-model="currentPage" ng-change="pageChanged()"></pagination>
    <p>
</div>