complete code for extension

This commit is contained in:
程广 2025-02-21 14:11:31 +08:00
commit 47987b96ad
20 changed files with 6620 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
out
dist
node_modules
.vscode-test/
*.vsix

5
.vscode-test.mjs Normal file
View File

@ -0,0 +1,5 @@
import { defineConfig } from '@vscode/test-cli';
export default defineConfig({
files: 'out/test/**/*.test.js',
});

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": ["dbaeumer.vscode-eslint", "connor4312.esbuild-problem-matchers", "ms-vscode.extension-test-runner"]
}

22
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,22 @@
// A launch configuration that compiles the extension and then opens it inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--disable-extensions"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
}

14
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,14 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false, // set this to true to hide the "out" folder with the compiled JS files
"dist": false // set this to true to hide the "dist" folder with the compiled JS files
},
"search.exclude": {
"out": true, // set this to false to include "out" folder in search results
"dist": true // set this to false to include "dist" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"svg.preview.background": "transparent"
}

64
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,64 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"label": "watch",
"dependsOn": [
"npm: watch:tsc",
"npm: watch:esbuild"
],
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "npm",
"script": "watch:esbuild",
"group": "build",
"problemMatcher": "$esbuild-watch",
"isBackground": true,
"label": "npm: watch:esbuild",
"presentation": {
"group": "watch",
"reveal": "never"
}
},
{
"type": "npm",
"script": "watch:tsc",
"group": "build",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"label": "npm: watch:tsc",
"presentation": {
"group": "watch",
"reveal": "never"
}
},
{
"type": "npm",
"script": "watch-tests",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never",
"group": "watchers"
},
"group": "build"
},
{
"label": "tasks: watch-tests",
"dependsOn": [
"npm: watch",
"npm: watch-tests"
],
"problemMatcher": []
}
]
}

14
.vscodeignore Normal file
View File

@ -0,0 +1,14 @@
.vscode/**
.vscode-test/**
out/**
node_modules/**
src/**
.gitignore
.yarnrc
esbuild.js
vsc-extension-quickstart.md
**/tsconfig.json
**/eslint.config.mjs
**/*.map
**/*.ts
**/.vscode-test.*

9
CHANGELOG.md Normal file
View File

@ -0,0 +1,9 @@
# Change Log
All notable changes to the "gitcommitfilter" extension will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## [Unreleased]
- Initial release

71
README.md Normal file
View File

@ -0,0 +1,71 @@
# gitcommitfilter README
This is the README for your extension "gitcommitfilter". After writing up a brief description, we recommend including the following sections.
## Features
Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
For example if there is an image subfolder under your extension project workspace:
\!\[feature X\]\(images/feature-x.png\)
> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
## Requirements
If you have any requirements or dependencies, add a section describing those and how to install and configure them.
## Extension Settings
Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
For example:
This extension contributes the following settings:
* `myExtension.enable`: Enable/disable this extension.
* `myExtension.thing`: Set to `blah` to do something.
## Known Issues
Calling out known issues can help limit users opening duplicate issues against your extension.
## Release Notes
Users appreciate release notes as you update your extension.
### 1.0.0
Initial release of ...
### 1.0.1
Fixed issue #.
### 1.1.0
Added features X, Y, and Z.
---
## Following extension guidelines
Ensure that you've read through the extensions guidelines and follow the best practices for creating your extension.
* [Extension Guidelines](https://code.visualstudio.com/api/references/extension-guidelines)
## Working with Markdown
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux).
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux).
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets.
## For more information
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
**Enjoy!**

56
esbuild.js Normal file
View File

@ -0,0 +1,56 @@
const esbuild = require("esbuild");
const production = process.argv.includes('--production');
const watch = process.argv.includes('--watch');
/**
* @type {import('esbuild').Plugin}
*/
const esbuildProblemMatcherPlugin = {
name: 'esbuild-problem-matcher',
setup(build) {
build.onStart(() => {
console.log('[watch] build started');
});
build.onEnd((result) => {
result.errors.forEach(({ text, location }) => {
console.error(`✘ [ERROR] ${text}`);
console.error(` ${location.file}:${location.line}:${location.column}:`);
});
console.log('[watch] build finished');
});
},
};
async function main() {
const ctx = await esbuild.context({
entryPoints: [
'src/extension.ts'
],
bundle: true,
format: 'cjs',
minify: production,
sourcemap: !production,
sourcesContent: false,
platform: 'node',
outfile: 'dist/extension.js',
external: ['vscode'],
logLevel: 'silent',
plugins: [
/* add to the end of plugins array */
esbuildProblemMatcherPlugin,
],
});
if (watch) {
await ctx.watch();
} else {
await ctx.rebuild();
await ctx.dispose();
}
}
main().catch(e => {
console.error(e);
process.exit(1);
});

