|  | @ -352,9 +352,9 @@ export default class DiscoverView extends Vue { | 
			
		
	
		
		
			
				
					|  |  |   allMyDids: Array<string> = []; |  |  |   allMyDids: Array<string> = []; | 
			
		
	
		
		
			
				
					|  |  |   apiServer = ""; |  |  |   apiServer = ""; | 
			
		
	
		
		
			
				
					|  |  |   isLoading = false; |  |  |   isLoading = false; | 
			
		
	
		
		
			
				
					
					|  |  |   isLocalActive = true; |  |  |   isLocalActive = false; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  |   isMappedActive = false; |  |  |   isMappedActive = false; | 
			
		
	
		
		
			
				
					
					|  |  |   isAnywhereActive = false; |  |  |   isAnywhereActive = true; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  |   isProjectsActive = true; |  |  |   isProjectsActive = true; | 
			
		
	
		
		
			
				
					|  |  |   isPeopleActive = false; |  |  |   isPeopleActive = false; | 
			
		
	
		
		
			
				
					|  |  |   isSearchVisible = true; |  |  |   isSearchVisible = true; | 
			
		
	
	
		
		
			
				
					|  | @ -375,6 +375,11 @@ export default class DiscoverView extends Vue { | 
			
		
	
		
		
			
				
					|  |  |   didInfo = didInfo; |  |  |   didInfo = didInfo; | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |   async mounted() { |  |  |   async mounted() { | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |  |  |  |     this.searchTerms = this.$route.query["searchText"]?.toString() || ""; | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |  |  |  |     const searchPeople = !!this.$route.query["searchPeople"]; | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |     const settings = await retrieveSettingsForActiveAccount(); |  |  |     const settings = await retrieveSettingsForActiveAccount(); | 
			
		
	
		
		
			
				
					|  |  |     this.activeDid = (settings.activeDid as string) || ""; |  |  |     this.activeDid = (settings.activeDid as string) || ""; | 
			
		
	
		
		
			
				
					|  |  |     this.apiServer = (settings.apiServer as string) || ""; |  |  |     this.apiServer = (settings.apiServer as string) || ""; | 
			
		
	
	
		
		
			
				
					|  | @ -386,26 +391,30 @@ export default class DiscoverView extends Vue { | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |     this.allMyDids = await retrieveAccountDids(); |  |  |     this.allMyDids = await retrieveAccountDids(); | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |     this.searchTerms = this.$route.query["searchText"]?.toString() || ""; |  |  |  | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  |  | 
			
		
	
		
		
			
				
					|  |  |     if (!settings.finishedOnboarding) { |  |  |     if (!settings.finishedOnboarding) { | 
			
		
	
		
		
			
				
					|  |  |       (this.$refs.onboardingDialog as OnboardingDialog).open( |  |  |       (this.$refs.onboardingDialog as OnboardingDialog).open( | 
			
		
	
		
		
			
				
					|  |  |         OnboardPage.Discover, |  |  |         OnboardPage.Discover, | 
			
		
	
		
		
			
				
					|  |  |       ); |  |  |       ); | 
			
		
	
		
		
			
				
					|  |  |     } |  |  |     } | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |     if (this.searchBox) { |  |  |     // Someday we'll have enough people that we can default to their local area. | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       await this.searchLocal(); |  |  |     // if (this.searchBox) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  | 
 |  |  |     //   this.isLocalActive = true; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       const bbox = this.searchBox.bbox; |  |  |     //   this.isAnywhereActive = false; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       this.localCenterLat = (bbox.maxLat + bbox.minLat) / 2; |  |  |     //   await this.searchLocal(); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       this.localCenterLong = (bbox.eastLong + bbox.westLong) / 2; |  |  |     // | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |     } else { |  |  |     //   const bbox = this.searchBox.bbox; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       this.isLocalActive = false; |  |  |     //   this.localCenterLat = (bbox.maxLat + bbox.minLat) / 2; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       this.isMappedActive = false; |  |  |     //   this.localCenterLong = (bbox.eastLong + bbox.westLong) / 2; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       this.isAnywhereActive = true; |  |  |     // } else { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |       await this.searchAll(); |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					|  |  |  |  |  |     if (searchPeople) { | 
			
		
	
		
		
			
				
					|  |  |  |  |  |       this.isPeopleActive = true; | 
			
		
	
		
		
			
				
					|  |  |  |  |  |       this.isProjectsActive = false; | 
			
		
	
		
		
			
				
					|  |  |  |  |  |       this.isMappedActive = true; | 
			
		
	
		
		
			
				
					|  |  |  |  |  |       this.isAnywhereActive = false; | 
			
		
	
		
		
			
				
					|  |  |     } |  |  |     } | 
			
		
	
		
		
			
				
					|  |  |  |  |  |     await this.searchAll(); | 
			
		
	
		
		
			
				
					|  |  |   } |  |  |   } | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |   public resetCounts() { |  |  |   public resetCounts() { | 
			
		
	
	
		
		
			
				
					|  | 
 |