This repository was archived by the owner on Jun 26, 2020. It is now read-only.
This repository was archived by the owner on Jun 26, 2020. It is now read-only.
feature request: dont show Components with regards to arbitrary exclude list (basically, hide repetitive High-Order Components from the Tree) #604
Closed
Description
Based on #211.
It would be nice, to have a exclude list of components, which i dont want to see in my react tree.
Exclude list have to be configurable and persistent.
Exclude list: [/GetContext*/, /Jss*/]
Tree Before:
<ButtonGroup>
<GetContext(Jss(Button))>
<Jss(Button)>
<Button>
<span>one</span>
<Button>
<Jss(Button)>
</GetContext(Jss(Button))>
<GetContext(Jss(Button))>
<Jss(Button)>
<Button>
<span>two</span>
<Button>
<Jss(Button)>
</GetContext(Jss(Button))>
<GetContext(Jss(Button))>
<Jss(Button)>
<Button>
<span>three</span>
<Button>
<Jss(Button)>
</GetContext(Jss(Button))>
<ButtonGroup>
Tree After:
<ButtonGroup>
<Button>
<span>one</span>
<Button>
<Button>
<span>two</span>
<Button>
<Button>
<span>three</span>
<Button>
<ButtonGroup>