mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-26 03:26:41 +07:00
stickers clearing on toggling button
This commit is contained in:
parent
7fc53444a8
commit
21532ba240
2 changed files with 31 additions and 10 deletions
|
@ -42,6 +42,9 @@ export class Editor {
|
|||
},
|
||||
[MODES.SHOTTER]: {
|
||||
start: this.shotter.makeShot,
|
||||
},
|
||||
[MODES.STICKERS]: {
|
||||
toggle: this.clearSticker,
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -68,9 +71,13 @@ export class Editor {
|
|||
|
||||
changeMode = mode => {
|
||||
if (this.mode === mode) {
|
||||
this.disableMode(mode);
|
||||
this.setMode(MODES.NONE);
|
||||
this.mode = MODES.NONE;
|
||||
if (this.switches[mode].toggle) {
|
||||
this.switches[mode].toggle(); // if we have special function on mode when it toggles
|
||||
} else {
|
||||
this.disableMode(mode);
|
||||
this.setMode(MODES.NONE);
|
||||
this.mode = MODES.NONE;
|
||||
}
|
||||
} else {
|
||||
this.disableMode(this.mode);
|
||||
this.setMode(mode);
|
||||
|
@ -129,10 +136,16 @@ export class Editor {
|
|||
this.setActiveSticker(sticker);
|
||||
};
|
||||
|
||||
clearSticker = () => {
|
||||
this.setSticker(null);
|
||||
};
|
||||
|
||||
clearAll = () => {
|
||||
this.poly.clearAll();
|
||||
this.router.clearAll();
|
||||
this.stickers.clearAll();
|
||||
|
||||
this.setSticker(null);
|
||||
this.changeMode(MODES.NONE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue