OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 --> | 5 --> |
6 | 6 |
7 <link rel="import" href="../bower_components/paper-button/paper-button.html"> | 7 <link rel="import" href="../bower_components/paper-button/paper-button.html"> |
8 <link rel="import" href="../model/tree-status.html"> | 8 <link rel="import" href="../model/tree-status.html"> |
9 <link rel="import" href="ct-failure-stream.html"> | 9 <link rel="import" href="ct-failure-stream.html"> |
10 <link rel="import" href="ct-last-updated.html"> | 10 <link rel="import" href="ct-last-updated.html"> |
(...skipping 27 matching lines...) Expand all Loading... |
38 .failure-group-header { | 38 .failure-group-header { |
39 padding: 0 5px; | 39 padding: 0 5px; |
40 } | 40 } |
41 </style> | 41 </style> |
42 <div class="toolbar"> | 42 <div class="toolbar"> |
43 <ct-revision-details id="revisionDetails" builderLatestRevisions="{{ failu
res.builderLatestRevisions }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></c
t-revision-details> | 43 <ct-revision-details id="revisionDetails" builderLatestRevisions="{{ failu
res.builderLatestRevisions }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></c
t-revision-details> |
44 <a href="https://code.google.com/p/chromium/wiki/UsefulURLs">Useful URLs</
a> | 44 <a href="https://code.google.com/p/chromium/wiki/UsefulURLs">Useful URLs</
a> |
45 </div> | 45 </div> |
46 <ct-tree-status status="{{ treeStatuses['chromium'] }}" state="{{ treeStatus
es['chromium'].status }}"></ct-tree-status> | 46 <ct-tree-status status="{{ treeStatuses['chromium'] }}" state="{{ treeStatus
es['chromium'].status }}"></ct-tree-status> |
47 <ct-tree-status status="{{ treeStatuses['blink'] }}" state="{{ treeStatuses[
'blink'].status }}"></ct-tree-status> | 47 <ct-tree-status status="{{ treeStatuses['blink'] }}" state="{{ treeStatuses[
'blink'].status }}"></ct-tree-status> |
48 <ct-party-time failures="{{ failures.failures[tree].length == 0 }}"></ct-par
ty-time> | 48 <template if="{{ failures && failures.failures && (!failures.failures[tree]
|| !failures.failures[tree].length) }}"> |
49 <ct-failure-stream title="Reliable failures" category="default" groups="{{ f
ailures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-fa
ilure-stream> | 49 <ct-party-time></ct-party-time> |
50 <ct-failure-stream title="Failures that have only happened once (on one bot)
" category="failedOnce" groups="{{ failures.failures[tree] }}" commitLog="{{ com
mitLog }}" tree="{{ tree }}"></ct-failure-stream> | 50 </template> |
51 <ct-failure-stream title="Snoozed failures" category="snoozed" groups="{{ fa
ilures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-fai
lure-stream> | 51 <ct-failure-stream title="Reliable failures" category="default" groups="{{ f
ailures && failures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree
}}"></ct-failure-stream> |
| 52 <ct-failure-stream title="Failures that have only happened once (on one bot)
" category="failedOnce" groups="{{ failures && failures.failures[tree] }}" commi
tLog="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream> |
| 53 <ct-failure-stream title="Snoozed failures" category="snoozed" groups="{{ fa
ilures && failures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree
}}"></ct-failure-stream> |
52 </template> | 54 </template> |
53 <script> | 55 <script> |
54 (function() { | 56 (function() { |
55 Polymer({ | 57 Polymer({ |
56 tree: '', | 58 tree: '', |
57 | 59 |
58 created: function() { | 60 created: function() { |
59 this.treeStatuses = {}; | 61 this.treeStatuses = {}; |
60 var projects = ['chromium', 'blink']; | 62 var projects = ['chromium', 'blink']; |
61 for (var i = 0; i < projects.length; i++) { | 63 for (var i = 0; i < projects.length; i++) { |
62 this.treeStatuses[projects[i]] = new TreeStatus(projects[i]); | 64 this.treeStatuses[projects[i]] = new TreeStatus(projects[i]); |
63 } | 65 } |
64 }, | 66 }, |
65 | 67 |
66 attached: function() { | 68 attached: function() { |
67 this.update(); | 69 this.update(); |
68 }, | 70 }, |
69 | 71 |
70 update: function() { | 72 update: function() { |
71 // FIXME: These shouldn't update if there's already an update in progres
s. | 73 // FIXME: These shouldn't update if there's already an update in progres
s. |
72 Object.keys(this.treeStatuses, function(tree, status) { | 74 Object.keys(this.treeStatuses, function(tree, status) { |
73 status.update(); | 75 status.update(); |
74 }); | 76 }); |
75 }, | 77 }, |
76 }); | 78 }); |
77 })(); | 79 })(); |
78 </script> | 80 </script> |
79 </polymer-element> | 81 </polymer-element> |
OLD | NEW |