1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

整理项目结构;确认需要实现的转换

This commit is contained in:
zhangbk1 2024-04-02 15:31:44 +08:00
parent aff9af95ac
commit 6b661e5e37
6 changed files with 326 additions and 63 deletions

12
GPT.md
View File

@ -1,3 +1,15 @@
docs:
右键二级菜单
https://fishpi.cn/article/1630641187509
https://code.visualstudio.com/api/references/contribution-points#contributes.menus
https://code.visualstudio.com/api/references/contribution-points#contributes.submenus
>extension.toCamelCase
>Transform to
=====
请帮我用js写一个小驼峰大驼峰下划线写法互相转换的VSCode插件。实现按shift+alt+t自动在这几种模式下切换。我完全没有写过VSCode插件所以你可能需要详细告诉我每一步该怎么做谢谢你
当然可以帮助您创建一个VSCode插件涉及几个步骤包括设置项目结构、编写代码以及打包和发布插件。以下是创建您所需插件的基本步骤

View File

@ -9,27 +9,64 @@
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.convertCase"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.convertCase",
"title": "字符串转换"
},
{
"command": "extension.toCamelCase",
"title": "转小驼峰 To Camel Case"
"title": "小驼峰 / 驼峰命名 (Camel Case) [ fooBar ]"
},
{
"command": "extension.toPascalCase",
"title": "转大驼峰 To Pascal Case"
"title": "大驼峰 / 帕斯卡命名 (Pascal Case) [ FooBar ]"
},
{
"command": "extension.toKebabCase",
"title": "连字符 / 脊柱式命名 (Kebab Case / Spinal Case) [ foo-bar ]"
},
{
"command": "extension.toSnakeCase",
"title": "下划线 / 蛇形命名 (Snake Case) [ foo_bar ]"
},
{
"command": "extension.toSnakeUpperCase",
"title": "下划线大写 (Snake Upper Case) [ FOO_BAR ]"
},
{
"command": "extension.toUpperCase",
"title": "转大写 To Upper Case"
"title": "全大写 (Upper Case) [ FOOBAR ]"
},
{
"command": "extension.toLowerCase",
"title": "转小写 To Lower Case"
"title": "全小写 (Lower Case) [ foobar ]"
},
{
"command": "editor.action.transformToCamelcase",
"title": "[VSCode 自带] 驼峰式大小写 (Camel Case) [ fooBar ]"
},
{
"command": "editor.action.transformToKebabcase",
"title": "[VSCode 自带] Kebab 命名 (Kebab Case) [ foo-bar ]"
},
{
"command": "editor.action.transformToTitlecase",
"title": "[VSCode 自带] 词首字母大写 (Title Case) [ Foo Bar ]"
},
{
"command": "editor.action.transformToLowercase",
"title": "[VSCode 自带] 转换为小写 (Lower Case) [ foo bar ]"
},
{
"command": "editor.action.transformToUppercase",
"title": "[VSCode 自带] 转换为大写 (Upper Case) [ FOO BAR ]"
},
{
"command": "editor.action.transformToSnakecase",
"title": "[VSCode 自带] 转换为蛇形命名法 (Snake Case) [ foo_bar ]"
}
],
"keybindings": [
@ -43,22 +80,63 @@
"editor/context": [
{
"when": "editorTextFocus",
"submenu": "extension.stringConversion"
}
],
"submenus": [
{
"id": "extension.stringConversion",
"when": "editorTextFocus",
"command": "extension.toCamelCase",
"label": "字符串转换"
"command": "extension.convertCase",
"group": "1_modification@9"
},
{
"when": "editorTextFocus",
"command": "extension.toPascalCase"
"submenu": "extension.stringConversionMenu",
"group": "1_modification@9"
}
],
"extension.stringConversionMenu": [
{
"command": "extension.toCamelCase",
"group": "group-extension"
},
{
"command": "extension.toPascalCase",
"group": "group-extension"
},
{
"command": "extension.toUpperCase",
"group": "group-extension"
},
{
"command": "extension.toLowerCase",
"group": "group-extension"
},
{
"command": "editor.action.transformToCamelcase",
"group": "group-vscode"
},
{
"command": "editor.action.transformToKebabcase",
"group": "group-vscode"
},
{
"command": "editor.action.transformToTitlecase",
"group": "group-vscode"
},
{
"command": "editor.action.transformToLowercase",
"group": "group-vscode"
},
{
"command": "editor.action.transformToUppercase",
"group": "group-vscode"
},
{
"command": "editor.action.transformToSnakecase",
"group": "group-vscode"
}
]
},
"submenus": [
{
"id": "extension.stringConversionMenu",
"label": "将字符串转换为..."
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
@ -69,14 +147,14 @@
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.87.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9"
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"typescript": "^5.3.3"
}
}

