2021-01-15 00:29:07 +01:00
|
|
|
import FilteringFeatureSource from "../FeatureSource/FilteringFeatureSource";
|
|
|
|
import FeatureSourceMerger from "../FeatureSource/FeatureSourceMerger";
|
|
|
|
import RememberingSource from "../FeatureSource/RememberingSource";
|
|
|
|
import WayHandlingApplyingFeatureSource from "../FeatureSource/WayHandlingApplyingFeatureSource";
|
|
|
|
import FeatureDuplicatorPerLayer from "../FeatureSource/FeatureDuplicatorPerLayer";
|
|
|
|
import FeatureSource from "../FeatureSource/FeatureSource";
|
|
|
|
import {UIEventSource} from "../UIEventSource";
|
|
|
|
import LocalStorageSaver from "./LocalStorageSaver";
|
|
|
|
import LayerConfig from "../../Customizations/JSON/LayerConfig";
|
|
|
|
import LocalStorageSource from "./LocalStorageSource";
|
2021-01-15 01:57:46 +01:00
|
|
|
import LayoutConfig from "../../Customizations/JSON/LayoutConfig";
|
2021-02-14 19:45:02 +01:00
|
|
|
import Loc from "../../Models/Loc";
|
2021-03-21 01:32:21 +01:00
|
|
|
import GeoJsonSource from "./GeoJsonSource";
|
2021-03-25 15:19:44 +01:00
|
|
|
import MetaTaggingFeatureSource from "./MetaTaggingFeatureSource";
|
2021-04-18 14:24:30 +02:00
|
|
|
import RegisteringFeatureSource from "./RegisteringFeatureSource";
|
2021-01-15 00:29:07 +01:00
|
|
|
|
|
|
|
export default class FeaturePipeline implements FeatureSource {
|
|
|
|
|
|
|
|
public features: UIEventSource<{ feature: any; freshness: Date }[]>;
|
|
|
|
|
2021-04-23 12:55:38 +02:00
|
|
|
public readonly name = "FeaturePipeline"
|
|
|
|
|
2021-02-20 01:45:51 +01:00
|
|
|
constructor(flayers: UIEventSource<{ isDisplayed: UIEventSource<boolean>, layerDef: LayerConfig }[]>,
|
2021-01-15 01:57:46 +01:00
|
|
|
updater: FeatureSource,
|
2021-02-14 19:45:02 +01:00
|
|
|
layout: UIEventSource<LayoutConfig>,
|
|
|
|
newPoints: FeatureSource,
|
|
|
|
locationControl: UIEventSource<Loc>) {
|
2021-01-15 00:29:07 +01:00
|
|
|
|
|
|
|
const amendedOverpassSource =
|
2021-04-18 14:24:30 +02:00
|
|
|
new RememberingSource(
|
|
|
|
new LocalStorageSaver(
|
|
|
|
new MetaTaggingFeatureSource( // first we metatag, then we save to get the metatags into storage too
|
|
|
|
new RegisteringFeatureSource(
|
|
|
|
new FeatureDuplicatorPerLayer(flayers,
|
|
|
|
updater)
|
|
|
|
)), layout));
|
2021-01-15 01:57:46 +01:00
|
|
|
|
2021-04-22 03:30:46 +02:00
|
|
|
const geojsonSources: FeatureSource [] = GeoJsonSource
|
|
|
|
.ConstructMultiSource(flayers.data, locationControl)
|
2021-04-22 13:30:00 +02:00
|
|
|
.map(geojsonSource => new RegisteringFeatureSource(new FeatureDuplicatorPerLayer(flayers, geojsonSource)));
|
2021-04-22 03:30:46 +02:00
|
|
|
|
2021-01-15 01:57:46 +01:00
|
|
|
const amendedLocalStorageSource =
|
2021-04-18 14:24:30 +02:00
|
|
|
new RememberingSource(new RegisteringFeatureSource(new FeatureDuplicatorPerLayer(flayers, new LocalStorageSource(layout))
|
|
|
|
));
|
2021-01-15 00:29:07 +01:00
|
|
|
|
2021-04-18 14:24:30 +02:00
|
|
|
newPoints = new MetaTaggingFeatureSource(new FeatureDuplicatorPerLayer(flayers,
|
|
|
|
new RegisteringFeatureSource(newPoints)));
|
2021-03-21 01:32:21 +01:00
|
|
|
|
2021-03-25 15:19:44 +01:00
|
|
|
const merged =
|
2021-04-18 14:24:30 +02:00
|
|
|
|
|
|
|
new FeatureSourceMerger([
|
|
|
|
amendedOverpassSource,
|
|
|
|
amendedLocalStorageSource,
|
|
|
|
newPoints,
|
|
|
|
...geojsonSources
|
|
|
|
]);
|
2021-02-14 19:45:02 +01:00
|
|
|
|
2021-01-15 00:29:07 +01:00
|
|
|
const source =
|
2021-03-25 15:19:44 +01:00
|
|
|
new WayHandlingApplyingFeatureSource(flayers,
|
|
|
|
new FilteringFeatureSource(
|
|
|
|
flayers,
|
|
|
|
locationControl,
|
|
|
|
merged
|
|
|
|
));
|
2021-01-15 00:29:07 +01:00
|
|
|
this.features = source.features;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|