├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── app ├── [id] │ ├── _actions │ │ └── actions.ts │ ├── bookmark │ │ ├── _actions │ │ │ └── actions.ts │ │ └── page.tsx │ ├── followers │ │ └── page.tsx │ ├── following │ │ └── page.tsx │ ├── layout.tsx │ └── page.tsx ├── _actions │ └── actions.ts ├── about │ ├── layout.tsx │ ├── page.tsx │ └── privacy │ │ ├── layout.tsx │ │ └── page.tsx ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── category │ │ └── route.ts │ ├── cron │ │ ├── route.ts │ │ ├── updateQiita │ │ │ └── route.ts │ │ └── updateZenn │ │ │ └── route.ts │ ├── cronFeeds │ │ └── route.ts │ ├── feeds │ │ └── following │ │ │ └── [id] │ │ │ └── route.ts │ ├── follow │ │ └── category │ │ │ └── route.ts │ ├── like │ │ └── [userId] │ │ │ └── route.ts │ ├── ogp │ │ └── route.ts │ ├── ok │ │ └── route.ts │ ├── post │ │ ├── feeds │ │ │ ├── [id] │ │ │ │ ├── articles │ │ │ │ │ └── route.ts │ │ │ │ └── info │ │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── followingCategory │ │ │ └── route.ts │ │ ├── followingFeed │ │ │ └── [userId] │ │ │ │ └── route.ts │ │ └── route.ts │ ├── search │ │ └── route.ts │ ├── trends │ │ └── route.ts │ ├── user │ │ └── route.ts │ ├── userPost │ │ └── route.ts │ ├── v2 │ │ └── [id] │ │ │ └── bookmark │ │ │ └── route.tsx │ └── view │ │ └── route.ts ├── entry │ ├── [url] │ │ ├── _actions │ │ │ └── actions.ts │ │ ├── layout.tsx │ │ └── page.tsx │ └── page.tsx ├── feeds │ ├── [id] │ │ ├── layout.tsx │ │ └── page.tsx │ ├── create │ │ ├── _action │ │ │ └── actions.ts │ │ └── page.tsx │ ├── following │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── list │ │ ├── [page] │ │ │ └── page.tsx │ │ └── _action │ │ │ └── actions.ts │ └── page.tsx ├── globals.css ├── latest │ ├── category │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ └── page.tsx ├── layout.tsx ├── login │ ├── layout.tsx │ └── page.tsx ├── logout │ ├── layout.tsx │ └── page.tsx ├── mypage │ ├── category │ │ ├── layout.tsx │ │ └── page.tsx │ ├── createPost │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ └── updatePost │ │ └── [id] │ │ ├── layout.tsx │ │ └── page.tsx ├── not-found.tsx ├── page.tsx ├── search │ ├── layout.tsx │ └── page.tsx ├── settings │ ├── account │ │ └── page.tsx │ ├── layout.tsx │ └── profile │ │ ├── action.ts │ │ └── page.tsx ├── timeline │ ├── _actions │ │ └── actions.ts │ ├── layout.tsx │ └── page.tsx ├── user │ └── create │ │ ├── [sub] │ │ ├── layout.tsx │ │ └── page.tsx │ │ └── _actions │ │ └── actions.ts └── withdrawal │ ├── layout.tsx │ └── page.tsx ├── components ├── LinkButton │ ├── FeedListLink.tsx │ └── SettingProfileLink.tsx ├── about │ ├── CatAnimation.tsx │ ├── Hero.tsx │ ├── Recruit.tsx │ └── Works.tsx ├── auth │ ├── LoginButton.tsx │ ├── LogoutButton.tsx │ └── WithdrawalButton.tsx ├── category │ ├── Categories.tsx │ └── CategoryItem.tsx ├── entry │ ├── AddCommentButton.tsx │ ├── BookmarkButton.tsx │ ├── Comment.tsx │ ├── CommentInput.tsx │ ├── CommentItem.tsx │ ├── CommentTitle.tsx │ ├── CreateEntry.tsx │ ├── CreateEntryButton.tsx │ ├── EntryInfo.tsx │ ├── EntryItem.tsx │ ├── EntryLink.tsx │ ├── MoreMenu.tsx │ └── MoreMenuButton.tsx ├── error │ ├── ErrorComponent.tsx │ └── NoContent.tsx ├── feeds │ ├── create │ │ ├── Input.tsx │ │ └── SubmitButton.tsx │ └── list │ │ ├── FeedItem.tsx │ │ ├── FeedLists.tsx │ │ ├── FollowFeedButton.tsx │ │ ├── PageNation.tsx │ │ └── TitleSection.tsx ├── icons │ ├── Hatena.tsx │ ├── Note.tsx │ ├── Qiita.tsx │ ├── Sizuka.tsx │ └── Zenn.tsx ├── latest │ └── TitleSection.tsx ├── layout │ ├── Footer.tsx │ ├── Header.tsx │ ├── LayoutComponent.tsx │ ├── LayoutTitle.tsx │ ├── Loading.tsx │ ├── Logo.tsx │ ├── NavLeft.tsx │ ├── NavRight.tsx │ ├── QuestionButton.tsx │ ├── Tab.tsx │ ├── UserIcon.tsx │ └── WrapContainer.tsx ├── mypage │ ├── FollowButton.tsx │ ├── Following.tsx │ ├── Profile.tsx │ ├── SnsList.tsx │ ├── createPost │ │ ├── CheckAnimation.tsx │ │ ├── Inputs.tsx │ │ └── Modal.tsx │ ├── follow │ │ ├── FollowItem.tsx │ │ └── FollowList.tsx │ └── updatePost │ │ └── Inputs.tsx ├── provider │ ├── ClientProvider.tsx │ ├── actions │ │ └── actions.ts │ ├── authProvider.tsx │ └── jotaiProvider.tsx ├── scroll │ ├── ScrollDetect.tsx │ └── ScrollDetection.tsx ├── search │ ├── Input.tsx │ ├── SearchList.tsx │ └── Spinner.tsx ├── settings │ ├── ImageInput.tsx │ ├── ProfileInput.tsx │ ├── SettingTab.tsx │ └── SubmitButton.tsx ├── skelton │ ├── ContentSkelton.tsx │ ├── ImageSkelton.tsx │ └── SkeltonContainer.tsx ├── tech │ ├── BookmarkButton.tsx │ ├── PostItem.tsx │ ├── PostLink.tsx │ └── Posts.tsx ├── timeline │ ├── ActivityItem.tsx │ ├── Article.tsx │ ├── BookmarkActivity.tsx │ ├── CommentActivity.tsx │ ├── FollowActivity.tsx │ └── FollowingActivityList.tsx ├── user │ ├── UserTab.tsx │ ├── articles │ │ └── UserArticles.tsx │ └── create │ │ └── FormInput.tsx ├── userPost │ ├── LikeButton.tsx │ ├── MoreButton.tsx │ ├── UserPostItem.tsx │ ├── UserPosts.tsx │ └── UserPostsServer.tsx └── utils │ ├── Toast.tsx │ └── UserIcon.tsx ├── hooks ├── useLikes.ts ├── useLoading.ts ├── useNotification.tsx ├── useOffsetBottom.ts ├── useScrollDetection.ts ├── useThrottle.ts ├── useUserInfo.tsx └── userHistory.ts ├── jotai ├── bookmarkAtom.ts ├── followingAtom.ts ├── followingFeedAtom.ts ├── likeAtom.ts ├── loadingAtom.ts ├── sessionAtom.ts └── viewHistory.ts ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── favicon.ico ├── icon-192x192.png ├── icon-256x256.png ├── icon-384x384.png ├── icon-512x512.png ├── img │ ├── aboutFeedFollow.png │ ├── cat.png │ ├── catBook.png │ ├── catCircle.png │ ├── catPlayingBall.png │ ├── catSitting.png │ ├── catWalking.png │ ├── discussion.png │ ├── no-image.png │ ├── take.png │ └── user-icon.png ├── lottie │ ├── cat.json │ ├── check.json │ └── like.json ├── manifest.json └── maskable_icon.png ├── server ├── addOgp.ts ├── api │ └── user │ │ └── bookmark │ │ └── getBookmark.ts ├── auth.ts ├── category.ts ├── db.ts ├── entry │ ├── getComments.ts │ └── getEntry.ts ├── follow │ ├── getFollowersUser.tsx │ └── getFollowingUser.ts ├── getFeedInfo.ts ├── getFeedItem.ts ├── getOgp.ts ├── getPosts.ts ├── redis.ts ├── timeline │ └── getUserActivities.ts ├── userPage │ ├── getFeedLink.ts │ └── getUser.ts └── userPost │ └── getUserPosts.ts ├── tailwind.config.ts ├── tsconfig.json ├── types ├── feed.ts ├── next-auth.d.ts ├── postItem.ts ├── qiita.ts ├── trendsArticle.ts └── zenn.ts └── utils ├── ValidateUser.tsx ├── builder.ts ├── calcDiffTime.ts ├── firebase.ts ├── getHashedUrl.ts └── gtag.tsx /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/README.md -------------------------------------------------------------------------------- /app/[id]/_actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/[id]/_actions/actions.ts -------------------------------------------------------------------------------- /app/[id]/bookmark/_actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/[id]/bookmark/_actions/actions.ts -------------------------------------------------------------------------------- /app/[id]/bookmark/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/[id]/bookmark/page.tsx -------------------------------------------------------------------------------- /app/[id]/followers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/[id]/followers/page.tsx -------------------------------------------------------------------------------- /app/[id]/following/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/[id]/following/page.tsx -------------------------------------------------------------------------------- /app/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/[id]/layout.tsx -------------------------------------------------------------------------------- /app/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/[id]/page.tsx -------------------------------------------------------------------------------- /app/_actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/_actions/actions.ts -------------------------------------------------------------------------------- /app/about/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/about/layout.tsx -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/about/privacy/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/about/privacy/layout.tsx -------------------------------------------------------------------------------- /app/about/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/about/privacy/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/category/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/category/route.ts -------------------------------------------------------------------------------- /app/api/cron/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/cron/route.ts -------------------------------------------------------------------------------- /app/api/cron/updateQiita/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/cron/updateQiita/route.ts -------------------------------------------------------------------------------- /app/api/cron/updateZenn/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/cron/updateZenn/route.ts -------------------------------------------------------------------------------- /app/api/cronFeeds/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/cronFeeds/route.ts -------------------------------------------------------------------------------- /app/api/feeds/following/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/feeds/following/[id]/route.ts -------------------------------------------------------------------------------- /app/api/follow/category/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/follow/category/route.ts -------------------------------------------------------------------------------- /app/api/like/[userId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/like/[userId]/route.ts -------------------------------------------------------------------------------- /app/api/ogp/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/ogp/route.ts -------------------------------------------------------------------------------- /app/api/ok/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/ok/route.ts -------------------------------------------------------------------------------- /app/api/post/feeds/[id]/articles/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/post/feeds/[id]/articles/route.ts -------------------------------------------------------------------------------- /app/api/post/feeds/[id]/info/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/post/feeds/[id]/info/route.ts -------------------------------------------------------------------------------- /app/api/post/feeds/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/post/feeds/route.ts -------------------------------------------------------------------------------- /app/api/post/followingCategory/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/post/followingCategory/route.ts -------------------------------------------------------------------------------- /app/api/post/followingFeed/[userId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/post/followingFeed/[userId]/route.ts -------------------------------------------------------------------------------- /app/api/post/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/post/route.ts -------------------------------------------------------------------------------- /app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/search/route.ts -------------------------------------------------------------------------------- /app/api/trends/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/trends/route.ts -------------------------------------------------------------------------------- /app/api/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/user/route.ts -------------------------------------------------------------------------------- /app/api/userPost/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/userPost/route.ts -------------------------------------------------------------------------------- /app/api/v2/[id]/bookmark/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/v2/[id]/bookmark/route.tsx -------------------------------------------------------------------------------- /app/api/view/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/api/view/route.ts -------------------------------------------------------------------------------- /app/entry/[url]/_actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/entry/[url]/_actions/actions.ts -------------------------------------------------------------------------------- /app/entry/[url]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/entry/[url]/layout.tsx -------------------------------------------------------------------------------- /app/entry/[url]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/entry/[url]/page.tsx -------------------------------------------------------------------------------- /app/entry/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/entry/page.tsx -------------------------------------------------------------------------------- /app/feeds/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/[id]/layout.tsx -------------------------------------------------------------------------------- /app/feeds/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/[id]/page.tsx -------------------------------------------------------------------------------- /app/feeds/create/_action/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/create/_action/actions.ts -------------------------------------------------------------------------------- /app/feeds/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/create/page.tsx -------------------------------------------------------------------------------- /app/feeds/following/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/following/layout.tsx -------------------------------------------------------------------------------- /app/feeds/following/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/following/page.tsx -------------------------------------------------------------------------------- /app/feeds/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/layout.tsx -------------------------------------------------------------------------------- /app/feeds/list/[page]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/list/[page]/page.tsx -------------------------------------------------------------------------------- /app/feeds/list/_action/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/list/_action/actions.ts -------------------------------------------------------------------------------- /app/feeds/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/feeds/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/latest/category/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/latest/category/layout.tsx -------------------------------------------------------------------------------- /app/latest/category/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/latest/category/page.tsx -------------------------------------------------------------------------------- /app/latest/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/latest/layout.tsx -------------------------------------------------------------------------------- /app/latest/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/latest/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/login/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/login/layout.tsx -------------------------------------------------------------------------------- /app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/login/page.tsx -------------------------------------------------------------------------------- /app/logout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/logout/layout.tsx -------------------------------------------------------------------------------- /app/logout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/logout/page.tsx -------------------------------------------------------------------------------- /app/mypage/category/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/mypage/category/layout.tsx -------------------------------------------------------------------------------- /app/mypage/category/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/mypage/category/page.tsx -------------------------------------------------------------------------------- /app/mypage/createPost/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/mypage/createPost/layout.tsx -------------------------------------------------------------------------------- /app/mypage/createPost/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/mypage/createPost/page.tsx -------------------------------------------------------------------------------- /app/mypage/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/mypage/layout.tsx -------------------------------------------------------------------------------- /app/mypage/updatePost/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/mypage/updatePost/[id]/layout.tsx -------------------------------------------------------------------------------- /app/mypage/updatePost/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/mypage/updatePost/[id]/page.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/search/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/search/layout.tsx -------------------------------------------------------------------------------- /app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/search/page.tsx -------------------------------------------------------------------------------- /app/settings/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/settings/account/page.tsx -------------------------------------------------------------------------------- /app/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/settings/layout.tsx -------------------------------------------------------------------------------- /app/settings/profile/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/settings/profile/action.ts -------------------------------------------------------------------------------- /app/settings/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/settings/profile/page.tsx -------------------------------------------------------------------------------- /app/timeline/_actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/timeline/_actions/actions.ts -------------------------------------------------------------------------------- /app/timeline/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/timeline/layout.tsx -------------------------------------------------------------------------------- /app/timeline/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/timeline/page.tsx -------------------------------------------------------------------------------- /app/user/create/[sub]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/user/create/[sub]/layout.tsx -------------------------------------------------------------------------------- /app/user/create/[sub]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/user/create/[sub]/page.tsx -------------------------------------------------------------------------------- /app/user/create/_actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/user/create/_actions/actions.ts -------------------------------------------------------------------------------- /app/withdrawal/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/withdrawal/layout.tsx -------------------------------------------------------------------------------- /app/withdrawal/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/app/withdrawal/page.tsx -------------------------------------------------------------------------------- /components/LinkButton/FeedListLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/LinkButton/FeedListLink.tsx -------------------------------------------------------------------------------- /components/LinkButton/SettingProfileLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/LinkButton/SettingProfileLink.tsx -------------------------------------------------------------------------------- /components/about/CatAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/about/CatAnimation.tsx -------------------------------------------------------------------------------- /components/about/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/about/Hero.tsx -------------------------------------------------------------------------------- /components/about/Recruit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/about/Recruit.tsx -------------------------------------------------------------------------------- /components/about/Works.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/about/Works.tsx -------------------------------------------------------------------------------- /components/auth/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/auth/LoginButton.tsx -------------------------------------------------------------------------------- /components/auth/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/auth/LogoutButton.tsx -------------------------------------------------------------------------------- /components/auth/WithdrawalButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/auth/WithdrawalButton.tsx -------------------------------------------------------------------------------- /components/category/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/category/Categories.tsx -------------------------------------------------------------------------------- /components/category/CategoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/category/CategoryItem.tsx -------------------------------------------------------------------------------- /components/entry/AddCommentButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/AddCommentButton.tsx -------------------------------------------------------------------------------- /components/entry/BookmarkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/BookmarkButton.tsx -------------------------------------------------------------------------------- /components/entry/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/Comment.tsx -------------------------------------------------------------------------------- /components/entry/CommentInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/CommentInput.tsx -------------------------------------------------------------------------------- /components/entry/CommentItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/CommentItem.tsx -------------------------------------------------------------------------------- /components/entry/CommentTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/CommentTitle.tsx -------------------------------------------------------------------------------- /components/entry/CreateEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/CreateEntry.tsx -------------------------------------------------------------------------------- /components/entry/CreateEntryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/CreateEntryButton.tsx -------------------------------------------------------------------------------- /components/entry/EntryInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/EntryInfo.tsx -------------------------------------------------------------------------------- /components/entry/EntryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/EntryItem.tsx -------------------------------------------------------------------------------- /components/entry/EntryLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/EntryLink.tsx -------------------------------------------------------------------------------- /components/entry/MoreMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/MoreMenu.tsx -------------------------------------------------------------------------------- /components/entry/MoreMenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/entry/MoreMenuButton.tsx -------------------------------------------------------------------------------- /components/error/ErrorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/error/ErrorComponent.tsx -------------------------------------------------------------------------------- /components/error/NoContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/error/NoContent.tsx -------------------------------------------------------------------------------- /components/feeds/create/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/feeds/create/Input.tsx -------------------------------------------------------------------------------- /components/feeds/create/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/feeds/create/SubmitButton.tsx -------------------------------------------------------------------------------- /components/feeds/list/FeedItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/feeds/list/FeedItem.tsx -------------------------------------------------------------------------------- /components/feeds/list/FeedLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/feeds/list/FeedLists.tsx -------------------------------------------------------------------------------- /components/feeds/list/FollowFeedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/feeds/list/FollowFeedButton.tsx -------------------------------------------------------------------------------- /components/feeds/list/PageNation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/feeds/list/PageNation.tsx -------------------------------------------------------------------------------- /components/feeds/list/TitleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/feeds/list/TitleSection.tsx -------------------------------------------------------------------------------- /components/icons/Hatena.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/icons/Hatena.tsx -------------------------------------------------------------------------------- /components/icons/Note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/icons/Note.tsx -------------------------------------------------------------------------------- /components/icons/Qiita.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/icons/Qiita.tsx -------------------------------------------------------------------------------- /components/icons/Sizuka.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/icons/Sizuka.tsx -------------------------------------------------------------------------------- /components/icons/Zenn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/icons/Zenn.tsx -------------------------------------------------------------------------------- /components/latest/TitleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/latest/TitleSection.tsx -------------------------------------------------------------------------------- /components/layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/Footer.tsx -------------------------------------------------------------------------------- /components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/Header.tsx -------------------------------------------------------------------------------- /components/layout/LayoutComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/LayoutComponent.tsx -------------------------------------------------------------------------------- /components/layout/LayoutTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/LayoutTitle.tsx -------------------------------------------------------------------------------- /components/layout/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/Loading.tsx -------------------------------------------------------------------------------- /components/layout/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/Logo.tsx -------------------------------------------------------------------------------- /components/layout/NavLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/NavLeft.tsx -------------------------------------------------------------------------------- /components/layout/NavRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/NavRight.tsx -------------------------------------------------------------------------------- /components/layout/QuestionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/QuestionButton.tsx -------------------------------------------------------------------------------- /components/layout/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/Tab.tsx -------------------------------------------------------------------------------- /components/layout/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/UserIcon.tsx -------------------------------------------------------------------------------- /components/layout/WrapContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/layout/WrapContainer.tsx -------------------------------------------------------------------------------- /components/mypage/FollowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/FollowButton.tsx -------------------------------------------------------------------------------- /components/mypage/Following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/Following.tsx -------------------------------------------------------------------------------- /components/mypage/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/Profile.tsx -------------------------------------------------------------------------------- /components/mypage/SnsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/SnsList.tsx -------------------------------------------------------------------------------- /components/mypage/createPost/CheckAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/createPost/CheckAnimation.tsx -------------------------------------------------------------------------------- /components/mypage/createPost/Inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/createPost/Inputs.tsx -------------------------------------------------------------------------------- /components/mypage/createPost/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/createPost/Modal.tsx -------------------------------------------------------------------------------- /components/mypage/follow/FollowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/follow/FollowItem.tsx -------------------------------------------------------------------------------- /components/mypage/follow/FollowList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/follow/FollowList.tsx -------------------------------------------------------------------------------- /components/mypage/updatePost/Inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/mypage/updatePost/Inputs.tsx -------------------------------------------------------------------------------- /components/provider/ClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/provider/ClientProvider.tsx -------------------------------------------------------------------------------- /components/provider/actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/provider/actions/actions.ts -------------------------------------------------------------------------------- /components/provider/authProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/provider/authProvider.tsx -------------------------------------------------------------------------------- /components/provider/jotaiProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/provider/jotaiProvider.tsx -------------------------------------------------------------------------------- /components/scroll/ScrollDetect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/scroll/ScrollDetect.tsx -------------------------------------------------------------------------------- /components/scroll/ScrollDetection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/scroll/ScrollDetection.tsx -------------------------------------------------------------------------------- /components/search/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/search/Input.tsx -------------------------------------------------------------------------------- /components/search/SearchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/search/SearchList.tsx -------------------------------------------------------------------------------- /components/search/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/search/Spinner.tsx -------------------------------------------------------------------------------- /components/settings/ImageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/settings/ImageInput.tsx -------------------------------------------------------------------------------- /components/settings/ProfileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/settings/ProfileInput.tsx -------------------------------------------------------------------------------- /components/settings/SettingTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/settings/SettingTab.tsx -------------------------------------------------------------------------------- /components/settings/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/settings/SubmitButton.tsx -------------------------------------------------------------------------------- /components/skelton/ContentSkelton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/skelton/ContentSkelton.tsx -------------------------------------------------------------------------------- /components/skelton/ImageSkelton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/skelton/ImageSkelton.tsx -------------------------------------------------------------------------------- /components/skelton/SkeltonContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/skelton/SkeltonContainer.tsx -------------------------------------------------------------------------------- /components/tech/BookmarkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/tech/BookmarkButton.tsx -------------------------------------------------------------------------------- /components/tech/PostItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/tech/PostItem.tsx -------------------------------------------------------------------------------- /components/tech/PostLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/tech/PostLink.tsx -------------------------------------------------------------------------------- /components/tech/Posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/tech/Posts.tsx -------------------------------------------------------------------------------- /components/timeline/ActivityItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/timeline/ActivityItem.tsx -------------------------------------------------------------------------------- /components/timeline/Article.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/timeline/Article.tsx -------------------------------------------------------------------------------- /components/timeline/BookmarkActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/timeline/BookmarkActivity.tsx -------------------------------------------------------------------------------- /components/timeline/CommentActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/timeline/CommentActivity.tsx -------------------------------------------------------------------------------- /components/timeline/FollowActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/timeline/FollowActivity.tsx -------------------------------------------------------------------------------- /components/timeline/FollowingActivityList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/timeline/FollowingActivityList.tsx -------------------------------------------------------------------------------- /components/user/UserTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/user/UserTab.tsx -------------------------------------------------------------------------------- /components/user/articles/UserArticles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/user/articles/UserArticles.tsx -------------------------------------------------------------------------------- /components/user/create/FormInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/user/create/FormInput.tsx -------------------------------------------------------------------------------- /components/userPost/LikeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/userPost/LikeButton.tsx -------------------------------------------------------------------------------- /components/userPost/MoreButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/userPost/MoreButton.tsx -------------------------------------------------------------------------------- /components/userPost/UserPostItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/userPost/UserPostItem.tsx -------------------------------------------------------------------------------- /components/userPost/UserPosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/userPost/UserPosts.tsx -------------------------------------------------------------------------------- /components/userPost/UserPostsServer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/userPost/UserPostsServer.tsx -------------------------------------------------------------------------------- /components/utils/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/utils/Toast.tsx -------------------------------------------------------------------------------- /components/utils/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/components/utils/UserIcon.tsx -------------------------------------------------------------------------------- /hooks/useLikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/useLikes.ts -------------------------------------------------------------------------------- /hooks/useLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/useLoading.ts -------------------------------------------------------------------------------- /hooks/useNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/useNotification.tsx -------------------------------------------------------------------------------- /hooks/useOffsetBottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/useOffsetBottom.ts -------------------------------------------------------------------------------- /hooks/useScrollDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/useScrollDetection.ts -------------------------------------------------------------------------------- /hooks/useThrottle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/useThrottle.ts -------------------------------------------------------------------------------- /hooks/useUserInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/useUserInfo.tsx -------------------------------------------------------------------------------- /hooks/userHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/hooks/userHistory.ts -------------------------------------------------------------------------------- /jotai/bookmarkAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/jotai/bookmarkAtom.ts -------------------------------------------------------------------------------- /jotai/followingAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/jotai/followingAtom.ts -------------------------------------------------------------------------------- /jotai/followingFeedAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/jotai/followingFeedAtom.ts -------------------------------------------------------------------------------- /jotai/likeAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/jotai/likeAtom.ts -------------------------------------------------------------------------------- /jotai/loadingAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/jotai/loadingAtom.ts -------------------------------------------------------------------------------- /jotai/sessionAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/jotai/sessionAtom.ts -------------------------------------------------------------------------------- /jotai/viewHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/jotai/viewHistory.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/icon-192x192.png -------------------------------------------------------------------------------- /public/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/icon-256x256.png -------------------------------------------------------------------------------- /public/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/icon-384x384.png -------------------------------------------------------------------------------- /public/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/icon-512x512.png -------------------------------------------------------------------------------- /public/img/aboutFeedFollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/aboutFeedFollow.png -------------------------------------------------------------------------------- /public/img/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/cat.png -------------------------------------------------------------------------------- /public/img/catBook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/catBook.png -------------------------------------------------------------------------------- /public/img/catCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/catCircle.png -------------------------------------------------------------------------------- /public/img/catPlayingBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/catPlayingBall.png -------------------------------------------------------------------------------- /public/img/catSitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/catSitting.png -------------------------------------------------------------------------------- /public/img/catWalking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/catWalking.png -------------------------------------------------------------------------------- /public/img/discussion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/discussion.png -------------------------------------------------------------------------------- /public/img/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/no-image.png -------------------------------------------------------------------------------- /public/img/take.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/take.png -------------------------------------------------------------------------------- /public/img/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/img/user-icon.png -------------------------------------------------------------------------------- /public/lottie/cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/lottie/cat.json -------------------------------------------------------------------------------- /public/lottie/check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/lottie/check.json -------------------------------------------------------------------------------- /public/lottie/like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/lottie/like.json -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/maskable_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/public/maskable_icon.png -------------------------------------------------------------------------------- /server/addOgp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/addOgp.ts -------------------------------------------------------------------------------- /server/api/user/bookmark/getBookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/api/user/bookmark/getBookmark.ts -------------------------------------------------------------------------------- /server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/auth.ts -------------------------------------------------------------------------------- /server/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/category.ts -------------------------------------------------------------------------------- /server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/db.ts -------------------------------------------------------------------------------- /server/entry/getComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/entry/getComments.ts -------------------------------------------------------------------------------- /server/entry/getEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/entry/getEntry.ts -------------------------------------------------------------------------------- /server/follow/getFollowersUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/follow/getFollowersUser.tsx -------------------------------------------------------------------------------- /server/follow/getFollowingUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/follow/getFollowingUser.ts -------------------------------------------------------------------------------- /server/getFeedInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/getFeedInfo.ts -------------------------------------------------------------------------------- /server/getFeedItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/getFeedItem.ts -------------------------------------------------------------------------------- /server/getOgp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/getOgp.ts -------------------------------------------------------------------------------- /server/getPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/getPosts.ts -------------------------------------------------------------------------------- /server/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/redis.ts -------------------------------------------------------------------------------- /server/timeline/getUserActivities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/timeline/getUserActivities.ts -------------------------------------------------------------------------------- /server/userPage/getFeedLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/userPage/getFeedLink.ts -------------------------------------------------------------------------------- /server/userPage/getUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/userPage/getUser.ts -------------------------------------------------------------------------------- /server/userPost/getUserPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/server/userPost/getUserPosts.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/types/feed.ts -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/types/next-auth.d.ts -------------------------------------------------------------------------------- /types/postItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/types/postItem.ts -------------------------------------------------------------------------------- /types/qiita.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/types/qiita.ts -------------------------------------------------------------------------------- /types/trendsArticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/types/trendsArticle.ts -------------------------------------------------------------------------------- /types/zenn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/types/zenn.ts -------------------------------------------------------------------------------- /utils/ValidateUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/utils/ValidateUser.tsx -------------------------------------------------------------------------------- /utils/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/utils/builder.ts -------------------------------------------------------------------------------- /utils/calcDiffTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/utils/calcDiffTime.ts -------------------------------------------------------------------------------- /utils/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/utils/firebase.ts -------------------------------------------------------------------------------- /utils/getHashedUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/utils/getHashedUrl.ts -------------------------------------------------------------------------------- /utils/gtag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y4asse/chietta/HEAD/utils/gtag.tsx --------------------------------------------------------------------------------