28
eslint.config.mjs Normal file
View File

@ -0,0 +1,28 @@
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";
export default [{
files: ["**/*.ts"],
}, {
plugins: {
"@typescript-eslint": typescriptEslint,
},
languageOptions: {
parser: tsParser,
ecmaVersion: 2022,
sourceType: "module",
},
rules: {
"@typescript-eslint/naming-convention": ["warn", {
selector: "import",
format: ["camelCase", "PascalCase"],
}],
curly: "warn",
eqeqeq: "warn",
"no-throw-literal": "warn",
semi: "warn",
},
}];

6
media/icon.svg Normal file
View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
<!-- Git Branch Icon -->
<path fill-rule="evenodd" d="M11.75 2H8.25C7.56 2 7 2.56 7 3.25v2.5c0 .69.56 1.25 1.25 1.25h2.5c.69 0 1.25-.56 1.25-1.25V3.25C13 2.56 12.44 2 11.75 2zM8.25 4.5c-.69 0-1.25.56-1.25 1.25v2.5c0 .69.56 1.25 1.25 1.25h2.5c.69 0 1.25-.56 1.25-1.25V5.75C11.5 5.06 10.94 4.5 10.25 4.5H8.25zm-2.5 0H2.5C1.71 4.5 1.15 5.06 1.15 5.75v2.5c0 .69.56 1.25 1.25 1.25h2.5c.69 0 1.25-.56 1.25-1.25V5.75C4.5 5.06 3.94 4.5 3.25 4.5zm0 3H2.5C1.71 7.5 1.15 8.06 1.15 8.75v2.5c0 .69.56 1.25 1.25 1.25h2.5c.69 0 1.25-.56 1.25-1.25V8.75C4.5 8.06 3.94 7.5 3.25 7.5zm0 3H2.5C1.71 10.5 1.15 11.06 1.15 11.75v2.5c0 .69.56 1.25 1.25 1.25h2.5c.69 0 1.25-.56 1.25-1.25V11.75C4.5 11.06 3.94 10.5 3.25 10.5zm5 0h2.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-2.5c-.69 0-1.25.56-1.25 1.25v2.5c0 .69.56 1.25 1.25 1.25zm0 3h2.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-2.5c-.69 0-1.25.56-1.25 1.25v2.5c0 .69.56 1.25 1.25 1.25z"/>
<!-- Filter Icon in Bottom Right Corner -->
<path fill-rule="evenodd" d="M10 10.5a.5.5 0 0 1-.354.146l-1.5 1.5a.5.5 0 0 1-.708 0l-1.5-1.5A.5.5 0 0 1 7 9.5h1v-3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v3h1a.5.5 0 0 1 .146.354z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

5948
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

71
package.json Normal file
View File

