Skip to content

Commit 3656be7

Browse files
author
OpenShift Bot
authored
Merge pull request #1082 from spadgett/truncate-event-msg
Merged by openshift-bot
2 parents f0e8144 + 87ca1f4 commit 3656be7

File tree

7 files changed

+32
-20
lines changed

7 files changed

+32
-20
lines changed

app/scripts/directives/truncate.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ angular.module('openshiftConsole')
1212
newlineLimit: '=',
1313
useWordBoundary: '=',
1414
expandable: '=',
15-
prettifyJson: '=' // prettifies JSON blobs when expanded, only used if expandable is true
15+
keywords: '=highlightKeywords', // optional keywords to highlight using the `highlightKeywords` filter
16+
prettifyJson: '=' // prettifies JSON blobs when expanded, only used if expandable is true
1617
},
1718
templateUrl: 'views/directives/truncate-long-text.html',
1819
link: function(scope) {

app/views/catalog/_image.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ <h2 class="card-pf-title">
1111
<p class="card-pf-badge">Builds source code</p>
1212
<p>
1313
<truncate-long-text
14-
ng-if="!keywords.length"
1514
class="project-description"
1615
content="imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag"
1716
limit="200"
17+
highlight-keywords="keywords"
1818
use-word-boundary="true"></truncate-long-text>
19-
<span ng-if="keywords.length" ng-bind-html="imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag | truncate : 200 | highlightKeywords : keywords"></span>
2019
</p>
2120
<p ng-if="imageStream | imageStreamTagAnnotation : 'provider' : is.tag.tag">
2221
Provider: {{imageStream | imageStreamTagAnnotation : 'provider' : is.tag.tag}}

app/views/catalog/_template.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@ <h2 class="card-pf-title">
99
</div>
1010
<p>
1111
<truncate-long-text
12-
ng-if="!keywords.length"
1312
class="project-description"
1413
content="(template | description) || template.metadata.name"
1514
limit="200"
16-
use-word-boundary="true"></truncate-long-text>
17-
<span ng-if="keywords.length" ng-bind-html="template | description | truncate : 200 | highlightKeywords : keywords"></span>
15+
use-word-boundary="true"
16+
highlight-keywords="keywords"></truncate-long-text>
1817
</p>
1918
<p ng-if="template | annotation : 'provider'">
2019
Provider: {{template | annotation : 'provider'}}

app/views/directives/events.html

+9-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,15 @@
9292
<span ng-bind-html="event.reason | sentenceCase | highlightKeywords : filterExpressions"></span>&nbsp;
9393
<span class="pficon pficon-warning-triangle-o" ng-show="event.type === 'Warning'" aria-hidden="true" data-toggle="tooltip" data-original-title="Warning"></span>
9494
</div>
95-
<span ng-bind-html="event.message | highlightKeywords : filterExpressions"></span>
95+
<!-- Truncate long messages to 1000 chars or 4 lines. -->
96+
<truncate-long-text
97+
content="event.message"
98+
limit="1000"
99+
newline-limit="4"
100+
use-word-boundary="true"
101+
highlight-keywords="filterExpressions"
102+
expandable="true">
103+
</truncate-long-text>
96104
<div ng-if="event.count > 1" class="text-muted small">
97105
{{event.count}} times in the last
98106
<duration-until-now timestamp="event.firstTimestamp" omit-single="true" precision="1"></duration-until-now>
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
<span ng-if="!truncated" class="truncated-content">{{content}}</span>
1+
<span ng-if="!truncated" ng-bind-html="content | highlightKeywords : keywords" class="truncated-content"></span>
22
<span ng-if="truncated">
33
<span ng-if="!toggles.expanded">
4-
<span class="truncated-content" ng-attr-title="{{content}}">{{truncatedContent}}&hellip;</span>
4+
<span ng-attr-title="{{content}}">
5+
<span ng-bind-html="truncatedContent | highlightKeywords : keywords" class="truncated-content"></span>&hellip;
6+
</span>
57
<a ng-if="expandable" href="" ng-click="toggles.expanded = true" style="margin-left: 5px; white-space: nowrap;">See all</a>
68
</span>
79
<span ng-if="toggles.expanded">
810
<div ng-if="prettifyJson" class="well">
911
<span class="pull-right" style="margin-top: -10px;"><a href="" ng-click="toggles.expanded = false">Collapse</a></span>
10-
<span class="pretty-json truncated-content">{{content | prettifyJSON}}</span>
12+
<span ng-bind-html="content | prettifyJSON | highlightKeywords : keywords" class="pretty-json truncated-content"></span>
1113
</div>
1214
<span ng-if="!prettifyJson">
1315
<span class="pull-right"><a href="" ng-click="toggles.expanded = false">Collapse</a></span>
14-
<span class="truncated-content">{{content}}</span>
16+
<span ng-bind-html="content | highlightKeywords : keywords" class="truncated-content"></span>
1517
</span>
1618
</span>
1719
</span>

dist/scripts/scripts.js

+1
Original file line numberDiff line numberDiff line change
@@ -10950,6 +10950,7 @@ limit:"=",
1095010950
newlineLimit:"=",
1095110951
useWordBoundary:"=",
1095210952
expandable:"=",
10953+
keywords:"=highlightKeywords",
1095310954
prettifyJson:"="
1095410955
},
1095510956
templateUrl:"views/directives/truncate-long-text.html",

dist/scripts/templates.js

