├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── linter.yaml ├── .gitignore ├── .husky └── commit-msg ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── app │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── jest.config.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── assets │ │ │ ├── icons │ │ │ │ ├── events.png │ │ │ │ ├── favorites.png │ │ │ │ ├── friends.png │ │ │ │ ├── friendsList.png │ │ │ │ ├── frundaisers.png │ │ │ │ ├── games.png │ │ │ │ ├── groups.png │ │ │ │ ├── liveVideos.png │ │ │ │ ├── marketplace.png │ │ │ │ ├── memories.png │ │ │ │ ├── messenger.png │ │ │ │ ├── mostRecents.png │ │ │ │ ├── pages.png │ │ │ │ ├── videos.png │ │ │ │ └── weathers.png │ │ │ └── reactions │ │ │ │ ├── angry.svg │ │ │ │ ├── care.svg │ │ │ │ ├── haha.svg │ │ │ │ ├── like.svg │ │ │ │ ├── love.svg │ │ │ │ └── sad.svg │ │ ├── facebook-logo.png │ │ ├── images │ │ │ └── help │ │ │ │ ├── groups.png │ │ │ │ ├── loginandpassword.png │ │ │ │ ├── marketplace.png │ │ │ │ ├── pages.png │ │ │ │ ├── yourprivacy.png │ │ │ │ └── yourprofile.png │ │ └── login-graph.png │ ├── src │ │ ├── app │ │ │ ├── create-page │ │ │ │ └── page.tsx │ │ │ ├── gaming │ │ │ │ └── page.tsx │ │ │ ├── globals.scss │ │ │ ├── groups │ │ │ │ └── page.tsx │ │ │ ├── jobs │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── marketplace │ │ │ │ └── page.tsx │ │ │ ├── messages │ │ │ │ └── [userId] │ │ │ │ │ └── page.tsx │ │ │ ├── not-found.tsx │ │ │ ├── page.tsx │ │ │ ├── pages │ │ │ │ └── page.tsx │ │ │ ├── photos │ │ │ │ └── [photoId] │ │ │ │ │ └── page.tsx │ │ │ ├── recent-activities │ │ │ │ └── page.tsx │ │ │ ├── search │ │ │ │ └── page.tsx │ │ │ ├── sign-in │ │ │ │ └── page.tsx │ │ │ ├── stories │ │ │ │ └── page.tsx │ │ │ ├── users │ │ │ │ └── [userId] │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── photos │ │ │ │ │ └── [photoId] │ │ │ │ │ └── page.tsx │ │ │ ├── watch │ │ │ │ └── page.tsx │ │ │ └── weather │ │ │ │ └── page.tsx │ │ ├── config │ │ │ ├── environmentsConfig.ts │ │ │ └── urlApiConfig.ts │ │ ├── mocks │ │ │ ├── contactsMocks.ts │ │ │ ├── index.ts │ │ │ ├── marketplaceMocks.ts │ │ │ ├── peopleSearchResult.ts │ │ │ ├── postsMocks.ts │ │ │ ├── storiesMocks.ts │ │ │ ├── usersMocks.ts │ │ │ └── watchMocks.ts │ │ ├── packages │ │ │ ├── fb-components │ │ │ │ ├── application │ │ │ │ │ ├── FacebookAvatar │ │ │ │ │ │ ├── __test__ │ │ │ │ │ │ │ └── FacebookAvatar.test.tsx │ │ │ │ │ │ ├── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FacebookCloseWithAvatar │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── FacebookCloseWithAvatar.test.tsx │ │ │ │ │ │ ├── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── GlobalStyles │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LinksPrivacityApplication │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── LinksPrivacityApplication.test.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── SEO │ │ │ │ │ │ └── SEOMetaTag │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── common │ │ │ │ │ ├── Avatar │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Avatar.test.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── BackgroundBlurImage │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ButtonClose │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── ButtonClose.test.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Card │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ChevronIconButton │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── DarkTooltip │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── DarkTooltip.test.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── EditText │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ErrorComponent │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FlexWrapper │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FullScreenWrapper │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Grid │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ListRenderItems │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LiveMicroText │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── LiveMicroText.test.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OverflowBackgroundImage │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── OverflowBackgroundImage.test.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PointNotification │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PortalComponent │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RaisedButton │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Reactions │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RoundButton │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RowDivider │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RowItemSelectable │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Skeleton │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Spinner │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SquareImage │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StringAvatars │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StringReactions │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TextLabel │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TotalViews │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── Wrapper │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── globals │ │ │ │ │ ├── AccountControlSettings │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ControlButtonOption.tsx │ │ │ │ │ │ │ ├── UserAccountButtonOption.tsx │ │ │ │ │ │ │ ├── data.ts │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Elements │ │ │ │ │ │ │ └── ButtonToMoreOptionsAccount.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── AccountProfileBanner │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── AccountProfileBanner.test.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ActionButtonsController │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ActionButtonController.tsx │ │ │ │ │ │ │ ├── ActionInputController.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ChatTab │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── FloatingButton.tsx │ │ │ │ │ │ │ ├── TabHeader.tsx │ │ │ │ │ │ │ ├── TabMainExpanded.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── ChatTabPieces.tsx │ │ │ │ │ │ ├── Context │ │ │ │ │ │ │ ├── ChatTabContext.tsx │ │ │ │ │ │ │ ├── ChatTabReducer.ts │ │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ ├── RowItem.tsx │ │ │ │ │ │ │ ├── SearchInput.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ContactList │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ButtonOption.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ ├── ListHeaderOptions.tsx │ │ │ │ │ │ │ └── RowItem.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── CreateNewPost │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ActionInputController.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── DropdownTabOptionsAnimatable │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Context │ │ │ │ │ │ │ └── DropdownTabOptionsAnimatableContext.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ └── DropdownItemAnimatable.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── InstaStories │ │ │ │ │ │ ├── InstaConfig │ │ │ │ │ │ │ └── config.ts │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ │ ├── FooterStory.tsx │ │ │ │ │ │ │ │ ├── OptionIconStory.tsx │ │ │ │ │ │ │ │ ├── ProgressStory.tsx │ │ │ │ │ │ │ │ ├── TextStory.tsx │ │ │ │ │ │ │ │ └── UserDetailStory.tsx │ │ │ │ │ │ │ └── Molecules │ │ │ │ │ │ │ │ ├── IconsOptionStory.tsx │ │ │ │ │ │ │ │ ├── OverflowCardStory.tsx │ │ │ │ │ │ │ │ └── TimerStatusProgressStory.tsx │ │ │ │ │ │ ├── containers │ │ │ │ │ │ │ ├── PreviewImageStory.tsx │ │ │ │ │ │ │ ├── PreviewLoadingImage.tsx │ │ │ │ │ │ │ ├── PreviewProgressStories.tsx │ │ │ │ │ │ │ └── PreviewUserDetailStory.tsx │ │ │ │ │ │ ├── contexts │ │ │ │ │ │ │ └── CTXInstaStories │ │ │ │ │ │ │ │ ├── InstaStoriesContext.ts │ │ │ │ │ │ │ │ ├── InstaStoriesProvider.tsx │ │ │ │ │ │ │ │ └── InstaStoriesTypes.d.ts │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ └── useManagementStories │ │ │ │ │ │ │ │ ├── useManagementStories.ts │ │ │ │ │ │ │ │ └── useManagementStoriesTypes.d.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LoadersSkeletonElement │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MarketplaceCard │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ModalDialog │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── AbsoluteCloseButton.tsx │ │ │ │ │ │ │ ├── BackdropModal.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ModalMoreOptionsAccount │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── HeaderSubItem.tsx │ │ │ │ │ │ │ ├── ItemButtonSelectable.tsx │ │ │ │ │ │ │ ├── LinksPrivacity.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ └── ProfileAccountButtonPreview.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Navigation │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── LinkButton.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── NewsFeedCard │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ButtonMoreAction.tsx │ │ │ │ │ │ │ ├── DetailUser.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ ├── NewsBody.tsx │ │ │ │ │ │ │ ├── NewsDetailReaction.tsx │ │ │ │ │ │ │ ├── NewsHeader.tsx │ │ │ │ │ │ │ └── NewsOptions.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PreviewStories │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── HistoryItem.tsx │ │ │ │ │ │ │ ├── HistoryUserItem.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PreviewStreamByUserProfileCard │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── FollowButton.tsx │ │ │ │ │ │ │ ├── TotalViewsFloating.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PreviewStreamWatchVideoCard │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ ├── VideoDetailStreamInformation.tsx │ │ │ │ │ │ │ └── VideoWatchInformation.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RootSearchEngine │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ScrollingSlider │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── FloatingButtonToScrolling.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ └── ScrollingContainerHorizontal.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SuggestedPageItemCard │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ButtonDeletePageItem.tsx │ │ │ │ │ │ │ ├── CoverPageImage.tsx │ │ │ │ │ │ │ ├── PageLikeButton.tsx │ │ │ │ │ │ │ └── SuggestedPageWrapper.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ └── PageInformation.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TabOptions │ │ │ │ │ │ ├── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── UserResultSearchedCard │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── VideoMediaPlayer │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ButtonPlayer.tsx │ │ │ │ │ │ │ └── element.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WatchVideoCard │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── BodyWrapper.tsx │ │ │ │ │ │ │ └── FooterWrapper.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WeatherDetailCard │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ ├── ItemDayWeather.tsx │ │ │ │ │ │ │ ├── MainWrapper.tsx │ │ │ │ │ │ │ ├── SubtitleTextDetail.tsx │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ │ ├── HeaderDetailWeather.tsx │ │ │ │ │ │ │ └── ListWeekWeather.tsx │ │ │ │ │ │ ├── Store │ │ │ │ │ │ │ ├── Store.tsx │ │ │ │ │ │ │ └── useGetWeatherUserLocation.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── WriteNewPostModal │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ ├── ButtonAddPost.tsx │ │ │ │ │ │ ├── HeaderTitle.tsx │ │ │ │ │ │ └── TextAreaMessage.tsx │ │ │ │ │ │ ├── Molecules │ │ │ │ │ │ ├── DetailUser.tsx │ │ │ │ │ │ └── OptionsAddMoreInformation.tsx │ │ │ │ │ │ ├── Store │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ └── layouts │ │ │ │ │ ├── HeaderNavigation │ │ │ │ │ ├── Atoms │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LayoutsDrawer │ │ │ │ │ ├── LayoutDrawer.tsx │ │ │ │ │ ├── LayoutDrawerAbsoluteFullScreen.tsx │ │ │ │ │ ├── LayoutDrawerFeed.tsx │ │ │ │ │ ├── LayoutDrawerFlexFluid.tsx │ │ │ │ │ ├── LayoutDrawerFlexSidebar.tsx │ │ │ │ │ ├── LayoutDrawerGridColumn.tsx │ │ │ │ │ ├── LayoutDrawerLeftRail.tsx │ │ │ │ │ ├── LayoutDrawerRigthRail.tsx │ │ │ │ │ └── LayoutDrawerStories.tsx │ │ │ │ │ ├── OptionsNavigationList │ │ │ │ │ ├── Atoms │ │ │ │ │ │ ├── RowItem.tsx │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── items.ts │ │ │ │ │ └── RootConfigLayout │ │ │ │ │ └── index.tsx │ │ │ ├── fb-containers │ │ │ │ ├── ContainerAccountProfileBannerDetail │ │ │ │ │ ├── AccountNavigator │ │ │ │ │ │ ├── Atoms │ │ │ │ │ │ │ └── elements.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PreviewProfile │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PreviewStateOfNavigatorSelected │ │ │ │ │ │ ├── ScenePosts │ │ │ │ │ │ │ └── ScenePosts.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── elements.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerChatTabs │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerCreateNewPost │ │ │ │ │ ├── CreateNewModalWidget │ │ │ │ │ │ └── CreateNewModalWidget.tsx │ │ │ │ │ ├── PreviewCreateNewWidget │ │ │ │ │ │ └── PreviewCreateNewWidget.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerGetListProducts │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerGetNewsFeed │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerGridStories │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerListSearchPeople │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerListUserStories │ │ │ │ │ ├── AddNewPublicStory │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── HeaderListUsers │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ListUsersWithStories │ │ │ │ │ │ ├── UserStory.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerMainNavigator │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerOnlineContactFriendsList │ │ │ │ │ ├── ContainerOnlineContactFriendsList.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerOptionsNavigation │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerPreviewUserStories │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContainerProviders │ │ │ │ │ └── index.tsx │ │ │ │ └── ContainerViewUserStory │ │ │ │ │ ├── InputCommentStoryWithReactions │ │ │ │ │ ├── CommentEditText │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── CommentReactions │ │ │ │ │ │ ├── ReactionCommentIconAnimatable.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ViewCurrentStory │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── fb-features-recoil │ │ │ │ ├── createNewPost │ │ │ │ │ └── index.ts │ │ │ │ ├── marketplace │ │ │ │ │ └── index.ts │ │ │ │ ├── newsFeed │ │ │ │ │ └── index.ts │ │ │ │ ├── userStories │ │ │ │ │ └── index.ts │ │ │ │ └── watchVideos │ │ │ │ │ └── index.ts │ │ │ ├── fb-hooks │ │ │ │ ├── useFetchImage.ts │ │ │ │ ├── useGetUserGeolocation.tsx │ │ │ │ ├── useProgressBarFromInterval.ts │ │ │ │ ├── useScrollStack.ts │ │ │ │ ├── useToogle.ts │ │ │ │ └── useVisibilityObserver.ts │ │ │ └── fb-services │ │ │ │ ├── index.ts │ │ │ │ └── routerEvents │ │ │ │ └── NProgressChangeRoute.ts │ │ ├── setupTests.ts │ │ ├── styled.d.ts │ │ ├── test-utils.tsx │ │ ├── theme │ │ │ ├── index.ts │ │ │ └── theme.d.ts │ │ ├── utils │ │ │ ├── createAction.ts │ │ │ ├── loadAsynImage.ts │ │ │ ├── transforms.ts │ │ │ └── types.ts │ │ └── views │ │ │ ├── CreateNewPageView │ │ │ └── index.tsx │ │ │ ├── Error404View │ │ │ ├── components │ │ │ │ ├── ErrorHeaderMessage.tsx │ │ │ │ └── TextLinkMessages.tsx │ │ │ └── index.tsx │ │ │ ├── GamingView │ │ │ └── index.tsx │ │ │ ├── GroupsView │ │ │ └── index.tsx │ │ │ ├── IndexView │ │ │ └── index.tsx │ │ │ ├── JobsView │ │ │ └── index.tsx │ │ │ ├── MarketPlaceView │ │ │ └── index.tsx │ │ │ ├── MessagesView │ │ │ └── index.tsx │ │ │ ├── PagesView │ │ │ └── index.tsx │ │ │ ├── PhotosView │ │ │ └── index.tsx │ │ │ ├── RecentActivitiesView │ │ │ └── index.tsx │ │ │ ├── SearchView │ │ │ └── index.tsx │ │ │ ├── SignInView │ │ │ ├── Forms │ │ │ │ ├── SignInForm │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── components.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── SignUpForm │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── components.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── components.tsx │ │ │ │ └── elements.tsx │ │ │ └── index.tsx │ │ │ ├── StoriesView │ │ │ └── index.tsx │ │ │ ├── UsersView │ │ │ └── index.tsx │ │ │ ├── WatchVideosView │ │ │ ├── components │ │ │ │ └── ListWatchVideoGlobals.tsx │ │ │ └── index.tsx │ │ │ └── WeatherView │ │ │ └── index.tsx │ ├── tailwind.config.ts │ └── tsconfig.json ├── auth │ └── .gitkeep ├── gaming │ └── .gitkeep ├── help │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── preview.png │ ├── public │ │ ├── assets │ │ │ ├── icons │ │ │ │ └── favicon.ico │ │ │ └── images │ │ │ │ └── help │ │ │ │ ├── business.png │ │ │ │ ├── groups.png │ │ │ │ ├── loginandpassword.png │ │ │ │ ├── marketplace.png │ │ │ │ ├── pages.png │ │ │ │ ├── yourprivacity.png │ │ │ │ └── yourprofile.png │ │ └── favicon.ico │ ├── src │ │ ├── App.tsx │ │ ├── __tests__ │ │ │ └── stores │ │ │ │ └── searchDetailInformation.store.test.ts │ │ ├── components │ │ │ ├── FloatingMessageVerifyConfirmation.tsx │ │ │ ├── HeaderNavigation │ │ │ │ ├── components │ │ │ │ │ ├── HelpCenterButtonLanguageTopics │ │ │ │ │ │ ├── InputEngineLanguages.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── HelpCenterButtonSearchTopics │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── HelpCenterTopNavTab.tsx │ │ │ │ │ ├── HelpCenterTopNavTabTopics │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── ListHelpCenterTopNavTab.tsx │ │ │ │ └── index.tsx │ │ │ ├── HelpCenterAboutPageHeaderBanner.tsx │ │ │ ├── InputEngineOptions.tsx │ │ │ ├── ListOfHelpTopicList.tsx │ │ │ ├── SidebarNavigation │ │ │ │ ├── components │ │ │ │ │ └── SidebarWrapper.tsx │ │ │ │ └── index.tsx │ │ │ ├── TopicCard.tsx │ │ │ ├── WrapperCenterContent.tsx │ │ │ └── WrapperContent.tsx │ │ ├── data │ │ │ ├── header.data.ts │ │ │ ├── languages.data.ts │ │ │ └── topics.data.ts │ │ ├── hooks │ │ │ ├── useChangeBrowserTitle.ts │ │ │ ├── useClickOutside.ts │ │ │ └── useToggle.ts │ │ ├── lib │ │ │ └── stitches.config.js │ │ ├── main.tsx │ │ ├── pages │ │ │ ├── HelpMainContentPage │ │ │ │ ├── HelpMainContentPage.tsx │ │ │ │ └── pages │ │ │ │ │ └── HelpMainPageExample.tsx │ │ │ └── HomePage │ │ │ │ ├── HomePage.tsx │ │ │ │ ├── components │ │ │ │ └── ResultSearchedItemInformation.tsx │ │ │ │ └── sections │ │ │ │ ├── HelpCenterContentSpacing.tsx │ │ │ │ ├── HelpTopicsList.tsx │ │ │ │ ├── HelpTopicsPreview.tsx │ │ │ │ └── HelpTopicsViewMore.tsx │ │ ├── routes │ │ │ └── RoutesApplication.tsx │ │ ├── setupTests.ts │ │ ├── stores │ │ │ ├── mainNavigation.store.ts │ │ │ ├── searchDetailInformation.ts │ │ │ ├── theme.store.ts │ │ │ └── topics.store.ts │ │ ├── styles │ │ │ └── globals.css │ │ ├── ui │ │ │ ├── Anchor.tsx │ │ │ ├── BaseButton.tsx │ │ │ ├── BaseButtonAvatarAction.tsx │ │ │ ├── BaseModal.tsx │ │ │ ├── BaseRadioButton.tsx │ │ │ ├── BaseText.tsx │ │ │ ├── BulletedList.tsx │ │ │ ├── CloseActionIcon.tsx │ │ │ ├── DividerSection.tsx │ │ │ ├── Facebook.tsx │ │ │ ├── FloatingCard.tsx │ │ │ ├── FloatingMessage.tsx │ │ │ ├── Paragraph.tsx │ │ │ ├── PressableItemOption.tsx │ │ │ ├── PressableOverlay.tsx │ │ │ ├── ShareButton.tsx │ │ │ ├── TetraText.tsx │ │ │ └── layouts │ │ │ │ ├── AppContainer.tsx │ │ │ │ ├── AppContent.tsx │ │ │ │ ├── AppHeaderContainer.tsx │ │ │ │ └── AppSidebarContainer.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── messenger │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── preview.png │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.tsx │ │ ├── assets │ │ │ └── images │ │ │ │ └── logo.svg │ │ ├── components │ │ │ ├── AdDownloadApplication │ │ │ │ └── index.tsx │ │ │ ├── Avatar │ │ │ │ └── index.tsx │ │ │ ├── BaseIcon │ │ │ │ └── index.tsx │ │ │ ├── ChatMessage │ │ │ │ ├── ChatMessageList.tsx │ │ │ │ └── ChatMessageListItem.tsx │ │ │ ├── InputEngine │ │ │ │ └── index.tsx │ │ │ ├── ListAccordionItem │ │ │ │ └── index.tsx │ │ │ ├── MessengerLogo │ │ │ │ └── index.tsx │ │ │ ├── MessengerScreenLoading │ │ │ │ └── index.tsx │ │ │ ├── NotMessageFound │ │ │ │ └── index.tsx │ │ │ ├── Pressable │ │ │ │ └── index.tsx │ │ │ ├── StackFullDetail │ │ │ │ └── index.tsx │ │ │ └── Text │ │ │ │ ├── TextBaseHighlighted.tsx │ │ │ │ ├── TextBaseLighter.tsx │ │ │ │ └── index.ts │ │ ├── core │ │ │ ├── services │ │ │ │ └── api.ts │ │ │ ├── styles │ │ │ │ └── index.css │ │ │ └── system │ │ │ │ └── theme.ts │ │ ├── main.tsx │ │ ├── pages │ │ │ ├── Archived │ │ │ │ └── index.tsx │ │ │ ├── Index │ │ │ │ └── index.tsx │ │ │ ├── Login │ │ │ │ └── index.tsx │ │ │ ├── Marketplace │ │ │ │ └── index.tsx │ │ │ ├── NotFound │ │ │ │ └── index.tsx │ │ │ ├── People │ │ │ │ └── index.tsx │ │ │ ├── Requests │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── sections │ │ │ ├── ChatRoom │ │ │ │ ├── components │ │ │ │ │ ├── ChatRoomMessageActivity │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── ChatRoomMessageItem │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── sections │ │ │ │ │ ├── ChatRoomMessages │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ChatRoomNavbar │ │ │ │ │ └── index.tsx │ │ │ │ │ └── ChatRoomTypeMessage │ │ │ │ │ └── index.tsx │ │ │ ├── ChatRoomProfile │ │ │ │ └── index.tsx │ │ │ ├── Dashboard │ │ │ │ └── index.tsx │ │ │ ├── LoginForm │ │ │ │ ├── hooks │ │ │ │ │ └── useLogin.ts │ │ │ │ └── index.tsx │ │ │ ├── ProfileMenuActionable │ │ │ │ ├── components │ │ │ │ │ └── HelperIcon.tsx │ │ │ │ └── index.tsx │ │ │ ├── ProfilePreferences │ │ │ │ └── index.tsx │ │ │ └── Sidebar │ │ │ │ ├── components │ │ │ │ ├── SidebarItem.tsx │ │ │ │ ├── ToggleSidebar.tsx │ │ │ │ └── UserInformation.tsx │ │ │ │ └── index.tsx │ │ ├── store │ │ │ ├── StoreProvider.tsx │ │ │ ├── actions.ts │ │ │ ├── effects │ │ │ │ ├── api.ts │ │ │ │ ├── index.ts │ │ │ │ ├── route.ts │ │ │ │ └── universal.ts │ │ │ ├── index.ts │ │ │ ├── operators │ │ │ │ └── index.ts │ │ │ ├── profile │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ └── state.ts │ │ │ ├── room │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ └── state.ts │ │ │ └── state.ts │ │ ├── types │ │ │ └── models │ │ │ │ └── index.ts │ │ ├── utils │ │ │ └── hoc │ │ │ │ └── withProfileId.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── settings │ └── .gitkeep └── streaming │ └── .gitkeep ├── commitlint.config.cjs ├── docs └── README.md ├── logo.png ├── package.json ├── packages ├── contracts │ ├── index.ts │ └── package.json ├── design-system │ └── theme.scss ├── eslint-config │ ├── base.js │ ├── nextjs.js │ ├── package.json │ └── react-vite.js └── tsconfig │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-vite.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts └── generators │ ├── next-app │ ├── next-app.generator.ts │ └── templates │ │ ├── .editorconfig.hbs │ │ ├── .env.hbs │ │ ├── .env.local.hbs │ │ ├── .eslintignore.hbs │ │ ├── .eslintrc.hbs │ │ ├── .gitignore.hbs │ │ ├── .prettierignore.hbs │ │ ├── .prettierrc.hbs │ │ ├── README.md.hbs │ │ ├── babel.config.js.hbs │ │ ├── cypress.json.hbs │ │ ├── cypress │ │ ├── .eslintrc.hbs │ │ ├── fixtures │ │ │ └── data.json.hbs │ │ ├── integration │ │ │ └── example.test.js.hbs │ │ ├── plugins │ │ │ └── index.js.hbs │ │ ├── support │ │ │ ├── commands.js.hbs │ │ │ └── index.js.hbs │ │ └── tsconfig.json.hbs │ │ ├── jest.config.js.hbs │ │ ├── next-env.d.ts.hbs │ │ ├── next.config.js.hbs │ │ ├── package.json.hbs │ │ ├── pages │ │ └── index.tsx.hbs │ │ ├── public │ │ └── favicon.ico │ │ ├── setupTests.ts.hbs │ │ ├── test-utils.ts.hbs │ │ └── tsconfig.json.hbs │ ├── package │ ├── package.generator.ts │ └── templates │ │ ├── components │ │ ├── .editorconfig.hbs │ │ ├── .eslintignore.hbs │ │ ├── .eslintrc.hbs │ │ ├── .gitignore.hbs │ │ ├── .prettierrc.hbs │ │ ├── .storybook │ │ │ ├── main.js.hbs │ │ │ └── preview.js.hbs │ │ ├── README.md.hbs │ │ ├── babel.config.js.hbs │ │ ├── jest.config.js.hbs │ │ ├── package.json.hbs │ │ ├── src │ │ │ ├── Button │ │ │ │ ├── Button.stories.tsx.hbs │ │ │ │ └── Button.tsx.hbs │ │ │ ├── index.tsx.hbs │ │ │ └── setupTests.ts.hbs │ │ ├── tsconfig.json.hbs │ │ └── webpack.config.js.hbs │ │ ├── types │ │ ├── index.ts.hbs │ │ └── package.json.hbs │ │ └── utils │ │ ├── index.ts.hbs │ │ └── package.json.hbs │ ├── plopfile.ts │ ├── react-app │ ├── react-app.generator.ts │ └── templates │ │ ├── .editorconfig.hbs │ │ ├── .eslintignore.hbs │ │ ├── .eslintrc.hbs │ │ ├── .gitignore.hbs │ │ ├── .prettierrc.hbs │ │ ├── README.md.hbs │ │ ├── babel.config.js.hbs │ │ ├── jest.config.js.hbs │ │ ├── package.json.hbs │ │ ├── public │ │ ├── favicon.ico │ │ └── index.html.hbs │ │ ├── src │ │ ├── App.tsx.hbs │ │ ├── index.tsx.hbs │ │ └── setupTests.ts.hbs │ │ ├── tsconfig.json.hbs │ │ └── webpack │ │ ├── webpack.config.common.js.hbs │ │ ├── webpack.config.dev.js.hbs │ │ └── webpack.config.prod.js.hbs │ └── service-app │ └── service-app.generator.ts ├── services ├── sapp │ └── .gitkeep └── sstreaming │ └── .gitkeep ├── static ├── preview.png └── stack.png ├── tsconfig.json └── turbo.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/linter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.github/workflows/linter.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies=false -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.9.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/README.md -------------------------------------------------------------------------------- /apps/app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/.gitignore -------------------------------------------------------------------------------- /apps/app/README.md: -------------------------------------------------------------------------------- 1 | # CLIENT - FACEBOOK 2 | -------------------------------------------------------------------------------- /apps/app/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/jest.config.ts -------------------------------------------------------------------------------- /apps/app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/next.config.js -------------------------------------------------------------------------------- /apps/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/package.json -------------------------------------------------------------------------------- /apps/app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/postcss.config.js -------------------------------------------------------------------------------- /apps/app/public/assets/icons/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/events.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/favorites.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/friends.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/friendsList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/friendsList.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/frundaisers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/frundaisers.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/games.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/groups.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/liveVideos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/liveVideos.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/marketplace.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/memories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/memories.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/messenger.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/mostRecents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/mostRecents.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/pages.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/videos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/videos.png -------------------------------------------------------------------------------- /apps/app/public/assets/icons/weathers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/icons/weathers.png -------------------------------------------------------------------------------- /apps/app/public/assets/reactions/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/reactions/angry.svg -------------------------------------------------------------------------------- /apps/app/public/assets/reactions/care.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/reactions/care.svg -------------------------------------------------------------------------------- /apps/app/public/assets/reactions/haha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/reactions/haha.svg -------------------------------------------------------------------------------- /apps/app/public/assets/reactions/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/reactions/like.svg -------------------------------------------------------------------------------- /apps/app/public/assets/reactions/love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/reactions/love.svg -------------------------------------------------------------------------------- /apps/app/public/assets/reactions/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/assets/reactions/sad.svg -------------------------------------------------------------------------------- /apps/app/public/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/facebook-logo.png -------------------------------------------------------------------------------- /apps/app/public/images/help/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/images/help/groups.png -------------------------------------------------------------------------------- /apps/app/public/images/help/loginandpassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/images/help/loginandpassword.png -------------------------------------------------------------------------------- /apps/app/public/images/help/marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/images/help/marketplace.png -------------------------------------------------------------------------------- /apps/app/public/images/help/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/images/help/pages.png -------------------------------------------------------------------------------- /apps/app/public/images/help/yourprivacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/images/help/yourprivacy.png -------------------------------------------------------------------------------- /apps/app/public/images/help/yourprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/images/help/yourprofile.png -------------------------------------------------------------------------------- /apps/app/public/login-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/public/login-graph.png -------------------------------------------------------------------------------- /apps/app/src/app/create-page/page.tsx: -------------------------------------------------------------------------------- 1 | export default function CreatePage() { 2 | return
; 3 | } 4 | -------------------------------------------------------------------------------- /apps/app/src/app/gaming/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/gaming/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/globals.scss -------------------------------------------------------------------------------- /apps/app/src/app/groups/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/groups/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/jobs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/jobs/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/app/src/app/marketplace/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/marketplace/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/messages/[userId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/messages/[userId]/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/not-found.tsx -------------------------------------------------------------------------------- /apps/app/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/pages/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/pages/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/photos/[photoId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/photos/[photoId]/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/recent-activities/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/recent-activities/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/search/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/sign-in/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/stories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/stories/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/users/[userId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/users/[userId]/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/users/[userId]/photos/[photoId]/page.tsx: -------------------------------------------------------------------------------- 1 | export default function UserPhotosPulication() { 2 | return ; 3 | } 4 | -------------------------------------------------------------------------------- /apps/app/src/app/watch/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/watch/page.tsx -------------------------------------------------------------------------------- /apps/app/src/app/weather/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/app/weather/page.tsx -------------------------------------------------------------------------------- /apps/app/src/config/environmentsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/config/environmentsConfig.ts -------------------------------------------------------------------------------- /apps/app/src/config/urlApiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/config/urlApiConfig.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/contactsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/contactsMocks.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/index.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/marketplaceMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/marketplaceMocks.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/peopleSearchResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/peopleSearchResult.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/postsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/postsMocks.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/storiesMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/storiesMocks.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/usersMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/usersMocks.ts -------------------------------------------------------------------------------- /apps/app/src/mocks/watchMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/mocks/watchMocks.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/FacebookAvatar/__test__/FacebookAvatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/FacebookAvatar/__test__/FacebookAvatar.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/FacebookAvatar/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/FacebookAvatar/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/FacebookAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/FacebookAvatar/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/FacebookCloseWithAvatar/__tests__/FacebookCloseWithAvatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/FacebookCloseWithAvatar/__tests__/FacebookCloseWithAvatar.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/FacebookCloseWithAvatar/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/FacebookCloseWithAvatar/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/FacebookCloseWithAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/FacebookCloseWithAvatar/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/GlobalStyles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/GlobalStyles/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/LinksPrivacityApplication/__tests__/LinksPrivacityApplication.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/LinksPrivacityApplication/__tests__/LinksPrivacityApplication.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/LinksPrivacityApplication/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/LinksPrivacityApplication/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/application/SEO/SEOMetaTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/application/SEO/SEOMetaTag/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Avatar/__tests__/Avatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Avatar/__tests__/Avatar.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Avatar/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/BackgroundBlurImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/BackgroundBlurImage/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/ButtonClose/__tests__/ButtonClose.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/ButtonClose/__tests__/ButtonClose.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/ButtonClose/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/ButtonClose/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Card/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/ChevronIconButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/ChevronIconButton/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/DarkTooltip/__tests__/DarkTooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/DarkTooltip/__tests__/DarkTooltip.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/DarkTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/DarkTooltip/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/EditText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/EditText/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/ErrorComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/ErrorComponent/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/FlexWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/FlexWrapper/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/FullScreenWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/FullScreenWrapper/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Grid/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/ListRenderItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/ListRenderItems/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/LiveMicroText/__tests__/LiveMicroText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/LiveMicroText/__tests__/LiveMicroText.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/LiveMicroText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/LiveMicroText/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/OverflowBackgroundImage/__tests__/OverflowBackgroundImage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/OverflowBackgroundImage/__tests__/OverflowBackgroundImage.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/OverflowBackgroundImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/OverflowBackgroundImage/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/PointNotification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/PointNotification/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/PortalComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/PortalComponent/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/RaisedButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/RaisedButton/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Reactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Reactions/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/RoundButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/RoundButton/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/RowDivider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/RowDivider/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/RowItemSelectable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/RowItemSelectable/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Skeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Skeleton/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Spinner/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/SquareImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/SquareImage/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/StringAvatars/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/StringAvatars/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/StringReactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/StringReactions/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/TextLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/TextLabel/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/TotalViews/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/TotalViews/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/common/Wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/common/Wrapper/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/ControlButtonOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/ControlButtonOption.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/UserAccountButtonOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/UserAccountButtonOption.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/data.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountControlSettings/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountControlSettings/Elements/ButtonToMoreOptionsAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountControlSettings/Elements/ButtonToMoreOptionsAccount.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountControlSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountControlSettings/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountProfileBanner/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountProfileBanner/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountProfileBanner/__tests__/AccountProfileBanner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountProfileBanner/__tests__/AccountProfileBanner.test.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/AccountProfileBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/AccountProfileBanner/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ActionButtonsController/Atoms/ActionButtonController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ActionButtonsController/Atoms/ActionButtonController.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ActionButtonsController/Atoms/ActionInputController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ActionButtonsController/Atoms/ActionInputController.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ActionButtonsController/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ActionButtonsController/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ActionButtonsController/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ActionButtonsController/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Atoms/FloatingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Atoms/FloatingButton.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Atoms/TabHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Atoms/TabHeader.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Atoms/TabMainExpanded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Atoms/TabMainExpanded.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/ChatTabPieces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/ChatTabPieces.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Context/ChatTabContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Context/ChatTabContext.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Context/ChatTabReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Context/ChatTabReducer.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Context/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Context/types.d.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Molecules/RowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Molecules/RowItem.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Molecules/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Molecules/SearchInput.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/Molecules/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/Molecules/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ChatTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ChatTab/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ContactList/Atoms/ButtonOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ContactList/Atoms/ButtonOption.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ContactList/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ContactList/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ContactList/Molecules/ListHeaderOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ContactList/Molecules/ListHeaderOptions.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ContactList/Molecules/RowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ContactList/Molecules/RowItem.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ContactList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ContactList/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/CreateNewPost/Atoms/ActionInputController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/CreateNewPost/Atoms/ActionInputController.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/CreateNewPost/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/CreateNewPost/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/CreateNewPost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/CreateNewPost/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/Context/DropdownTabOptionsAnimatableContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/Context/DropdownTabOptionsAnimatableContext.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/Molecules/DropdownItemAnimatable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/Molecules/DropdownItemAnimatable.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/DropdownTabOptionsAnimatable/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/InstaConfig/config.ts: -------------------------------------------------------------------------------- 1 | export const InstaStoryPosition = "15px"; 2 | -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/FooterStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/FooterStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/OptionIconStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/OptionIconStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/ProgressStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/ProgressStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/TextStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/TextStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/UserDetailStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Atoms/UserDetailStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Molecules/IconsOptionStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Molecules/IconsOptionStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Molecules/OverflowCardStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Molecules/OverflowCardStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/components/Molecules/TimerStatusProgressStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/components/Molecules/TimerStatusProgressStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewImageStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewImageStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewLoadingImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewLoadingImage.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewProgressStories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewProgressStories.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewUserDetailStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/containers/PreviewUserDetailStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/contexts/CTXInstaStories/InstaStoriesContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/contexts/CTXInstaStories/InstaStoriesContext.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/contexts/CTXInstaStories/InstaStoriesProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/contexts/CTXInstaStories/InstaStoriesProvider.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/contexts/CTXInstaStories/InstaStoriesTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/contexts/CTXInstaStories/InstaStoriesTypes.d.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/hooks/useManagementStories/useManagementStories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/hooks/useManagementStories/useManagementStories.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/hooks/useManagementStories/useManagementStoriesTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/hooks/useManagementStories/useManagementStoriesTypes.d.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/InstaStories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/InstaStories/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/LoadersSkeletonElement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/LoadersSkeletonElement/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/MarketplaceCard/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/MarketplaceCard/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/MarketplaceCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/MarketplaceCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalDialog/Atoms/AbsoluteCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalDialog/Atoms/AbsoluteCloseButton.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalDialog/Atoms/BackdropModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalDialog/Atoms/BackdropModal.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalDialog/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalDialog/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalDialog/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/HeaderSubItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/HeaderSubItem.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/ItemButtonSelectable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/ItemButtonSelectable.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/LinksPrivacity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/LinksPrivacity.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Molecules/ProfileAccountButtonPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/Molecules/ProfileAccountButtonPreview.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ModalMoreOptionsAccount/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/Navigation/Atoms/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/Navigation/Atoms/LinkButton.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/Navigation/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/Navigation/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/Navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/Navigation/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/Atoms/ButtonMoreAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/Atoms/ButtonMoreAction.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/Atoms/DetailUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/Atoms/DetailUser.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsBody.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsDetailReaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsDetailReaction.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsHeader.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/Molecules/NewsOptions.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/NewsFeedCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/NewsFeedCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStories/Atoms/HistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStories/Atoms/HistoryItem.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStories/Atoms/HistoryUserItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStories/Atoms/HistoryUserItem.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStories/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStories/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStories/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/Atoms/FollowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/Atoms/FollowButton.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/Atoms/TotalViewsFloating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/Atoms/TotalViewsFloating.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamByUserProfileCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/Molecules/VideoDetailStreamInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/Molecules/VideoDetailStreamInformation.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/Molecules/VideoWatchInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/Molecules/VideoWatchInformation.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/PreviewStreamWatchVideoCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/RootSearchEngine/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/RootSearchEngine/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/RootSearchEngine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/RootSearchEngine/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ScrollingSlider/Atoms/FloatingButtonToScrolling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ScrollingSlider/Atoms/FloatingButtonToScrolling.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ScrollingSlider/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ScrollingSlider/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ScrollingSlider/Molecules/ScrollingContainerHorizontal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ScrollingSlider/Molecules/ScrollingContainerHorizontal.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/ScrollingSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/ScrollingSlider/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/ButtonDeletePageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/ButtonDeletePageItem.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/CoverPageImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/CoverPageImage.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/PageLikeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/PageLikeButton.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/SuggestedPageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Atoms/SuggestedPageWrapper.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Molecules/PageInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/Molecules/PageInformation.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/SuggestedPageItemCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/TabOptions/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/TabOptions/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/TabOptions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/TabOptions/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/UserResultSearchedCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/UserResultSearchedCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/VideoMediaPlayer/Atoms/ButtonPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/VideoMediaPlayer/Atoms/ButtonPlayer.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/VideoMediaPlayer/Atoms/element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/VideoMediaPlayer/Atoms/element.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/VideoMediaPlayer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/VideoMediaPlayer/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WatchVideoCard/Atoms/BodyWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WatchVideoCard/Atoms/BodyWrapper.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WatchVideoCard/Atoms/FooterWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WatchVideoCard/Atoms/FooterWrapper.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WatchVideoCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WatchVideoCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/ItemDayWeather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/ItemDayWeather.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/MainWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/MainWrapper.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/SubtitleTextDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/SubtitleTextDetail.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Config/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Molecules/HeaderDetailWeather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Molecules/HeaderDetailWeather.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Molecules/ListWeekWeather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Molecules/ListWeekWeather.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Store/Store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Store/Store.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/Store/useGetWeatherUserLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/Store/useGetWeatherUserLocation.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WeatherDetailCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WeatherDetailCard/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WriteNewPostModal/Atoms/ButtonAddPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WriteNewPostModal/Atoms/ButtonAddPost.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WriteNewPostModal/Atoms/HeaderTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WriteNewPostModal/Atoms/HeaderTitle.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WriteNewPostModal/Atoms/TextAreaMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WriteNewPostModal/Atoms/TextAreaMessage.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WriteNewPostModal/Molecules/DetailUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WriteNewPostModal/Molecules/DetailUser.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WriteNewPostModal/Molecules/OptionsAddMoreInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WriteNewPostModal/Molecules/OptionsAddMoreInformation.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WriteNewPostModal/Store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WriteNewPostModal/Store/index.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/globals/WriteNewPostModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/globals/WriteNewPostModal/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/HeaderNavigation/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/HeaderNavigation/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/HeaderNavigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/HeaderNavigation/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawer.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerAbsoluteFullScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerAbsoluteFullScreen.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerFeed.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerFlexFluid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerFlexFluid.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerFlexSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerFlexSidebar.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerGridColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerGridColumn.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerLeftRail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerLeftRail.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerRigthRail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerRigthRail.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerStories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/LayoutsDrawer/LayoutDrawerStories.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/OptionsNavigationList/Atoms/RowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/OptionsNavigationList/Atoms/RowItem.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/OptionsNavigationList/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/OptionsNavigationList/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/OptionsNavigationList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/OptionsNavigationList/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/OptionsNavigationList/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/OptionsNavigationList/items.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-components/layouts/RootConfigLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-components/layouts/RootConfigLayout/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/AccountNavigator/Atoms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/AccountNavigator/Atoms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/AccountNavigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/AccountNavigator/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/PreviewProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/PreviewProfile/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/PreviewStateOfNavigatorSelected/ScenePosts/ScenePosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/PreviewStateOfNavigatorSelected/ScenePosts/ScenePosts.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/PreviewStateOfNavigatorSelected/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/PreviewStateOfNavigatorSelected/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerAccountProfileBannerDetail/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerChatTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerChatTabs/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerCreateNewPost/CreateNewModalWidget/CreateNewModalWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerCreateNewPost/CreateNewModalWidget/CreateNewModalWidget.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerCreateNewPost/PreviewCreateNewWidget/PreviewCreateNewWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerCreateNewPost/PreviewCreateNewWidget/PreviewCreateNewWidget.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerCreateNewPost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerCreateNewPost/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerGetListProducts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerGetListProducts/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerGetNewsFeed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerGetNewsFeed/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerGridStories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerGridStories/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerListSearchPeople/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerListSearchPeople/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerListUserStories/AddNewPublicStory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerListUserStories/AddNewPublicStory/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerListUserStories/HeaderListUsers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerListUserStories/HeaderListUsers/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerListUserStories/ListUsersWithStories/UserStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerListUserStories/ListUsersWithStories/UserStory.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerListUserStories/ListUsersWithStories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerListUserStories/ListUsersWithStories/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerListUserStories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerListUserStories/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerMainNavigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerMainNavigator/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerOnlineContactFriendsList/ContainerOnlineContactFriendsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerOnlineContactFriendsList/ContainerOnlineContactFriendsList.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerOnlineContactFriendsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerOnlineContactFriendsList/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerOptionsNavigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerOptionsNavigation/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerPreviewUserStories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerPreviewUserStories/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerProviders/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerProviders/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/CommentEditText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/CommentEditText/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/CommentReactions/ReactionCommentIconAnimatable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/CommentReactions/ReactionCommentIconAnimatable.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/CommentReactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/CommentReactions/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerViewUserStory/InputCommentStoryWithReactions/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerViewUserStory/ViewCurrentStory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerViewUserStory/ViewCurrentStory/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-containers/ContainerViewUserStory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-containers/ContainerViewUserStory/index.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-features-recoil/createNewPost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-features-recoil/createNewPost/index.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-features-recoil/marketplace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-features-recoil/marketplace/index.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-features-recoil/newsFeed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-features-recoil/newsFeed/index.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-features-recoil/userStories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-features-recoil/userStories/index.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-features-recoil/watchVideos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-features-recoil/watchVideos/index.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-hooks/useFetchImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-hooks/useFetchImage.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-hooks/useGetUserGeolocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-hooks/useGetUserGeolocation.tsx -------------------------------------------------------------------------------- /apps/app/src/packages/fb-hooks/useProgressBarFromInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-hooks/useProgressBarFromInterval.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-hooks/useScrollStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-hooks/useScrollStack.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-hooks/useToogle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-hooks/useToogle.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-hooks/useVisibilityObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-hooks/useVisibilityObserver.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-services/index.ts -------------------------------------------------------------------------------- /apps/app/src/packages/fb-services/routerEvents/NProgressChangeRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/packages/fb-services/routerEvents/NProgressChangeRoute.ts -------------------------------------------------------------------------------- /apps/app/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom/extend-expect"; 2 | -------------------------------------------------------------------------------- /apps/app/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/styled.d.ts -------------------------------------------------------------------------------- /apps/app/src/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/test-utils.tsx -------------------------------------------------------------------------------- /apps/app/src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/theme/index.ts -------------------------------------------------------------------------------- /apps/app/src/theme/theme.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/theme/theme.d.ts -------------------------------------------------------------------------------- /apps/app/src/utils/createAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/utils/createAction.ts -------------------------------------------------------------------------------- /apps/app/src/utils/loadAsynImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/utils/loadAsynImage.ts -------------------------------------------------------------------------------- /apps/app/src/utils/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/utils/transforms.ts -------------------------------------------------------------------------------- /apps/app/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/utils/types.ts -------------------------------------------------------------------------------- /apps/app/src/views/CreateNewPageView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/CreateNewPageView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/Error404View/components/ErrorHeaderMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/Error404View/components/ErrorHeaderMessage.tsx -------------------------------------------------------------------------------- /apps/app/src/views/Error404View/components/TextLinkMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/Error404View/components/TextLinkMessages.tsx -------------------------------------------------------------------------------- /apps/app/src/views/Error404View/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/Error404View/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/GamingView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/GamingView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/GroupsView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/GroupsView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/IndexView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/IndexView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/JobsView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/JobsView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/MarketPlaceView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/MarketPlaceView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/MessagesView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/MessagesView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/PagesView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/PagesView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/PhotosView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/PhotosView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/RecentActivitiesView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/RecentActivitiesView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SearchView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SearchView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/SignInForm/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/SignInForm/Form.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/SignInForm/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/SignInForm/components.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/SignInForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/SignInForm/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/SignUpForm/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/SignUpForm/Form.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/SignUpForm/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/SignUpForm/components.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/SignUpForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/SignUpForm/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/components.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/Forms/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/Forms/elements.tsx -------------------------------------------------------------------------------- /apps/app/src/views/SignInView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/SignInView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/StoriesView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/StoriesView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/UsersView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/UsersView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/WatchVideosView/components/ListWatchVideoGlobals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/WatchVideosView/components/ListWatchVideoGlobals.tsx -------------------------------------------------------------------------------- /apps/app/src/views/WatchVideosView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/WatchVideosView/index.tsx -------------------------------------------------------------------------------- /apps/app/src/views/WeatherView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/src/views/WeatherView/index.tsx -------------------------------------------------------------------------------- /apps/app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/tailwind.config.ts -------------------------------------------------------------------------------- /apps/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/app/tsconfig.json -------------------------------------------------------------------------------- /apps/auth/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/gaming/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/help/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/help/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/.gitignore -------------------------------------------------------------------------------- /apps/help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/README.md -------------------------------------------------------------------------------- /apps/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/index.html -------------------------------------------------------------------------------- /apps/help/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/package.json -------------------------------------------------------------------------------- /apps/help/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/preview.png -------------------------------------------------------------------------------- /apps/help/public/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/icons/favicon.ico -------------------------------------------------------------------------------- /apps/help/public/assets/images/help/business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/images/help/business.png -------------------------------------------------------------------------------- /apps/help/public/assets/images/help/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/images/help/groups.png -------------------------------------------------------------------------------- /apps/help/public/assets/images/help/loginandpassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/images/help/loginandpassword.png -------------------------------------------------------------------------------- /apps/help/public/assets/images/help/marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/images/help/marketplace.png -------------------------------------------------------------------------------- /apps/help/public/assets/images/help/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/images/help/pages.png -------------------------------------------------------------------------------- /apps/help/public/assets/images/help/yourprivacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/images/help/yourprivacity.png -------------------------------------------------------------------------------- /apps/help/public/assets/images/help/yourprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/assets/images/help/yourprofile.png -------------------------------------------------------------------------------- /apps/help/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/public/favicon.ico -------------------------------------------------------------------------------- /apps/help/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/App.tsx -------------------------------------------------------------------------------- /apps/help/src/__tests__/stores/searchDetailInformation.store.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/__tests__/stores/searchDetailInformation.store.test.ts -------------------------------------------------------------------------------- /apps/help/src/components/FloatingMessageVerifyConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/FloatingMessageVerifyConfirmation.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HeaderNavigation/components/HelpCenterButtonLanguageTopics/InputEngineLanguages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HeaderNavigation/components/HelpCenterButtonLanguageTopics/InputEngineLanguages.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HeaderNavigation/components/HelpCenterButtonLanguageTopics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HeaderNavigation/components/HelpCenterButtonLanguageTopics/index.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HeaderNavigation/components/HelpCenterButtonSearchTopics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HeaderNavigation/components/HelpCenterButtonSearchTopics/index.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HeaderNavigation/components/HelpCenterTopNavTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HeaderNavigation/components/HelpCenterTopNavTab.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HeaderNavigation/components/HelpCenterTopNavTabTopics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HeaderNavigation/components/HelpCenterTopNavTabTopics/index.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HeaderNavigation/components/ListHelpCenterTopNavTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HeaderNavigation/components/ListHelpCenterTopNavTab.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HeaderNavigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HeaderNavigation/index.tsx -------------------------------------------------------------------------------- /apps/help/src/components/HelpCenterAboutPageHeaderBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/HelpCenterAboutPageHeaderBanner.tsx -------------------------------------------------------------------------------- /apps/help/src/components/InputEngineOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/InputEngineOptions.tsx -------------------------------------------------------------------------------- /apps/help/src/components/ListOfHelpTopicList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/ListOfHelpTopicList.tsx -------------------------------------------------------------------------------- /apps/help/src/components/SidebarNavigation/components/SidebarWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/SidebarNavigation/components/SidebarWrapper.tsx -------------------------------------------------------------------------------- /apps/help/src/components/SidebarNavigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/SidebarNavigation/index.tsx -------------------------------------------------------------------------------- /apps/help/src/components/TopicCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/TopicCard.tsx -------------------------------------------------------------------------------- /apps/help/src/components/WrapperCenterContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/WrapperCenterContent.tsx -------------------------------------------------------------------------------- /apps/help/src/components/WrapperContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/components/WrapperContent.tsx -------------------------------------------------------------------------------- /apps/help/src/data/header.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/data/header.data.ts -------------------------------------------------------------------------------- /apps/help/src/data/languages.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/data/languages.data.ts -------------------------------------------------------------------------------- /apps/help/src/data/topics.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/data/topics.data.ts -------------------------------------------------------------------------------- /apps/help/src/hooks/useChangeBrowserTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/hooks/useChangeBrowserTitle.ts -------------------------------------------------------------------------------- /apps/help/src/hooks/useClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/hooks/useClickOutside.ts -------------------------------------------------------------------------------- /apps/help/src/hooks/useToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/hooks/useToggle.ts -------------------------------------------------------------------------------- /apps/help/src/lib/stitches.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/lib/stitches.config.js -------------------------------------------------------------------------------- /apps/help/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/main.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HelpMainContentPage/HelpMainContentPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HelpMainContentPage/HelpMainContentPage.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HelpMainContentPage/pages/HelpMainPageExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HelpMainContentPage/pages/HelpMainPageExample.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HomePage/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HomePage/HomePage.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HomePage/components/ResultSearchedItemInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HomePage/components/ResultSearchedItemInformation.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HomePage/sections/HelpCenterContentSpacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HomePage/sections/HelpCenterContentSpacing.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HomePage/sections/HelpTopicsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HomePage/sections/HelpTopicsList.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HomePage/sections/HelpTopicsPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HomePage/sections/HelpTopicsPreview.tsx -------------------------------------------------------------------------------- /apps/help/src/pages/HomePage/sections/HelpTopicsViewMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/pages/HomePage/sections/HelpTopicsViewMore.tsx -------------------------------------------------------------------------------- /apps/help/src/routes/RoutesApplication.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/routes/RoutesApplication.tsx -------------------------------------------------------------------------------- /apps/help/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom"; 2 | -------------------------------------------------------------------------------- /apps/help/src/stores/mainNavigation.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/stores/mainNavigation.store.ts -------------------------------------------------------------------------------- /apps/help/src/stores/searchDetailInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/stores/searchDetailInformation.ts -------------------------------------------------------------------------------- /apps/help/src/stores/theme.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/stores/theme.store.ts -------------------------------------------------------------------------------- /apps/help/src/stores/topics.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/stores/topics.store.ts -------------------------------------------------------------------------------- /apps/help/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/styles/globals.css -------------------------------------------------------------------------------- /apps/help/src/ui/Anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/Anchor.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/BaseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/BaseButton.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/BaseButtonAvatarAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/BaseButtonAvatarAction.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/BaseModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/BaseModal.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/BaseRadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/BaseRadioButton.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/BaseText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/BaseText.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/BulletedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/BulletedList.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/CloseActionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/CloseActionIcon.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/DividerSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/DividerSection.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/Facebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/Facebook.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/FloatingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/FloatingCard.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/FloatingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/FloatingMessage.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/Paragraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/Paragraph.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/PressableItemOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/PressableItemOption.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/PressableOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/PressableOverlay.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/ShareButton.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/TetraText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/TetraText.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/layouts/AppContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/layouts/AppContainer.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/layouts/AppContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/layouts/AppContent.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/layouts/AppHeaderContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/layouts/AppHeaderContainer.tsx -------------------------------------------------------------------------------- /apps/help/src/ui/layouts/AppSidebarContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhony-v/facebook-clone/HEAD/apps/help/src/ui/layouts/AppSidebarContainer.tsx -------------------------------------------------------------------------------- /apps/help/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | ///