質問編集履歴
4
タイトルの変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
reactを使ったtodoアプリに
|
1
|
+
reactを使ったtodoアプリにてチェックボックスをチェック後、ボタンをクリックしてチェックされた箇所を削除したい!
|
test
CHANGED
File without changes
|
3
タグの更新
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
2
ソースコードの変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,6 +10,8 @@
|
|
10
10
|
|
11
11
|
### 該当のソースコード
|
12
12
|
|
13
|
+
```ここに言語を入力
|
14
|
+
|
13
15
|
import React, { useState } from 'react';
|
14
16
|
|
15
17
|
import { makeStyles } from '@material-ui/core/styles';
|
@@ -359,3 +361,7 @@
|
|
359
361
|
|
360
362
|
|
361
363
|
export default StickyTable;
|
364
|
+
|
365
|
+
コード
|
366
|
+
|
367
|
+
```
|
1
ソースコードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
現在reactでtodo形式の単語登録アプリを作成しています。
|
4
4
|
|
5
|
-
チェックボックスでチェックしたら該当箇所を削除したいのですが、できません。
|
5
|
+
チェックボックスでチェックした後に、削除ボタンを押したら該当箇所を削除したいのですが、できません。
|
6
6
|
|
7
7
|
かれこれ一カ月試行錯誤しましたができませんでした。
|
8
8
|
|
@@ -10,12 +10,6 @@
|
|
10
10
|
|
11
11
|
### 該当のソースコード
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
```ここに言語名を入力 react
|
16
|
-
|
17
|
-
|
18
|
-
|
19
13
|
import React, { useState } from 'react';
|
20
14
|
|
21
15
|
import { makeStyles } from '@material-ui/core/styles';
|
@@ -108,11 +102,11 @@
|
|
108
102
|
|
109
103
|
const [words, setWord] = useState([]),
|
110
104
|
|
111
|
-
[newWord, setNewWord] = useState('')
|
105
|
+
[newWord, setNewWord] = useState(''),
|
112
|
-
|
106
|
+
|
113
|
-
|
107
|
+
[meanings, setMeaning] = useState([]),
|
114
|
-
|
108
|
+
|
115
|
-
|
109
|
+
[newMeaning, setNewMeaning] = useState('');
|
116
110
|
|
117
111
|
|
118
112
|
|
@@ -122,53 +116,53 @@
|
|
122
116
|
|
123
117
|
}
|
124
118
|
|
125
|
-
|
119
|
+
const handleNewMeaning = (e) => {
|
126
|
-
|
120
|
+
|
127
|
-
|
121
|
+
setNewMeaning(e.target.value);
|
128
|
-
|
122
|
+
|
129
|
-
|
123
|
+
};
|
130
|
-
|
131
|
-
|
132
|
-
|
124
|
+
|
125
|
+
|
126
|
+
|
133
|
-
|
127
|
+
const koko = () => {
|
134
|
-
|
128
|
+
|
135
|
-
|
129
|
+
if(words && newWord === '' || newMeaning === '') {
|
136
|
-
|
130
|
+
|
137
|
-
|
131
|
+
alert('単語と意味の両方を入力してください。');
|
138
|
-
|
132
|
+
|
139
|
-
|
133
|
+
setNewWord('');
|
140
|
-
|
134
|
+
|
141
|
-
|
135
|
+
setNewMeaning('');
|
142
|
-
|
136
|
+
|
143
|
-
|
137
|
+
return;
|
144
|
-
|
138
|
+
|
145
|
-
|
139
|
+
} else if(newWord.match(/[^A-Za-z0-9]+/)) {
|
146
|
-
|
140
|
+
|
147
|
-
|
141
|
+
alert('英語で入力してください。');
|
148
|
-
|
142
|
+
|
149
|
-
|
143
|
+
setNewWord('');
|
150
|
-
|
144
|
+
|
151
|
-
|
145
|
+
setNewMeaning('');
|
152
|
-
|
146
|
+
|
153
|
-
|
147
|
+
return;
|
154
|
-
|
148
|
+
|
155
|
-
|
149
|
+
} else {
|
156
|
-
|
150
|
+
|
157
|
-
|
151
|
+
handleAddWord();
|
158
|
-
|
152
|
+
|
159
|
-
|
153
|
+
handleAddMeaning();
|
160
|
-
|
161
|
-
|
154
|
+
|
162
|
-
|
163
|
-
|
155
|
+
}
|
156
|
+
|
164
|
-
|
157
|
+
}
|
165
|
-
|
166
|
-
|
158
|
+
|
159
|
+
|
160
|
+
|
167
|
-
|
161
|
+
const onClickAdd = () => {
|
168
|
-
|
162
|
+
|
169
|
-
|
163
|
+
koko();
|
170
|
-
|
164
|
+
|
171
|
-
|
165
|
+
}
|
172
166
|
|
173
167
|
|
174
168
|
|
@@ -190,91 +184,91 @@
|
|
190
184
|
|
191
185
|
|
192
186
|
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
187
|
+
const handleAddMeaning = () => {
|
188
|
+
|
189
|
+
// e.preventDefault()
|
190
|
+
|
191
|
+
// const id = meanings.length ? meanings[meanings.length - 1].id + 1 : 0;
|
192
|
+
|
193
|
+
setMeaning([...meanings, {
|
194
|
+
|
195
|
+
id: Date.now(), content: newMeaning, isCompleted: false
|
196
|
+
|
197
|
+
}])
|
198
|
+
|
199
|
+
setNewMeaning('');
|
200
|
+
|
201
|
+
}
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
const handleDeleteWord = (id) => {
|
206
|
+
|
207
|
+
// const id = words.length ? words[words.length - 1].id + 1 : 0;
|
208
|
+
|
209
|
+
setWord(words.filter((word) => word.id !== id));
|
210
|
+
|
211
|
+
}
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
const handleDeleteMeaning = (id) => {
|
216
|
+
|
217
|
+
setMeaning(meanings.filter((meaning) => meaning.id !== id));
|
218
|
+
|
219
|
+
}
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
const onClickDelete = () => {
|
224
|
+
|
225
|
+
handleDeleteWord();
|
226
|
+
|
227
|
+
handleDeleteMeaning();
|
228
|
+
|
229
|
+
}
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
const toggleDeleteWord = (id) => {
|
234
|
+
|
235
|
+
setWord(words.map(word => {
|
236
|
+
|
237
|
+
if (word.id === id) {
|
238
|
+
|
239
|
+
return {...word, isCompleted: !word.isCompleted}
|
240
|
+
|
241
|
+
}
|
242
|
+
|
243
|
+
return word
|
244
|
+
|
245
|
+
}))
|
246
|
+
|
247
|
+
}
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
const toggleDeleteMeaning = (id) => {
|
252
|
+
|
253
|
+
setMeaning(meanings.filter(meaning => {
|
254
|
+
|
255
|
+
if (meaning.id === id) meaning.isCompleted = !meaning.isCompleted
|
256
|
+
|
257
|
+
return meaning
|
258
|
+
|
259
|
+
}))
|
260
|
+
|
261
|
+
}
|
262
|
+
|
263
|
+
|
264
|
+
|
265
|
+
const toggleDelete = (id) => {
|
266
|
+
|
267
|
+
toggleDeleteWord(id);
|
268
|
+
|
269
|
+
toggleDeleteMeaning();
|
270
|
+
|
271
|
+
}
|
278
272
|
|
279
273
|
|
280
274
|
|
@@ -288,19 +282,19 @@
|
|
288
282
|
|
289
283
|
<TextField label='単語' value={newWord} onChange={handleNewWord}/>
|
290
284
|
|
291
|
-
<TextField label='意味' value={new
|
285
|
+
<TextField label='意味' value={newMeaning} onChange={handleNewMeaning}/>
|
292
|
-
|
286
|
+
|
293
|
-
<button type='button' onClick={
|
287
|
+
<button type='button' onClick={onClickAdd}>
|
294
288
|
|
295
289
|
登録する
|
296
290
|
|
297
291
|
</button>
|
298
292
|
|
299
|
-
|
293
|
+
<button onClick={onClickDelete}>
|
300
294
|
|
301
295
|
削除
|
302
296
|
|
303
|
-
</button>
|
297
|
+
</button>
|
304
298
|
|
305
299
|
</form>
|
306
300
|
|
@@ -312,7 +306,7 @@
|
|
312
306
|
|
313
307
|
<ListItem key={id} component='li' className={classes.item}>
|
314
308
|
|
315
|
-
|
309
|
+
<Checkbox
|
316
310
|
|
317
311
|
color="primary"
|
318
312
|
|
@@ -322,7 +316,7 @@
|
|
322
316
|
|
323
317
|
defaultChecked={word.isCompleted}
|
324
318
|
|
325
|
-
/>
|
319
|
+
/>
|
326
320
|
|
327
321
|
{word.item}
|
328
322
|
|
@@ -332,7 +326,7 @@
|
|
332
326
|
|
333
327
|
</List>
|
334
328
|
|
335
|
-
|
329
|
+
<List component='ol' className={classes.list}>
|
336
330
|
|
337
331
|
{meanings.map((meaning, id) => (
|
338
332
|
|
@@ -346,16 +340,6 @@
|
|
346
340
|
|
347
341
|
</List>
|
348
342
|
|
349
|
-
<List>
|
350
|
-
|
351
|
-
<button onClick={onClickDelete}>
|
352
|
-
|
353
|
-
削除
|
354
|
-
|
355
|
-
</button>
|
356
|
-
|
357
|
-
</List> */}
|
358
|
-
|
359
343
|
{/* <div>
|
360
344
|
|
361
345
|
// {items.length} items
|
@@ -375,23 +359,3 @@
|
|
375
359
|
|
376
360
|
|
377
361
|
export default StickyTable;
|
378
|
-
|
379
|
-
ソースコード
|
380
|
-
|
381
|
-
```
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
### 試したこと
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
ここに問題に対して試したことを記載してください。
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
### 補足情報(FW/ツールのバージョンなど)
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
ここにより詳細な情報を記載してください。
|