-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollectionContext.js
More file actions
36 lines (29 loc) · 983 Bytes
/
CollectionContext.js
File metadata and controls
36 lines (29 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import React, { useState, createContext } from 'react';
import { characters } from './data';
export const CollectionContext = createContext();
export const CollectionProvider = ({ children }) => {
const [collection, setCollection] = useState([]);
const addCharacter = (character) => {
setCollection([...collection, character]);
};
const getCharacter = (id) => {
return characters.find((c) => c.id === id);
};
const levelUp = (id) => {
const index = collection.findIndex((c) => c.id === id);
if (index !== -1) {
const newCollection = [...collection];
const oldCharacter = newCollection[index];
const newCharacter = { ...oldCharacter, level: oldCharacter.level + 1 };
newCollection[index] = newCharacter;
setCollection(newCollection);
}
};
return (
<CollectionContext.Provider
value={{ collection, addCharacter, getCharacter, levelUp }}
>
{children}
</CollectionContext.Provider>
);
};