| /** |
| * @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 'lit-html'; |
| import {css, customElement, property, PropertyValues, state} from 'lit-element'; |
| import {GrLitElement} from '../lit/gr-lit-element'; |
| import {Action} from '../../api/checks'; |
| import { |
| CheckResult, |
| CheckRun, |
| allResultsSelected$, |
| checksSelectedPatchsetNumber$, |
| allRunsSelectedPatchset$, |
| } from '../../services/checks/checks-model'; |
| import './gr-checks-runs'; |
| import './gr-checks-results'; |
| import {changeNum$, latestPatchNum$} from '../../services/change/change-model'; |
| import {NumericChangeId, PatchSetNumber} from '../../types/common'; |
| import {ActionTriggeredEvent} from '../../services/checks/checks-util'; |
| import {AttemptSelectedEvent, RunSelectedEvent} from './gr-checks-util'; |
| import {ChecksTabState} from '../../types/events'; |
| import {fireAlert, fireEvent} from '../../utils/event-util'; |
| import {appContext} from '../../services/app-context'; |
| import {from, timer} from 'rxjs'; |
| import {takeUntil} from 'rxjs/operators'; |
| |
| /** |
| * The "Checks" tab on the Gerrit change page. Gets its data from plugins that |
| * have registered with the Checks Plugin API. |
| */ |
| @customElement('gr-checks-tab') |
| export class GrChecksTab extends GrLitElement { |
| @property() |
| runs: CheckRun[] = []; |
| |
| @property() |
| results: CheckResult[] = []; |
| |
| @property() |
| tabState?: ChecksTabState; |
| |
| @property() |
| checksPatchsetNumber: PatchSetNumber | undefined = undefined; |
| |
| @property() |
| latestPatchsetNumber: PatchSetNumber | undefined = undefined; |
| |
| @property() |
| changeNum: NumericChangeId | undefined = undefined; |
| |
| @state() |
| selectedRuns: string[] = []; |
| |
| /** Maps checkName to selected attempt number. `undefined` means `latest`. */ |
| @state() |
| selectedAttempts: Map<string, number | undefined> = new Map< |
| string, |
| number | undefined |
| >(); |
| |
| private readonly checksService = appContext.checksService; |
| |
| constructor() { |
| super(); |
| this.subscribe('runs', allRunsSelectedPatchset$); |
| this.subscribe('results', allResultsSelected$); |
| this.subscribe('checksPatchsetNumber', checksSelectedPatchsetNumber$); |
| this.subscribe('latestPatchsetNumber', latestPatchNum$); |
| this.subscribe('changeNum', changeNum$); |
| |
| this.addEventListener('action-triggered', (e: ActionTriggeredEvent) => |
| this.handleActionTriggered(e.detail.action, e.detail.run) |
| ); |
| } |
| |
| static get styles() { |
| return css` |
| :host { |
| display: block; |
| } |
| .container { |
| display: flex; |
| } |
| .runs { |
| min-height: 400px; |
| border-right: 1px solid var(--border-color); |
| } |
| .results { |
| flex-grow: 1; |
| } |
| `; |
| } |
| |
| render() { |
| return html` |
| <div class="container"> |
| <gr-checks-runs |
| class="runs" |
| ?collapsed="${this.offsetWidth < 1000}" |
| .runs="${this.runs}" |
| .selectedRuns="${this.selectedRuns}" |
| .selectedAttempts="${this.selectedAttempts}" |
| .tabState="${this.tabState}" |
| @run-selected="${this.handleRunSelected}" |
| @attempt-selected="${this.handleAttemptSelected}" |
| ></gr-checks-runs> |
| <gr-checks-results |
| class="results" |
| .tabState="${this.tabState}" |
| .runs="${this.runs}" |
| .selectedRuns="${this.selectedRuns}" |
| .selectedAttempts="${this.selectedAttempts}" |
| @run-selected="${this.handleRunSelected}" |
| ></gr-checks-results> |
| </div> |
| `; |
| } |
| |
| protected updated(changedProperties: PropertyValues) { |
| super.updated(changedProperties); |
| if (changedProperties.has('tabState')) { |
| if (this.tabState) { |
| this.selectedRuns = []; |
| } |
| } |
| } |
| |
| handleActionTriggered(action: Action, run?: CheckRun) { |
| if (!this.changeNum) return; |
| const patchSet = this.checksPatchsetNumber ?? this.latestPatchsetNumber; |
| if (!patchSet) return; |
| const promise = action.callback( |
| this.changeNum, |
| patchSet, |
| run?.attempt, |
| run?.externalId, |
| run?.checkName, |
| action.name |
| ); |
| // If plugins return undefined or not a promise, then show no toast. |
| if (!promise?.then) return; |
| |
| fireAlert(this, `Triggering action '${action.name}' ...`); |
| from(promise) |
| // If the action takes longer than 5 seconds, then most likely the |
| // user is either not interested or the result not relevant anymore. |
| .pipe(takeUntil(timer(5000))) |
| .subscribe(result => { |
| if (result.errorMessage || result.message) { |
| fireAlert(this, `${result.message ?? result.errorMessage}`); |
| } else { |
| fireEvent(this, 'hide-alert'); |
| } |
| if (result.shouldReload) { |
| this.checksService.reloadForCheck(run?.checkName); |
| } |
| }); |
| } |
| |
| handleRunSelected(e: RunSelectedEvent) { |
| if (e.detail.reset) { |
| this.selectedRuns = []; |
| this.selectedAttempts = new Map(); |
| return; |
| } |
| if (e.detail.checkName) { |
| this.toggleSelected(e.detail.checkName); |
| } |
| } |
| |
| handleAttemptSelected(e: AttemptSelectedEvent) { |
| const {checkName, attempt} = e.detail; |
| this.selectedAttempts.set(checkName, attempt); |
| // Force property update. |
| this.selectedAttempts = new Map(this.selectedAttempts); |
| } |
| |
| toggleSelected(checkName: string) { |
| if (this.selectedRuns.includes(checkName)) { |
| this.selectedRuns = this.selectedRuns.filter(r => r !== checkName); |
| this.selectedAttempts.set(checkName, undefined); |
| this.selectedAttempts = new Map(this.selectedAttempts); |
| } else { |
| this.selectedRuns = [...this.selectedRuns, checkName]; |
| } |
| } |
| } |
| |
| declare global { |
| interface HTMLElementTagNameMap { |
| 'gr-checks-tab': GrChecksTab; |
| } |
| } |