Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/0010aor/FlashNotes
/ functions
Functions
539 in github.com/0010aor/FlashNotes
⨍
Functions
539
◇
Types & classes
158
↳
Endpoints
22
Function
GuestModeNotice
()
frontend/src/components/commonUI/GuestModeNotice.tsx:7
Function
LandingPage
()
frontend/src/routes/_publicLayout/index.tsx:13
Function
LanguageAvatar
({ language, onClick }: { language: Language; onClick?: () => void })
frontend/src/components/commonUI/LanguageSelector.tsx:32
Function
LanguageSelector
({ placement = 'bottom' }: LanguageSelectorProps)
frontend/src/components/commonUI/LanguageSelector.tsx:44
Function
Layout
()
frontend/src/routes/_layout.tsx:21
Function
ListSkeleton
({ count = 7 })
frontend/src/components/commonUI/ListSkeleton.tsx:4
Function
LoadingState
({ message = '' }: LoadingStateProps)
frontend/src/components/commonUI/LoadingState.tsx:8
Function
Login
()
frontend/src/routes/_publicLayout/login.tsx:27
Function
MasteryDonutChart
({ recentSessions, collectionInfo, title }: MasteryDonutChartProps)
frontend/src/components/stats/MasteryDonutChart.tsx:19
Function
MostFailedCards
({ cards, title }: MostFailedCardsProps)
frontend/src/components/stats/MostFailedCards.tsx:23
Function
Navbar
()
frontend/src/components/commonUI/Navbar.tsx:10
Function
NewCard
()
frontend/src/routes/_layout/collections/$collectionId/cards/new.tsx:12
Function
PerformanceChart
({ sessions, title }: PerformanceChartProps)
frontend/src/components/stats/PerformanceChart.tsx:27
Function
PracticeBarChart
({ sessions, title }: PracticeBarChartProps)
frontend/src/components/stats/PracticeBarChart.tsx:28
Function
PracticeComplete
({ stats, onReset }: PracticeCompleteProps)
frontend/src/components/practice/PracticeComplete.tsx:20
Function
PracticeComponent
()
frontend/src/routes/_layout/collections/$collectionId/practice.tsx:16
Function
PracticeControls
({ isFlipped, onAnswer }: PracticeControlsProps)
frontend/src/components/practice/PracticeControls.tsx:10
Function
PracticeHeader
({ cardId, progress, collectionId }: PracticeHeaderProps)
frontend/src/components/practice/PracticeHeader.tsx:18
Function
PublicLayout
()
frontend/src/routes/_publicLayout.tsx:9
Function
RichTextContent
({ content, isVisible = true }: RichTextContentProps)
frontend/src/components/commonUI/RichText/RichTextContent.tsx:13
Function
RichTextEditor
({ editor }: RichTextEditorProps)
frontend/src/components/commonUI/RichText/RichTextEditor.tsx:11
Method
SQLALCHEMY_DATABASE_URI
(self)
backend/src/core/config.py:51
Function
ScrollableContainer
({ children, ...props }: ScrollableContainerProps)
frontend/src/components/commonUI/ScrollableContainer.tsx:6
Function
SignUp
()
frontend/src/routes/_publicLayout/signup.tsx:31
Function
SpeedDial
({ actions, mainButtonBgColor = 'fbuttons.blue', isLoading = false, })
frontend/src/components/commonUI/SpeedDial.tsx:39
Function
StatCard
({ label, value, helpText, tooltip, valueColor }: StatCardProps)
frontend/src/components/stats/StatsSummaryGrid.tsx:15
Function
StatsGrids
({ stats }: StatsGridsProps)
frontend/src/components/stats/StatsGrids.tsx:13
Function
StatsPage
()
frontend/src/routes/_layout/collections/$collectionId/stats.tsx:17
Function
StatsSummaryGrid
({ collectionInfo, recentSessions }: StatsSummaryGridProps)
frontend/src/components/stats/StatsSummaryGrid.tsx:43
Function
TextCounter
({ textLength }: TextCounterProps)
frontend/src/components/commonUI/TextCounter.tsx:16
Function
ThanksPage
()
frontend/src/routes/_publicLayout/thanks.tsx:57
Function
Toaster
()
frontend/src/components/ui/toaster.tsx:17
Method
[Symbol.toStringTag]
()
frontend/src/client/core/CancelablePromise.ts:83
Method
__init__
Initialize the Gemini provider with the specified model.
backend/src/ai_models/gemini/provider.py:17
Function
_create
(user_id, num_cards=5, num_sessions=10)
backend/tests/stats/test_api.py:16
Method
_enforce_non_default_secrets
(self)
backend/src/core/config.py:90
Function
addAiCard
(prompt: string)
frontend/src/routes/_layout/collections/$collectionId/index.tsx:53
Function
addAiCollection
(prompt: string)
frontend/src/routes/_layout/collections/index.tsx:55
Function
addCollection
(name: string)
frontend/src/routes/_layout/collections/index.tsx:44
Function
addLocalCard
( collectionId: string, front: string, back: string, )
frontend/src/data/localDB/cards.ts:16
Function
addLocalCollection
( name: string, prompt?: string | null, )
frontend/src/data/localDB/collections.ts:4
Method
ai_models_enabled
(self)
backend/src/core/config.py:75
Method
cancel
()
frontend/src/client/core/CancelablePromise.ts:104
Method
catch
( onRejected?: ((reason: unknown) => TResult | PromiseLike<TResult>) | null, )
frontend/src/client/core/CancelablePromise.ts:94
Function
client
()
backend/tests/conftest.py:35
Function
collection_with_sessions
(db, test_user: dict[str, Any])
backend/tests/stats/test_services.py:41
Method
constructor
(request: ApiRequestOptions, response: ApiResult, message: string)
frontend/src/client/core/ApiError.ts:11
Method
constructor
()
frontend/src/client/core/OpenAPI.ts:11
Method
constructor
(message: string)
frontend/src/client/core/CancelablePromise.ts:2
Method
constructor
( executor: ( resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: unknown) => void
frontend/src/client/core/CancelablePromise.ts:29
Method
constructor
()
frontend/src/db/flashcardsDB.ts:52
Method
create
(data: CollectionCreate)
frontend/src/repositories/collection/LocalCollectionRepository.ts:51
Method
create
(data: CollectionCreate)
frontend/src/repositories/collection/CollectionRepository.ts:6
Method
create
(data: CollectionCreate)
frontend/src/repositories/collection/ApiCollectionRepository.ts:19
Method
create
(collectionId: string, data: CardCreate)
frontend/src/repositories/card/LocalCardRepository.ts:30
Method
create
(collectionId: string, data: CardCreate)
frontend/src/repositories/card/ApiCardRepository.ts:19
Function
create_card
( session: SessionDep, current_user: CurrentUser, collection_id: uuid.UUID, card_in: CardCreat
backend/src/flashcards/api.py:140
Function
create_collection
( session: SessionDep, current_user: CurrentUser, collection_in: CollectionCreate, provider: G
backend/src/flashcards/api.py:45
Function
custom_generate_unique_id
(route: APIRoute)
backend/src/main.py:10
Function
db
()
backend/tests/conftest.py:17
Method
delete
(id: string)
frontend/src/repositories/collection/LocalCollectionRepository.ts:64
Method
delete
(id: string)
frontend/src/repositories/collection/CollectionRepository.ts:8
Method
delete
(id: string)
frontend/src/repositories/collection/ApiCollectionRepository.ts:27
Method
delete
(_collectionId: string, id: string)
frontend/src/repositories/card/LocalCardRepository.ts:44
Method
delete
(collectionId: string, id: string)
frontend/src/repositories/card/ApiCardRepository.ts:27
Function
deleteCollection
(id: string)
frontend/src/services/collections.ts:23
Function
deleteLocalCard
(id: string)
frontend/src/data/localDB/cards.ts:77
Function
deleteLocalCollection
(id: string)
frontend/src/data/localDB/collections.ts:43
Function
delete_card
( session: SessionDep, current_user: CurrentUser, collection_id: uuid.UUID, card_id: uuid.UUID
backend/src/flashcards/api.py:207
Function
delete_collection
( session: SessionDep, current_user: CurrentUser, collection_id: uuid.UUID )
backend/src/flashcards/api.py:111
Function
downgrade
()
backend/src/alembic/versions/cb7e65c8085b_add_user_cascade_delete_relationships.py:54
Function
downgrade
()
backend/src/alembic/versions/cb16ae472c1e_.py:26
Function
downgrade
()
backend/src/alembic/versions/4efa50e00bd4_add_indexes_to_foreign_keys_and_.py:29
Function
downgrade
()
backend/src/alembic/versions/a4ee77cd028b_practice_sessions.py:51
Function
downgrade
()
backend/src/alembic/versions/d1ea38d75310_add_ai_usage_quota_tables.py:30
Function
downgrade
()
backend/src/alembic/versions/c8f918b058c6_.py:55
Method
eject
(fn: Middleware<T>)
frontend/src/client/core/OpenAPI.ts:15
Method
finally
(onFinally?: (() => void) | null)
frontend/src/client/core/CancelablePromise.ts:100
Method
getAll
()
frontend/src/repositories/collection/LocalCollectionRepository.ts:26
Method
getAll
()
frontend/src/repositories/collection/CollectionRepository.ts:4
Method
getAll
()
frontend/src/repositories/collection/ApiCollectionRepository.ts:6
Method
getAll
(collectionId: string)
frontend/src/repositories/card/LocalCardRepository.ts:16
Method
getAll
(collectionId: string)
frontend/src/repositories/card/ApiCardRepository.ts:6
Method
getById
(id: string)
frontend/src/repositories/collection/LocalCollectionRepository.ts:40
Method
getById
(id: string)
frontend/src/repositories/collection/CollectionRepository.ts:5
Method
getById
(id: string)
frontend/src/repositories/collection/ApiCollectionRepository.ts:11
Method
getById
(_collectionId: string, id: string)
frontend/src/repositories/card/LocalCardRepository.ts:21
Method
getById
(collectionId: string, id: string)
frontend/src/repositories/card/ApiCardRepository.ts:11
Function
getCollectionById
(id: string)
frontend/src/services/collections.ts:11
Method
getCollectionStats
(collectionId: string, limit = 30)
frontend/src/repositories/stats/ApiStatsRepository.ts:6
Method
getCollectionStats
(collectionId: string, _limit = 30)
frontend/src/repositories/stats/LocalStatsRepository.ts:6
Function
getCollections
()
frontend/src/services/collections.ts:7
Function
getLocalCardById
(id: string)
frontend/src/data/localDB/cards.ts:53
Function
getLocalCardsForCollection
( collectionId: string, limit?: number, )
frontend/src/data/localDB/cards.ts:39
Function
getLocalCardsForCollections
( collectionIds: string[], )
frontend/src/data/localDB/cards.ts:88
Function
getLocalCollectionById
(id: string)
frontend/src/data/localDB/collections.ts:24
Function
getLocalCollections
()
frontend/src/data/localDB/collections.ts:20
Function
getLocalPracticeCardsForSession
(sessionId: string)
frontend/src/data/localDB/practiceSessions.ts:88
Function
getLocalPracticeSessions
( collectionId: string, limit?: number, )
frontend/src/data/localDB/practiceSessions.ts:6
Method
getMyAiUsageQuota
* Get My Ai Usage Quota * @returns AIUsageQuota Successful Response * @throws ApiError
frontend/src/client/sdk.gen.ts:512
← previous
next →
201–300 of 539, ranked by callers