aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionCardDeckView.tsx
diff options
context:
space:
mode:
authoraidahosa1 <aisosa_idahosa@brown.edu>2024-09-17 13:43:40 -0400
committeraidahosa1 <aisosa_idahosa@brown.edu>2024-09-17 13:43:40 -0400
commit64635a0a0e07a107c4019e366feb2fe5b01c8b04 (patch)
treece6f53c2cd106485a680b17edecf355eed6654f0 /src/client/views/collections/CollectionCardDeckView.tsx
parent597ad3716286e9eff29316605514218889690da5 (diff)
ready to pull
Diffstat (limited to 'src/client/views/collections/CollectionCardDeckView.tsx')
-rw-r--r--src/client/views/collections/CollectionCardDeckView.tsx19
1 files changed, 4 insertions, 15 deletions
diff --git a/src/client/views/collections/CollectionCardDeckView.tsx b/src/client/views/collections/CollectionCardDeckView.tsx
index 3d9f28a49..bb932b8b2 100644
--- a/src/client/views/collections/CollectionCardDeckView.tsx
+++ b/src/client/views/collections/CollectionCardDeckView.tsx
@@ -1,9 +1,9 @@
import { IReactionDisposer, ObservableMap, action, computed, makeObservable, observable, reaction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
-import { ClientUtils, DashColor, returnFalse, returnZero } from '../../../ClientUtils';
-import { emptyFunction, numberRange } from '../../../Utils';
-import { Doc, NumListCast, StrListCast } from '../../../fields/Doc';
+import { ClientUtils, returnFalse, returnZero } from '../../../ClientUtils';
+import { emptyFunction } from '../../../Utils';
+import { Doc, StrListCast } from '../../../fields/Doc';
import { DocData } from '../../../fields/DocSymbols';
import { Id } from '../../../fields/FieldSymbols';
import { BoolCast, Cast, DateCast, NumCast, RTFCast, ScriptCast, StrCast } from '../../../fields/Types';
@@ -144,18 +144,7 @@ export class CollectionCardView extends CollectionSubView() {
* custom group
*/
@computed get childDocsWithoutLinks() {
- const regularDocs = this.childDocs.filter(l => l.type !== DocumentType.LINK);
- const activeGroups = StrListCast(this.Document.cardSort_visibleSortGroups);
-
- if (activeGroups.length > 0) {
- return regularDocs.filter(doc => {
- const activeTags = StrListCast(doc.cardSort_activeIcons);
- return activeTags !== undefined && activeTags.some(tag => activeGroups.includes(tag));
- });
- }
-
- // Default return for non-custom cardSort or other cases, filtering out links
- return regularDocs;
+ return this.childDocs.filter(l => l.type !== DocumentType.LINK);
}
/**