├── .env ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── баг-репорт.md │ └── предложить-фичу.md └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .lintstagedrc ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENCE ├── README.md ├── jsconfig.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt └── src ├── __tests__ └── compact-mode.test.jsx ├── app ├── App.jsx ├── GlobalProvider.jsx ├── GlobalStyles.js ├── LazyPlaceholder.jsx ├── Title │ ├── Title.jsx │ └── Title.test.jsx ├── constants.js ├── store.js └── theme.js ├── assets ├── animation-back-to-top.css ├── bootstrap-placeholder.css ├── sprite.svg └── toast-ui-iqa-theme.css ├── common ├── context │ └── Auth │ │ ├── AuthProvider.jsx │ │ ├── index.jsx │ │ └── useAuth.jsx ├── hooks │ ├── useOnScroll.js │ └── useQueryString.js └── utils │ ├── title.js │ ├── truncateLongText.js │ └── url.js ├── components ├── FavoritePopoverContent.jsx ├── icons │ ├── ArrowAvatar.jsx │ ├── CheckIcon.jsx │ ├── ChevronUpIcon.jsx │ ├── CloseIcon.jsx │ ├── CloseMenuIcon.jsx │ ├── CommentsIcon.jsx │ ├── DeleteIcon.jsx │ ├── EmptyFolderIcon.jsx │ ├── ErrorIcon.jsx │ ├── FavoritesIcon.jsx │ ├── FavoritesInIcon.jsx │ ├── GitHubIcons.jsx │ ├── HelpIcon.jsx │ ├── IconIcon.jsx │ ├── InfoIcon.jsx │ ├── LogoIcon.jsx │ ├── LogoNoColorIcon.jsx │ ├── LongLogoIcon.jsx │ ├── MenuIcon.jsx │ ├── NoIcon.jsx │ ├── PlusIcon.jsx │ ├── QuestionViewsIcon.jsx │ ├── RestoreIcon.jsx │ ├── SaveIcon.jsx │ ├── SearchIcon.jsx │ ├── SpinnerIcon.jsx │ ├── SuccessIcon.jsx │ ├── WarningIcon.jsx │ └── YesIcon.jsx └── layout │ ├── Footer.jsx │ ├── Paper │ ├── Paper.test.jsx │ └── index.jsx │ ├── ScrollToTop.jsx │ └── header │ ├── AdaptiveMenu.jsx │ ├── AnimatedSearch.jsx │ ├── Header.jsx │ ├── Logo.jsx │ ├── PopoverContent.jsx │ ├── Search.jsx │ └── header-menu │ ├── HeaderMenu.jsx │ ├── LinkToDeleted.jsx │ ├── LinkToFavorites.jsx │ └── LinkToProfilePage.jsx ├── features ├── application │ └── applicationSlice.js ├── comments │ ├── AddComment.jsx │ ├── CommentItem.jsx │ ├── CommentView.jsx │ ├── CommentsList.jsx │ ├── CommentsOfQuestion.jsx │ ├── CommentsPlaceholder.jsx │ ├── comment-actions │ │ ├── CommentsActions.jsx │ │ └── DeleteAction.jsx │ └── commentsSlice.js ├── profile │ ├── ProfileUser.jsx │ ├── UserFullnameForm.jsx │ └── profileSlice.js ├── questions │ ├── create-question │ │ └── CreateQuestionPage.jsx │ ├── question-page │ │ ├── QuestionPage.jsx │ │ ├── QuestionPageContent.jsx │ │ ├── QuestionPageHeader.jsx │ │ └── QuestionPagePlaceholder.jsx │ ├── questions-list │ │ ├── QuestionBlock.jsx │ │ ├── QuestionContent.jsx │ │ ├── QuestionEmptyFolder.jsx │ │ ├── QuestionHeader.jsx │ │ ├── QuestionsList.jsx │ │ ├── QuestionsListMapper.jsx │ │ ├── QuestionsListPlaceholder.jsx │ │ └── question-actions │ │ │ ├── CommentsAction.jsx │ │ │ ├── DeleteAction.jsx │ │ │ ├── FavoriteAction.jsx │ │ │ ├── FavoriteIconSwitcher.jsx │ │ │ ├── FavoritePopover.jsx │ │ │ ├── QuestionViews.jsx │ │ │ ├── QuestionsActions.jsx │ │ │ ├── RestoreAction.jsx │ │ │ └── TheQuestionAction.jsx │ └── questionsSlice.js └── search │ └── searchQuestionSlice.js ├── index.jsx ├── index.test.jsx └── pages └── HelpPage.jsx /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/баг-репорт.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.github/ISSUE_TEMPLATE/баг-репорт.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/предложить-фичу.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.github/ISSUE_TEMPLATE/предложить-фичу.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/__tests__/compact-mode.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/__tests__/compact-mode.test.jsx -------------------------------------------------------------------------------- /src/app/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/App.jsx -------------------------------------------------------------------------------- /src/app/GlobalProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/GlobalProvider.jsx -------------------------------------------------------------------------------- /src/app/GlobalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/GlobalStyles.js -------------------------------------------------------------------------------- /src/app/LazyPlaceholder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/LazyPlaceholder.jsx -------------------------------------------------------------------------------- /src/app/Title/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/Title/Title.jsx -------------------------------------------------------------------------------- /src/app/Title/Title.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/Title/Title.test.jsx -------------------------------------------------------------------------------- /src/app/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/constants.js -------------------------------------------------------------------------------- /src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/store.js -------------------------------------------------------------------------------- /src/app/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/app/theme.js -------------------------------------------------------------------------------- /src/assets/animation-back-to-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/assets/animation-back-to-top.css -------------------------------------------------------------------------------- /src/assets/bootstrap-placeholder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/assets/bootstrap-placeholder.css -------------------------------------------------------------------------------- /src/assets/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/assets/sprite.svg -------------------------------------------------------------------------------- /src/assets/toast-ui-iqa-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/assets/toast-ui-iqa-theme.css -------------------------------------------------------------------------------- /src/common/context/Auth/AuthProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/context/Auth/AuthProvider.jsx -------------------------------------------------------------------------------- /src/common/context/Auth/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/context/Auth/index.jsx -------------------------------------------------------------------------------- /src/common/context/Auth/useAuth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/context/Auth/useAuth.jsx -------------------------------------------------------------------------------- /src/common/hooks/useOnScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/hooks/useOnScroll.js -------------------------------------------------------------------------------- /src/common/hooks/useQueryString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/hooks/useQueryString.js -------------------------------------------------------------------------------- /src/common/utils/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/utils/title.js -------------------------------------------------------------------------------- /src/common/utils/truncateLongText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/utils/truncateLongText.js -------------------------------------------------------------------------------- /src/common/utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/common/utils/url.js -------------------------------------------------------------------------------- /src/components/FavoritePopoverContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/FavoritePopoverContent.jsx -------------------------------------------------------------------------------- /src/components/icons/ArrowAvatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/ArrowAvatar.jsx -------------------------------------------------------------------------------- /src/components/icons/CheckIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/CheckIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/ChevronUpIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/ChevronUpIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/CloseIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/CloseIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/CloseMenuIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/CloseMenuIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/CommentsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/CommentsIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/DeleteIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/DeleteIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/EmptyFolderIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/EmptyFolderIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/ErrorIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/ErrorIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/FavoritesIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/FavoritesIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/FavoritesInIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/FavoritesInIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/GitHubIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/GitHubIcons.jsx -------------------------------------------------------------------------------- /src/components/icons/HelpIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/HelpIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/IconIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/IconIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/InfoIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/InfoIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/LogoIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/LogoIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/LogoNoColorIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/LogoNoColorIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/LongLogoIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/LongLogoIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/MenuIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/MenuIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/NoIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/NoIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/PlusIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/PlusIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/QuestionViewsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/QuestionViewsIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/RestoreIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/RestoreIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/SaveIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/SaveIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/SearchIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/SearchIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/SpinnerIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/SpinnerIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/SuccessIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/SuccessIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/WarningIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/WarningIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/YesIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/icons/YesIcon.jsx -------------------------------------------------------------------------------- /src/components/layout/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/Footer.jsx -------------------------------------------------------------------------------- /src/components/layout/Paper/Paper.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/Paper/Paper.test.jsx -------------------------------------------------------------------------------- /src/components/layout/Paper/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/Paper/index.jsx -------------------------------------------------------------------------------- /src/components/layout/ScrollToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/ScrollToTop.jsx -------------------------------------------------------------------------------- /src/components/layout/header/AdaptiveMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/AdaptiveMenu.jsx -------------------------------------------------------------------------------- /src/components/layout/header/AnimatedSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/AnimatedSearch.jsx -------------------------------------------------------------------------------- /src/components/layout/header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/Header.jsx -------------------------------------------------------------------------------- /src/components/layout/header/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/Logo.jsx -------------------------------------------------------------------------------- /src/components/layout/header/PopoverContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/PopoverContent.jsx -------------------------------------------------------------------------------- /src/components/layout/header/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/Search.jsx -------------------------------------------------------------------------------- /src/components/layout/header/header-menu/HeaderMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/header-menu/HeaderMenu.jsx -------------------------------------------------------------------------------- /src/components/layout/header/header-menu/LinkToDeleted.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/header-menu/LinkToDeleted.jsx -------------------------------------------------------------------------------- /src/components/layout/header/header-menu/LinkToFavorites.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/header-menu/LinkToFavorites.jsx -------------------------------------------------------------------------------- /src/components/layout/header/header-menu/LinkToProfilePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/components/layout/header/header-menu/LinkToProfilePage.jsx -------------------------------------------------------------------------------- /src/features/application/applicationSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/application/applicationSlice.js -------------------------------------------------------------------------------- /src/features/comments/AddComment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/AddComment.jsx -------------------------------------------------------------------------------- /src/features/comments/CommentItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/CommentItem.jsx -------------------------------------------------------------------------------- /src/features/comments/CommentView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/CommentView.jsx -------------------------------------------------------------------------------- /src/features/comments/CommentsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/CommentsList.jsx -------------------------------------------------------------------------------- /src/features/comments/CommentsOfQuestion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/CommentsOfQuestion.jsx -------------------------------------------------------------------------------- /src/features/comments/CommentsPlaceholder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/CommentsPlaceholder.jsx -------------------------------------------------------------------------------- /src/features/comments/comment-actions/CommentsActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/comment-actions/CommentsActions.jsx -------------------------------------------------------------------------------- /src/features/comments/comment-actions/DeleteAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/comment-actions/DeleteAction.jsx -------------------------------------------------------------------------------- /src/features/comments/commentsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/comments/commentsSlice.js -------------------------------------------------------------------------------- /src/features/profile/ProfileUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/profile/ProfileUser.jsx -------------------------------------------------------------------------------- /src/features/profile/UserFullnameForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/profile/UserFullnameForm.jsx -------------------------------------------------------------------------------- /src/features/profile/profileSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/profile/profileSlice.js -------------------------------------------------------------------------------- /src/features/questions/create-question/CreateQuestionPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/create-question/CreateQuestionPage.jsx -------------------------------------------------------------------------------- /src/features/questions/question-page/QuestionPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/question-page/QuestionPage.jsx -------------------------------------------------------------------------------- /src/features/questions/question-page/QuestionPageContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/question-page/QuestionPageContent.jsx -------------------------------------------------------------------------------- /src/features/questions/question-page/QuestionPageHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/question-page/QuestionPageHeader.jsx -------------------------------------------------------------------------------- /src/features/questions/question-page/QuestionPagePlaceholder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/question-page/QuestionPagePlaceholder.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/QuestionBlock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/QuestionBlock.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/QuestionContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/QuestionContent.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/QuestionEmptyFolder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/QuestionEmptyFolder.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/QuestionHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/QuestionHeader.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/QuestionsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/QuestionsList.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/QuestionsListMapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/QuestionsListMapper.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/QuestionsListPlaceholder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/QuestionsListPlaceholder.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/CommentsAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/CommentsAction.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/DeleteAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/DeleteAction.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/FavoriteAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/FavoriteAction.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/FavoriteIconSwitcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/FavoriteIconSwitcher.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/FavoritePopover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/FavoritePopover.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/QuestionViews.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/QuestionViews.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/QuestionsActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/QuestionsActions.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/RestoreAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/RestoreAction.jsx -------------------------------------------------------------------------------- /src/features/questions/questions-list/question-actions/TheQuestionAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questions-list/question-actions/TheQuestionAction.jsx -------------------------------------------------------------------------------- /src/features/questions/questionsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/questions/questionsSlice.js -------------------------------------------------------------------------------- /src/features/search/searchQuestionSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/features/search/searchQuestionSlice.js -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/index.test.jsx -------------------------------------------------------------------------------- /src/pages/HelpPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intocode/iqa-frontend/HEAD/src/pages/HelpPage.jsx --------------------------------------------------------------------------------