@ -0,0 +1,71 @@
{
"name": "gitcommitfilter",
"displayName": "gitcommitfilter",
"description": "过滤显示当前git分支的commit",
"version": "0.0.1",
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "gitcommitfilter.helloWorld",
"title": "Hello World"
},
{
"command": "gitcommitfilter.showCommitPanel",
"title": "Show Git Commits"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "gitCommitFilterView",
"title": "Git Commits",
"icon": "media/icon.svg"
}
]
},
"views": {
"gitCommitFilterView": [
{
"id": "gitCommitFilter",
"name": "Git Commits",
"when": "true"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.97.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"esbuild": "^0.24.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.3",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}

129
src/CommitPanel.ts Normal file
View File

@ -0,0 +1,129 @@
import * as vscode from 'vscode';
import { GitService } from './GitService';
export class CommitPanel {
public static currentPanel: CommitPanel | undefined;
private readonly _panel: vscode.WebviewPanel;
private readonly _extensionPath: string;
private readonly _gitService: GitService;
private _disposables: vscode.Disposable[] = [];
public static show(extensionContext: vscode.ExtensionContext, gitService: GitService) {
const column = vscode.window.activeTextEditor ? vscode.window.activeTextEditor.viewColumn : undefined;
if (CommitPanel.currentPanel) {
CommitPanel.currentPanel._panel.reveal(column);
return;
}
const panel = vscode.window.createWebviewPanel(
'commitPanel',
'Git Commits',
column || vscode.ViewColumn.One,
{
enableScripts: true
}
);
// 修正:传递正确的参数
CommitPanel.currentPanel = new CommitPanel(panel, extensionContext, gitService);
}
constructor(panel: vscode.WebviewPanel, extensionContext: vscode.ExtensionContext, gitService: GitService) {
this._panel = panel;
this._extensionPath = extensionContext.extensionPath;
this._gitService = gitService;
this._panel.onDidDispose(() => this.dispose(), null, this._disposables);
this._panel.onDidChangeViewState(e => {
if (this._panel.visible) {
this._update();
}
}, null, this._disposables);
this._panel.webview.onDidReceiveMessage(message => {
switch (message.command) {
case 'filterCommits':
this._filterCommits(message.filter);
return;
case 'showCommitFiles':
this._showCommitFiles(message.commit);
return;
}
}, null, this._disposables);
this._update();
}
public dispose() {
CommitPanel.currentPanel = undefined;
this._panel.dispose();
while (this._disposables.length) {
const x = this._disposables.pop();
if (x) {
x.dispose();
}
}
}
private async _update() {
const commits = await this._gitService.getCommits();
this._panel.webview.html = this._getHtmlForWebview(commits);
}
private async _filterCommits(filter: string) {
const commits = await this._gitService.getCommits(filter);
this._panel.webview.postMessage({ command: 'updateCommits', commits });
}
private async _showCommitFiles(commit: string) {
const files = await this._gitService.getCommitFiles(commit);
this._panel.webview.postMessage({ command: 'showCommitFiles', files });
}
private _getHtmlForWebview(commits: any[]) {
const commitListHtml = commits.map(commit => `<li data-commit="${commit.hash}">${commit.message}</li>`).join('');
return `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git Commits</title>
</head>
<body>
<input type="text" id="filterInput" placeholder="Filter commits...">
<ul id="commitList">
${commitListHtml}
</ul>
<div id="commitFiles"></div>
<script>
const vscode = acquireVsCodeApi();
document.getElementById('filterInput').addEventListener('input', (e) => {
vscode.postMessage({ command: 'filterCommits', filter: e.target.value });
});
document.getElementById('commitList').addEventListener('click', (e) => {
if (e.target && e.target.nodeName === 'LI') {
vscode.postMessage({ command: 'showCommitFiles', commit: e.target.getAttribute('data-commit') });
}
});
window.addEventListener('message', event => {
const message = event.data;
switch (message.command) {
case 'updateCommits':
const commitList = document.getElementById('commitList');
commitList.innerHTML = message.commits.map(commit => \`<li data-commit=\"\${commit.hash}">\${commit.message}</li>\`).join('');
break;
case 'showCommitFiles':
const commitFiles = document.getElementById('commitFiles');
commitFiles.innerHTML = message.files.map(file => \`<p>\${file}</p>\`).join('');
break;
}
});
</script>
</body>
</html>`;
}
}

45
src/GitService.ts Normal file
View File

@ -0,0 +1,45 @@
import * as vscode from 'vscode';
import * as child_process from 'child_process';
export class GitService {
private _repoPath: string;
constructor() {
const workspaceFolders = vscode.workspace.workspaceFolders;
if (!workspaceFolders || workspaceFolders.length === 0) {
throw new Error('No workspace folder opened');
}
this._repoPath = workspaceFolders[0].uri.fsPath;
}
public async getCommits(filter: string = ''): Promise<any[]> {
const command = `git log --oneline ${filter}`;
return new Promise((resolve, reject) => {
child_process.exec(command, { cwd: this._repoPath }, (error, stdout, stderr) => {
if (error) {
reject(error);
} else {
const commits = stdout.split('\n').map(line => {
const parts = line.split(' ');
return { hash: parts[0], message: parts.slice(1).join(' ') };
}).filter(commit => commit.hash);
resolve(commits);
}
});
});
}
public async getCommitFiles(commit: string): Promise<string[]> {
const command = `git show --name-only --pretty='' ${commit}`;
return new Promise((resolve, reject) => {
child_process.exec(command, { cwd: this._repoPath }, (error, stdout, stderr) => {
if (error) {
reject(error);
} else {
const files = stdout.split('\n').filter(file => file);
resolve(files);
}
});
});
}
}

48
src/extension.ts Normal file
View File

@ -0,0 +1,48 @@
import * as vscode from 'vscode';
import { CommitPanel } from './CommitPanel';
import { GitService } from './GitService';
export function activate(context: vscode.ExtensionContext) {
const gitService = new GitService();
// 创建一个TreeDataProvider实例
const commitTreeDataProvider = new CommitTreeDataProvider();
// 注册TreeDataProvider
const activityBarIcon = vscode.window.registerTreeDataProvider('gitCommitFilter', commitTreeDataProvider);
let disposable = vscode.commands.registerCommand('gitcommitfilter.showCommitPanel', () => {
CommitPanel.show(context, gitService);
});
context.subscriptions.push(disposable);
context.subscriptions.push(activityBarIcon);
}
export function deactivate() {}
// 实现TreeDataProvider接口
class CommitTreeDataProvider implements vscode.TreeDataProvider<vscode.TreeItem> {
private _onDidChangeTreeData: vscode.EventEmitter<vscode.TreeItem | undefined | void> = new vscode.EventEmitter<vscode.TreeItem | undefined | void>();
readonly onDidChangeTreeData: vscode.Event<vscode.TreeItem | undefined | void> = this._onDidChangeTreeData.event;
constructor() {}
refresh(): void {
this._onDidChangeTreeData.fire();
}
getTreeItem(element: vscode.TreeItem): vscode.TreeItem {
return element;
}
getChildren(element?: vscode.TreeItem): vscode.ProviderResult<vscode.TreeItem[]> {
if (element) {
return [];
}
const icon = new vscode.TreeItem('Git Commits', vscode.TreeItemCollapsibleState.None);
icon.command = { command: 'gitcommitfilter.showCommitPanel', title: 'Show Git Commits' };
icon.iconPath = new vscode.ThemeIcon('git-commit');
return [icon];
}
}

View File

@ -0,0 +1,16 @@
import * as assert from 'assert';
// You can import and use all API from the 'vscode' module
// as well as import your extension to test it
import * as vscode from 'vscode';
// import * as myExtension from '../../extension';
suite('Extension Test Suite', () => {
vscode.window.showInformationMessage('Start all tests.');
test('Sample test', (done) => {
assert.strictEqual(-1, [1, 2, 3].indexOf(5));
assert.strictEqual(-1, [1, 2, 3].indexOf(0));
setTimeout(done, 5000);
});
});

16
tsconfig.json Normal file
View File

@ -0,0 +1,16 @@
{
"compilerOptions": {
"module": "Node16",
"target": "ES2022",
"lib": [
"ES2022"
],
"sourceMap": true,
"rootDir": "src",
"strict": true, /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
}
}

View File

@ -0,0 +1,48 @@
# Welcome to your VS Code Extension
## What's in the folder
* This folder contains all of the files necessary for your extension.
* `package.json` - this is the manifest file in which you declare your extension and command.
* The sample plugin registers a command and defines its title and command name. With this information VS Code can show the command in the command palette. It doesnt yet need to load the plugin.
* `src/extension.ts` - this is the main file where you will provide the implementation of your command.
* The file exports one function, `activate`, which is called the very first time your extension is activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`.
* We pass the function containing the implementation of the command as the second parameter to `registerCommand`.
## Setup
* install the recommended extensions (amodio.tsl-problem-matcher, ms-vscode.extension-test-runner, and dbaeumer.vscode-eslint)
## Get up and running straight away
* Press `F5` to open a new window with your extension loaded.
* Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`.
* Set breakpoints in your code inside `src/extension.ts` to debug your extension.
* Find output from your extension in the debug console.
## Make changes
* You can relaunch the extension from the debug toolbar after changing code in `src/extension.ts`.
* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.
## Explore the API
* You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`.
## Run tests
* Install the [Extension Test Runner](https://marketplace.visualstudio.com/items?itemName=ms-vscode.extension-test-runner)
* Run the "watch" task via the **Tasks: Run Task** command. Make sure this is running, or tests might not be discovered.
* Open the Testing view from the activity bar and click the Run Test" button, or use the hotkey `Ctrl/Cmd + ; A`
* See the output of the test result in the Test Results view.
* Make changes to `src/test/extension.test.ts` or create new test files inside the `test` folder.
* The provided test runner will only consider files matching the name pattern `**.test.ts`.
* You can create folders inside the `test` folder to structure your tests any way you want.
## Go further
* Reduce the extension size and improve the startup time by [bundling your extension](https://code.visualstudio.com/api/working-with-extensions/bundling-extension).
* [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VS Code extension marketplace.
* Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration).