| /** |
| * @license |
| * Copyright (C) 2020 The Android Open Source Project |
| * |
| * 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. |
| */ |
| import {html} from '@polymer/polymer/lib/utils/html-tag'; |
| |
| export const htmlTemplate = html` |
| <style include="shared-styles"> |
| :host { |
| display: flex; |
| justify-content: space-between; |
| } |
| .header { |
| align-items: center; |
| border-bottom: 1px solid var(--border-color); |
| display: flex; |
| justify-content: space-between; |
| padding: var(--spacing-s) var(--spacing-l); |
| } |
| .highlighted { |
| animation: 3s fadeOut; |
| } |
| @keyframes fadeOut { |
| 0% { |
| background-color: var(--emphasis-color); |
| } |
| 100% { |
| background-color: var(--view-background-color); |
| } |
| } |
| .container { |
| align-items: center; |
| display: flex; |
| } |
| .hiddenEntries { |
| color: var(--deemphasized-text-color); |
| } |
| gr-message:not(:last-of-type) { |
| border-bottom: 1px solid var(--border-color); |
| } |
| </style> |
| <style include="gr-paper-styles"> |
| /* Workaround for empty style block - see https://github.com/Polymer/tools/issues/408 */ |
| </style> |
| <div class="header"> |
| <div id="showAllActivityToggleContainer" class="container"> |
| <template |
| is="dom-if" |
| if="[[_isVisibleShowAllActivityToggle(_combinedMessages)]]" |
| > |
| <paper-toggle-button |
| class="showAllActivityToggle" |
| checked="{{_showAllActivity}}" |
| aria-labelledby="showAllEntriesLabel" |
| role="switch" |
| on-click="_onTapShowAllActivityToggle" |
| ></paper-toggle-button> |
| <div id="showAllEntriesLabel" aria-hidden="true"> |
| <span>Show all entries</span> |
| <span class="hiddenEntries" hidden$="[[_showAllActivity]]"> |
| ([[_computeHiddenEntriesCount(_combinedMessages)]] hidden) |
| </span> |
| </div> |
| <span class="transparent separator"></span> |
| </template> |
| </div> |
| <gr-button |
| id="collapse-messages" |
| link="" |
| title="[[_expandAllTitle]]" |
| on-click="_handleExpandCollapseTap" |
| > |
| [[_expandAllState]] |
| </gr-button> |
| </div> |
| <template |
| id="messageRepeat" |
| is="dom-repeat" |
| items="[[_combinedMessages]]" |
| as="message" |
| filter="_isMessageVisible" |
| > |
| <gr-message |
| change="[[change]]" |
| change-num="[[changeNum]]" |
| message="[[message]]" |
| comment-threads="[[message.commentThreads]]" |
| project-name="[[projectName]]" |
| show-reply-button="[[showReplyButtons]]" |
| on-message-anchor-tap="_handleAnchorClick" |
| label-extremes="[[_labelExtremes]]" |
| data-message-id$="[[message.id]]" |
| ></gr-message> |
| </template> |
| `; |