Skip to content

Upgrading ngrx/store to utilize new creator functions#228

Draft
marfehr wants to merge 1 commit intoMrWolfZ:developfrom
marfehr:develop
Draft

Upgrading ngrx/store to utilize new creator functions#228
marfehr wants to merge 1 commit intoMrWolfZ:developfrom
marfehr:develop

Conversation

@marfehr
Copy link

@marfehr marfehr commented Jan 27, 2021

No description provided.

@codecov
Copy link

codecov bot commented Jan 27, 2021

Codecov Report

Merging #228 (7afc0bb) into develop (52ef184) will decrease coverage by 0.08%.
The diff coverage is 100.00%.

Impacted file tree graph

@@             Coverage Diff             @@
##           develop     #228      +/-   ##
===========================================
- Coverage   100.00%   99.91%   -0.09%     
===========================================
  Files          128      128              
  Lines         2342     2266      -76     
  Branches       432      432              
===========================================
- Hits          2342     2264      -78     
- Misses           0        2       +2     
Impacted Files Coverage Δ
src/control/reducer.ts 100.00% <ø> (ø)
src/actions.ts 100.00% <100.00%> (ø)
src/array/reducer.ts 100.00% <100.00%> (ø)
src/array/reducer/add-control.ts 100.00% <100.00%> (ø)
src/array/reducer/clear-async-error.ts 100.00% <100.00%> (ø)
src/array/reducer/disable.ts 100.00% <100.00%> (ø)
src/array/reducer/enable.ts 100.00% <100.00%> (ø)
src/array/reducer/mark-as-dirty.ts 100.00% <100.00%> (ø)
src/array/reducer/mark-as-pristine.ts 100.00% <100.00%> (ø)
src/array/reducer/mark-as-submitted.ts 100.00% <100.00%> (ø)
... and 79 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 52ef184...7afc0bb. Read the comment docs.

}

handleFormAction(action: Actions<any>) {
handleFormAction(action: NgrxFormActionTypes) {
Copy link
Author

Choose a reason for hiding this comment

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

TODO

// update from loaded data
if (a.type === SetManufacturersAction.TYPE) {
return (a as SetManufacturersAction).manufacturers;
if (a.type === SetManufacturersAction.type) {
Copy link
Author

Choose a reason for hiding this comment

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

TODO

export class LocalStateIntroductionComponent {
formState = INITIAL_FORM_STATE;

handleFormAction(action: Actions<any>) {
Copy link
Author

Choose a reason for hiding this comment

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

TODO

expect(a2.type).toBe(MarkAsDirtyAction.type);
expect(a3.type).toBe(SetValueAction.type);
expect(a4.type).toBe(MarkAsDirtyAction.type);
// expect((a1 as SetValueAction<string>).value).toBe(RADIO_OPTIONS[0]);
Copy link
Author

Choose a reason for hiding this comment

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

TODO

expect(a.type).toBe(SetValueAction.TYPE);
expect((a as SetValueAction<string>).value).toBe(RADIO_OPTIONS[0]);
expect(a.type).toBe(SetValueAction.type);
// expect((a as SetValueAction<string>).value).toBe(RADIO_OPTIONS[0]);
Copy link
Author

Choose a reason for hiding this comment

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

TODO

expect(a.type).toBe(SetValueAction.TYPE);
expect((a as SetValueAction<Boxed<string[]>>).value).toEqual(box(SELECT_OPTIONS));
expect(a.type).toBe(SetValueAction.type);
// expect((a as SetValueAction<Boxed<string[]>>).value).toEqual(box(SELECT_OPTIONS));
Copy link
Author

Choose a reason for hiding this comment

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

TODO

expect(a.type).toBe(SetValueAction.TYPE);
expect((a as SetValueAction<number>).value).toBe(SELECT_NUMBER_OPTIONS[0]);
expect(a.type).toBe(SetValueAction.type);
// expect((a as SetValueAction<number>).value).toBe(SELECT_NUMBER_OPTIONS[0]);
Copy link
Author

Choose a reason for hiding this comment

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

TODO

extends NgrxFormControlDirective<TStateValue, TViewValue> {

@Output() ngrxFormsAction = new EventEmitter<Actions<NgrxFormControlValueType<TStateValue>>>();
@Output() ngrxFormsAction = new EventEmitter<any>(); // type fix me
Copy link
Author

Choose a reason for hiding this comment

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

TODO

export class NgrxLocalFormDirective<TStateValue> extends NgrxFormDirective<TStateValue> {

@Output() ngrxFormsAction = new EventEmitter<Actions<TStateValue>>();
@Output() ngrxFormsAction = new EventEmitter<any>(); // type fix me
Copy link
Author

Choose a reason for hiding this comment

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

TODO

ResetActionType = 'ngrx/forms/RESET'
}

// using the creator fnc doesnt break api and we can use generic types
Copy link
Author

Choose a reason for hiding this comment

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

Not quite right. todo

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.

1 participant