Skip to content

Commit c4d8fe0

Browse files
tanebaerikras
authored andcommitted
add update mutator (final-form#13)
1 parent 7e6347e commit c4d8fe0

7 files changed

+87
-11
lines changed

README.md

+19-10
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,26 @@ const customer = form.mutators.pop('customers')
5050

5151
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
5252

53-
* [Mutators](#mutators)
54-
* [`form.mutators.insert(name: string, index:number, value: any) => undefined`](#formmutatorsinsertname-string-indexnumber-value-any--undefined)
55-
* [`form.mutators.move(name: string, from: number, to: number) => undefined`](#formmutatorsmovename-string-from-number-to-number--undefined)
56-
* [`form.mutators.pop(name: string) => any`](#formmutatorspopname-string--any)
57-
* [`form.mutators.push(name: string, value: any) => void`](#formmutatorspushname-string-value-any--void)
58-
* [`form.mutators.remove(name: string, index: number) => any`](#formmutatorsremovename-string-index-number--any)
59-
* [`form.mutators.shift(name: string) => any`](#formmutatorsshiftname-string--any)
60-
* [`form.mutators.swap(name: string, indexA: number, indexB: number) => void`](#formmutatorsswapname-string-indexa-number-indexb-number--void)
61-
* [`form.mutators.unshift(name: string, value: any) => void`](#formmutatorsunshiftname-string-value-any--void)
53+
- [🏁 Final Form Arrays](#%F0%9F%8F%81-final-form-arrays)
54+
- [Installation](#installation)
55+
- [Usage](#usage)
56+
- [Table of Contents](#table-of-contents)
57+
- [Mutators](#mutators)
58+
- [`form.mutators.insert(name: string, index: number, value: any) => undefined`](#formmutatorsinsertname-string-index-number-value-any--undefined)
59+
- [`form.mutators.move(name: string, from: number, to: number) => undefined`](#formmutatorsmovename-string-from-number-to-number--undefined)
60+
- [`form.mutators.pop(name: string) => any`](#formmutatorspopname-string--any)
61+
- [`form.mutators.push(name: string, value: any) => void`](#formmutatorspushname-string-value-any--void)
62+
- [`form.mutators.remove(name: string, index: number) => any`](#formmutatorsremovename-string-index-number--any)
63+
- [`form.mutators.shift(name: string) => any`](#formmutatorsshiftname-string--any)
64+
- [`form.mutators.swap(name: string, indexA: number, indexB: number) => void`](#formmutatorsswapname-string-indexa-number-indexb-number--void)
65+
- [`form.mutators.update(name: string, index: number, value: any) => void`](#formmutatorsupdatename-string-index-number-value-any--void)
66+
- [`form.mutators.unshift(name: string, value: any) => void`](#formmutatorsunshiftname-string-value-any--void)
6267

6368
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
6469

6570
## Mutators
6671

67-
### `form.mutators.insert(name: string, index:number, value: any) => undefined`
72+
### `form.mutators.insert(name: string, index: number, value: any) => undefined`
6873

6974
Inserts a value into the specified index of the array field.
7075

@@ -93,6 +98,10 @@ Removes a value from the beginning of the array field. Returns the value.
9398

9499
Swaps the position of two values in the array field.
95100

101+
### `form.mutators.update(name: string, index: number, value: any) => void`
102+
103+
Updates a value of the specified index of the array field.
104+
96105
### `form.mutators.unshift(name: string, value: any) => void`
97106

98107
Inserts a value onto the beginning of the array field.

src/index.d.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ mutators.push('customers', { firstName: '', lastName: '' })
2121
const removed = mutators.remove('customers', 0)
2222
const shifted = mutators.shift('customers')
2323
mutators.swap('customers', 0, 1)
24+
mutators.update('customers', 0, { firstName: '', lastName: '' })
2425
mutators.unshift('customers', { firstName: '', lastName: '' })

src/index.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export const push: Mutator
77
export const remove: Mutator
88
export const shift: Mutator
99
export const swap: Mutator
10+
export const update: Mutator
1011
export const unshift: Mutator
1112

1213
export interface DefaultType {
@@ -17,6 +18,7 @@ export interface DefaultType {
1718
remove: Mutator
1819
shift: Mutator
1920
swap: Mutator
21+
update: Mutator
2022
unshift: Mutator
2123
}
2224

@@ -32,5 +34,6 @@ export interface Mutators {
3234
remove: (name: string, index: number) => any
3335
shift: (name: string) => any
3436
swap: (name: string, indexA: number, indexB: number) => void
37+
update: (name: string, index: number, value: any) => void
3538
unshift: (name: string, value: any) => void
3639
}

src/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import remove from './remove'
88
import shift from './shift'
99
import swap from './swap'
1010
import unshift from './unshift'
11+
import update from './update'
1112

1213
const mutators: { [string]: Mutator } = {
1314
insert,
@@ -17,6 +18,7 @@ const mutators: { [string]: Mutator } = {
1718
remove,
1819
shift,
1920
swap,
20-
unshift
21+
unshift,
22+
update
2123
}
2224
export default mutators

src/index.js.flow

+1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ export type Mutators = {
1414
remove: (name: string, index: number) => any,
1515
shift: (name: string) => any,
1616
swap: (name: string, indexA: number, indexB: number) => void,
17+
update: (name: string, index: number, value: any) => void,
1718
unshift: (name: string, value: any) => void
1819
}

src/update.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// @flow
2+
import type { MutableState, Mutator, Tools } from 'final-form'
3+
4+
type Args = [string, number, any]
5+
6+
const update: Mutator = (
7+
[name, index, value]: Args,
8+
state: MutableState,
9+
{ changeValue }: Tools
10+
) => {
11+
changeValue(
12+
state,
13+
name,
14+
(array: ?(any[])): any[] => {
15+
const copy = [...(array || [])]
16+
copy.splice(index, 1, value)
17+
return copy
18+
}
19+
)
20+
}
21+
22+
export default update

src/update.test.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import update from './update'
2+
3+
describe('update', () => {
4+
const getOp = (index, value) => {
5+
const changeValue = jest.fn()
6+
update(['foo', index, value], {}, { changeValue })
7+
return changeValue.mock.calls[0][2]
8+
}
9+
10+
it('should call changeValue once', () => {
11+
const changeValue = jest.fn()
12+
const state = {}
13+
const result = update(['foo', 0, 'bar'], state, { changeValue })
14+
expect(result).toBeUndefined()
15+
expect(changeValue).toHaveBeenCalled()
16+
expect(changeValue).toHaveBeenCalledTimes(1)
17+
expect(changeValue.mock.calls[0][0]).toBe(state)
18+
expect(changeValue.mock.calls[0][1]).toBe('foo')
19+
expect(typeof changeValue.mock.calls[0][2]).toBe('function')
20+
})
21+
22+
it('should treat undefined like an empty array', () => {
23+
const op = getOp(0, 'bar')
24+
const result = op(undefined)
25+
expect(Array.isArray(result)).toBe(true)
26+
expect(result.length).toBe(1)
27+
expect(result[0]).toBe('bar')
28+
})
29+
30+
it('should update value of the specified index', () => {
31+
const op = getOp(1, 'd')
32+
const array = ['a', 'b', 'c']
33+
const result = op(array)
34+
expect(result).not.toBe(array) // copied
35+
expect(Array.isArray(result)).toBe(true)
36+
expect(result).toEqual(['a', 'd', 'c'])
37+
})
38+
})

0 commit comments

Comments
 (0)