mapcomplete/Logic/ImageProviders/AllImageProviders.ts

73 lines
2.5 KiB
TypeScript
Raw Normal View History

import {Mapillary} from "./Mapillary";
import {WikimediaImageProvider} from "./WikimediaImageProvider";
import {Imgur} from "./Imgur";
import GenericImageProvider from "./GenericImageProvider";
import {UIEventSource} from "../UIEventSource";
import ImageProvider, {ProvidedImage} from "./ImageProvider";
import {WikidataImageProvider} from "./WikidataImageProvider";
/**
* A generic 'from the interwebz' image picker, without attribution
*/
export default class AllImageProviders {
public static ImageAttributionSource: ImageProvider[] = [
Imgur.singleton,
Mapillary.singleton,
WikidataImageProvider.singleton,
WikimediaImageProvider.singleton,
new GenericImageProvider(
[].concat(...Imgur.defaultValuePrefix, ...WikimediaImageProvider.commonsPrefixes, ...Mapillary.valuePrefixes)
)
2021-11-07 16:34:51 +01:00
]
2021-11-07 16:34:51 +01:00
public static defaultKeys = [].concat(AllImageProviders.ImageAttributionSource.map(provider => provider.defaultKeyPrefixes))
private static _cache: Map<string, UIEventSource<ProvidedImage[]>> = new Map<string, UIEventSource<ProvidedImage[]>>()
public static LoadImagesFor(tags: UIEventSource<any>, tagKey?: string[]): UIEventSource<ProvidedImage[]> {
2021-10-08 04:33:39 +02:00
if (tags.data.id === undefined) {
return undefined;
}
2021-11-07 16:34:51 +01:00
const cacheKey = tags.data.id + tagKey
2021-10-08 04:33:39 +02:00
const cached = this._cache.get(cacheKey)
if (cached !== undefined) {
return cached
}
const source = new UIEventSource([])
2021-10-08 04:33:39 +02:00
this._cache.set(cacheKey, source)
const allSources = []
for (const imageProvider of AllImageProviders.ImageAttributionSource) {
2021-11-07 16:34:51 +01:00
2021-10-01 02:57:41 +02:00
let prefixes = imageProvider.defaultKeyPrefixes
2021-11-07 16:34:51 +01:00
if (tagKey !== undefined) {
prefixes = tagKey
2021-10-01 02:57:41 +02:00
}
2021-11-07 16:34:51 +01:00
const singleSource = imageProvider.GetRelevantUrls(tags, {
2021-10-01 02:57:41 +02:00
prefixes: prefixes
})
allSources.push(singleSource)
singleSource.addCallbackAndRunD(_ => {
2021-11-07 16:34:51 +01:00
const all: ProvidedImage[] = [].concat(...allSources.map(source => source.data))
const uniq = []
const seen = new Set<string>()
for (const img of all) {
2021-11-07 16:34:51 +01:00
if (seen.has(img.url)) {
continue
}
seen.add(img.url)
uniq.push(img)
}
source.setData(uniq)
})
}
return source;
}
}