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

Linked signal fixes #15

Merged
merged 4 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/introduction/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: "Introduction > Getting Started: First steps with Angular Redux"

## Installation

Angular Redux 8.x requires **Angular 17.3 or later**, in order to make use of Angular Signals.
Angular Redux 2.x requires **Angular 19 or later**, in order to make use of Angular Signals.

### Installing with `ng add`

Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"@reduxjs/toolkit": "^2.2.7",
"redux": "^5.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.2",
"@angular/cli": "^18.2.2",
"@angular/compiler-cli": "^18.2.0",
"@angular-devkit/build-angular": "^19.0.1",
"@angular/cli": "^19.0.1",
"@angular/compiler-cli": "^19.0.0",
"@testing-library/angular": "^17.3.1",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.4.8",
Expand All @@ -54,7 +54,7 @@
"jasmine-core": "~5.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ng-packagr": "^18.2.0",
"ng-packagr": "^19.0.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "~5.5.2"
Expand Down
2 changes: 1 addition & 1 deletion projects/angular-redux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Performant and flexible.

## Installation

Angular Redux requires **Angular 17.3 or later**.
Angular Redux requires **Angular 19 or later**.

### Installing with `ng add`

Expand Down
6 changes: 3 additions & 3 deletions projects/angular-redux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reduxjs/angular-redux",
"version": "1.0.1",
"version": "2.0.0",
"keywords": [
"angular",
"redux"
Expand All @@ -11,8 +11,8 @@
"repository": "github:reduxjs/angular-redux",
"bugs": "https://github.com/reduxjs/angular-redux/issues",
"peerDependencies": {
"@angular/common": ">=17.3.0",
"@angular/core": ">=17.3.0",
"@angular/common": ">=19.0.0",
"@angular/core": ">=19.0.0",
"@reduxjs/toolkit": "^2.2.7",
"redux": "^5.0.0"
},
Expand Down
5 changes: 3 additions & 2 deletions projects/angular-redux/src/lib/inject-selector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
DestroyRef,
effect,
inject,
linkedSignal,
Signal,
signal,
} from '@angular/core';
Expand Down Expand Up @@ -90,7 +91,7 @@ export function createSelectorInjection(): InjectSelector {

const { store, subscription } = reduxContext;

const selectedState = signal(selector(store.getState()));
const selectedState = linkedSignal(() => selector(store.getState()));

const unsubscribe = subscription.addNestedSub(() => {
const data = selector(store.getState());
Expand All @@ -105,7 +106,7 @@ export function createSelectorInjection(): InjectSelector {
unsubscribe();
});

return selectedState;
return selectedState.asReadonly();
};

Object.assign(injectSelector, {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from '@angular/core';
import { Component, input } from '@angular/core';
import { render, waitFor } from '@testing-library/angular';
import '@testing-library/jest-dom';
import { configureStore, createSlice } from '@reduxjs/toolkit';
Expand Down Expand Up @@ -100,3 +100,44 @@ it('should show a value dispatched during ngOnInit', async () => {

await waitFor(() => expect(getByText('Count: 1')).toBeInTheDocument());
});

it("should not throw an error on a required input passed to the selector's fn", async () => {
const store = configureStore({
reducer: {
counter: counterSlice.reducer,
},
});

@Component({
selector: 'app-count-and-add',
standalone: true,
template: `
<button aria-label="Increment value" (click)="dispatch(increment())">
Increment
</button>
<p>Count: {{ count() }}</p>
`,
})
class CountAndAdd {
dispatch = injectDispatch();
increment = counterSlice.actions.increment;
addBy = input.required<number>();
count = injectSelector((state: any) => state.counter.value + this.addBy());
}

@Component({
selector: 'app-root',
imports: [CountAndAdd],
standalone: true,
template: '<app-count-and-add [addBy]="12"/>',
})
class App {}

const { getByText, getByLabelText } = await render(App, {
providers: [provideRedux({ store })],
});

await waitFor(() => expect(getByText('Count: 12')).toBeInTheDocument());
await user.click(getByLabelText('Increment value'));
await waitFor(() => expect(getByText('Count: 13')).toBeInTheDocument());
});
35 changes: 16 additions & 19 deletions projects/angular-redux/src/tests/inject-selector.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,14 @@ describe('injectSelector lifecycle interactions', () => {
}

@Component({
selector: 'app-root',
standalone: true,
imports: [Child],
template: `
selector: 'app-root',
imports: [Child],
template: `
@if (count() === 1) {
<child-root />
}
`,
})
`
})
class Parent {
contextVal = injectReduxAndAssignApp();
count = injectNormalSelector((s) => s.count);
Expand Down Expand Up @@ -167,15 +166,14 @@ describe('injectSelector lifecycle interactions', () => {
}

@Component({
selector: 'app-root',
standalone: true,
imports: [Child],
template: `
selector: 'app-root',
imports: [Child],
template: `
@if (count() === 0) {
<child-root />
}
`,
})
`
})
class Parent {
contextVal = injectReduxAndAssignApp();
count = injectNormalSelector((s) => s.count);
Expand Down Expand Up @@ -265,14 +263,13 @@ describe('performance optimizations and bail-outs', () => {
}

@Component({
selector: 'app-root',
standalone: true,
imports: [Comp, Comp2],
template: `
selector: 'app-root',
imports: [Comp, Comp2],
template: `
<app-comp />
<app-other />
`,
})
`
})
class App {}

await render(App, {
Expand Down Expand Up @@ -322,6 +319,6 @@ describe('performance optimizations and bail-outs', () => {
store.dispatch({ type: '' });

await waitFor(() => expect(selector).toHaveBeenCalledTimes(2));
expect(renderedItems.length).toEqual(2);
expect(renderedItems.length).toEqual(1);
});
});
Loading