over_react
over_react copied to clipboard
A library for building statically-typed React UI components using Dart.
> Transferred from https://github.com/Workiva/over_react_analyzer_plugin/issues/42
* Fix: remove `Component` from the name by utilizing the ["Component factory rename" assist](https://github.com/Workiva/over_react/issues/600) that ensures the analogous component / props / state name(s) are also updated. > Transferred from...
@greglittlefield-wf spiked this out initially, and @joebingham-wk [got his branch rebased onto recent changes](https://github.com/Workiva/over_react_analyzer_plugin/pull/63), but the work was paused to focus on initial release MVP items. > Transferred from https://github.com/Workiva/over_react_analyzer_plugin/issues/29
A spike implementation of this was done by @greglittlefield-wf, but the performance was problematic. > Transferred from https://github.com/Workiva/over_react_analyzer_plugin/issues/45
> Transferred from https://github.com/Workiva/over_react_analyzer_plugin/issues/30
> Transferred from https://github.com/Workiva/over_react_analyzer_plugin/issues/28
* Fix: Add parentheses This work has been completed for unambiguous cases (see: `MissingCascadeParensDiagnostic`), but we still need to implement: 1. Likely cases 1. Ambiguous cases * _Look for this...
* Fix: move to invocation paren closure > Transferred from https://github.com/Workiva/over_react_analyzer_plugin/issues/26
__NOTE:__ Depends on over_react function components being ready / released. > Transferred from https://github.com/Workiva/over_react_analyzer_plugin/issues/43
Similar to the assist that adds a ref, this assist would automatically add: ```dart ..modifyProps(addUnconsumedDomProps) ``` To `Dom.*` builders, and: ```dart ..modifyProps(addUnconsumedProps) ``` to custom component builders. For the `addUnconsumedProps`...