+11-9
Original file line numberDiff line numberDiff line change
@@ -4123,8 +4123,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
41234123
"</div>\n" +
41244124
"<p class=\"card-pf-badge\">Builds source code</p>\n" +
41254125
"<p>\n" +
4126-
"<truncate-long-text ng-if=\"!keywords.length\" class=\"project-description\" content=\"imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag\" limit=\"200\" use-word-boundary=\"true\"></truncate-long-text>\n" +
4127-
"<span ng-if=\"keywords.length\" ng-bind-html=\"imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag | truncate : 200 | highlightKeywords : keywords\"></span>\n" +
4126+
"<truncate-long-text class=\"project-description\" content=\"imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag\" limit=\"200\" highlight-keywords=\"keywords\" use-word-boundary=\"true\"></truncate-long-text>\n" +
41284127
"</p>\n" +
41294128
"<p ng-if=\"imageStream | imageStreamTagAnnotation : 'provider' : is.tag.tag\">\n" +
41304129
"Provider: {{imageStream | imageStreamTagAnnotation : 'provider' : is.tag.tag}}\n" +
@@ -4175,8 +4174,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
41754174
"</h2>\n" +
41764175
"</div>\n" +
41774176
"<p>\n" +
4178-
"<truncate-long-text ng-if=\"!keywords.length\" class=\"project-description\" content=\"(template | description) || template.metadata.name\" limit=\"200\" use-word-boundary=\"true\"></truncate-long-text>\n" +
4179-
"<span ng-if=\"keywords.length\" ng-bind-html=\"template | description | truncate : 200 | highlightKeywords : keywords\"></span>\n" +
4177+
"<truncate-long-text class=\"project-description\" content=\"(template | description) || template.metadata.name\" limit=\"200\" use-word-boundary=\"true\" highlight-keywords=\"keywords\"></truncate-long-text>\n" +
41804178
"</p>\n" +
41814179
"<p ng-if=\"template | annotation : 'provider'\">\n" +
41824180
"Provider: {{template | annotation : 'provider'}}\n" +
@@ -6768,7 +6766,9 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
67686766
"<span ng-bind-html=\"event.reason | sentenceCase | highlightKeywords : filterExpressions\"></span>&nbsp;\n" +
67696767
"<span class=\"pficon pficon-warning-triangle-o\" ng-show=\"event.type === 'Warning'\" aria-hidden=\"true\" data-toggle=\"tooltip\" data-original-title=\"Warning\"></span>\n" +
67706768
"</div>\n" +
6771-
"<span ng-bind-html=\"event.message | highlightKeywords : filterExpressions\"></span>\n" +
6769+
"\n" +
6770+
"<truncate-long-text content=\"event.message\" limit=\"1000\" newline-limit=\"4\" use-word-boundary=\"true\" highlight-keywords=\"filterExpressions\" expandable=\"true\">\n" +
6771+
"</truncate-long-text>\n" +
67726772
"<div ng-if=\"event.count > 1\" class=\"text-muted small\">\n" +
67736773
"{{event.count}} times in the last\n" +
67746774
"<duration-until-now timestamp=\"event.firstTimestamp\" omit-single=\"true\" precision=\"1\"></duration-until-now>\n" +
@@ -8384,20 +8384,22 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
83848384

83858385

83868386
$templateCache.put('views/directives/truncate-long-text.html',
8387-
"<span ng-if=\"!truncated\" class=\"truncated-content\">{{content}}</span>\n" +
8387+
"<span ng-if=\"!truncated\" ng-bind-html=\"content | highlightKeywords : keywords\" class=\"truncated-content\"></span>\n" +
83888388
"<span ng-if=\"truncated\">\n" +
83898389
"<span ng-if=\"!toggles.expanded\">\n" +
8390-
"<span class=\"truncated-content\" ng-attr-title=\"{{content}}\">{{truncatedContent}}&hellip;</span>\n" +
8390+
"<span ng-attr-title=\"{{content}}\">\n" +
8391+
"<span ng-bind-html=\"truncatedContent | highlightKeywords : keywords\" class=\"truncated-content\"></span>&hellip;\n" +
8392+
"</span>\n" +
83918393
"<a ng-if=\"expandable\" href=\"\" ng-click=\"toggles.expanded = true\" style=\"margin-left: 5px; white-space: nowrap\">See all</a>\n" +
83928394
"</span>\n" +
83938395
"<span ng-if=\"toggles.expanded\">\n" +
83948396
"<div ng-if=\"prettifyJson\" class=\"well\">\n" +
83958397
"<span class=\"pull-right\" style=\"margin-top: -10px\"><a href=\"\" ng-click=\"toggles.expanded = false\">Collapse</a></span>\n" +
8396-
"<span class=\"pretty-json truncated-content\">{{content | prettifyJSON}}</span>\n" +
8398+
"<span ng-bind-html=\"content | prettifyJSON | highlightKeywords : keywords\" class=\"pretty-json truncated-content\"></span>\n" +
83978399
"</div>\n" +
83988400
"<span ng-if=\"!prettifyJson\">\n" +
83998401
"<span class=\"pull-right\"><a href=\"\" ng-click=\"toggles.expanded = false\">Collapse</a></span>\n" +
8400-
"<span class=\"truncated-content\">{{content}}</span>\n" +
8402+
"<span ng-bind-html=\"content | highlightKeywords : keywords\" class=\"truncated-content\"></span>\n" +
84018403
"</span>\n" +
84028404
"</span>\n" +
84038405
"</span>"

0 commit comments

Comments
 (0)