├── App.js ├── FontContext.js ├── LICENSE ├── Notice that Eld library uses Apache-2.0 license ├── README.md ├── StateContext.js ├── actions └── index.js ├── app.json ├── assets ├── Checkmark.json ├── Communities_Image.png ├── Feeling_Lucky_Image.png ├── Home_Image.png ├── InstanceLottie.json ├── Instance_Image.png ├── Notification_Image.png ├── Quiblr Instance Graphic.png ├── Quiblr Signup Left.png ├── Quiblr Signup Right.png ├── Quiblr_Confused.png ├── Quiblr_Full.png ├── Quiblr_Full_Background_Removed_Dark.png ├── Quiblr_Full_Background_Removed_Light.png ├── Quiblr_Logo.png ├── Quiblr_MinuteBeat_Numbers.png ├── Quiblr_MinuteBeat_Words.png ├── Quiblr_Small.png ├── Quiblr_Transition.png ├── Saved_Image.png ├── Settings_Image.png ├── checkLottie.json ├── favicon.png ├── fonts │ ├── OpenDyslexic-Bold.otf │ ├── OpenDyslexic-BoldItalic.otf │ ├── OpenDyslexic-Italic.otf │ └── OpenDyslexic-Regular.otf ├── icon.png ├── icons.js └── splash.png ├── babel.config.js ├── components ├── BackNavigation.js ├── GenericButton.js ├── LoadingMoreFooter.js ├── MenuOptionComponent.js ├── NextLastButton.js ├── NoMoreContentNote.js ├── NoResults.js ├── NsfwTag.js ├── PageTitle.js ├── PostAndReply.js ├── SimpleFilterButton.js └── XButton.js ├── constants └── index.js ├── contexts └── LemmyAPIContext.js ├── hooks └── useLemmyApi.js ├── items ├── components │ ├── BlankItemSeparator.js │ ├── CommentButton.js │ ├── CommunityPosterTime.js │ ├── ItemSeparator.js │ ├── MoreButton.js │ ├── SavePost.js │ ├── SharePost.js │ ├── Voting.js │ └── zoomImage.js └── posts │ └── RenderCard.js ├── navigation ├── NavigationService.js ├── StackNavigator │ └── index.js └── index.js ├── overlays ├── AllOverlays.js └── TransitionOverlay.js ├── package.json ├── redux ├── actions.js ├── constants.js ├── reducer.js └── store.js ├── screens ├── ForgotPasswordScreen.js ├── LoginPage.js ├── PostDetailsPage.js ├── ProfileSettingsPage.js ├── TransitionPage.js ├── comments │ ├── components │ │ ├── Comments.js │ │ └── WritePostOptions.js │ └── screens │ │ ├── CommentPage.js │ │ ├── FullImagePage.js │ │ └── SpecificCommentPage.js ├── communities │ ├── components │ │ ├── CommunityInfoHeader.js │ │ ├── NoResultsCommunityView.js │ │ ├── PostsSectionCommunity.js │ │ └── SearchCommunitiesPage.js │ └── screens │ │ ├── CommunitiesPage.js │ │ └── CommunityViewPage.js ├── errors │ ├── Error.js │ └── ErrorAlreadyLoggedIn.js ├── frontpage │ ├── components │ │ └── PostsSection.js │ └── screens │ │ └── MainPage.js ├── instance │ └── screens │ │ └── InstancePage.js ├── learnMore │ ├── components │ │ ├── KnowledgeCenterHeader.js │ │ └── KnowledgeCenterLogo.js │ └── screens │ │ ├── InstanceLearnMorePage.js │ │ └── PostActivityLearnMorePage.js ├── nsfw │ └── screens │ │ ├── NsfwWarningCommunity.js │ │ └── NsfwWarningPost.js ├── saved │ ├── components │ │ └── SavedPostsSection.js │ └── screens │ │ └── SavedPostsPage.js ├── search │ ├── components │ │ ├── NoResultsSearch.js │ │ ├── PostsSectionSearch.js │ │ ├── SearchDropdown.js │ │ └── SearchDropdownSection.js │ └── screens │ │ ├── SearchDropdownMobile.js │ │ └── SearchPage.js ├── settings │ ├── components │ │ ├── FontSizeOption.js │ │ ├── FontSizeTrigger.js │ │ └── ProfileSettingsPlaceholder.js │ └── screens │ │ └── SettingsPage.js ├── signup │ ├── components │ │ └── AlreadyHaveAnAccount.js │ └── screens │ │ ├── SignupPageApplication.js │ │ ├── SignupPageIntro.js │ │ └── SignupPageSelectInstance.js ├── user │ ├── components │ │ └── UserComments.js │ └── screens │ │ └── ProfileInfoPage.js └── writePost │ ├── components │ ├── CommunitiesSearch.js │ └── WritePostSection.js │ └── screens │ ├── EditableWritePostPage.js │ └── WritePostPage.js ├── sections ├── BlankBarSection.js ├── HeaderSection.js ├── LeftBarList.js ├── RightBarSection.js └── components │ ├── HeaderLogo.js │ └── LeftBarButton.js ├── styles └── Formatting.js ├── utils └── makeCommentsHierarchy.js └── yarn.lock /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/App.js -------------------------------------------------------------------------------- /FontContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/FontContext.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/LICENSE -------------------------------------------------------------------------------- /Notice that Eld library uses Apache-2.0 license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/Notice that Eld library uses Apache-2.0 license -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/README.md -------------------------------------------------------------------------------- /StateContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/StateContext.js -------------------------------------------------------------------------------- /actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/actions/index.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/app.json -------------------------------------------------------------------------------- /assets/Checkmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Checkmark.json -------------------------------------------------------------------------------- /assets/Communities_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Communities_Image.png -------------------------------------------------------------------------------- /assets/Feeling_Lucky_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Feeling_Lucky_Image.png -------------------------------------------------------------------------------- /assets/Home_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Home_Image.png -------------------------------------------------------------------------------- /assets/InstanceLottie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/InstanceLottie.json -------------------------------------------------------------------------------- /assets/Instance_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Instance_Image.png -------------------------------------------------------------------------------- /assets/Notification_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Notification_Image.png -------------------------------------------------------------------------------- /assets/Quiblr Instance Graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr Instance Graphic.png -------------------------------------------------------------------------------- /assets/Quiblr Signup Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr Signup Left.png -------------------------------------------------------------------------------- /assets/Quiblr Signup Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr Signup Right.png -------------------------------------------------------------------------------- /assets/Quiblr_Confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_Confused.png -------------------------------------------------------------------------------- /assets/Quiblr_Full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_Full.png -------------------------------------------------------------------------------- /assets/Quiblr_Full_Background_Removed_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_Full_Background_Removed_Dark.png -------------------------------------------------------------------------------- /assets/Quiblr_Full_Background_Removed_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_Full_Background_Removed_Light.png -------------------------------------------------------------------------------- /assets/Quiblr_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_Logo.png -------------------------------------------------------------------------------- /assets/Quiblr_MinuteBeat_Numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_MinuteBeat_Numbers.png -------------------------------------------------------------------------------- /assets/Quiblr_MinuteBeat_Words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_MinuteBeat_Words.png -------------------------------------------------------------------------------- /assets/Quiblr_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_Small.png -------------------------------------------------------------------------------- /assets/Quiblr_Transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Quiblr_Transition.png -------------------------------------------------------------------------------- /assets/Saved_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Saved_Image.png -------------------------------------------------------------------------------- /assets/Settings_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/Settings_Image.png -------------------------------------------------------------------------------- /assets/checkLottie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/checkLottie.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/fonts/OpenDyslexic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/fonts/OpenDyslexic-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/OpenDyslexic-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/fonts/OpenDyslexic-BoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/OpenDyslexic-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/fonts/OpenDyslexic-Italic.otf -------------------------------------------------------------------------------- /assets/fonts/OpenDyslexic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/fonts/OpenDyslexic-Regular.otf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/icons.js -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/BackNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/BackNavigation.js -------------------------------------------------------------------------------- /components/GenericButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/GenericButton.js -------------------------------------------------------------------------------- /components/LoadingMoreFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/LoadingMoreFooter.js -------------------------------------------------------------------------------- /components/MenuOptionComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/MenuOptionComponent.js -------------------------------------------------------------------------------- /components/NextLastButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/NextLastButton.js -------------------------------------------------------------------------------- /components/NoMoreContentNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/NoMoreContentNote.js -------------------------------------------------------------------------------- /components/NoResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/NoResults.js -------------------------------------------------------------------------------- /components/NsfwTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/NsfwTag.js -------------------------------------------------------------------------------- /components/PageTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/PageTitle.js -------------------------------------------------------------------------------- /components/PostAndReply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/PostAndReply.js -------------------------------------------------------------------------------- /components/SimpleFilterButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/SimpleFilterButton.js -------------------------------------------------------------------------------- /components/XButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/components/XButton.js -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/constants/index.js -------------------------------------------------------------------------------- /contexts/LemmyAPIContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/contexts/LemmyAPIContext.js -------------------------------------------------------------------------------- /hooks/useLemmyApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/hooks/useLemmyApi.js -------------------------------------------------------------------------------- /items/components/BlankItemSeparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/BlankItemSeparator.js -------------------------------------------------------------------------------- /items/components/CommentButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/CommentButton.js -------------------------------------------------------------------------------- /items/components/CommunityPosterTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/CommunityPosterTime.js -------------------------------------------------------------------------------- /items/components/ItemSeparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/ItemSeparator.js -------------------------------------------------------------------------------- /items/components/MoreButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/MoreButton.js -------------------------------------------------------------------------------- /items/components/SavePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/SavePost.js -------------------------------------------------------------------------------- /items/components/SharePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/SharePost.js -------------------------------------------------------------------------------- /items/components/Voting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/Voting.js -------------------------------------------------------------------------------- /items/components/zoomImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/components/zoomImage.js -------------------------------------------------------------------------------- /items/posts/RenderCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/items/posts/RenderCard.js -------------------------------------------------------------------------------- /navigation/NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/navigation/NavigationService.js -------------------------------------------------------------------------------- /navigation/StackNavigator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/navigation/StackNavigator/index.js -------------------------------------------------------------------------------- /navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/navigation/index.js -------------------------------------------------------------------------------- /overlays/AllOverlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/overlays/AllOverlays.js -------------------------------------------------------------------------------- /overlays/TransitionOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/overlays/TransitionOverlay.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/package.json -------------------------------------------------------------------------------- /redux/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/redux/actions.js -------------------------------------------------------------------------------- /redux/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/redux/constants.js -------------------------------------------------------------------------------- /redux/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/redux/reducer.js -------------------------------------------------------------------------------- /redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/redux/store.js -------------------------------------------------------------------------------- /screens/ForgotPasswordScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/ForgotPasswordScreen.js -------------------------------------------------------------------------------- /screens/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/LoginPage.js -------------------------------------------------------------------------------- /screens/PostDetailsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/PostDetailsPage.js -------------------------------------------------------------------------------- /screens/ProfileSettingsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/ProfileSettingsPage.js -------------------------------------------------------------------------------- /screens/TransitionPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/TransitionPage.js -------------------------------------------------------------------------------- /screens/comments/components/Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/comments/components/Comments.js -------------------------------------------------------------------------------- /screens/comments/components/WritePostOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/comments/components/WritePostOptions.js -------------------------------------------------------------------------------- /screens/comments/screens/CommentPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/comments/screens/CommentPage.js -------------------------------------------------------------------------------- /screens/comments/screens/FullImagePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/comments/screens/FullImagePage.js -------------------------------------------------------------------------------- /screens/comments/screens/SpecificCommentPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/comments/screens/SpecificCommentPage.js -------------------------------------------------------------------------------- /screens/communities/components/CommunityInfoHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/communities/components/CommunityInfoHeader.js -------------------------------------------------------------------------------- /screens/communities/components/NoResultsCommunityView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/communities/components/NoResultsCommunityView.js -------------------------------------------------------------------------------- /screens/communities/components/PostsSectionCommunity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/communities/components/PostsSectionCommunity.js -------------------------------------------------------------------------------- /screens/communities/components/SearchCommunitiesPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/communities/components/SearchCommunitiesPage.js -------------------------------------------------------------------------------- /screens/communities/screens/CommunitiesPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/communities/screens/CommunitiesPage.js -------------------------------------------------------------------------------- /screens/communities/screens/CommunityViewPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/communities/screens/CommunityViewPage.js -------------------------------------------------------------------------------- /screens/errors/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/errors/Error.js -------------------------------------------------------------------------------- /screens/errors/ErrorAlreadyLoggedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/errors/ErrorAlreadyLoggedIn.js -------------------------------------------------------------------------------- /screens/frontpage/components/PostsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/frontpage/components/PostsSection.js -------------------------------------------------------------------------------- /screens/frontpage/screens/MainPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/frontpage/screens/MainPage.js -------------------------------------------------------------------------------- /screens/instance/screens/InstancePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/instance/screens/InstancePage.js -------------------------------------------------------------------------------- /screens/learnMore/components/KnowledgeCenterHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/learnMore/components/KnowledgeCenterHeader.js -------------------------------------------------------------------------------- /screens/learnMore/components/KnowledgeCenterLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/learnMore/components/KnowledgeCenterLogo.js -------------------------------------------------------------------------------- /screens/learnMore/screens/InstanceLearnMorePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/learnMore/screens/InstanceLearnMorePage.js -------------------------------------------------------------------------------- /screens/learnMore/screens/PostActivityLearnMorePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/learnMore/screens/PostActivityLearnMorePage.js -------------------------------------------------------------------------------- /screens/nsfw/screens/NsfwWarningCommunity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/nsfw/screens/NsfwWarningCommunity.js -------------------------------------------------------------------------------- /screens/nsfw/screens/NsfwWarningPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/nsfw/screens/NsfwWarningPost.js -------------------------------------------------------------------------------- /screens/saved/components/SavedPostsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/saved/components/SavedPostsSection.js -------------------------------------------------------------------------------- /screens/saved/screens/SavedPostsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/saved/screens/SavedPostsPage.js -------------------------------------------------------------------------------- /screens/search/components/NoResultsSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/search/components/NoResultsSearch.js -------------------------------------------------------------------------------- /screens/search/components/PostsSectionSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/search/components/PostsSectionSearch.js -------------------------------------------------------------------------------- /screens/search/components/SearchDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/search/components/SearchDropdown.js -------------------------------------------------------------------------------- /screens/search/components/SearchDropdownSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/search/components/SearchDropdownSection.js -------------------------------------------------------------------------------- /screens/search/screens/SearchDropdownMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/search/screens/SearchDropdownMobile.js -------------------------------------------------------------------------------- /screens/search/screens/SearchPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/search/screens/SearchPage.js -------------------------------------------------------------------------------- /screens/settings/components/FontSizeOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/settings/components/FontSizeOption.js -------------------------------------------------------------------------------- /screens/settings/components/FontSizeTrigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/settings/components/FontSizeTrigger.js -------------------------------------------------------------------------------- /screens/settings/components/ProfileSettingsPlaceholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/settings/components/ProfileSettingsPlaceholder.js -------------------------------------------------------------------------------- /screens/settings/screens/SettingsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/settings/screens/SettingsPage.js -------------------------------------------------------------------------------- /screens/signup/components/AlreadyHaveAnAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/signup/components/AlreadyHaveAnAccount.js -------------------------------------------------------------------------------- /screens/signup/screens/SignupPageApplication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/signup/screens/SignupPageApplication.js -------------------------------------------------------------------------------- /screens/signup/screens/SignupPageIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/signup/screens/SignupPageIntro.js -------------------------------------------------------------------------------- /screens/signup/screens/SignupPageSelectInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/signup/screens/SignupPageSelectInstance.js -------------------------------------------------------------------------------- /screens/user/components/UserComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/user/components/UserComments.js -------------------------------------------------------------------------------- /screens/user/screens/ProfileInfoPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/user/screens/ProfileInfoPage.js -------------------------------------------------------------------------------- /screens/writePost/components/CommunitiesSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/writePost/components/CommunitiesSearch.js -------------------------------------------------------------------------------- /screens/writePost/components/WritePostSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/writePost/components/WritePostSection.js -------------------------------------------------------------------------------- /screens/writePost/screens/EditableWritePostPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/writePost/screens/EditableWritePostPage.js -------------------------------------------------------------------------------- /screens/writePost/screens/WritePostPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/screens/writePost/screens/WritePostPage.js -------------------------------------------------------------------------------- /sections/BlankBarSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/sections/BlankBarSection.js -------------------------------------------------------------------------------- /sections/HeaderSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/sections/HeaderSection.js -------------------------------------------------------------------------------- /sections/LeftBarList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/sections/LeftBarList.js -------------------------------------------------------------------------------- /sections/RightBarSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/sections/RightBarSection.js -------------------------------------------------------------------------------- /sections/components/HeaderLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/sections/components/HeaderLogo.js -------------------------------------------------------------------------------- /sections/components/LeftBarButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/sections/components/LeftBarButton.js -------------------------------------------------------------------------------- /styles/Formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/styles/Formatting.js -------------------------------------------------------------------------------- /utils/makeCommentsHierarchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/utils/makeCommentsHierarchy.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technicolor-Dreamcoat/Quiblr/HEAD/yarn.lock --------------------------------------------------------------------------------