Make fixme optional if stated in the softDeletionTags

This commit is contained in:
pietervdvn 2022-09-11 01:25:56 +02:00
parent 4e346c2820
commit 6c3f9bae25
2 changed files with 22 additions and 16 deletions

View file

@ -1,11 +1,11 @@
import { OsmObject } from "../OsmObject"
import {OsmObject} from "../OsmObject"
import OsmChangeAction from "./OsmChangeAction"
import { Changes } from "../Changes"
import { ChangeDescription } from "./ChangeDescription"
import {Changes} from "../Changes"
import {ChangeDescription} from "./ChangeDescription"
import ChangeTagAction from "./ChangeTagAction"
import { TagsFilter } from "../../Tags/TagsFilter"
import { And } from "../../Tags/And"
import { Tag } from "../../Tags/Tag"
import {TagsFilter} from "../../Tags/TagsFilter"
import {And} from "../../Tags/And"
import {Tag} from "../../Tags/Tag"
export default class DeleteAction extends OsmChangeAction {
private readonly _softDeletionTags: TagsFilter
@ -29,14 +29,18 @@ export default class DeleteAction extends OsmChangeAction {
super(id, true)
this._id = id
this._hardDelete = hardDelete
this.meta = { ...meta, changeType: "deletion" }
this._softDeletionTags = new And([
softDeletionTags,
new Tag(
"fixme",
`A mapcomplete user marked this feature to be deleted (${meta.specialMotivation})`
),
])
this.meta = {...meta, changeType: "deletion"}
if (softDeletionTags.usedKeys().indexOf("fixme") >= 0) {
this._softDeletionTags = softDeletionTags
} else {
this._softDeletionTags = new And([
softDeletionTags,
new Tag(
"fixme",
`A mapcomplete user marked this feature to be deleted (${meta.specialMotivation})`
),
])
}
}
public async CreateChangeDescriptions(changes: Changes): Promise<ChangeDescription[]> {

View file

@ -518,6 +518,8 @@
"motor_vehicle=",
"vehicle=",
"inline_skate=",
"inline_skates=",
"mofa=",
"moped=",
"moped_a=",
"moped_b=",
@ -526,8 +528,8 @@
"maxwidth:physical=",
"width:separation=",
"width:opening=",
"overlap="
"overlap=",
"fixme="
]
}