├── .DS_Store ├── .gitignore ├── README.md ├── client ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchman-cookie-Shahriars-MacBook-Air.local-669-1494 ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── Navigations │ ├── Auth.tsx │ ├── Main.tsx │ └── Tabs.tsx ├── README.md ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── becodemy │ │ │ │ └── threads │ │ │ │ └── ReactNativeFlipper.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── becodemy │ │ │ │ │ └── threads │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── release │ │ │ └── java │ │ │ └── com │ │ │ └── becodemy │ │ │ └── threads │ │ │ └── ReactNativeFlipper.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── Threadsclone.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Threadsclone.xcscheme │ ├── Threadsclone.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Threadsclone │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── ThreadscloneTests │ │ ├── Info.plist │ │ └── ThreadscloneTests.m ├── jest.config.js ├── metro.config.js ├── my-app.d.ts ├── package-lock.json ├── package.json ├── redux │ ├── Store.ts │ ├── URI.tsx │ ├── actions │ │ ├── notificationAction.ts │ │ ├── postAction.ts │ │ └── userAction.ts │ └── reducers │ │ ├── notificationReducer.ts │ │ ├── postReducer.ts │ │ └── userReducer.ts ├── src │ ├── assets │ │ ├── animation_lkbqh8co.json │ │ └── logo.png │ ├── common │ │ ├── Loader.tsx │ │ └── TimeGenerator.tsx │ ├── components │ │ ├── EditProfile.tsx │ │ ├── FollowerCard.tsx │ │ ├── PostCard.tsx │ │ ├── PostDetailsCard.tsx │ │ └── PostLikeCard.tsx │ └── screens │ │ ├── CreateRepliesScreen.tsx │ │ ├── HomeScreen.tsx │ │ ├── LoginScreen.tsx │ │ ├── NotificationScreen.tsx │ │ ├── PostDetailsScreen.tsx │ │ ├── PostScreen.tsx │ │ ├── ProfileScreen.tsx │ │ ├── SearchScreen.tsx │ │ ├── SignupScreen.tsx │ │ └── UserProfileScreen.tsx ├── tailwind.config.js ├── tsconfig.json └── yarn.lock └── server ├── .DS_Store ├── .env ├── app.js ├── controllers ├── post.js └── user.js ├── db └── db.js ├── middleware ├── auth.js ├── catchAsyncErrors.js └── error.js ├── models ├── NotificationModel.js ├── PostModel.js └── UserModel.js ├── package-lock.json ├── package.json ├── routes ├── Post.js └── user.js ├── server.js ├── utils ├── ErrorHandler.js └── jwtToken.js └── vercel.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/README.md -------------------------------------------------------------------------------- /client/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/.bundle/config -------------------------------------------------------------------------------- /client/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/.prettierrc.js -------------------------------------------------------------------------------- /client/.watchman-cookie-Shahriars-MacBook-Air.local-669-1494: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /client/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/App.tsx -------------------------------------------------------------------------------- /client/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/Gemfile -------------------------------------------------------------------------------- /client/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/Gemfile.lock -------------------------------------------------------------------------------- /client/Navigations/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/Navigations/Auth.tsx -------------------------------------------------------------------------------- /client/Navigations/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/Navigations/Main.tsx -------------------------------------------------------------------------------- /client/Navigations/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/Navigations/Tabs.tsx -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/README.md -------------------------------------------------------------------------------- /client/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/__tests__/App.test.tsx -------------------------------------------------------------------------------- /client/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/build.gradle -------------------------------------------------------------------------------- /client/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/debug.keystore -------------------------------------------------------------------------------- /client/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /client/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /client/android/app/src/debug/java/com/becodemy/threads/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/debug/java/com/becodemy/threads/ReactNativeFlipper.java -------------------------------------------------------------------------------- /client/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /client/android/app/src/main/java/com/becodemy/threads/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/java/com/becodemy/threads/MainActivity.java -------------------------------------------------------------------------------- /client/android/app/src/main/java/com/becodemy/threads/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/java/com/becodemy/threads/MainApplication.java -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /client/android/app/src/release/java/com/becodemy/threads/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/app/src/release/java/com/becodemy/threads/ReactNativeFlipper.java -------------------------------------------------------------------------------- /client/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/build.gradle -------------------------------------------------------------------------------- /client/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/gradle.properties -------------------------------------------------------------------------------- /client/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /client/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /client/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/gradlew -------------------------------------------------------------------------------- /client/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/gradlew.bat -------------------------------------------------------------------------------- /client/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/android/settings.gradle -------------------------------------------------------------------------------- /client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/app.json -------------------------------------------------------------------------------- /client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/babel.config.js -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/index.js -------------------------------------------------------------------------------- /client/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/.xcode.env -------------------------------------------------------------------------------- /client/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Podfile -------------------------------------------------------------------------------- /client/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Podfile.lock -------------------------------------------------------------------------------- /client/ios/Threadsclone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /client/ios/Threadsclone.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /client/ios/Threadsclone.xcodeproj/xcshareddata/xcschemes/Threadsclone.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone.xcodeproj/xcshareddata/xcschemes/Threadsclone.xcscheme -------------------------------------------------------------------------------- /client/ios/Threadsclone.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /client/ios/Threadsclone.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /client/ios/Threadsclone/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone/AppDelegate.h -------------------------------------------------------------------------------- /client/ios/Threadsclone/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone/AppDelegate.mm -------------------------------------------------------------------------------- /client/ios/Threadsclone/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /client/ios/Threadsclone/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /client/ios/Threadsclone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone/Info.plist -------------------------------------------------------------------------------- /client/ios/Threadsclone/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone/LaunchScreen.storyboard -------------------------------------------------------------------------------- /client/ios/Threadsclone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/Threadsclone/main.m -------------------------------------------------------------------------------- /client/ios/ThreadscloneTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/ThreadscloneTests/Info.plist -------------------------------------------------------------------------------- /client/ios/ThreadscloneTests/ThreadscloneTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/ios/ThreadscloneTests/ThreadscloneTests.m -------------------------------------------------------------------------------- /client/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /client/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/metro.config.js -------------------------------------------------------------------------------- /client/my-app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/my-app.d.ts -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/package.json -------------------------------------------------------------------------------- /client/redux/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/Store.ts -------------------------------------------------------------------------------- /client/redux/URI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/URI.tsx -------------------------------------------------------------------------------- /client/redux/actions/notificationAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/actions/notificationAction.ts -------------------------------------------------------------------------------- /client/redux/actions/postAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/actions/postAction.ts -------------------------------------------------------------------------------- /client/redux/actions/userAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/actions/userAction.ts -------------------------------------------------------------------------------- /client/redux/reducers/notificationReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/reducers/notificationReducer.ts -------------------------------------------------------------------------------- /client/redux/reducers/postReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/reducers/postReducer.ts -------------------------------------------------------------------------------- /client/redux/reducers/userReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/redux/reducers/userReducer.ts -------------------------------------------------------------------------------- /client/src/assets/animation_lkbqh8co.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/assets/animation_lkbqh8co.json -------------------------------------------------------------------------------- /client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/assets/logo.png -------------------------------------------------------------------------------- /client/src/common/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/common/Loader.tsx -------------------------------------------------------------------------------- /client/src/common/TimeGenerator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/common/TimeGenerator.tsx -------------------------------------------------------------------------------- /client/src/components/EditProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/components/EditProfile.tsx -------------------------------------------------------------------------------- /client/src/components/FollowerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/components/FollowerCard.tsx -------------------------------------------------------------------------------- /client/src/components/PostCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/components/PostCard.tsx -------------------------------------------------------------------------------- /client/src/components/PostDetailsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/components/PostDetailsCard.tsx -------------------------------------------------------------------------------- /client/src/components/PostLikeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/components/PostLikeCard.tsx -------------------------------------------------------------------------------- /client/src/screens/CreateRepliesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/CreateRepliesScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/LoginScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/NotificationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/NotificationScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/PostDetailsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/PostDetailsScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/PostScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/PostScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/ProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/ProfileScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/SearchScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/SearchScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/SignupScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/SignupScreen.tsx -------------------------------------------------------------------------------- /client/src/screens/UserProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/src/screens/UserProfileScreen.tsx -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /server/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/.DS_Store -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/.env -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/app.js -------------------------------------------------------------------------------- /server/controllers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/controllers/post.js -------------------------------------------------------------------------------- /server/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/controllers/user.js -------------------------------------------------------------------------------- /server/db/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/db/db.js -------------------------------------------------------------------------------- /server/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/middleware/auth.js -------------------------------------------------------------------------------- /server/middleware/catchAsyncErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/middleware/catchAsyncErrors.js -------------------------------------------------------------------------------- /server/middleware/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/middleware/error.js -------------------------------------------------------------------------------- /server/models/NotificationModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/models/NotificationModel.js -------------------------------------------------------------------------------- /server/models/PostModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/models/PostModel.js -------------------------------------------------------------------------------- /server/models/UserModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/models/UserModel.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/routes/Post.js -------------------------------------------------------------------------------- /server/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/routes/user.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/server.js -------------------------------------------------------------------------------- /server/utils/ErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/utils/ErrorHandler.js -------------------------------------------------------------------------------- /server/utils/jwtToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/utils/jwtToken.js -------------------------------------------------------------------------------- /server/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/threads-clone/HEAD/server/vercel.json --------------------------------------------------------------------------------