
After change 290410, we have converted gr-rest-api into a service and no longer require this import. Change-Id: I7990253fc5c25bab8d9d28ee594754a2eb78947d
226 lines
6.1 KiB
TypeScript
226 lines
6.1 KiB
TypeScript
/**
|
|
* @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.
|
|
*/
|
|
import '@polymer/iron-input/iron-input';
|
|
import '../../../styles/gr-form-styles';
|
|
import '../../../styles/shared-styles';
|
|
import '../../shared/gr-autocomplete/gr-autocomplete';
|
|
import '../../shared/gr-button/gr-button';
|
|
import '../../shared/gr-select/gr-select';
|
|
import {GestureEventListeners} from '@polymer/polymer/lib/mixins/gesture-event-listeners';
|
|
import {LegacyElementMixin} from '@polymer/polymer/lib/legacy/legacy-element-mixin';
|
|
import {PolymerElement} from '@polymer/polymer/polymer-element';
|
|
import {htmlTemplate} from './gr-create-change-dialog_html';
|
|
import {GerritNav} from '../../core/gr-navigation/gr-navigation';
|
|
import {customElement, property, observe} from '@polymer/decorators';
|
|
import {
|
|
RepoName,
|
|
BranchName,
|
|
ChangeId,
|
|
ConfigInfo,
|
|
InheritedBooleanInfo,
|
|
} from '../../../types/common';
|
|
import {InheritedBooleanInfoConfiguredValue} from '../../../constants/constants';
|
|
import {hasOwnProperty} from '../../../utils/common-util';
|
|
import {GrAutocomplete} from '../../shared/gr-autocomplete/gr-autocomplete';
|
|
import {IronAutogrowTextareaElement} from '@polymer/iron-autogrow-textarea/iron-autogrow-textarea';
|
|
import {appContext} from '../../../services/app-context';
|
|
|
|
const SUGGESTIONS_LIMIT = 15;
|
|
const REF_PREFIX = 'refs/heads/';
|
|
|
|
export interface GrCreateChangeDialog {
|
|
$: {
|
|
privateChangeCheckBox: HTMLInputElement;
|
|
branchInput: GrAutocomplete;
|
|
tagNameInput: HTMLInputElement;
|
|
messageInput: IronAutogrowTextareaElement;
|
|
};
|
|
}
|
|
@customElement('gr-create-change-dialog')
|
|
export class GrCreateChangeDialog extends GestureEventListeners(
|
|
LegacyElementMixin(PolymerElement)
|
|
) {
|
|
static get template() {
|
|
return htmlTemplate;
|
|
}
|
|
|
|
@property({type: String})
|
|
repoName?: RepoName;
|
|
|
|
@property({type: String})
|
|
branch?: BranchName;
|
|
|
|
@property({type: Object})
|
|
_repoConfig?: ConfigInfo;
|
|
|
|
@property({type: String})
|
|
subject?: string;
|
|
|
|
@property({type: String})
|
|
topic?: string;
|
|
|
|
@property({type: Object})
|
|
_query?: (input: string) => Promise<{name: string}[]>;
|
|
|
|
@property({type: String})
|
|
baseChange?: ChangeId;
|
|
|
|
@property({type: String})
|
|
baseCommit?: string;
|
|
|
|
@property({type: Object})
|
|
privateByDefault?: InheritedBooleanInfo;
|
|
|
|
@property({type: Boolean, notify: true})
|
|
canCreate = false;
|
|
|
|
@property({type: Boolean})
|
|
_privateChangesEnabled?: boolean;
|
|
|
|
restApiService = appContext.restApiService;
|
|
|
|
constructor() {
|
|
super();
|
|
this._query = (input: string) => this._getRepoBranchesSuggestions(input);
|
|
}
|
|
|
|
/** @override */
|
|
attached() {
|
|
super.attached();
|
|
if (!this.repoName) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
const promises = [];
|
|
|
|
promises.push(
|
|
this.restApiService.getProjectConfig(this.repoName).then(config => {
|
|
if (!config) return;
|
|
this.privateByDefault = config.private_by_default;
|
|
})
|
|
);
|
|
|
|
promises.push(
|
|
this.restApiService.getConfig().then(config => {
|
|
if (!config) {
|
|
return;
|
|
}
|
|
|
|
this._privateChangesEnabled =
|
|
config && config.change && !config.change.disable_private_changes;
|
|
})
|
|
);
|
|
|
|
return Promise.all(promises);
|
|
}
|
|
|
|
_computeBranchClass(baseChange: boolean) {
|
|
return baseChange ? 'hide' : '';
|
|
}
|
|
|
|
@observe('branch', 'subject')
|
|
_allowCreate(branch: BranchName, subject: string) {
|
|
this.canCreate = !!branch && !!subject;
|
|
}
|
|
|
|
handleCreateChange(): Promise<void> {
|
|
if (!this.repoName || !this.branch || !this.subject) {
|
|
return Promise.resolve();
|
|
}
|
|
const isPrivate = this.$.privateChangeCheckBox.checked;
|
|
const isWip = true;
|
|
return this.restApiService
|
|
.createChange(
|
|
this.repoName,
|
|
this.branch,
|
|
this.subject,
|
|
this.topic,
|
|
isPrivate,
|
|
isWip,
|
|
this.baseChange,
|
|
this.baseCommit || undefined
|
|
)
|
|
.then(changeCreated => {
|
|
if (!changeCreated) {
|
|
return;
|
|
}
|
|
GerritNav.navigateToChange(changeCreated);
|
|
});
|
|
}
|
|
|
|
_getRepoBranchesSuggestions(input: string) {
|
|
if (!this.repoName) {
|
|
return Promise.reject(new Error('missing repo name'));
|
|
}
|
|
if (input.startsWith(REF_PREFIX)) {
|
|
input = input.substring(REF_PREFIX.length);
|
|
}
|
|
return this.restApiService
|
|
.getRepoBranches(input, this.repoName, SUGGESTIONS_LIMIT)
|
|
.then(response => {
|
|
if (!response) return [];
|
|
const branches = [];
|
|
let branch;
|
|
for (const key in response) {
|
|
if (!hasOwnProperty(response, key)) {
|
|
continue;
|
|
}
|
|
if (response[key].ref.startsWith('refs/heads/')) {
|
|
branch = response[key].ref.substring('refs/heads/'.length);
|
|
} else {
|
|
branch = response[key].ref;
|
|
}
|
|
branches.push({
|
|
name: branch,
|
|
});
|
|
}
|
|
return branches;
|
|
});
|
|
}
|
|
|
|
_formatBooleanString(config: InheritedBooleanInfo) {
|
|
if (
|
|
config &&
|
|
config.configured_value === InheritedBooleanInfoConfiguredValue.TRUE
|
|
) {
|
|
return true;
|
|
} else if (
|
|
config &&
|
|
config.configured_value === InheritedBooleanInfoConfiguredValue.FALSE
|
|
) {
|
|
return false;
|
|
} else if (
|
|
config &&
|
|
config.configured_value === InheritedBooleanInfoConfiguredValue.INHERITED
|
|
) {
|
|
return !!(config && config.inherited_value);
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
_computePrivateSectionClass(config: boolean) {
|
|
return config ? 'hide' : '';
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'gr-create-change-dialog': GrCreateChangeDialog;
|
|
}
|
|
}
|