blob: 83edab37b0749692315b6c346fdfe7a7128b39e7 [file] [log] [blame]
/**
* @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.js';
export const htmlTemplate = html`
<style include="shared-styles">
:host {
display: flex;
justify-content: space-between;
}
.header {
align-items: center;
border-top: 1px solid var(--border-color);
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);
}
gr-message {
background-color: var(--background-color-secondary);
}
.experimentMessage {
padding: var(--spacing-s) var(--spacing-m);
background-color: var(--emphasis-color);
border-radius: var(--border-radius);
}
.experimentMessage iron-icon {
vertical-align: top;
}
</style>
<div class="header">
<div id="showAllActivityToggleContainer" class="container">
<template
is="dom-if"
if="[[_isVisibleShowAllActivityToggle(_combinedMessages)]]"
>
<paper-toggle-button
class="showAllActivityToggle"
checked="{{_showAllActivity}}"
></paper-toggle-button>
<div>
<span>Show all entries</span>
<span class="hiddenEntries" hidden$="[[_showAllActivity]]">
([[_computeHiddenEntriesCount(_combinedMessages)]] hidden)
</span>
</div>
<span class="transparent separator"></span>
</template>
</div>
<div class="experimentMessage">
<iron-icon icon="gr-icons:pets"></iron-icon>
<span>You're currently viewing an experimental Change Log view.</span>
<a
target="_blank"
href="https://www.gerritcodereview.com/2020-05-06-change-log-experiment.html"
>
Learn more
</a>
</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-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>
`;