@@ -283,7 +283,7 @@ export class Registry implements IRegistry, IDisposable {
283
283
sort ?: boolean
284
284
) : Promise < IPythonEnvironment [ ] > {
285
285
let filteredEnvs = envs . filter ( env => this . _pathExistsSync ( env . path ) ) ;
286
- const uniqueEnvs = this . _getUniqueObjects ( filteredEnvs ) ;
286
+ const uniqueEnvs = this . _getUniqueEnvs ( filteredEnvs ) ;
287
287
const resolvedEnvs = await Promise . all (
288
288
uniqueEnvs . map ( async env => await this . _resolveEnvironment ( env . path ) )
289
289
) ;
@@ -675,10 +675,10 @@ export class Registry implements IRegistry, IDisposable {
675
675
}
676
676
677
677
private _updateEnvironments ( ) {
678
- this . _environments = [
678
+ this . _environments = this . _getUniqueEnvs ( [
679
679
...this . _userSetEnvironments ,
680
680
...this . _discoveredEnvironments
681
- ] ;
681
+ ] ) ;
682
682
appData . discoveredPythonEnvs = JSON . parse (
683
683
JSON . stringify ( this . _discoveredEnvironments )
684
684
) ;
@@ -820,7 +820,7 @@ export class Registry implements IRegistry, IDisposable {
820
820
[ ] ,
821
821
allCondas
822
822
) ;
823
- const uniqueCondaRoots = this . _getUniqueObjects ( flattenedCondaRoots ) ;
823
+ const uniqueCondaRoots = this . _getUniquePythonPaths ( flattenedCondaRoots ) ;
824
824
825
825
return uniqueCondaRoots . map ( condaRootEnvPath => {
826
826
const path = pythonPathForEnvPath ( condaRootEnvPath , true ) ;
@@ -1110,29 +1110,30 @@ export class Registry implements IRegistry, IDisposable {
1110
1110
}
1111
1111
}
1112
1112
1113
- // Probably pretty slow, luckily won't ever be used on many values
1114
- private _getUniqueObjects < T , V > ( arr : T [ ] , keyFunction ?: ( value : T ) => V ) {
1115
- if ( keyFunction ) {
1116
- let mappedIndices = arr . map ( keyFunction ) . map ( ( keyValue , index , self ) => {
1117
- return self . indexOf ( keyValue ) ;
1118
- } ) ;
1113
+ private _getUniquePythonPaths ( pythonPaths : string [ ] ) : string [ ] {
1114
+ const uniquePythonPaths = new Set < string > ( ) ;
1119
1115
1120
- let filteredIndices = mappedIndices . filter (
1121
- ( mappedIndex , actualIndex , self ) => {
1122
- return mappedIndex === actualIndex ;
1123
- }
1124
- ) ;
1116
+ return pythonPaths . filter ( pythonPath => {
1117
+ if ( ! uniquePythonPaths . has ( pythonPath ) ) {
1118
+ uniquePythonPaths . add ( pythonPath ) ;
1119
+ return true ;
1120
+ }
1125
1121
1126
- let filteredValues = filteredIndices . map ( index => {
1127
- return arr [ index ] ;
1128
- } ) ;
1122
+ return false ;
1123
+ } ) ;
1124
+ }
1129
1125
1130
- return filteredValues ;
1131
- } else {
1132
- return arr . filter ( ( value , index , self ) => {
1133
- return self . indexOf ( value ) === index ;
1134
- } ) ;
1135
- }
1126
+ private _getUniqueEnvs ( envs : IPythonEnvironment [ ] ) : IPythonEnvironment [ ] {
1127
+ const uniquePythonPaths = new Set < string > ( ) ;
1128
+
1129
+ return envs . filter ( env => {
1130
+ if ( ! uniquePythonPaths . has ( env . path ) ) {
1131
+ uniquePythonPaths . add ( env . path ) ;
1132
+ return true ;
1133
+ }
1134
+
1135
+ return false ;
1136
+ } ) ;
1136
1137
}
1137
1138
1138
1139
get ready ( ) : Promise < void > {
0 commit comments