forked from MapComplete/MapComplete
Use translations and fancy icon
This commit is contained in:
parent
5e1b4d95ab
commit
66298880f1
3 changed files with 5 additions and 2 deletions
|
@ -11,7 +11,7 @@ import Loc from "../../../Models/Loc"
|
||||||
/***
|
/***
|
||||||
* Saves all the features that are passed in to localstorage, so they can be retrieved on the next run
|
* Saves all the features that are passed in to localstorage, so they can be retrieved on the next run
|
||||||
*
|
*
|
||||||
* Technically, more an Actor then a featuresource, but it fits more neatly this ay
|
* Technically, more an Actor then a featuresource, but it fits more neatly this way
|
||||||
*/
|
*/
|
||||||
export default class SaveTileToLocalStorageActor {
|
export default class SaveTileToLocalStorageActor {
|
||||||
private readonly visitedTiles: UIEventSource<Map<number, Date>>
|
private readonly visitedTiles: UIEventSource<Map<number, Date>>
|
||||||
|
|
|
@ -85,6 +85,9 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti
|
||||||
if (isShown !== undefined && !isShown.matchesProperties(tags)) {
|
if (isShown !== undefined && !isShown.matchesProperties(tags)) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
if(tags._deleted === "yes"){
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
const tagsFilter = Array.from(layer.appliedFilters?.data?.values() ?? [])
|
const tagsFilter = Array.from(layer.appliedFilters?.data?.values() ?? [])
|
||||||
for (const filter of tagsFilter) {
|
for (const filter of tagsFilter) {
|
||||||
|
|
|
@ -81,7 +81,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen {
|
||||||
layerConfig: LayerConfig,
|
layerConfig: LayerConfig,
|
||||||
state: FeaturePipelineState): BaseUIElement{
|
state: FeaturePipelineState): BaseUIElement{
|
||||||
return new Toggle(
|
return new Toggle(
|
||||||
"This object is deleted",
|
new Combine([Svg.delete_icon_svg().SetClass("w-8 h-8"), Translations.t.delete.isDeleted]).SetClass("flex justify-center font-bold items-center") ,
|
||||||
FeatureInfoBox.GenerateMainContent(tags, layerConfig, state),
|
FeatureInfoBox.GenerateMainContent(tags, layerConfig, state),
|
||||||
tags.map(t => t["_deleted"] == "yes")
|
tags.map(t => t["_deleted"] == "yes")
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue