blob: 3f4f99e7a94fa2c129cf08864c91c8bfaaf9245e [file] [log] [blame]
/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import '../../shared/gr-button/gr-button';
import '../../shared/gr-icon/gr-icon';
import '../../shared/gr-copy-clipboard/gr-copy-clipboard';
import '../gr-suggestion-diff-preview/gr-suggestion-diff-preview';
import {css, html, LitElement, nothing} from 'lit';
import {customElement, state, query} from 'lit/decorators.js';
import {fire} from '../../../utils/event-util';
import {getDocUrl} from '../../../utils/url-util';
import {subscribe} from '../../lit/subscription-controller';
import {resolve} from '../../../models/dependency';
import {configModelToken} from '../../../models/config/config-model';
import {GrSuggestionDiffPreview} from '../gr-suggestion-diff-preview/gr-suggestion-diff-preview';
import {changeModelToken} from '../../../models/change/change-model';
import {Comment, PatchSetNumber} from '../../../types/common';
import {commentModelToken} from '../gr-comment-model/gr-comment-model';
declare global {
interface HTMLElementEventMap {
'open-user-suggest-preview': OpenUserSuggestionPreviewEvent;
}
}
export type OpenUserSuggestionPreviewEvent =
CustomEvent<OpenUserSuggestionPreviewEventDetail>;
export interface OpenUserSuggestionPreviewEventDetail {
code: string;
}
@customElement('gr-user-suggestion-fix')
export class GrUserSuggestionsFix extends LitElement {
@query('gr-suggestion-diff-preview')
suggestionDiffPreview?: GrSuggestionDiffPreview;
@state() private docsBaseUrl = '';
@state() private applyingFix = false;
@state() latestPatchNum?: PatchSetNumber;
@state() comment?: Comment;
private readonly getConfigModel = resolve(this, configModelToken);
private readonly getChangeModel = resolve(this, changeModelToken);
private readonly getCommentModel = resolve(this, commentModelToken);
constructor() {
super();
subscribe(
this,
() => this.getConfigModel().docsBaseUrl$,
docsBaseUrl => (this.docsBaseUrl = docsBaseUrl)
);
subscribe(
this,
() => this.getChangeModel().latestPatchNum$,
x => (this.latestPatchNum = x)
);
subscribe(
this,
() => this.getCommentModel().comment$,
comment => (this.comment = comment)
);
}
static override get styles() {
return [
css`
.header {
background-color: var(--background-color-primary);
border: 1px solid var(--border-color);
padding: var(--spacing-xs) var(--spacing-xl);
display: flex;
align-items: center;
border-top-left-radius: var(--border-radius);
border-top-right-radius: var(--border-radius);
}
.header .title {
flex: 1;
}
.copyButton {
margin-right: var(--spacing-l);
}
`,
];
}
override render() {
if (!this.textContent) return nothing;
const code = this.textContent;
return html`<div class="header">
<div class="title">
<span>Suggested edit</span>
<a
href=${getDocUrl(this.docsBaseUrl, 'user-suggest-edits.html')}
target="_blank"
rel="noopener noreferrer"
><gr-icon icon="help" title="read documentation"></gr-icon
></a>
</div>
<div class="copyButton">
<gr-copy-clipboard
hideInput=""
text=${code}
multiline
copyTargetName="Suggested edit"
buttonTitle="Copy Suggested edit to clipboard"
></gr-copy-clipboard>
</div>
<div>
<gr-button
secondary
flatten
class="action show-fix"
@click=${this.handleShowFix}
>
Show edit
</gr-button>
<gr-button
secondary
flatten
.loading=${this.applyingFix}
.disabled=${this.isApplyEditDisabled()}
class="action show-fix"
@click=${this.handleApplyFix}
.title=${this.computeApplyEditTooltip()}
>
Apply edit
</gr-button>
</div>
</div>
<gr-suggestion-diff-preview
.suggestion=${this.textContent}
></gr-suggestion-diff-preview>`;
}
handleShowFix() {
if (!this.textContent) return;
fire(this, 'open-user-suggest-preview', {code: this.textContent});
}
async handleApplyFix() {
if (!this.textContent) return;
this.applyingFix = true;
await this.suggestionDiffPreview?.applyUserSuggestedFix();
this.applyingFix = false;
}
private isApplyEditDisabled() {
if (this.comment?.patch_set === undefined) return true;
return this.comment.patch_set !== this.latestPatchNum;
}
private computeApplyEditTooltip() {
if (this.comment?.patch_set === undefined) return '';
return this.comment.patch_set !== this.latestPatchNum
? 'You cannot apply this fix because it is from a previous patchset'
: '';
}
}
declare global {
interface HTMLElementTagNameMap {
'gr-user-suggestion-fix': GrUserSuggestionsFix;
}
}