1
1
import { db } from "@/services/db" ;
2
2
import { answers , questions } from "@/db/schema" ;
3
- import { and , eq , inArray , sql } from "drizzle-orm" ;
3
+ import { and , countDistinct , eq , exists , inArray , sql } from "drizzle-orm" ;
4
4
import { openBrowserAsync } from "expo-web-browser" ;
5
5
import { canOpenURL , openURL } from "expo-linking" ;
6
6
import { answersTodayStore } from "./store" ;
@@ -24,8 +24,8 @@ const getRandomQuestion = async ({
24
24
. where (
25
25
and (
26
26
categoryFilter && inArray ( questions . category , categoryFilter ) ,
27
- levelFilter && inArray ( questions . level , levelFilter ) ,
28
- ) ,
27
+ levelFilter && inArray ( questions . level , levelFilter )
28
+ )
29
29
)
30
30
. orderBy ( sql `random()` )
31
31
. limit ( 1 )
@@ -62,7 +62,7 @@ const lookupQuestion = async (question: Question) => {
62
62
63
63
if ( __DEV__ || ( await canOpenURL ( "shirabelookup://search" ) ) )
64
64
return await openURL (
65
- `shirabelookup://search?w=${ encodeURIComponent ( lookupStr ) } ` ,
65
+ `shirabelookup://search?w=${ encodeURIComponent ( lookupStr ) } `
66
66
) ;
67
67
68
68
// fallback to Jisho
@@ -72,16 +72,58 @@ const lookupQuestion = async (question: Question) => {
72
72
const lookupAnswer = async ( answer : string ) => {
73
73
openBrowserAsync (
74
74
`https://www.google.com/search?q=${ encodeURIComponent (
75
- ( answer || "" ) + " 文法" ,
76
- ) } `,
75
+ ( answer || "" ) + " 文法"
76
+ ) } `
77
77
) ;
78
78
} ;
79
79
80
+ /**
81
+ * Return the statistics of how many questions has been seen at least once
82
+ * in the filtered question list.
83
+ *
84
+ * @param filters { categoryFilter?: QuestionWithAnswers["category"][]; levelFilter?: QuestionWithAnswers["level"][]; } - optional
85
+ */
86
+ const getQuestionSeenState = async ( {
87
+ categoryFilter,
88
+ levelFilter,
89
+ } : {
90
+ categoryFilter ?: QuestionWithAnswers [ "category" ] [ ] ;
91
+ levelFilter ?: QuestionWithAnswers [ "level" ] [ ] ;
92
+ } = { } ) : { seen : number ; total : number } => {
93
+ const [ { seen } ] = await db
94
+ . select ( {
95
+ seen : countDistinct ( questions . id ) ,
96
+ } )
97
+ . from ( questions )
98
+ . where (
99
+ and (
100
+ categoryFilter && inArray ( questions . category , categoryFilter ) ,
101
+ levelFilter && inArray ( questions . level , levelFilter ) ,
102
+ exists (
103
+ db . select ( ) . from ( answers ) . where ( eq ( answers . questionId , questions . id ) )
104
+ )
105
+ )
106
+ ) ;
107
+
108
+ const [ { total } ] = await db
109
+ . select ( { total : countDistinct ( questions . id ) } )
110
+ . from ( questions )
111
+ . where (
112
+ and (
113
+ categoryFilter && inArray ( questions . category , categoryFilter ) ,
114
+ levelFilter && inArray ( questions . level , levelFilter )
115
+ )
116
+ ) ;
117
+
118
+ return { seen, total } ;
119
+ } ;
120
+
80
121
export {
81
- getRandomQuestion ,
82
- getAnswersToday ,
83
122
getAnswers ,
84
- submitAnswer ,
123
+ getAnswersToday ,
124
+ getQuestionSeenState ,
125
+ getRandomQuestion ,
85
126
lookupAnswer ,
86
127
lookupQuestion ,
128
+ submitAnswer ,
87
129
} ;
0 commit comments