
Polymer 2 deprecates the 'fire' method for legacy elements. So let's use gerrit's core fire method which is almost exactly the same. Change-Id: I59aebd29a89d26d9cb39e63e9a41afa9756b942f
136 lines
4.8 KiB
HTML
136 lines
4.8 KiB
HTML
<!--
|
|
@license
|
|
Copyright (C) 2017 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.
|
|
-->
|
|
|
|
<link rel="import" href="/bower_components/polymer/polymer.html">
|
|
|
|
<link rel="import" href="../../../behaviors/base-url-behavior/base-url-behavior.html">
|
|
<link rel="import" href="../../../behaviors/fire-behavior/fire-behavior.html">
|
|
<link rel="import" href="../../../behaviors/gr-access-behavior/gr-access-behavior.html">
|
|
<link rel="import" href="../../../behaviors/gr-url-encoding-behavior/gr-url-encoding-behavior.html">
|
|
|
|
<link rel="import" href="../../../styles/gr-menu-page-styles.html">
|
|
<link rel="import" href="../../../styles/gr-subpage-styles.html">
|
|
<link rel="import" href="../../../styles/shared-styles.html">
|
|
<link rel="import" href="../../core/gr-navigation/gr-navigation.html">
|
|
<link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html">
|
|
<link rel="import" href="../gr-access-section/gr-access-section.html">
|
|
|
|
<script src="../../../scripts/util.js"></script>
|
|
|
|
<dom-module id="gr-repo-access">
|
|
<template>
|
|
<style include="shared-styles"></style>
|
|
<style include="gr-subpage-styles">
|
|
gr-button,
|
|
#inheritsFrom,
|
|
#editInheritFromInput,
|
|
.editing #inheritFromName,
|
|
.weblinks,
|
|
.editing .invisible{
|
|
display: none;
|
|
}
|
|
#inheritsFrom.show {
|
|
display: flex;
|
|
min-height: 2em;
|
|
align-items: center;
|
|
}
|
|
.weblink {
|
|
margin-right: .2em;
|
|
}
|
|
.weblinks.show,
|
|
.referenceContainer {
|
|
display: block;
|
|
}
|
|
.rightsText {
|
|
margin-right: .3rem;
|
|
}
|
|
|
|
.editing gr-button,
|
|
.admin #editBtn {
|
|
display: inline-block;
|
|
margin: 1em 0;
|
|
}
|
|
.editing #editInheritFromInput {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
<style include="gr-menu-page-styles"></style>
|
|
<main class$="[[_computeMainClass(_ownerOf, _canUpload, _editing)]]">
|
|
<div id="loading" class$="[[_computeLoadingClass(_loading)]]">
|
|
Loading...
|
|
</div>
|
|
<div id="loadedContent" class$="[[_computeLoadingClass(_loading)]]">
|
|
<h3 id="inheritsFrom" class$="[[_computeShowInherit(_inheritsFrom)]]">
|
|
<span class="rightsText">Rights Inherit From</span>
|
|
<a
|
|
href$="[[_computeParentHref(_inheritsFrom.name)]]"
|
|
rel="noopener"
|
|
id="inheritFromName">
|
|
[[_inheritsFrom.name]]</a>
|
|
<gr-autocomplete
|
|
id="editInheritFromInput"
|
|
text="{{_inheritFromFilter}}"
|
|
query="[[_query]]"
|
|
on-commit="_handleUpdateInheritFrom"></gr-autocomplete>
|
|
</h3>
|
|
<div class$="weblinks [[_computeWebLinkClass(_weblinks)]]">
|
|
History:
|
|
<template is="dom-repeat" items="[[_weblinks]]" as="link">
|
|
<a href="[[link.url]]" class="weblink" rel="noopener" target="[[link.target]]">
|
|
[[link.name]]
|
|
</a>
|
|
</template>
|
|
</div>
|
|
<gr-button id="editBtn"
|
|
on-tap="_handleEdit">[[_editOrCancel(_editing)]]</gr-button>
|
|
<gr-button id="saveBtn"
|
|
primary
|
|
class$="[[_computeSaveBtnClass(_ownerOf)]]"
|
|
on-tap="_handleSave"
|
|
disabled$="[[!_modified]]">Save</gr-button>
|
|
<gr-button id="saveReviewBtn"
|
|
primary
|
|
class$="[[_computeSaveReviewBtnClass(_canUpload)]]"
|
|
on-tap="_handleSaveForReview"
|
|
disabled$="[[!_modified]]">Save for review</gr-button>
|
|
<template
|
|
is="dom-repeat"
|
|
items="{{_sections}}"
|
|
initial-count="5"
|
|
target-framerate="60"
|
|
as="section">
|
|
<gr-access-section
|
|
capabilities="[[_capabilities]]"
|
|
section="{{section}}"
|
|
labels="[[_labels]]"
|
|
can-upload="[[_canUpload]]"
|
|
editing="[[_editing]]"
|
|
owner-of="[[_ownerOf]]"
|
|
groups="[[_groups]]"
|
|
on-added-section-removed="_handleAddedSectionRemoved"></gr-access-section>
|
|
</template>
|
|
<div class="referenceContainer">
|
|
<gr-button id="addReferenceBtn"
|
|
on-tap="_handleCreateSection">Add Reference</gr-button>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<gr-rest-api-interface id="restAPI"></gr-rest-api-interface>
|
|
</template>
|
|
<script src="gr-repo-access.js"></script>
|
|
</dom-module>
|