Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always seeing: there are updates available for this pull request #2801

Merged
merged 1 commit into from
Jun 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { handler as uriHandler } from './common/uri';
import { onceEvent } from './common/utils';
import { EXTENSION_ID, FOCUS_REVIEW_MODE } from './constants';
import { createExperimentationService, ExperimentationTelemetry } from './experimentationService';
import { setSyncedKeys } from './extensionState';
import { AuthProvider, CredentialStore } from './github/credentials';
import { FolderRepositoryManager } from './github/folderRepositoryManager';
import { RepositoriesManager } from './github/repositoriesManager';
Expand Down Expand Up @@ -172,6 +173,7 @@ async function init(

tree.initialize(reposManager);

setSyncedKeys(context);
registerCommands(context, reposManager, reviewManagers, telemetry, credentialStore, tree);

const layout = vscode.workspace.getConfiguration('githubPullRequests').get<string>('fileListLayout');
Expand Down
12 changes: 12 additions & 0 deletions src/extensionState.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';

// Synced keys
export const NEVER_SHOW_PULL_NOTIFICATION = 'github.pullRequest.pullNotification.show';

export function setSyncedKeys(context: vscode.ExtensionContext) {
context.globalState.setKeysForSync([NEVER_SHOW_PULL_NOTIFICATION]);
}
17 changes: 12 additions & 5 deletions src/view/reviewManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { ITelemetry } from '../common/telemetry';
import { fromReviewUri, toReviewUri } from '../common/uri';
import { formatError, groupBy } from '../common/utils';
import { FOCUS_REVIEW_MODE } from '../constants';
import { NEVER_SHOW_PULL_NOTIFICATION } from '../extensionState';
import { PullRequestViewProvider } from '../github/activityBarViewProvider';
import { GitHubCreatePullRequestLinkProvider } from '../github/createPRLinkProvider';
import { FolderRepositoryManager, SETTINGS_NAMESPACE } from '../github/folderRepositoryManager';
Expand Down Expand Up @@ -199,20 +200,26 @@ export class ReviewManager {
const remote = branch.upstream ? branch.upstream.remote : null;
if (remote) {
await this._repository.fetch(remote, this._repository.state.HEAD?.name);
if (
(pr.head.sha !== this._lastCommitSha || (branch.behind !== undefined && branch.behind > 0)) &&
!this._updateMessageShown
const canShowNotification = !this._context.globalState.get<boolean>(NEVER_SHOW_PULL_NOTIFICATION, false);
if (canShowNotification && !this._updateMessageShown &&
((this._lastCommitSha && (pr.head.sha !== this._lastCommitSha))
|| (branch.behind !== undefined && branch.behind > 0))
) {
this._updateMessageShown = true;
const pull = 'Pull';
const never = 'Never show again';
const result = await vscode.window.showInformationMessage(
'There are updates available for this pull request.',
{},
'Pull',
pull,
never
);

if (result === 'Pull') {
if (result === pull) {
await vscode.commands.executeCommand('git.pull');
this._updateMessageShown = false;
} else if (never) {
await this._context.globalState.update(NEVER_SHOW_PULL_NOTIFICATION, true);
}
}
}
Expand Down