parent
bbf4b72e07
commit
d54d3aa514
3 changed files with 45 additions and 5 deletions
|
@ -109,7 +109,7 @@ L.U.FeatureMixin = {
|
||||||
properties.unshift('properties.name')
|
properties.unshift('properties.name')
|
||||||
builder = new L.U.FormBuilder(this, properties, {
|
builder = new L.U.FormBuilder(this, properties, {
|
||||||
id: 'umap-feature-properties',
|
id: 'umap-feature-properties',
|
||||||
callback: this.resetTooltip,
|
callback: this._redraw, // In case we have smart options…
|
||||||
})
|
})
|
||||||
container.appendChild(builder.build())
|
container.appendChild(builder.build())
|
||||||
this.appendEditFieldsets(container)
|
this.appendEditFieldsets(container)
|
||||||
|
@ -271,6 +271,18 @@ L.U.FeatureMixin = {
|
||||||
return value
|
return value
|
||||||
},
|
},
|
||||||
|
|
||||||
|
getSmartOption: function (option, fallback) {
|
||||||
|
let value = this.getOption(option, fallback)
|
||||||
|
// There is a variable inside.
|
||||||
|
if (typeof value === 'string' && value.indexOf('{') != -1) {
|
||||||
|
value = L.Util.greedyTemplate(value, this.properties)
|
||||||
|
// We've not been able to replace the variable, let's reset
|
||||||
|
// so we can set a decent default at next step.
|
||||||
|
if (value.indexOf('{') != -1) value = undefined
|
||||||
|
}
|
||||||
|
return value
|
||||||
|
},
|
||||||
|
|
||||||
zoomTo: function (e) {
|
zoomTo: function (e) {
|
||||||
e = e || {}
|
e = e || {}
|
||||||
const easing = e.easing !== undefined ? e.easing : this.map.options.easing
|
const easing = e.easing !== undefined ? e.easing : this.map.options.easing
|
||||||
|
@ -706,7 +718,7 @@ L.U.PathMixin = {
|
||||||
let option
|
let option
|
||||||
for (const idx in this.styleOptions) {
|
for (const idx in this.styleOptions) {
|
||||||
option = this.styleOptions[idx]
|
option = this.styleOptions[idx]
|
||||||
options[option] = this.getOption(option)
|
options[option] = this.getSmartOption(option)
|
||||||
}
|
}
|
||||||
if (options.interactive) this.options.pointerEvents = 'visiblePainted'
|
if (options.interactive) this.options.pointerEvents = 'visiblePainted'
|
||||||
else this.options.pointerEvents = 'stroke'
|
else this.options.pointerEvents = 'stroke'
|
||||||
|
|
|
@ -24,7 +24,7 @@ L.U.Icon = L.DivIcon.extend({
|
||||||
|
|
||||||
_getColor: function () {
|
_getColor: function () {
|
||||||
let color
|
let color
|
||||||
if (this.feature) color = this.feature.getOption('color')
|
if (this.feature) color = this.feature.getSmartOption('color')
|
||||||
else if (this.options.color) color = this.options.color
|
else if (this.options.color) color = this.options.color
|
||||||
else color = this.map.getDefaultOption('color')
|
else color = this.map.getDefaultOption('color')
|
||||||
return color
|
return color
|
||||||
|
|
|
@ -373,6 +373,36 @@ describe('L.U.DataLayer', function () {
|
||||||
assert.ok(qs('div.icon_container'))
|
assert.ok(qs('div.icon_container'))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
describe('#smart-options()', function () {
|
||||||
|
let poly, marker
|
||||||
|
before(function () {
|
||||||
|
this.datalayer.eachLayer(function (layer) {
|
||||||
|
if (!poly && layer instanceof L.Polygon) {
|
||||||
|
poly = layer
|
||||||
|
}
|
||||||
|
if (!marker && layer instanceof L.Marker) {
|
||||||
|
marker = layer
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should parse color variable', function () {
|
||||||
|
let icon = qs('div.umap-div-icon .icon_container')
|
||||||
|
poly.properties.mycolor = 'DarkGoldenRod'
|
||||||
|
marker.properties.mycolor = 'DarkRed'
|
||||||
|
marker.properties._umap_options.color = undefined
|
||||||
|
assert.notOk(qs('path[fill="DarkGoldenRod"]'))
|
||||||
|
assert.equal(icon.style.backgroundColor, 'olivedrab')
|
||||||
|
this.datalayer.options.color = '{mycolor}'
|
||||||
|
this.datalayer.options.fillColor = '{mycolor}'
|
||||||
|
this.datalayer.indexProperties(poly)
|
||||||
|
this.datalayer.indexProperties(marker)
|
||||||
|
this.datalayer.redraw()
|
||||||
|
icon = qs('div.umap-div-icon .icon_container')
|
||||||
|
assert.equal(icon.style.backgroundColor, 'darkred')
|
||||||
|
assert.ok(qs('path[fill="DarkGoldenRod"]'))
|
||||||
|
})
|
||||||
|
})
|
||||||
describe('#advanced-filters()', function () {
|
describe('#advanced-filters()', function () {
|
||||||
before(function () {
|
before(function () {
|
||||||
this.server.respondWith(
|
this.server.respondWith(
|
||||||
|
@ -399,7 +429,5 @@ describe('L.U.DataLayer', function () {
|
||||||
// so it should not be affected by the filter
|
// so it should not be affected by the filter
|
||||||
assert.ok(qs('path[fill="SteelBlue"]'))
|
assert.ok(qs('path[fill="SteelBlue"]'))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue