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

Add support for IDE installed in user's home directory #1125

Merged
merged 1 commit into from
Mar 27, 2025
Merged
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
27 changes: 19 additions & 8 deletions src/lib/is-installed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,39 @@ import { app } from 'electron';
import fs from 'fs';
import path from 'path';

let appPaths: Record< keyof InstalledApps, string >;
let appPaths: Record< keyof InstalledApps, string[] >;

if ( process.platform === 'darwin' ) {
// Get both system and user Applications directories
const systemApplications = '/Applications';
const userApplications = path.join( app.getPath( 'home' ), 'Applications' );

appPaths = {
vscode: '/Applications/Visual Studio Code.app',
phpstorm: '/Applications/PhpStorm.app',
vscode: [
path.join( systemApplications, 'Visual Studio Code.app' ),
path.join( userApplications, 'Visual Studio Code.app' ),
],
phpstorm: [
path.join( systemApplications, 'PhpStorm.app' ),
path.join( userApplications, 'PhpStorm.app' ),
],
};
} else if ( process.platform === 'linux' ) {
appPaths = {
vscode: '/usr/bin/code',
phpstorm: '/usr/bin/phpstorm',
vscode: [ '/usr/bin/code' ],
phpstorm: [ '/usr/bin/phpstorm' ],
};
} else if ( process.platform === 'win32' ) {
appPaths = {
vscode: path.join( app.getPath( 'appData' ), 'Code' ),
phpstorm: '', // Disable phpStorm for Windows
vscode: [ path.join( app.getPath( 'appData' ), 'Code' ) ],
phpstorm: [ '' ], // Disable phpStorm for Windows
};
}

export function isInstalled( key: keyof typeof appPaths ): boolean {
if ( ! appPaths[ key ] ) {
return false;
}
return fs.existsSync( appPaths[ key ] );
// Return true if any of the possible paths exist
return appPaths[ key ].some( ( path ) => path && fs.existsSync( path ) );
}
Loading