MCPcopy Create free account

hub / github.com/Hazrat-Ali9/Personal-Blog-Frontend / functions

Functions82 in github.com/Hazrat-Ali9/Personal-Blog-Frontend

↓ 4 callersFunctiongetUserByEmail
(email: string)
lib/firebase/user.ts:44
↓ 3 callersFunctiongetAllBlogs
()
lib/firebase/blogs.ts:67
↓ 3 callersFunctiongetSingleBlog
(blogId: string)
lib/firebase/blogs.ts:105
↓ 2 callersFunctionaddUser
(data: any)
lib/firebase/user.ts:16
↓ 2 callersFunctiongetBlogs
(max?: number, lastDoc?: any)
lib/firebase/blogs.ts:32
↓ 2 callersFunctiongetSingleComment
(commentId: string)
lib/firebase/comment.ts:63
↓ 1 callersFunctionaddBlog
(data: any)
lib/firebase/blogs.ts:19
↓ 1 callersFunctionaddComment
(data: any)
lib/firebase/comment.ts:16
↓ 1 callersFunctiondeleteArticle
()
app/admin/articles/_UI/ArticleCard.tsx:17
↓ 1 callersFunctiondeleteBlog
(blogId: string)
lib/firebase/blogs.ts:152
↓ 1 callersFunctionfetchBlog
()
app/admin/articles/[id]/page.tsx:23
↓ 1 callersFunctionforgotPassword
(email: string)
lib/firebase/authService.ts:67
↓ 1 callersFunctiongetAllByCategory
(category: string)
lib/firebase/blogs.ts:129
↓ 1 callersFunctiongetAllUsers
()
lib/firebase/user.ts:25
↓ 1 callersFunctiongetCommentByPostId
(postId: string)
lib/firebase/comment.ts:43
↓ 1 callersFunctiongoogleLogin
()
lib/firebase/authService.ts:77
↓ 1 callersFunctionlikeOnComment
(commentId: string, userId: string)
lib/firebase/comment.ts:80
↓ 1 callersFunctionlogin
()
app/auth/Social.tsx:6
↓ 1 callersFunctionlogout
()
lib/firebase/authService.ts:103
↓ 1 callersFunctionreplyComment
(commentId: string, data: any)
lib/firebase/comment.ts:106
↓ 1 callersFunctionsignIn
(email: string, password: string)
lib/firebase/authService.ts:57
↓ 1 callersFunctionsignUp
(email: string, password: string, name: string)
lib/firebase/authService.ts:26
↓ 1 callersFunctionupdateBlog
(blogId: string, data: any)
lib/firebase/blogs.ts:144
↓ 1 callersFunctionupdateComment
(commentId: string, data: any)
lib/firebase/comment.ts:124
↓ 1 callersFunctionupdateUser
(uid: string, data: any)
lib/firebase/user.ts:55
FunctionApp
()
app/page.tsx:11
FunctionArticleCard
({ post }: { post: PostType })
components/ArticleCard.tsx:9
FunctionArticleCard
({ post, setReload, }: { post: PostType; setReload: any; })
app/admin/articles/_UI/ArticleCard.tsx:10
FunctionArticleHeader
({ title, author, date, user, readingTime, category, tags, }: ArticleHeaderProps)
app/[pid]/_UI/ArticleHeader.tsx:25
FunctionBlogWriter
({ content, setContent, }: Readonly<{ content: string; setContent: React.Dispatch<React.SetStateAction
app/admin/articles/_UI/BlogWriter.tsx:4
FunctionBreadCrumb
({ results, query }: { results: number; query: string })
app/search/_UI/BreadCrumb.tsx:6
FunctionBreadCrumb
({ category: ctg }: { category: Category })
app/category/_UI/BreadCrumb.tsx:6
FunctionCategoryCard
({ category }: { category: Category })
app/category/_UI/CategoryCard.tsx:7
FunctionCommentComponent
({ comment, depth = 0, post, reloadComments, isReply, mainComment, }: { comment: CommentType;
app/[pid]/_UI/CommentCard.tsx:13
FunctionCommentForm
({ post, targetComment, reloadComments, mainComment, }: { post: PostType; targetComment?: CommentT
app/[pid]/_UI/CommentForm.tsx:9
FunctionCommentSection
({ post }: { post: PostType })
app/[pid]/_UI/CommentSection.tsx:34
FunctionExample
()
app/auth/forgot/page.tsx:7
FunctionExample
()
app/auth/login/page.tsx:7
FunctionFooter
()
components/Footer/Footer.tsx:5
FunctionLayout
({ children }: { children: React.ReactNode })
app/admin/layout.tsx:8
FunctionMenus
()
components/Navbar.tsx:41
FunctionNavbar
()
components/Navbar.tsx:12
FunctionPOST
(req: NextRequest)
app/api/send-email/route.ts:4
FunctionPage
()
app/search/page.tsx:47
FunctionPage
()
app/admin/users/page.tsx:7
FunctionPage
()
app/admin/articles/page.tsx:6
FunctionPage
()
app/admin/articles/write/page.tsx:13
FunctionPage
({ params }: { params: { id: string } })
app/admin/articles/[id]/page.tsx:13
FunctionPrivacyPage
()
app/privacy/page.tsx:7
FunctionReacentPostcard
({ post }: { post: PostType })
components/Sidebar/RecentArticle.tsx:33
FunctionRecentArticle
()
components/Sidebar/RecentArticle.tsx:7
FunctionRootLayout
({ children, }: Readonly<{ children: React.ReactNode; }>)
app/layout.tsx:52
FunctionSearchBar
()
components/SearchBar.tsx:6
FunctionSearchPage
()
app/search/page.tsx:13
FunctionSidebar
()
components/Sidebar/Sidebar.tsx:11
FunctionSingUp
()
app/auth/signup/page.tsx:8
FunctionSingleArticle
({ params }: { params: { pid: string } })
app/[pid]/page.tsx:42
FunctionSocial
()
app/auth/Social.tsx:5
FunctionTermsPage
()
app/terms/page.tsx:7
FunctionUpdateUser
({ record }: { record: any })
app/admin/users/_UI/UpdateUser.tsx:6
FunctiongenerateMetadata
({ params, }: { params: { pid: string }; })
app/[pid]/page.tsx:7
FunctiongenerateMetadata
({ params, }: { params: { slug: string }; })
app/category/[slug]/page.tsx:10
FunctiongetComments
()
lib/firebase/comment.ts:29
FunctiongetLoggedInUser
()
lib/firebase/authService.ts:13
FunctiongetUser
(uid: string)
lib/firebase/user.ts:38
FunctionhandleLogin
(e: any)
app/auth/signup/page.tsx:9
FunctionhandleLogin
(e: any)
app/auth/login/page.tsx:8
FunctionhandleReset
(e: any)
app/auth/forgot/page.tsx:8
FunctionhandleSubmit
(e: React.FormEvent)
app/[pid]/_UI/CommentForm.tsx:22
FunctionhandleSubmit
()
app/admin/articles/write/page.tsx:20
FunctionhandleSubmit
()
app/admin/articles/[id]/page.tsx:38
Functionheaders
()
next.config.ts:12
Functionlayout
({ children }: { children: React.ReactNode })
app/auth/layout.tsx:6
FunctionlikeComment
()
app/[pid]/_UI/CommentCard.tsx:30
FunctiononFinish
(values: any)
app/admin/users/_UI/UpdateUser.tsx:8
FunctiononSubmit
(e: React.FormEvent<HTMLFormElement>)
app/contact/page.tsx:6
Functionpage
()
app/contact/page.tsx:5
Functionpage
()
app/achievement/page.tsx:7
Functionpage
()
app/category/page.tsx:8
Functionpage
({ params }: { params: { slug: string } })
app/category/[slug]/page.tsx:48
Functionpage
()
app/about/page.tsx:4
Functionpage
()
app/articles/page.tsx:11