|
|
|
@ -1,10 +1,13 @@ |
|
|
|
|
import { PluginClient } from "@remixproject/plugin"; |
|
|
|
|
import { Profile } from "@remixproject/plugin-utils"; |
|
|
|
|
import { ElectronBasePlugin, ElectronBasePluginClient } from "@remixproject/plugin-electron" |
|
|
|
|
import path from "path"; |
|
|
|
|
import { rgPath } from "@vscode/ripgrep"; |
|
|
|
|
import byline from "byline"; |
|
|
|
|
import { spawn } from "child_process"; |
|
|
|
|
import {PluginClient} from '@remixproject/plugin' |
|
|
|
|
import {Profile} from '@remixproject/plugin-utils' |
|
|
|
|
import { |
|
|
|
|
ElectronBasePlugin, |
|
|
|
|
ElectronBasePluginClient, |
|
|
|
|
} from '@remixproject/plugin-electron' |
|
|
|
|
import path from 'path' |
|
|
|
|
import {rgPath} from '@vscode/ripgrep' |
|
|
|
|
import byline from 'byline' |
|
|
|
|
import {spawn} from 'child_process' |
|
|
|
|
|
|
|
|
|
const profile: Profile = { |
|
|
|
|
name: 'ripgrep', |
|
|
|
@ -16,7 +19,6 @@ const convertPathToPosix = (pathName: string): string => { |
|
|
|
|
return pathName.split(path.sep).join(path.posix.sep) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class RipgrepPlugin extends ElectronBasePlugin { |
|
|
|
|
clients: RipgrepPluginClient[] = [] |
|
|
|
|
constructor() { |
|
|
|
@ -29,7 +31,7 @@ const clientProfile: Profile = { |
|
|
|
|
name: 'ripgrep', |
|
|
|
|
displayName: 'ripgrep', |
|
|
|
|
description: 'ripgrep plugin', |
|
|
|
|
methods: ['glob'] |
|
|
|
|
methods: ['glob'], |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export class RipgrepPluginClient extends ElectronBasePluginClient { |
|
|
|
@ -42,7 +44,6 @@ export class RipgrepPluginClient extends ElectronBasePluginClient { |
|
|
|
|
this.workingDir = path |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
async glob(path: string, pattern: string, options?: any) { |
|
|
|
@ -50,9 +51,11 @@ export class RipgrepPluginClient extends ElectronBasePluginClient { |
|
|
|
|
console.log('path', path, this.workingDir) |
|
|
|
|
|
|
|
|
|
return new Promise((c, e) => { |
|
|
|
|
|
|
|
|
|
// replace packed app path with unpacked app path for release on windows
|
|
|
|
|
const customRgPath = rgPath.replace('/app.asar/', '/app.asar.unpacked/') |
|
|
|
|
|
|
|
|
|
const customRgPath = rgPath.includes('app.asar.unpacked') |
|
|
|
|
? rgPath |
|
|
|
|
: rgPath.replace('app.asar', 'app.asar.unpacked') |
|
|
|
|
const rg = spawn(customRgPath, ['.', '-l', path]) |
|
|
|
|
|
|
|
|
|
const resultrg: any[] = [] |
|
|
|
@ -60,7 +63,10 @@ export class RipgrepPluginClient extends ElectronBasePluginClient { |
|
|
|
|
const stream = byline(rg.stdout.setEncoding('utf8')) |
|
|
|
|
stream.on('data', (rgresult: string) => { |
|
|
|
|
console.log('rgresult', rgresult) |
|
|
|
|
let pathWithoutWorkingDir = rgresult.replace(convertPathToPosix(this.workingDir), '') |
|
|
|
|
let pathWithoutWorkingDir = rgresult.replace( |
|
|
|
|
convertPathToPosix(this.workingDir), |
|
|
|
|
'' |
|
|
|
|
) |
|
|
|
|
if (pathWithoutWorkingDir.endsWith('/')) { |
|
|
|
|
pathWithoutWorkingDir = pathWithoutWorkingDir.slice(0, -1) |
|
|
|
|
} |
|
|
|
@ -79,7 +85,6 @@ export class RipgrepPluginClient extends ElectronBasePluginClient { |
|
|
|
|
c(resultrg) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
fixPath(path: string): string { |
|
|
|
|