// ***************************************************************************** // Copyright (C) 2019 Red Hat, Inc. and others. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** /* eslint-disable @typescript-eslint/no-explicit-any */ import { Disposable, Event } from '@theia/core/lib/common'; import URI from '@theia/core/lib/common/uri'; export interface ScmProvider extends Disposable { readonly id: string; readonly label: string; readonly rootUri: string; readonly acceptInputCommand?: ScmCommand; readonly groups: ScmResourceGroup[]; readonly onDidChange: Event; readonly onDidChangeResources?: Event; readonly statusBarCommands?: ScmCommand[]; readonly onDidChangeStatusBarCommands?: Event; readonly onDidChangeCommitTemplate: Event; readonly amendSupport?: ScmAmendSupport; readonly actionButton?: ScmActionButton; readonly onDidChangeActionButton?: Event; readonly providerContextValue?: string; } export const ScmResourceGroup = Symbol('ScmResourceGroup'); export interface ScmResourceGroup extends Disposable { readonly id: string; readonly label: string; readonly resources: ScmResource[]; readonly hideWhenEmpty?: boolean; readonly contextValue?: string; readonly provider: ScmProvider; } export interface ScmResource { /** The uri of the underlying resource inside the workspace. */ readonly sourceUri: URI; readonly decorations?: ScmResourceDecorations; open(): Promise; readonly group: ScmResourceGroup; } export interface ScmResourceDecorations { icon?: string; iconDark?: string; tooltip?: string; source?: string; letter?: string; color?: string; strikeThrough?: boolean; } export interface ScmCommand { title: string; tooltip?: string; command?: string; // eslint-disable-next-line @typescript-eslint/no-explicit-any arguments?: any[]; } export interface ScmCommit { readonly id: string; // eg Git sha or Mercurial revision number readonly summary: string; readonly authorName: string; readonly authorEmail: string; readonly authorDateRelative: string; } export interface ScmAmendSupport { getInitialAmendingCommits(amendingHeadCommitId: string, latestCommitId: string | undefined): Promise getMessage(commit: string): Promise; reset(commit: string): Promise; getLastCommit(): Promise; } export interface ScmActionButton { command: ScmCommand; secondaryCommands?: ScmCommand[][]; enabled?: boolean; description?: string; }