View File

@ -1,7 +1,9 @@
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
import * as vscode from 'vscode';
import * as TextConversion from './text-conversion';
import * as TextConversion from './main-code/text-conversion';
type ConvertFunction = (selectionText: string) => string | undefined;
// This method is called when your extension is activated
// Your extension is activated the very first time the command is executed
@ -20,20 +22,32 @@ export function activate(context: vscode.ExtensionContext) {
// vscode.window.showInformationMessage('Hello World from text-conversion!');
// });
const handleEditorReplace = (convertFunction: (selectionText: string) => string) => {
const handleEditorReplace = (convertFunction: ConvertFunction) => {
// 获取当前编辑器
let editor = vscode.window.activeTextEditor;
if (editor) {
if (!editor) {
return;
}
console.log('============ start convert ============');
let document = editor.document;
let selection = editor.selection;
// 获取选中的文本
let text = document.getText(selection);
// 转换文本
let converted = convertFunction(text);
const converted = convertFunction(text);
console.log('converted', converted);
// 无法转换时,跳过转换
if (converted === undefined) {
console.log('converted text is undefined, skip replace contents.');
return;
}
// 当转换后文本与转换前相同时,跳过转换
if (text === converted) {
if (converted === text) {
console.log('selection text is same to converted text, skip replace contents.');
return;
}
@ -43,28 +57,22 @@ export function activate(context: vscode.ExtensionContext) {
editor.edit(editBuilder => {
editBuilder.replace(selection, converted);
});
}
console.log('============ finish convert ============');
};
let disposableCamelCase = vscode.commands.registerCommand('extension.toCamelCase', () => {
handleEditorReplace(TextConversion.toCamelCase);
});
context.subscriptions.push(disposableCamelCase);
const commands: Array<{ command: string; convertFunction: ConvertFunction }> = [
{ command: 'extension.toCamelCase', convertFunction: TextConversion.toCamelCase },
{ command: 'extension.toPascalCase', convertFunction: TextConversion.toPascalCase },
{ command: 'extension.toUpperCase', convertFunction: TextConversion.toUpperCase },
{ command: 'extension.toLowerCase', convertFunction: TextConversion.toLowerCase },
];
let disposablePascalCase = vscode.commands.registerCommand('extension.toPascalCase', () => {
handleEditorReplace(TextConversion.toPascalCase);
for (const { command, convertFunction } of commands) {
let disposable = vscode.commands.registerCommand(command, () => {
handleEditorReplace(convertFunction);
});
context.subscriptions.push(disposablePascalCase);
let disposableUpperCase = vscode.commands.registerCommand('extension.toUpperCase', () => {
handleEditorReplace(TextConversion.toUpperCase);
});
context.subscriptions.push(disposableUpperCase);
let disposableLowerCase = vscode.commands.registerCommand('extension.toLowerCase', () => {
handleEditorReplace(TextConversion.toLowerCase);
});
context.subscriptions.push(disposableLowerCase);
context.subscriptions.push(disposable);
}
}

View File

@ -3,6 +3,7 @@
*
* @param {string} str user selection
* @returns
* @since 2024-03-28
*/
export function toCamelCase(str: string): string {
return str.replace(/_([a-z])/g, (g) => g[1].toUpperCase());
@ -13,6 +14,7 @@ export function toCamelCase(str: string): string {
*
* @param {string} str user selection
* @returns
* @since 2024-03-28
*/
export function toPascalCase(str: string): string {
return str.replace(/(^\w|_\w)/g, (g) => g.toUpperCase().replace('_', ''));
@ -23,6 +25,7 @@ export function toPascalCase(str: string): string {
*
* @param {string} str user selection
* @returns
* @since 2024-03-28
*/
export function toUpperCase(str: string): string {
return str.toUpperCase();
@ -33,6 +36,7 @@ export function toUpperCase(str: string): string {
*
* @param {string} str user selection
* @returns
* @since 2024-03-28
*/
export function toLowerCase(str: string): string {
return str.toLowerCase();

View File

@ -0,0 +1,89 @@
const handlerList = [];
/**
*
*
* @param str
* @since 2024-03-29
*/
const camelCaseHandler = (str: string) => {
// 是否是小驼峰
const regexp = /^$/g; // need done
// if()
};
handlerList.push(camelCaseHandler);
/**
*
*
* @param str
* @since 2024-03-29
*/
const pascalCaseHandler = (str: string) => {
// 是否是小驼峰
const regexp = /^$/g; // need done
};
handlerList.push(pascalCaseHandler);
type SplitFailResult = {
success: false
errMsg: string
};
type SplitSuccessResult = {
success: true
result: Array<string>
};
type SplitResult = SplitFailResult | SplitSuccessResult;
/**
*
*
* @param str
* @since 2024-03-29
*/
export function splitWord(str: string): SplitResult {
// check parameter type
if (typeof str !== 'string') {
return { success: false, errMsg: `str is not string, type: ${typeof str}` };
}
// check parameter length
if (str.length === 0) {
return { success: false, errMsg: 'str is empty string.' };
}
else if (str.length > 64) {
return { success: false, errMsg: 'str is too long, it does not appear to be an acceptable input.' };
}
// check whether the input matches the criteria
// 是否包含空格
const isContainSpace = str.indexOf(' ') !== -1;
// 是否包含连字符
const isContainHyphen = str.indexOf('-') !== -1;
// 是否包含下划线
const isContainUnderline = str.indexOf('_') !== -1;
// 是否包含除空格外的其他连字符 (检查字符串是否包含 - 或 _ ,并且不包含空格)
const isContainSeparator = /^[^\s]*[-_]+[^\s]*$/.test(str);
// 是否是小驼峰命名法
const isCamelCase = /^[a-z][a-zA-Z]*$/;
// 是否是大驼峰命名法
const isPascalCase = /^[A-Z][a-zA-Z]*$/;
// 是否包含大写字母
const isContainUpperCaseLetter = /[A-Z]/.test(str);
// 是否包含小写字母
const isContainLowerCaseLetter = /[a-z]/.test(str);
// 是否包含字母
const isContainLetter = /[a-zA-Z]/.test(str);
return { success: true, result: [] };
}
const result = splitWord('hello world');
if (result.success) {
console.log('success!', result.result);
} else {
console.log('skip!', result.errMsg);
}

View File

@ -0,0 +1,72 @@
export enum SupportCase {
/**
* /
* Camel Case
* e.g. fooBar
*
* @alias: camelCase / CamelCase / camel_case / CAMEL_CASE
* @since 2024-04-02
*/
CAMEL_CASE,
/**
* /
* Pascal Case
* e.g. FooBar
*
* @alias: pascalCase / PascalCase / pascal_case / PASCAL_CASE
* @since 2024-04-02
*/
PASCAL_CASE,
/**
* /
* Kebab Case / Spinal Case
* e.g. foo-bar
*
* @alias: kebabCase / KebabCase / kebab_case / KEBAB_CASE
* spinalCase / SpinalCase / spinal_case / SPINAL_CASE
* @since 2024-04-02
*/
KEBAB_CASE,
/**
* 线 /
* Snake Case
* e.g. foo_bar
*
* @alias: snakeCase / SnakeCase / snake_case / SNAKE_CASE
* @since 2024-04-02
*/
SNAKE_CASE,
/**
* 线
* Snake Upper Case
* e.g. FOO_BAR
*
* @alias: snakeUpperCase / SnakeUpperCase / snake_upper_case / SNAKE_UPPER_CASE
* @since 2024-04-02
*/
SNAKE_UPPER_CASE,
/**
*
* Upper Case
* e.g. FOO_BAR / FOOBAR
*
* @alias: upperCase / UpperCase / upper_case / UPPER_CASE
* @since 2024-04-02
*/
UPPER_CASE,
/**
*
* Lower Case
* e.g. foo_bar / foobar
*
* @alias: lowerCase / LowerCase / lower_case / LOWER_CASE
* @since 2024-04-02
*/
LOWER_CASE,
}