2016-09-08 21:42:18 +02:00
|
|
|
import React from 'react';
|
2017-04-10 14:29:57 +02:00
|
|
|
import deref from '@mapbox/mapbox-gl-style-spec/deref'
|
2017-01-13 15:31:28 +01:00
|
|
|
import tokens from '../config/tokens.json'
|
2016-09-09 18:53:57 +02:00
|
|
|
|
2016-12-16 14:49:25 +01:00
|
|
|
// Empty style is always used if no style could be restored or fetched
|
2016-12-26 12:21:41 +01:00
|
|
|
const emptyStyle = ensureStyleValidity({
|
2016-12-16 14:49:25 +01:00
|
|
|
version: 8,
|
|
|
|
sources: {},
|
|
|
|
layers: [],
|
2016-12-20 16:08:49 +01:00
|
|
|
})
|
2016-12-16 14:49:25 +01:00
|
|
|
|
2016-12-22 18:08:42 +01:00
|
|
|
function generateId() {
|
|
|
|
return Math.random().toString(36).substr(2, 9)
|
|
|
|
}
|
|
|
|
|
2016-09-20 16:49:02 +02:00
|
|
|
function ensureHasId(style) {
|
2016-12-20 16:08:49 +01:00
|
|
|
if('id' in style) return style
|
2016-12-22 18:08:42 +01:00
|
|
|
style.id = generateId()
|
2016-12-20 16:08:49 +01:00
|
|
|
return style
|
2016-09-20 16:49:02 +02:00
|
|
|
}
|
|
|
|
|
2017-01-13 15:31:08 +01:00
|
|
|
function ensureHasNoInteractive(style) {
|
|
|
|
const changedLayers = style.layers.map(layer => {
|
|
|
|
const changedLayer = { ...layer }
|
|
|
|
delete changedLayer.interactive
|
|
|
|
return changedLayer
|
|
|
|
})
|
|
|
|
|
|
|
|
const nonInteractiveStyle = {
|
|
|
|
...style,
|
|
|
|
layers: changedLayers
|
|
|
|
}
|
|
|
|
return nonInteractiveStyle
|
|
|
|
}
|
|
|
|
|
2016-12-26 12:21:41 +01:00
|
|
|
function ensureHasNoRefs(style) {
|
|
|
|
const derefedStyle = {
|
|
|
|
...style,
|
2017-04-10 14:29:57 +02:00
|
|
|
layers: deref(style.layers)
|
2016-12-26 12:21:41 +01:00
|
|
|
}
|
|
|
|
return derefedStyle
|
|
|
|
}
|
|
|
|
|
|
|
|
function ensureStyleValidity(style) {
|
2017-01-13 15:31:08 +01:00
|
|
|
return ensureHasNoInteractive(ensureHasNoRefs(ensureHasId(style)))
|
2016-09-20 16:49:02 +02:00
|
|
|
}
|
|
|
|
|
2016-12-20 20:21:35 +01:00
|
|
|
function indexOfLayer(layers, layerId) {
|
|
|
|
for (let i = 0; i < layers.length; i++) {
|
|
|
|
if(layers[i].id === layerId) {
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
2017-01-13 15:31:28 +01:00
|
|
|
function replaceAccessToken(mapStyle) {
|
|
|
|
const omtSource = mapStyle.sources.openmaptiles
|
|
|
|
if(!omtSource) return mapStyle
|
2018-02-01 23:00:26 +01:00
|
|
|
if(!omtSource.hasOwnProperty("url")) return mapStyle
|
2017-01-13 15:31:28 +01:00
|
|
|
|
|
|
|
const metadata = mapStyle.metadata || {}
|
|
|
|
const accessToken = metadata['maputnik:openmaptiles_access_token'] || tokens.openmaptiles
|
|
|
|
const changedSources = {
|
|
|
|
...mapStyle.sources,
|
|
|
|
openmaptiles: {
|
|
|
|
...omtSource,
|
|
|
|
url: omtSource.url.replace('{key}', accessToken)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const changedStyle = {
|
|
|
|
...mapStyle,
|
2017-03-28 17:00:58 +02:00
|
|
|
glyphs: mapStyle.glyphs ? mapStyle.glyphs.replace('{key}', accessToken) : mapStyle.glyphs,
|
2017-01-13 15:31:28 +01:00
|
|
|
sources: changedSources
|
|
|
|
}
|
|
|
|
|
|
|
|
return changedStyle
|
|
|
|
}
|
|
|
|
|
2016-09-10 21:29:18 +02:00
|
|
|
export default {
|
2016-12-26 12:21:41 +01:00
|
|
|
ensureStyleValidity,
|
2016-12-16 14:49:25 +01:00
|
|
|
emptyStyle,
|
2016-12-20 20:21:35 +01:00
|
|
|
indexOfLayer,
|
2016-12-22 18:08:42 +01:00
|
|
|
generateId,
|
2017-01-13 15:31:28 +01:00
|
|
|
replaceAccessToken,
|
2016-09-10 21:29:18 +02:00
|
|
|
}
|