generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 52
Expose MapviewAPI for programatic consumption of Search Providers #139
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
Open
cdloh
wants to merge
1
commit into
esm7:master
Choose a base branch
from
cdloh:feat-mapview-api
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| import { PluginSettings } from './settings'; | ||
| import * as leaflet from 'leaflet'; | ||
| import { request } from 'obsidian'; | ||
| import * as querystring from 'query-string'; | ||
| import { GeoSearchResult } from './geosearch'; | ||
| import { SearchResult } from 'leaflet-geosearch/dist/providers/provider'; | ||
|
|
||
| export type GooglePlacesAPIQuery = { [key: string]: string }; | ||
|
|
||
| export class GooglePlacesAPI { | ||
| private googleApiKey: string; | ||
|
|
||
| constructor(settings: PluginSettings) { | ||
| this.googleApiKey = settings.geocodingApiKey; | ||
| } | ||
|
|
||
| async googlePlacesRequest( | ||
| query: GooglePlacesAPIQuery, | ||
| scope: string | ||
| ): Promise<{}> { | ||
| query.key = this.googleApiKey; | ||
| const googleUrl = `https://maps.googleapis.com/maps/api/place/${scope}/json?${querystring.stringify( | ||
| query | ||
| )}`; | ||
| const googleContent = await request({ url: googleUrl }); | ||
| return JSON.parse(googleContent) as any; | ||
| } | ||
|
|
||
| async search(query: GooglePlacesAPIQuery): Promise<SearchResult[]> { | ||
| let jsonContent: any = await this.googlePlacesSearch(query); | ||
|
|
||
| let results: SearchResult[] = []; | ||
| if ( | ||
| jsonContent && | ||
| 'results' in jsonContent && | ||
| jsonContent?.results.length > 0 | ||
| ) { | ||
| for (const result of jsonContent.results) { | ||
| const location = result.geometry?.location; | ||
| if (location && location.lat && location.lng) { | ||
| results.push({ | ||
| label: `${result?.name} (${result?.formatted_address})`, | ||
| y: location.lat, | ||
| x: location.lng, | ||
| } as any); | ||
| } | ||
| } | ||
| } | ||
| return results; | ||
| } | ||
|
|
||
| async googlePlacesSearch(query: GooglePlacesAPIQuery): Promise<{}> { | ||
| return await this.googlePlacesRequest(query, 'textsearch'); | ||
| } | ||
|
|
||
| async googlePlacesDetailsSearch(placeId: string): Promise<{}> { | ||
| const params = { | ||
| place_id: placeId, | ||
| }; | ||
| return this.googlePlacesRequest(params, 'details'); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| import { App } from 'obsidian'; | ||
| import { GeoSearcher, GeoSearcherProvider } from './geosearch'; | ||
| import { PluginSettings } from 'src/settings'; | ||
|
|
||
| export class MapViewAPI { | ||
| public searchProvider: GeoSearcherProvider; | ||
| public searcher: GeoSearcher; | ||
|
|
||
| constructor(app: App, settings: PluginSettings) { | ||
| this.searcher = new GeoSearcher(app, settings); | ||
| this.searchProvider = this.searcher.searchProvider; | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry about the misunderstanding; that's not what I meant in our discussion.
If you expose the
searchProviderandsearcherfields as an API this way, then you actually exposegeosearch.OpenStreetMapProvider,geosearch.GoogleProvider,GooglePlacesAPIandGeoSearcher, and all of then now become an API that must be maintained. Every single thing we ever change inGeoSearcheris a potential API breakage and that's a lot of maintenance burden to consider.What I think we should do instead is that this
MapViewAPIclass exposes a single methodgeosearchwith the least dependencies possible, or maybe 2-3 methods if you want to provide some more functionality, and mask away all of the implementation.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main reason I want to expose those API calls directly is that abstracting them away again makes it hard to manipulate the raw data (which in my case I want to do, understand if this isn't the direction you want to take it).
How would you suggest exposing the raw response from the search API and things like the Google Places API details endpoints?
Other then exposing the searchProvider directly I don't see a nice way.
If those APIs change would the release not just be a breaking change.