[FIX] Group stats showing extra incorrect answers
From sets not part of the group, when "all sets" is selected
This commit is contained in:
@@ -107,8 +107,9 @@ export default withRouter(class GroupStats extends Component {
|
|||||||
.get()
|
.get()
|
||||||
.then((querySnapshot) => {
|
.then((querySnapshot) => {
|
||||||
let incorrectAnswers = [];
|
let incorrectAnswers = [];
|
||||||
querySnapshot.docs.map((doc, index, array) => {
|
querySnapshot.docs
|
||||||
if (doc.data().setIds.some(item => groupSetIds.includes(item))) {
|
.filter((doc) => doc.data().setIds.some(item => groupSetIds.includes(item)))
|
||||||
|
.map((doc, index, array) => {
|
||||||
if (index === 0 || doc.data().term !== array[index - 1].data().term || doc.data().definition !== array[index - 1].data().definition) {
|
if (index === 0 || doc.data().term !== array[index - 1].data().term || doc.data().definition !== array[index - 1].data().definition) {
|
||||||
incorrectAnswers.push({
|
incorrectAnswers.push({
|
||||||
term: doc.data().term,
|
term: doc.data().term,
|
||||||
@@ -143,8 +144,6 @@ export default withRouter(class GroupStats extends Component {
|
|||||||
doc.data().setIds.map((setId) => newState.setsWithHistory[setId] = true);
|
doc.data().setIds.map((setId) => newState.setsWithHistory[setId] = true);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
|
||||||
return false;
|
|
||||||
});
|
});
|
||||||
newState.incorrectAnswers = incorrectAnswers.sort((a, b) => b.count + b.switchedCount - a.count - a.switchedCount);
|
newState.incorrectAnswers = incorrectAnswers.sort((a, b) => b.count + b.switchedCount - a.count - a.switchedCount);
|
||||||
newState.filteredIncorrectAnswers = newState.incorrectAnswers;
|
newState.filteredIncorrectAnswers = newState.incorrectAnswers;
|
||||||
|
|||||||
Reference in New Issue
Block a user