* stable-3.0: Update git submodules Update git submodules Fix "TypeError: groups is not iterable" in _disableAgreements Fix typos: Aggreements -> Agreements Change-Id: I36702d2b1d43958d149254113fb2172d6a5ff0fe
116 lines
4.3 KiB
HTML
116 lines
4.3 KiB
HTML
<!--
|
|
@license
|
|
Copyright (C) 2018 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="../../../behaviors/base-url-behavior/base-url-behavior.html">
|
|
<link rel="import" href="/bower_components/iron-input/iron-input.html">
|
|
<link rel="import" href="/bower_components/polymer/polymer.html">
|
|
<link rel="import" href="../../../behaviors/fire-behavior/fire-behavior.html">
|
|
<link rel="import" href="../../../styles/gr-form-styles.html">
|
|
<link rel="import" href="../../../styles/shared-styles.html">
|
|
<link rel="import" href="../../shared/gr-button/gr-button.html">
|
|
<link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html">
|
|
|
|
<dom-module id="gr-cla-view">
|
|
<template>
|
|
<style include="shared-styles">
|
|
h1 {
|
|
margin-bottom: var(--spacing-m);
|
|
}
|
|
h3 {
|
|
margin-bottom: var(--spacing-m);
|
|
}
|
|
.agreementsUrl {
|
|
border: 1px solid #b0bdcc;
|
|
margin-bottom: var(--spacing-xl);
|
|
margin-left: var(--spacing-xl);
|
|
margin-right: var(--spacing-xl);
|
|
padding: var(--spacing-s);
|
|
}
|
|
#claNewAgreementsLabel {
|
|
font-weight: var(--font-weight-bold);
|
|
}
|
|
#claNewAgreement {
|
|
display: none;
|
|
}
|
|
#claNewAgreement.show {
|
|
display: block;
|
|
}
|
|
.contributorAgreementButton {
|
|
font-weight: var(--font-weight-bold);
|
|
}
|
|
.alreadySubmittedText {
|
|
color: var(--error-text-color);
|
|
margin: 0 var(--spacing-xxl);
|
|
padding: var(--spacing-m);
|
|
}
|
|
.alreadySubmittedText.hide,
|
|
.hideAgreementsTextBox {
|
|
display: none;
|
|
}
|
|
main {
|
|
margin: var(--spacing-xxl) auto;
|
|
max-width: 50em;
|
|
}
|
|
</style>
|
|
<style include="gr-form-styles"></style>
|
|
<main>
|
|
<h1>New Contributor Agreement</h1>
|
|
<h3>Select an agreement type:</h3>
|
|
<template is="dom-repeat" items="[[_serverConfig.auth.contributor_agreements]]">
|
|
<span class="contributorAgreementButton">
|
|
<input id$="claNewAgreementsInput[[item.name]]"
|
|
name="claNewAgreementsRadio"
|
|
type="radio"
|
|
data-name$="[[item.name]]"
|
|
data-url$="[[item.url]]"
|
|
on-click="_handleShowAgreement"
|
|
disabled$="[[_disableAgreements(item, _groups, _signedAgreements)]]">
|
|
<label id="claNewAgreementsLabel">[[item.name]]</label>
|
|
</span>
|
|
<div class$="alreadySubmittedText [[_hideAgreements(item, _groups, _signedAgreements)]]">
|
|
Agreement already submitted.
|
|
</div>
|
|
<div class="agreementsUrl">
|
|
[[item.description]]
|
|
</div>
|
|
</template>
|
|
<div id="claNewAgreement" class$="[[_computeShowAgreementsClass(_showAgreements)]]">
|
|
<h3 class="smallHeading">Review the agreement:</h3>
|
|
<div id="agreementsUrl" class="agreementsUrl">
|
|
<a href$="[[_agreementsUrl]]" target="blank" rel="noopener">
|
|
Please review the agreement.</a>
|
|
</div>
|
|
<div class$="agreementsTextBox [[_computeHideAgreementClass(_agreementName, _serverConfig.auth.contributor_agreements)]]">
|
|
<h3 class="smallHeading">Complete the agreement:</h3>
|
|
<iron-input bind-value="{{_agreementsText}}"
|
|
placeholder="Enter 'I agree' here">
|
|
<input id="input-agreements"
|
|
is="iron-input"
|
|
bind-value="{{_agreementsText}}"
|
|
placeholder="Enter 'I agree' here">
|
|
</iron-input>
|
|
<gr-button on-click="_handleSaveAgreements" disabled="[[_disableAgreementsText(_agreementsText)]]">
|
|
Submit
|
|
</gr-button>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<gr-rest-api-interface id="restAPI"></gr-rest-api-interface>
|
|
</template>
|
|
<script src="gr-cla-view.js"></script>
|
|
</dom-module>
|