themesberg / themesberg/flowbite

Modal component show and hide methods wrong conditional test

Open
#516 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
HTML
Stars
9.4k
Forks
862
PR merge metrics
No merged PRs in 30d

Description

Not a bug, it works perfectly, but not conform to the intention.

The show() method of the Modal component use
if ( this.isHidden ) (always returns true, the method exists)
instead of
if ( this.isHidden() ) or if ( this._isHidden )

Same for the hide() method with :
if ( this.isVisible ) (always returns true, the method exists)
instead of
if ( this.isVisible() ) or if ( ! this._isHidden )

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Locate the Modal component and inspect its show() and hide() methods. Check that each conditional tests the component's hidden or visible state as described, then verify that the methods still show and hide the modal correctly.

Written by the indexing model from the issue text.

Assessment

Tech stack
javascript, tailwindcss
Domain
frontend
Issue type
Refactor
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
38/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.