├── .eslintrc ├── .github ├── PULL_REQUEST_TEMPLATE └── issue_template.md ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── deploy.sh ├── deploy_key.enc ├── docs ├── DisplayingSkills.md ├── FolderStructure.md ├── ModifyingSkills.md ├── ServerEndPoints.md ├── SkillVersionControl.md ├── Skill_Categories.md └── Skill_Tutorial.md ├── package.json ├── pr_deploy.sh ├── public ├── botTemplates │ ├── chat-bot.jpg │ ├── contact-us.png │ ├── event-registration.jpg │ └── job-application.jpg ├── chat-style.css ├── chatbox-style.min.css ├── close.png ├── codemirror.css ├── customAvatars │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-512x512.jpg ├── favicon.ico ├── index.html ├── loading.gif ├── main.css ├── manifest.json ├── send.png └── susi-chatbot.js └── src ├── DefaultSettings.js ├── MUItheme.js ├── __tests__ └── components │ ├── Admin │ ├── Admin.js │ ├── ListSkills │ │ └── ListSkills.js │ ├── ListUser │ │ └── ListUser.js │ ├── SystemLogs │ │ └── SystemLogs.js │ └── SystemSettings │ │ └── SystemSettings.js │ ├── Auth │ ├── ForgotPassword │ │ └── ForgotPassword.js │ ├── Login │ │ └── Login.js │ ├── Logout.js │ └── SignUp │ │ └── SignUp.js │ ├── AuthorSkills │ └── AuthorSkills.js │ ├── BotBuilder │ ├── BotBuilder.js │ ├── BotBuilderPages │ │ ├── Configure.js │ │ ├── ConfigureViews │ │ │ ├── CodeView.js │ │ │ └── UIView.js │ │ ├── Deploy.js │ │ ├── Design.js │ │ └── DesignViews │ │ │ ├── CodeView.js │ │ │ └── UIView.js │ ├── BotBuilderWrap.js │ ├── BotWizard.js │ └── Preview │ │ └── Preview.js │ ├── BrowseSkill │ ├── BrowseSkill.js │ ├── BrowseSkillByCategory.js │ └── BrowseSkillByLanguage.js │ ├── CircleImage │ └── CircleImage.js │ ├── Commons │ ├── Alert.js │ └── Lozenge.js │ ├── CountryWiseSkillUsageCard │ └── CountryWiseSkillUsageCard.js │ ├── Dashboard │ ├── Dashboard.js │ ├── MyAnalytics.js │ ├── MyRatings.js │ └── MySkills.js │ ├── Footer │ └── Footer.react.js │ ├── NotFound │ └── NotFound.js │ ├── SkillCardGrid.js │ └── SkillCardGrid.js │ ├── SkillCardList │ └── SkillCardList.js │ ├── SkillCardScrollList │ ├── SkillCard.js │ └── SkillCardScrollList.js │ ├── SkillCreator │ ├── SkillCreator.js │ └── SkillViews │ │ ├── CodeView.js │ │ ├── ConversationView.js │ │ └── TreeView.js │ ├── SkillFeedbackCard │ └── SkillFeedbackCard.js │ ├── SkillFeedbackPage │ └── SkillFeedbackPage.js │ ├── SkillHistory │ └── SkillHistory.js │ ├── SkillPage │ └── SkillListing.js │ ├── SkillRating │ ├── SkillRating.js │ └── SkillRatingCard.js │ ├── SkillRollBack │ └── SkillRollBack.js │ ├── SkillUsageCard │ └── SkillUsageCard.js │ ├── SkillVersion │ └── SkillVersion.js │ └── StaticAppBar │ └── StaticAppBar.react.js ├── api └── index.js ├── components ├── Admin │ ├── Admin.css │ ├── Admin.js │ ├── AdminTab │ │ └── AdminTab.js │ ├── ListSkills │ │ ├── ListSkills.css │ │ └── ListSkills.js │ ├── ListUser │ │ ├── ListUser.css │ │ └── ListUser.js │ ├── SystemLogs │ │ └── SystemLogs.js │ └── SystemSettings │ │ └── SystemSettings.js ├── Auth │ ├── ForgotPassword │ │ ├── ForgotPassword.css │ │ └── ForgotPassword.js │ ├── Login │ │ ├── Login.css │ │ └── Login.js │ ├── Logout.react.js │ └── SignUp │ │ ├── SignUp.css │ │ └── SignUp.js ├── AuthorSkills │ ├── AuthorSkills.css │ └── AuthorSkills.js ├── BotBuilder │ ├── BotBuilder.css │ ├── BotBuilder.js │ ├── BotBuilderPages │ │ ├── Animation.min.css │ │ ├── Configure.js │ │ ├── ConfigureViews │ │ │ ├── CodeView.js │ │ │ └── UIView.js │ │ ├── Deploy.js │ │ ├── Design.js │ │ └── DesignViews │ │ │ ├── CodeView.js │ │ │ └── UIView.js │ ├── BotBuilderWrap.js │ ├── BotWizard.js │ └── Preview │ │ ├── Chatbot.css │ │ ├── Preview.css │ │ └── Preview.js ├── BrowseSkill │ ├── BrowseSkill.js │ ├── BrowseSkillByCategory.js │ ├── BrowseSkillByLanguage.js │ ├── SkillStyle.js │ └── custom.css ├── CircleImage │ ├── CircleImage.css │ └── CircleImage.js ├── Commons │ ├── Alert.js │ ├── DialogContainer.js │ └── Lozenge.js ├── CountryWiseSkillUsageCard │ ├── CountryWiseSkillUsageCard.css │ └── CountryWiseSkillUsageCard.js ├── Dashboard │ ├── Dashboard.css │ ├── Dashboard.js │ ├── MyAnalytics.js │ ├── MyRatings.js │ └── MySkills.js ├── Footer │ ├── Footer.css │ └── Footer.react.js ├── NotFound │ ├── NotFound.css │ └── NotFound.react.js ├── SkillCardGrid │ └── SkillCardGrid.js ├── SkillCardList │ ├── SkillCardList.js │ └── SkillCardStyle.js ├── SkillCardScrollList │ ├── ScrollStyle.js │ ├── SkillCard.js │ ├── SkillCardScrollList.js │ └── SkillCardScrollList.min.css ├── SkillCreator │ ├── Animation.min.css │ ├── SkillCreator.css │ ├── SkillCreator.js │ └── SkillViews │ │ ├── CodeView.js │ │ ├── ConversationView.css │ │ ├── ConversationView.js │ │ ├── TreeView.css │ │ └── TreeView.js ├── SkillFeedbackCard │ ├── SkillFeedbackCard.css │ └── SkillFeedbackCard.js ├── SkillFeedbackPage │ ├── SkillFeedbackPage.css │ └── SkillFeedbackPage.js ├── SkillHistory │ ├── SkillHistory.css │ └── SkillHistory.js ├── SkillPage │ ├── SkillListing.css │ └── SkillListing.js ├── SkillRating │ ├── ReviewPopoverStyle.css │ ├── SkillRating.js │ ├── SkillRatingCard.css │ ├── SkillRatingCard.js │ └── SkillRatingPopover.js ├── SkillRollBack │ └── SkillRollBack.js ├── SkillUsageCard │ ├── SkillUsage.css │ └── SkillUsageCard.js ├── SkillVersion │ ├── SkillVersion.css │ └── SkillVersion.js └── StaticAppBar │ ├── StaticAppBar.css │ └── StaticAppBar.react.js ├── helper └── ajax.js ├── images ├── SUSIAI-white.png ├── github-logo.png ├── loading.gif ├── staff_pick.png └── susi-logo.svg ├── index.js ├── redux ├── actionTypes │ └── index.js ├── actions │ ├── app.js │ ├── create.js │ ├── skill.js │ ├── skills.js │ └── ui.js ├── create.js └── reducers │ ├── app.js │ ├── create.js │ ├── index.js │ ├── skill.js │ ├── skills.js │ └── ui.js ├── setupTests.js ├── store.js └── utils ├── avatars.js ├── camelizeKeys.js ├── colors.js ├── formatDate.js ├── getAvatarProps.js ├── getQueryStringValue.js ├── index.js ├── isEmail.js ├── isMobileView.js ├── isProduction.js ├── isoCountries.js ├── parseDate.js ├── request.js ├── scrollAnimation.js ├── searchURLPath.js ├── testExample.js ├── toFormData.js └── urls.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /docs/DisplayingSkills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/docs/DisplayingSkills.md -------------------------------------------------------------------------------- /docs/FolderStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/docs/FolderStructure.md -------------------------------------------------------------------------------- /docs/ModifyingSkills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/docs/ModifyingSkills.md -------------------------------------------------------------------------------- /docs/ServerEndPoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/docs/ServerEndPoints.md -------------------------------------------------------------------------------- /docs/SkillVersionControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/docs/SkillVersionControl.md -------------------------------------------------------------------------------- /docs/Skill_Categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/docs/Skill_Categories.md -------------------------------------------------------------------------------- /docs/Skill_Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/docs/Skill_Tutorial.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/package.json -------------------------------------------------------------------------------- /pr_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/pr_deploy.sh -------------------------------------------------------------------------------- /public/botTemplates/chat-bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/botTemplates/chat-bot.jpg -------------------------------------------------------------------------------- /public/botTemplates/contact-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/botTemplates/contact-us.png -------------------------------------------------------------------------------- /public/botTemplates/event-registration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/botTemplates/event-registration.jpg -------------------------------------------------------------------------------- /public/botTemplates/job-application.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/botTemplates/job-application.jpg -------------------------------------------------------------------------------- /public/chat-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/chat-style.css -------------------------------------------------------------------------------- /public/chatbox-style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/chatbox-style.min.css -------------------------------------------------------------------------------- /public/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/close.png -------------------------------------------------------------------------------- /public/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/codemirror.css -------------------------------------------------------------------------------- /public/customAvatars/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/0.png -------------------------------------------------------------------------------- /public/customAvatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/1.png -------------------------------------------------------------------------------- /public/customAvatars/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/2.png -------------------------------------------------------------------------------- /public/customAvatars/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/3.png -------------------------------------------------------------------------------- /public/customAvatars/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/4.png -------------------------------------------------------------------------------- /public/customAvatars/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/5.png -------------------------------------------------------------------------------- /public/customAvatars/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/6.png -------------------------------------------------------------------------------- /public/customAvatars/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/7.png -------------------------------------------------------------------------------- /public/customAvatars/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/8.png -------------------------------------------------------------------------------- /public/customAvatars/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/customAvatars/9.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-512x512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/favicon-512x512.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/index.html -------------------------------------------------------------------------------- /public/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/loading.gif -------------------------------------------------------------------------------- /public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/main.css -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/send.png -------------------------------------------------------------------------------- /public/susi-chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/public/susi-chatbot.js -------------------------------------------------------------------------------- /src/DefaultSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/DefaultSettings.js -------------------------------------------------------------------------------- /src/MUItheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/MUItheme.js -------------------------------------------------------------------------------- /src/__tests__/components/Admin/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Admin/Admin.js -------------------------------------------------------------------------------- /src/__tests__/components/Admin/ListSkills/ListSkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Admin/ListSkills/ListSkills.js -------------------------------------------------------------------------------- /src/__tests__/components/Admin/ListUser/ListUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Admin/ListUser/ListUser.js -------------------------------------------------------------------------------- /src/__tests__/components/Admin/SystemLogs/SystemLogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Admin/SystemLogs/SystemLogs.js -------------------------------------------------------------------------------- /src/__tests__/components/Admin/SystemSettings/SystemSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Admin/SystemSettings/SystemSettings.js -------------------------------------------------------------------------------- /src/__tests__/components/Auth/ForgotPassword/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Auth/ForgotPassword/ForgotPassword.js -------------------------------------------------------------------------------- /src/__tests__/components/Auth/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Auth/Login/Login.js -------------------------------------------------------------------------------- /src/__tests__/components/Auth/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Auth/Logout.js -------------------------------------------------------------------------------- /src/__tests__/components/Auth/SignUp/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Auth/SignUp/SignUp.js -------------------------------------------------------------------------------- /src/__tests__/components/AuthorSkills/AuthorSkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/AuthorSkills/AuthorSkills.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilder.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderPages/Configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderPages/Configure.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderPages/ConfigureViews/CodeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderPages/ConfigureViews/CodeView.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderPages/ConfigureViews/UIView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderPages/ConfigureViews/UIView.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderPages/Deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderPages/Deploy.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderPages/Design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderPages/Design.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderPages/DesignViews/CodeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderPages/DesignViews/CodeView.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderPages/DesignViews/UIView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderPages/DesignViews/UIView.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotBuilderWrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotBuilderWrap.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/BotWizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/BotWizard.js -------------------------------------------------------------------------------- /src/__tests__/components/BotBuilder/Preview/Preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BotBuilder/Preview/Preview.js -------------------------------------------------------------------------------- /src/__tests__/components/BrowseSkill/BrowseSkill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BrowseSkill/BrowseSkill.js -------------------------------------------------------------------------------- /src/__tests__/components/BrowseSkill/BrowseSkillByCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BrowseSkill/BrowseSkillByCategory.js -------------------------------------------------------------------------------- /src/__tests__/components/BrowseSkill/BrowseSkillByLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/BrowseSkill/BrowseSkillByLanguage.js -------------------------------------------------------------------------------- /src/__tests__/components/CircleImage/CircleImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/CircleImage/CircleImage.js -------------------------------------------------------------------------------- /src/__tests__/components/Commons/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Commons/Alert.js -------------------------------------------------------------------------------- /src/__tests__/components/Commons/Lozenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Commons/Lozenge.js -------------------------------------------------------------------------------- /src/__tests__/components/CountryWiseSkillUsageCard/CountryWiseSkillUsageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/CountryWiseSkillUsageCard/CountryWiseSkillUsageCard.js -------------------------------------------------------------------------------- /src/__tests__/components/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/__tests__/components/Dashboard/MyAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Dashboard/MyAnalytics.js -------------------------------------------------------------------------------- /src/__tests__/components/Dashboard/MyRatings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Dashboard/MyRatings.js -------------------------------------------------------------------------------- /src/__tests__/components/Dashboard/MySkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Dashboard/MySkills.js -------------------------------------------------------------------------------- /src/__tests__/components/Footer/Footer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/Footer/Footer.react.js -------------------------------------------------------------------------------- /src/__tests__/components/NotFound/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/NotFound/NotFound.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCardGrid.js/SkillCardGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCardGrid.js/SkillCardGrid.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCardList/SkillCardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCardList/SkillCardList.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCardScrollList/SkillCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCardScrollList/SkillCard.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCardScrollList/SkillCardScrollList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCardScrollList/SkillCardScrollList.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCreator/SkillCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCreator/SkillCreator.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCreator/SkillViews/CodeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCreator/SkillViews/CodeView.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCreator/SkillViews/ConversationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCreator/SkillViews/ConversationView.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillCreator/SkillViews/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillCreator/SkillViews/TreeView.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillFeedbackCard/SkillFeedbackCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillFeedbackCard/SkillFeedbackCard.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillFeedbackPage/SkillFeedbackPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillFeedbackPage/SkillFeedbackPage.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillHistory/SkillHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillHistory/SkillHistory.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillPage/SkillListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillPage/SkillListing.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillRating/SkillRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillRating/SkillRating.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillRating/SkillRatingCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillRating/SkillRatingCard.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillRollBack/SkillRollBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillRollBack/SkillRollBack.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillUsageCard/SkillUsageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillUsageCard/SkillUsageCard.js -------------------------------------------------------------------------------- /src/__tests__/components/SkillVersion/SkillVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/SkillVersion/SkillVersion.js -------------------------------------------------------------------------------- /src/__tests__/components/StaticAppBar/StaticAppBar.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/__tests__/components/StaticAppBar/StaticAppBar.react.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/components/Admin/Admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/Admin.css -------------------------------------------------------------------------------- /src/components/Admin/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/Admin.js -------------------------------------------------------------------------------- /src/components/Admin/AdminTab/AdminTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/AdminTab/AdminTab.js -------------------------------------------------------------------------------- /src/components/Admin/ListSkills/ListSkills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/ListSkills/ListSkills.css -------------------------------------------------------------------------------- /src/components/Admin/ListSkills/ListSkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/ListSkills/ListSkills.js -------------------------------------------------------------------------------- /src/components/Admin/ListUser/ListUser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/ListUser/ListUser.css -------------------------------------------------------------------------------- /src/components/Admin/ListUser/ListUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/ListUser/ListUser.js -------------------------------------------------------------------------------- /src/components/Admin/SystemLogs/SystemLogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/SystemLogs/SystemLogs.js -------------------------------------------------------------------------------- /src/components/Admin/SystemSettings/SystemSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Admin/SystemSettings/SystemSettings.js -------------------------------------------------------------------------------- /src/components/Auth/ForgotPassword/ForgotPassword.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Auth/ForgotPassword/ForgotPassword.css -------------------------------------------------------------------------------- /src/components/Auth/ForgotPassword/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Auth/ForgotPassword/ForgotPassword.js -------------------------------------------------------------------------------- /src/components/Auth/Login/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Auth/Login/Login.css -------------------------------------------------------------------------------- /src/components/Auth/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Auth/Login/Login.js -------------------------------------------------------------------------------- /src/components/Auth/Logout.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Auth/Logout.react.js -------------------------------------------------------------------------------- /src/components/Auth/SignUp/SignUp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Auth/SignUp/SignUp.css -------------------------------------------------------------------------------- /src/components/Auth/SignUp/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Auth/SignUp/SignUp.js -------------------------------------------------------------------------------- /src/components/AuthorSkills/AuthorSkills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/AuthorSkills/AuthorSkills.css -------------------------------------------------------------------------------- /src/components/AuthorSkills/AuthorSkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/AuthorSkills/AuthorSkills.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilder.css -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilder.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/Animation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/Animation.min.css -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/Configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/Configure.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/ConfigureViews/CodeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/ConfigureViews/CodeView.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/ConfigureViews/UIView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/ConfigureViews/UIView.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/Deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/Deploy.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/Design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/Design.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/DesignViews/CodeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/DesignViews/CodeView.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderPages/DesignViews/UIView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderPages/DesignViews/UIView.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotBuilderWrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotBuilderWrap.js -------------------------------------------------------------------------------- /src/components/BotBuilder/BotWizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/BotWizard.js -------------------------------------------------------------------------------- /src/components/BotBuilder/Preview/Chatbot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/Preview/Chatbot.css -------------------------------------------------------------------------------- /src/components/BotBuilder/Preview/Preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/Preview/Preview.css -------------------------------------------------------------------------------- /src/components/BotBuilder/Preview/Preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BotBuilder/Preview/Preview.js -------------------------------------------------------------------------------- /src/components/BrowseSkill/BrowseSkill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BrowseSkill/BrowseSkill.js -------------------------------------------------------------------------------- /src/components/BrowseSkill/BrowseSkillByCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BrowseSkill/BrowseSkillByCategory.js -------------------------------------------------------------------------------- /src/components/BrowseSkill/BrowseSkillByLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BrowseSkill/BrowseSkillByLanguage.js -------------------------------------------------------------------------------- /src/components/BrowseSkill/SkillStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BrowseSkill/SkillStyle.js -------------------------------------------------------------------------------- /src/components/BrowseSkill/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/BrowseSkill/custom.css -------------------------------------------------------------------------------- /src/components/CircleImage/CircleImage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/CircleImage/CircleImage.css -------------------------------------------------------------------------------- /src/components/CircleImage/CircleImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/CircleImage/CircleImage.js -------------------------------------------------------------------------------- /src/components/Commons/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Commons/Alert.js -------------------------------------------------------------------------------- /src/components/Commons/DialogContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Commons/DialogContainer.js -------------------------------------------------------------------------------- /src/components/Commons/Lozenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Commons/Lozenge.js -------------------------------------------------------------------------------- /src/components/CountryWiseSkillUsageCard/CountryWiseSkillUsageCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/CountryWiseSkillUsageCard/CountryWiseSkillUsageCard.css -------------------------------------------------------------------------------- /src/components/CountryWiseSkillUsageCard/CountryWiseSkillUsageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/CountryWiseSkillUsageCard/CountryWiseSkillUsageCard.js -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Dashboard/Dashboard.css -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/components/Dashboard/MyAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Dashboard/MyAnalytics.js -------------------------------------------------------------------------------- /src/components/Dashboard/MyRatings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Dashboard/MyRatings.js -------------------------------------------------------------------------------- /src/components/Dashboard/MySkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Dashboard/MySkills.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/Footer/Footer.react.js -------------------------------------------------------------------------------- /src/components/NotFound/NotFound.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/NotFound/NotFound.css -------------------------------------------------------------------------------- /src/components/NotFound/NotFound.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/NotFound/NotFound.react.js -------------------------------------------------------------------------------- /src/components/SkillCardGrid/SkillCardGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCardGrid/SkillCardGrid.js -------------------------------------------------------------------------------- /src/components/SkillCardList/SkillCardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCardList/SkillCardList.js -------------------------------------------------------------------------------- /src/components/SkillCardList/SkillCardStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCardList/SkillCardStyle.js -------------------------------------------------------------------------------- /src/components/SkillCardScrollList/ScrollStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCardScrollList/ScrollStyle.js -------------------------------------------------------------------------------- /src/components/SkillCardScrollList/SkillCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCardScrollList/SkillCard.js -------------------------------------------------------------------------------- /src/components/SkillCardScrollList/SkillCardScrollList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCardScrollList/SkillCardScrollList.js -------------------------------------------------------------------------------- /src/components/SkillCardScrollList/SkillCardScrollList.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCardScrollList/SkillCardScrollList.min.css -------------------------------------------------------------------------------- /src/components/SkillCreator/Animation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/Animation.min.css -------------------------------------------------------------------------------- /src/components/SkillCreator/SkillCreator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/SkillCreator.css -------------------------------------------------------------------------------- /src/components/SkillCreator/SkillCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/SkillCreator.js -------------------------------------------------------------------------------- /src/components/SkillCreator/SkillViews/CodeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/SkillViews/CodeView.js -------------------------------------------------------------------------------- /src/components/SkillCreator/SkillViews/ConversationView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/SkillViews/ConversationView.css -------------------------------------------------------------------------------- /src/components/SkillCreator/SkillViews/ConversationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/SkillViews/ConversationView.js -------------------------------------------------------------------------------- /src/components/SkillCreator/SkillViews/TreeView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/SkillViews/TreeView.css -------------------------------------------------------------------------------- /src/components/SkillCreator/SkillViews/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillCreator/SkillViews/TreeView.js -------------------------------------------------------------------------------- /src/components/SkillFeedbackCard/SkillFeedbackCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillFeedbackCard/SkillFeedbackCard.css -------------------------------------------------------------------------------- /src/components/SkillFeedbackCard/SkillFeedbackCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillFeedbackCard/SkillFeedbackCard.js -------------------------------------------------------------------------------- /src/components/SkillFeedbackPage/SkillFeedbackPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillFeedbackPage/SkillFeedbackPage.css -------------------------------------------------------------------------------- /src/components/SkillFeedbackPage/SkillFeedbackPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillFeedbackPage/SkillFeedbackPage.js -------------------------------------------------------------------------------- /src/components/SkillHistory/SkillHistory.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillHistory/SkillHistory.css -------------------------------------------------------------------------------- /src/components/SkillHistory/SkillHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillHistory/SkillHistory.js -------------------------------------------------------------------------------- /src/components/SkillPage/SkillListing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillPage/SkillListing.css -------------------------------------------------------------------------------- /src/components/SkillPage/SkillListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillPage/SkillListing.js -------------------------------------------------------------------------------- /src/components/SkillRating/ReviewPopoverStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillRating/ReviewPopoverStyle.css -------------------------------------------------------------------------------- /src/components/SkillRating/SkillRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillRating/SkillRating.js -------------------------------------------------------------------------------- /src/components/SkillRating/SkillRatingCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillRating/SkillRatingCard.css -------------------------------------------------------------------------------- /src/components/SkillRating/SkillRatingCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillRating/SkillRatingCard.js -------------------------------------------------------------------------------- /src/components/SkillRating/SkillRatingPopover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillRating/SkillRatingPopover.js -------------------------------------------------------------------------------- /src/components/SkillRollBack/SkillRollBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillRollBack/SkillRollBack.js -------------------------------------------------------------------------------- /src/components/SkillUsageCard/SkillUsage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillUsageCard/SkillUsage.css -------------------------------------------------------------------------------- /src/components/SkillUsageCard/SkillUsageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillUsageCard/SkillUsageCard.js -------------------------------------------------------------------------------- /src/components/SkillVersion/SkillVersion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillVersion/SkillVersion.css -------------------------------------------------------------------------------- /src/components/SkillVersion/SkillVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/SkillVersion/SkillVersion.js -------------------------------------------------------------------------------- /src/components/StaticAppBar/StaticAppBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/StaticAppBar/StaticAppBar.css -------------------------------------------------------------------------------- /src/components/StaticAppBar/StaticAppBar.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/components/StaticAppBar/StaticAppBar.react.js -------------------------------------------------------------------------------- /src/helper/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/helper/ajax.js -------------------------------------------------------------------------------- /src/images/SUSIAI-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/images/SUSIAI-white.png -------------------------------------------------------------------------------- /src/images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/images/github-logo.png -------------------------------------------------------------------------------- /src/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/images/loading.gif -------------------------------------------------------------------------------- /src/images/staff_pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/images/staff_pick.png -------------------------------------------------------------------------------- /src/images/susi-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/images/susi-logo.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/index.js -------------------------------------------------------------------------------- /src/redux/actionTypes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/actionTypes/index.js -------------------------------------------------------------------------------- /src/redux/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/actions/app.js -------------------------------------------------------------------------------- /src/redux/actions/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/actions/create.js -------------------------------------------------------------------------------- /src/redux/actions/skill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/actions/skill.js -------------------------------------------------------------------------------- /src/redux/actions/skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/actions/skills.js -------------------------------------------------------------------------------- /src/redux/actions/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/actions/ui.js -------------------------------------------------------------------------------- /src/redux/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/create.js -------------------------------------------------------------------------------- /src/redux/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/reducers/app.js -------------------------------------------------------------------------------- /src/redux/reducers/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/reducers/create.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/redux/reducers/skill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/reducers/skill.js -------------------------------------------------------------------------------- /src/redux/reducers/skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/reducers/skills.js -------------------------------------------------------------------------------- /src/redux/reducers/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/redux/reducers/ui.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/store.js -------------------------------------------------------------------------------- /src/utils/avatars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/avatars.js -------------------------------------------------------------------------------- /src/utils/camelizeKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/camelizeKeys.js -------------------------------------------------------------------------------- /src/utils/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/colors.js -------------------------------------------------------------------------------- /src/utils/formatDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/formatDate.js -------------------------------------------------------------------------------- /src/utils/getAvatarProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/getAvatarProps.js -------------------------------------------------------------------------------- /src/utils/getQueryStringValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/getQueryStringValue.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/isEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/isEmail.js -------------------------------------------------------------------------------- /src/utils/isMobileView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/isMobileView.js -------------------------------------------------------------------------------- /src/utils/isProduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/isProduction.js -------------------------------------------------------------------------------- /src/utils/isoCountries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/isoCountries.js -------------------------------------------------------------------------------- /src/utils/parseDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/parseDate.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/scrollAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/scrollAnimation.js -------------------------------------------------------------------------------- /src/utils/searchURLPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/searchURLPath.js -------------------------------------------------------------------------------- /src/utils/testExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/testExample.js -------------------------------------------------------------------------------- /src/utils/toFormData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/toFormData.js -------------------------------------------------------------------------------- /src/utils/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_skill_cms/HEAD/src/utils/urls.js --------------------------------------------------------------------------------