Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: fireEvent cleanup #1401

Merged
merged 12 commits into from
May 3, 2023
Merged

refactor: fireEvent cleanup #1401

merged 12 commits into from
May 3, 2023

Conversation

mdjastrzebski
Copy link
Member

@mdjastrzebski mdjastrzebski commented May 2, 2023

Summary

Scope:

  • cleanup fireEvent code before further changes
    • removal of unused callsite argument
    • simplify fireEvent object construction by removing invokeEvent
  • fix case when passing onPress event name would defeat pointer events checks for press event despite invoking the same handler.
  • improve code coverage by removing dead code paths
  • improve code coverage by disabling checks for deprecation functions

Test plan

Improved existing pointer event test by using both event forms press and `onPress.

@MattAgn
Copy link
Collaborator

MattAgn commented May 3, 2023

That's some nice cleaning! 🔥

src/fireEvent.ts Outdated

return !!element?.props.onStartShouldSetResponder || isTextInput(element);
};
return !!element.props.onStartShouldSetResponder || isTextInput(element);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] what do you think of using Boolean() instead of !! ? I find it better represents what we're doing most of the time and it's easier to read and understand

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tbh I personally prefer !! because it's concise, but if you find Boolean() more readable we can go this way.

Copy link
Collaborator

@MattAgn MattAgn May 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

both are fine for me ;) (it's just a small personal preference, also because i find !! a bit hacky ^^)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With JS you get use to some hacking techniques over time that they feel normal ;-)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

haha so true

@codecov
Copy link

codecov bot commented May 3, 2023

Codecov Report

Patch coverage: 100.00% and project coverage change: +0.05 🎉

Comparison is base (72e3133) 96.79% compared to head (b9cc5ee) 96.85%.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1401      +/-   ##
==========================================
+ Coverage   96.79%   96.85%   +0.05%     
==========================================
  Files          51       51              
  Lines        3404     3398       -6     
  Branches      504      506       +2     
==========================================
- Hits         3295     3291       -4     
+ Misses        109      107       -2     
Impacted Files Coverage Δ
src/fireEvent.ts 100.00% <100.00%> (+1.31%) ⬆️

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@mdjastrzebski mdjastrzebski merged commit 674b2f9 into main May 3, 2023
9 checks passed
@mdjastrzebski mdjastrzebski deleted the refactor/fire-event-cleanup branch May 3, 2023 10:30
@mdjastrzebski
Copy link
Member Author

This PR has been released in v12.1.2 🚀

hyochan pushed a commit to dooboolab-community/react-native-iap that referenced this pull request Jun 22, 2023
….2 (#2445)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@testing-library/react-native](https://callstack.github.io/react-native-testing-library)
([source](https://togithub.com/callstack/react-native-testing-library))
| [`12.0.1` ->
`12.1.2`](https://renovatebot.com/diffs/npm/@testing-library%2freact-native/12.0.1/12.1.2)
|
[![age](https://badges.renovateapi.com/packages/npm/@testing-library%2freact-native/12.1.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@testing-library%2freact-native/12.1.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@testing-library%2freact-native/12.1.2/compatibility-slim/12.0.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@testing-library%2freact-native/12.1.2/confidence-slim/12.0.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>callstack/react-native-testing-library</summary>

###
[`v12.1.2`](https://togithub.com/callstack/react-native-testing-library/releases/tag/v12.1.2)

[Compare
Source](https://togithub.com/callstack/react-native-testing-library/compare/v12.1.1...v12.1.2)

#### What's Changed

#### Fixes

- fix: pointer events evaluation by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1395
- fix: non-editable wrapped TextInput events by
[@&#8203;TMaszko](https://togithub.com/TMaszko) in
[callstack/react-native-testing-library#1385
- fix: support `onXxx` event name for TextInput event checks by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1404

#### Docs, Chores, etc

- docs: add config example for pnpm by
[@&#8203;yjose](https://togithub.com/yjose) in
[callstack/react-native-testing-library#1400
- chore: move/remove deprecation functions by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1402
- refactor: component tree dead code by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1403
- refactor: `fireEvent` cleanup by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1401

#### New Contributors

- [@&#8203;yjose](https://togithub.com/yjose) made their first
contribution in
[callstack/react-native-testing-library#1400
👏
- [@&#8203;TMaszko](https://togithub.com/TMaszko) made their first
contribution in
[callstack/react-native-testing-library#1385
👏

**Full Changelog**:
callstack/react-native-testing-library@v12.1.1...v12.1.2

###
[`v12.1.1`](https://togithub.com/callstack/react-native-testing-library/releases/tag/v12.1.1)

[Compare
Source](https://togithub.com/callstack/react-native-testing-library/compare/v12.1.0...v12.1.1)

#### What's Changed

#### Fixes

- fix: remove incorrect dependencies by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1399

**Full Changelog**:
callstack/react-native-testing-library@v12.1.0...v12.1.1

###
[`v12.1.0`](https://togithub.com/callstack/react-native-testing-library/releases/tag/v12.1.0)

[Compare
Source](https://togithub.com/callstack/react-native-testing-library/compare/v12.0.1...v12.1.0)

#### What's Changed

##### Improvements

- feat: Render element tree in query error messages by
[@&#8203;stevehanson](https://togithub.com/stevehanson) in
[callstack/react-native-testing-library#1378

##### Bugfixes

- Proper stack trace for findBy\* and findAllBy\* queries by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1394

#### New Contributors

- [@&#8203;stevehanson](https://togithub.com/stevehanson) made their
first contributions in
[#&#8203;1377](https://togithub.com/callstack/react-native-testing-library/issues/1377),
[#&#8203;1378](https://togithub.com/callstack/react-native-testing-library/issues/1378)
and
[#&#8203;1390](https://togithub.com/callstack/react-native-testing-library/issues/1390)
👏

##### Chores, docs, deps, etc

- Fix broken link in contributing.md by
[@&#8203;stevehanson](https://togithub.com/stevehanson) in
[callstack/react-native-testing-library#1377
- chore: update deps 2023-04-04 by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1380
- Fix typo in "derived" in v12 migration guide by
[@&#8203;CodingItWrong](https://togithub.com/CodingItWrong) in
[callstack/react-native-testing-library#1376
- chore: fix migration guide role prop naming by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1382
- fix: "Edit this Page" link in docs results in 404 by
[@&#8203;stevehanson](https://togithub.com/stevehanson) in
[callstack/react-native-testing-library#1390
- refactor: remove stale tests by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1392
- chore: experiments app by
[@&#8203;mdjastrzebski](https://togithub.com/mdjastrzebski) in
[callstack/react-native-testing-library#1391

**Full Changelog**:
callstack/react-native-testing-library@v12.0.1...v12.1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/dooboolab-community/react-native-iap).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS45OC40IiwidXBkYXRlZEluVmVyIjoiMzUuMTMxLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants