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

fix: Type fixes and optimizations for EngineService, Redux store #12509

Draft
wants to merge 5 commits into
base: jongsun/fix-composable-controller
Choose a base branch
from

Conversation

MajorLift
Copy link
Contributor

@MajorLift MajorLift commented Dec 2, 2024

Description

  • Define types: ReduxStore, ReduxState -> Fix any types in EngineService.
  • Optimize EngineService event subscriptions:
    • Fix update_bg_state_cb callback being re-defined on every iteration.
    • Consolidate stateChange events collections into BACKGROUND_STATE_CHANGE_EVENT_NAMES constant for maintainability.

Related issues

Manual testing steps

Screenshots/Recordings

Before

After

Pre-merge author checklist

Pre-merge reviewer checklist

  • I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed).
  • I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.

@MajorLift MajorLift added type-tech-debt Technical debt team-tiger Tiger team (for tech debt reduction + performance improvements) labels Dec 2, 2024
@MajorLift MajorLift self-assigned this Dec 2, 2024
Copy link
Contributor

github-actions bot commented Dec 2, 2024

CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes.

@MajorLift MajorLift added the Run Smoke E2E Triggers smoke e2e on Bitrise label Dec 2, 2024
Copy link
Contributor

github-actions bot commented Dec 2, 2024

https://bitrise.io/ Bitrise

❌❌❌ pr_smoke_e2e_pipeline failed on Bitrise! ❌❌❌

Commit hash: 3ade7e5
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/d0599fd7-72fb-43d3-918c-5ee7e98c0302

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

Tip

  • Check the documentation if you have any doubts on how to understand the failure on bitrise

@MajorLift MajorLift force-pushed the jongsun/fix/EngineService/241202-fix-EngineService-types branch from 3ade7e5 to 9cfb8f5 Compare December 2, 2024 17:54
@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 2, 2024
Copy link
Contributor

github-actions bot commented Dec 2, 2024

https://bitrise.io/ Bitrise

❌❌❌ pr_smoke_e2e_pipeline failed on Bitrise! ❌❌❌

Commit hash: abe850b
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/7897da3f-271f-4aab-9b8c-ec5b13adddb9

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

Tip

  • Check the documentation if you have any doubts on how to understand the failure on bitrise

@MajorLift MajorLift force-pushed the jongsun/fix/EngineService/241202-fix-EngineService-types branch from abe850b to 61588b4 Compare December 2, 2024 18:41
@MajorLift MajorLift changed the base branch from main to jongsun/fix-composable-controller December 2, 2024 18:42
@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 2, 2024
Copy link
Contributor

github-actions bot commented Dec 2, 2024

https://bitrise.io/ Bitrise

🔄🔄🔄 pr_smoke_e2e_pipeline started on Bitrise...🔄🔄🔄

Commit hash: 61588b4
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/8db9856d-bfcb-418d-bf04-02cf9a3d8521

Note

  • This comment will auto-update when build completes
  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

@MajorLift MajorLift force-pushed the jongsun/fix/EngineService/241202-fix-EngineService-types branch from 61588b4 to d0523b0 Compare December 2, 2024 18:45
@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 2, 2024
Copy link
Contributor

github-actions bot commented Dec 2, 2024

https://bitrise.io/ Bitrise

❌❌❌ pr_smoke_e2e_pipeline failed on Bitrise! ❌❌❌

Commit hash: d0523b0
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/9affc9ef-17ee-44ae-a472-a33d25250a46

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

Tip

  • Check the documentation if you have any doubts on how to understand the failure on bitrise

@MajorLift MajorLift changed the title fix: EngineService types fix(types): EngineService, Redux store Dec 2, 2024
@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 3, 2024
@MajorLift MajorLift force-pushed the jongsun/fix/EngineService/241202-fix-EngineService-types branch from d0523b0 to fa4ea81 Compare December 3, 2024 08:52
@MajorLift MajorLift force-pushed the jongsun/fix-composable-controller branch from d484693 to d28dd1f Compare December 3, 2024 09:04
@MajorLift MajorLift force-pushed the jongsun/fix/EngineService/241202-fix-EngineService-types branch from fa4ea81 to ff2ee98 Compare December 3, 2024 09:08
@MajorLift MajorLift changed the title fix(types): EngineService, Redux store fix(types): Define ReduxStore, ReduxState, and fix any types in EngineService Dec 3, 2024
@MajorLift MajorLift changed the title fix(types): Define ReduxStore, ReduxState, and fix any types in EngineService fix: Define types ReduxStore, ReduxState, optimize EngineService event subscriptions, fix any types in EngineService Dec 3, 2024
@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 3, 2024
Copy link
Contributor

github-actions bot commented Dec 3, 2024

https://bitrise.io/ Bitrise

❌❌❌ pr_smoke_e2e_pipeline failed on Bitrise! ❌❌❌

Commit hash: ff2ee98
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/77ff84ab-8629-48ef-8484-b730c36715ed

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

Tip

  • Check the documentation if you have any doubts on how to understand the failure on bitrise

@MajorLift MajorLift force-pushed the jongsun/fix/EngineService/241202-fix-EngineService-types branch from ff2ee98 to 0bd86a1 Compare December 3, 2024 10:54
@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise DO-NOT-MERGE Pull requests that should not be merged and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 3, 2024
Copy link
Contributor

github-actions bot commented Dec 3, 2024

https://bitrise.io/ Bitrise

✅✅✅ pr_smoke_e2e_pipeline passed on Bitrise! ✅✅✅

Commit hash: 0bd86a1
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/de56888a-7e95-4f78-9e8b-02c766bc6e99

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise team-wallet-framework labels Dec 3, 2024
@MajorLift MajorLift marked this pull request as ready for review December 3, 2024 15:24
@MajorLift MajorLift requested review from a team as code owners December 3, 2024 15:24
@MajorLift MajorLift marked this pull request as draft December 3, 2024 15:24
@MajorLift MajorLift added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 3, 2024
Copy link
Contributor

github-actions bot commented Dec 3, 2024

https://bitrise.io/ Bitrise

❌❌❌ pr_smoke_e2e_pipeline failed on Bitrise! ❌❌❌

Commit hash: 57d7919
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/fce9e03a-61a0-4765-be49-304c94035967

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

Tip

  • Check the documentation if you have any doubts on how to understand the failure on bitrise

@MajorLift MajorLift changed the title fix: Define types ReduxStore, ReduxState, optimize EngineService event subscriptions, fix any types in EngineService fix: Type fixes and optimizations for EngineService Dec 3, 2024
@MajorLift MajorLift changed the title fix: Type fixes and optimizations for EngineService fix: Type fixes and optimizations for EngineService, Redux store Dec 3, 2024
Copy link

sonarcloud bot commented Dec 3, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DO-NOT-MERGE Pull requests that should not be merged Run Smoke E2E Triggers smoke e2e on Bitrise team-tiger Tiger team (for tech debt reduction + performance improvements) type-tech-debt Technical debt
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants