Issue #2800💬 AnsweredOpened May 25, 2020by meyerco0 reactions

When removing a tooltip its css is not removed

快速解答by artf

Yeah, I think you're right, probably replacing with might fix the issue, would you like to check and create a PR? :)

Read full answer below ↓

Question

Description

  • The bug is reproduced on the current demo

Expected behavior

  • When a tooltip is removed its css is removed

What happens instead ?

  • When a tooltip is removed its css is not removed

Steps to reproduce on the demo

  • Clear the canvas
  • Drag a tooltip
  • Remove the tooltip
  • Click on Import button on top toolbar , the tooltip css is not removed .

image

The conclusions of my research

Trying to understand this bug i notified that the style-signature feature is not working properly .

My supposition is that the bug occurs inside the run method of the command core:component-style-clear .

On Components model the core:component-style-clear command run before the component is removed . So when the core:component-style-clear command check if an element of a specific type exists yet on the canvas the response is true . Then this condition is false and the css is not removed .

Answers (3)

artfJune 12, 2020

Yeah, I think you're right, probably replacing

// relies on the view
const len = dc.getWrapper().find(`[data-gjs-type="${type}"]`).length;

with

// relies on the model
const len = dc.getWrapper().findType('tooltip').length;

might fix the issue, would you like to check and create a PR? :)

meyercoJune 14, 2020

@artf
Maybe this code to keep the code generic ?

// relies on the model
const len = dc.getWrapper().findType(type).length;
artfJune 18, 2020

@meyerco 😅 yeah sure, sorry, it was a copy-paste from my try

Related Questions and Answers

Continue research with similar issue discussions.

Paid Plugins That Match This Issue

Curated by issue keywords and label relevance to help you ship faster.

View all plugins

Loading paid plugin recommendations...

Free option

Check the open-source GrapesJS plugins on GitHub or run a quick search in our free catalog.

Browse free plugins →
Premium option

Premium plugins ship with support, regular updates, and production-ready features — save days of integration work.

Browse premium plugins →

Related tutorials

In-depth guides on the same topic.

All tutorials →

Browse Plugin Categories

Jump directly to plugin category pages on the marketplace.