2020-11-11 16:23:49 +01:00
import { Translation } from "../../UI/i18n/Translation" ;
import TagRenderingConfig from "./TagRenderingConfig" ;
import LayerConfig from "./LayerConfig" ;
import { LayoutConfigJson } from "./LayoutConfigJson" ;
import SharedLayers from "../SharedLayers" ;
import SharedTagRenderings from "../SharedTagRenderings" ;
2021-01-06 02:52:38 +01:00
import { Utils } from "../../Utils" ;
2020-11-11 16:23:49 +01:00
export default class LayoutConfig {
public readonly id : string ;
public readonly maintainer : string ;
public readonly changesetmessage? : string ;
public readonly version : string ;
public readonly language : string [ ] ;
public readonly title : Translation ;
public readonly shortDescription? : Translation ;
public readonly description : Translation ;
public readonly descriptionTail? : Translation ;
public readonly icon : string ;
public readonly socialImage? : string ;
public readonly startZoom : number ;
public readonly startLat : number ;
public readonly startLon : number ;
public readonly widenFactor : number ;
public readonly roamingRenderings : TagRenderingConfig [ ] ;
public readonly defaultBackgroundId? : string ;
public readonly layers : LayerConfig [ ] ;
2021-01-06 02:52:38 +01:00
public readonly clustering ? : {
2021-01-05 00:21:00 +01:00
maxZoom : number ,
minNeededElements : number
2021-01-04 20:09:07 +01:00
} ;
2021-01-06 02:52:38 +01:00
2020-11-11 16:23:49 +01:00
public readonly hideFromOverview : boolean ;
public readonly enableUserBadge : boolean ;
public readonly enableShareScreen : boolean ;
public readonly enableMoreQuests : boolean ;
public readonly enableAddNewPoints : boolean ;
public readonly enableLayers : boolean ;
public readonly enableSearch : boolean ;
public readonly enableGeolocation : boolean ;
2021-01-04 18:55:10 +01:00
public readonly enableBackgroundLayerSelection : boolean ;
2020-11-11 16:23:49 +01:00
public readonly customCss? : string ;
2021-01-04 18:55:10 +01:00
constructor ( json : LayoutConfigJson , context? : string ) {
2020-11-11 16:23:49 +01:00
this . id = json . id ;
2021-01-04 18:55:10 +01:00
context = ( context ? ? "" ) + "." + this . id ;
2020-11-11 16:23:49 +01:00
this . maintainer = json . maintainer ;
this . changesetmessage = json . changesetmessage ;
this . version = json . version ;
this . language = [ ] ;
if ( typeof json . language === "string" ) {
this . language = [ json . language ] ;
} else {
this . language = json . language ;
}
2021-01-04 18:55:10 +01:00
if ( json . title === undefined ) {
throw "Title not defined in " + this . id ;
2020-11-11 16:23:49 +01:00
}
2021-01-04 18:55:10 +01:00
if ( json . description === undefined ) {
throw "Description not defined in " + this . id ;
2020-11-11 16:23:49 +01:00
}
2021-01-04 18:55:10 +01:00
this . title = new Translation ( json . title , context + ".title" ) ;
this . description = new Translation ( json . description , context + ".description" ) ;
this . shortDescription = json . shortDescription === undefined ? this . description . FirstSentence ( ) : new Translation ( json . shortDescription , context + ".shortdescription" ) ;
this . descriptionTail = json . descriptionTail === undefined ? new Translation ( { "*" : "" } , context ) : new Translation ( json . descriptionTail , context + ".descriptionTail" ) ;
2020-11-11 16:23:49 +01:00
this . icon = json . icon ;
this . socialImage = json . socialImage ;
this . startZoom = json . startZoom ;
this . startLat = json . startLat ;
this . startLon = json . startLon ;
this . widenFactor = json . widenFactor ? ? 0.05 ;
this . roamingRenderings = ( json . roamingRenderings ? ? [ ] ) . map ( ( tr , i ) = > {
if ( typeof tr === "string" ) {
if ( SharedTagRenderings . SharedTagRendering [ tr ] !== undefined ) {
return SharedTagRenderings . SharedTagRendering [ tr ] ;
}
}
2021-01-08 03:57:18 +01:00
return new TagRenderingConfig ( tr , undefined , ` ${ this . id } .roaming_renderings[ ${ i } ] ` ) ;
2020-11-11 16:23:49 +01:00
}
) ;
this . defaultBackgroundId = json . defaultBackgroundId ;
this . layers = json . layers . map ( ( layer , i ) = > {
2021-01-06 02:52:38 +01:00
if ( typeof layer === "string" ) {
2020-11-11 16:23:49 +01:00
if ( SharedLayers . sharedLayers [ layer ] !== undefined ) {
return SharedLayers . sharedLayers [ layer ] ;
} else {
throw "Unkown fixed layer " + layer ;
}
2021-01-04 20:09:07 +01:00
}
2021-01-06 02:52:38 +01:00
// @ts-ignore
if ( layer . builtin !== undefined ) {
// @ts-ignore
const name = layer . builtin ;
console . warn ( "Overwriting!" )
const shared = SharedLayers . sharedLayersJson [ name ] ;
if ( shared === undefined ) {
throw "Unkown fixed layer " + name ;
}
// @ts-ignore
layer = Utils . Merge ( layer . override , shared ) ;
}
// @ts-ignore
2021-01-08 03:57:18 +01:00
return new LayerConfig ( layer , ` ${ this . id } .layers[ ${ i } ] ` )
2020-11-11 16:23:49 +01:00
} ) ;
2021-01-08 03:57:18 +01:00
// ALl the layers are constructed, let them share tags in piece now!
const roaming : { r , source : LayerConfig } [ ] = [ ]
for ( const layer of this . layers ) {
roaming . push ( { r : layer.GetRoamingRenderings ( ) , source :layer } ) ;
}
2021-01-04 18:55:10 +01:00
2021-01-08 03:57:18 +01:00
for ( const layer of this . layers ) {
for ( const r of roaming ) {
if ( r . source == layer ) {
continue ;
}
layer . AddRoamingRenderings ( r . r ) ;
}
}
2021-01-04 18:55:10 +01:00
2021-01-05 00:21:00 +01:00
this . clustering = {
maxZoom : 16 ,
minNeededElements : 250
} ;
2021-01-06 02:52:38 +01:00
if ( json . clustering ) {
2021-01-04 20:09:07 +01:00
this . clustering = {
2021-01-06 02:52:38 +01:00
maxZoom : json.clustering.maxZoom ? ? 18 ,
2021-01-05 00:21:00 +01:00
minNeededElements : json.clustering.minNeededElements ? ? 1
2021-01-04 20:09:07 +01:00
}
2021-01-04 18:55:10 +01:00
for ( const layer of this . layers ) {
2021-01-06 02:52:38 +01:00
if ( layer . wayHandling !== LayerConfig . WAYHANDLING_CENTER_ONLY ) {
console . error ( "WARNING: In order to allow clustering, every layer must be set to CENTER_ONLY. Layer" , layer . id , "does not respect this for layout" , this . id ) ;
2021-01-04 18:55:10 +01:00
}
}
}
2021-01-05 00:21:00 +01:00
2020-11-11 16:23:49 +01:00
this . hideFromOverview = json . hideFromOverview ? ? false ;
this . enableUserBadge = json . enableUserBadge ? ? true ;
this . enableShareScreen = json . enableShareScreen ? ? true ;
this . enableMoreQuests = json . enableMoreQuests ? ? true ;
this . enableLayers = json . enableLayers ? ? true ;
this . enableSearch = json . enableSearch ? ? true ;
this . enableGeolocation = json . enableGeolocation ? ? true ;
this . enableAddNewPoints = json . enableAddNewPoints ? ? true ;
this . enableBackgroundLayerSelection = json . enableBackgroundLayerSelection ? ? true ;
this . customCss = json . customCss ;
}
}