From 71c52373f81cace664047edd19d9d289f45a4dff Mon Sep 17 00:00:00 2001 From: Ricardo Cino Date: Thu, 7 Jul 2022 09:31:50 +0200 Subject: chore: Mobx & React-Router upgrade (#406) Co-authored-by: Vijay A --- .../settings/recipes/RecipesDashboard.js | 304 -------------------- .../settings/recipes/RecipesDashboard.jsx | 309 +++++++++++++++++++++ 2 files changed, 309 insertions(+), 304 deletions(-) delete mode 100644 src/components/settings/recipes/RecipesDashboard.js create mode 100644 src/components/settings/recipes/RecipesDashboard.jsx (limited to 'src/components/settings/recipes') diff --git a/src/components/settings/recipes/RecipesDashboard.js b/src/components/settings/recipes/RecipesDashboard.js deleted file mode 100644 index c05144117..000000000 --- a/src/components/settings/recipes/RecipesDashboard.js +++ /dev/null @@ -1,304 +0,0 @@ -import { Component } from 'react'; -import PropTypes from 'prop-types'; -import { observer, PropTypes as MobxPropTypes } from 'mobx-react'; -import { defineMessages, injectIntl } from 'react-intl'; -import { Link } from 'react-router'; - -import injectSheet from 'react-jss'; - -import { mdiOpenInNew } from '@mdi/js'; -import Button from '../../ui/button'; -import Input from '../../ui/input/index'; -import { H1, H2, H3 } from '../../ui/headline'; -import SearchInput from '../../ui/SearchInput'; -import Infobox from '../../ui/Infobox'; -import RecipeItem from './RecipeItem'; -import Loader from '../../ui/Loader'; -import Appear from '../../ui/effects/Appear'; -import { FERDIUM_SERVICE_REQUEST } from '../../../config'; -import RecipePreview from '../../../models/RecipePreview'; -import Icon from '../../ui/icon'; - -const messages = defineMessages({ - headline: { - id: 'settings.recipes.headline', - defaultMessage: 'Available services', - }, - searchService: { - id: 'settings.searchService', - defaultMessage: 'Search service', - }, - ferdiumPicksRecipes: { - id: 'settings.recipes.ferdiumPicks', - defaultMessage: 'Ferdium Picks', - }, - allRecipes: { - id: 'settings.recipes.all', - defaultMessage: 'All services', - }, - customRecipes: { - id: 'settings.recipes.custom', - defaultMessage: 'Custom Services', - }, - nothingFound: { - id: 'settings.recipes.nothingFound', - defaultMessage: - 'Sorry, but no service matched your search term - but you can still probably add it using the "Custom Website" option. Please note that the website might show more services that have been added to Ferdium since the version that you are currently on. To get those new services, please consider upgrading to a newer version of Ferdium.', - }, - servicesSuccessfulAddedInfo: { - id: 'settings.recipes.servicesSuccessfulAddedInfo', - defaultMessage: 'Service successfully added', - }, - missingService: { - id: 'settings.recipes.missingService', - defaultMessage: 'Missing a service?', - }, - customRecipeIntro: { - id: 'settings.recipes.customService.intro', - defaultMessage: - 'To add a custom service, copy the service recipe folder inside:', - }, - openFolder: { - id: 'settings.recipes.customService.openFolder', - defaultMessage: 'Open folder', - }, - openDevDocs: { - id: 'settings.recipes.customService.openDevDocs', - defaultMessage: 'Developer Documentation', - }, - headlineCustomRecipes: { - id: 'settings.recipes.customService.headline.customRecipes', - defaultMessage: 'Custom 3rd Party Recipes', - }, - headlineCommunityRecipes: { - id: 'settings.recipes.customService.headline.communityRecipes', - defaultMessage: 'Community 3rd Party Recipes', - }, - headlineDevRecipes: { - id: 'settings.recipes.customService.headline.devRecipes', - defaultMessage: 'Your Development Service Recipes', - }, -}); - -const styles = { - devRecipeIntroContainer: { - textAlign: 'center', - width: '100%', - height: 'auto', - margin: [40, 0], - }, - path: { - marginTop: 20, - - '& > div': { - fontFamily: - 'SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace', - }, - }, - actionContainer: { - '& button': { - margin: [0, 10], - }, - }, - devRecipeList: { - marginTop: 20, - height: 'auto', - }, - proBadge: { - marginLeft: '10px !important', - }, -}; - -class RecipesDashboard extends Component { - static propTypes = { - recipes: MobxPropTypes.arrayOrObservableArray.isRequired, - customWebsiteRecipe: PropTypes.instanceOf(RecipePreview).isRequired, - isLoading: PropTypes.bool.isRequired, - hasLoadedRecipes: PropTypes.bool.isRequired, - showAddServiceInterface: PropTypes.func.isRequired, - searchRecipes: PropTypes.func.isRequired, - resetSearch: PropTypes.func.isRequired, - serviceStatus: MobxPropTypes.arrayOrObservableArray.isRequired, - searchNeedle: PropTypes.string, - recipeFilter: PropTypes.string, - recipeDirectory: PropTypes.string.isRequired, - openRecipeDirectory: PropTypes.func.isRequired, - openDevDocs: PropTypes.func.isRequired, - classes: PropTypes.object.isRequired, - }; - - static defaultProps = { - searchNeedle: '', - recipeFilter: 'all', - }; - - render() { - const { - recipes, - customWebsiteRecipe, - isLoading, - hasLoadedRecipes, - showAddServiceInterface, - searchRecipes, - resetSearch, - serviceStatus, - searchNeedle, - recipeFilter, - recipeDirectory, - openRecipeDirectory, - openDevDocs, - classes, - } = this.props; - const { intl } = this.props; - - const communityRecipes = recipes.filter(r => !r.isDevRecipe); - const devRecipes = recipes.filter(r => r.isDevRecipe); - - return ( -
-
-

{intl.formatMessage(messages.headline)}

-
-
- {serviceStatus.length > 0 && serviceStatus.includes('created') && ( - - - {intl.formatMessage(messages.servicesSuccessfulAddedInfo)} - - - )} - searchRecipes(e)} - onReset={() => resetSearch()} - autoFocus - throttle - /> -
- resetSearch()} - > - {intl.formatMessage(messages.ferdiumPicksRecipes)} - - resetSearch()} - > - {intl.formatMessage(messages.allRecipes)} - - resetSearch()} - > - {intl.formatMessage(messages.customRecipes)} - - - {intl.formatMessage(messages.missingService)}{' '} - - -
- {/* )} */} - {isLoading ? ( - - ) : ( - <> - {recipeFilter === 'dev' && ( - <> -

{intl.formatMessage(messages.headlineCustomRecipes)}

-
-

{intl.formatMessage(messages.customRecipeIntro)}

- -
-
-
- - )} - {recipeFilter === 'dev' && communityRecipes.length > 0 && ( -

{intl.formatMessage(messages.headlineCommunityRecipes)}

- )} -
- {communityRecipes.map(recipe => ( - - showAddServiceInterface({ recipeId: recipe.id }) - } - /> - ))} -
- {hasLoadedRecipes && recipes.length === 0 && recipeFilter !== 'dev' && ( -
- {customWebsiteRecipe && customWebsiteRecipe.id && ( - - showAddServiceInterface({ - recipeId: customWebsiteRecipe.id, - }) - } - /> - )} -

- {intl.formatMessage(messages.nothingFound)} -

-
- )} - {recipeFilter === 'dev' && devRecipes.length > 0 && ( -
-

{intl.formatMessage(messages.headlineDevRecipes)}

-
- {devRecipes.map(recipe => ( - - showAddServiceInterface({ recipeId: recipe.id }) - } - /> - ))} -
-
- )} - - )} -
-
- ); - } -} - -export default injectIntl( - injectSheet(styles, { injectTheme: true })(observer(RecipesDashboard)), -); diff --git a/src/components/settings/recipes/RecipesDashboard.jsx b/src/components/settings/recipes/RecipesDashboard.jsx new file mode 100644 index 000000000..589b97ecd --- /dev/null +++ b/src/components/settings/recipes/RecipesDashboard.jsx @@ -0,0 +1,309 @@ +import { Component } from 'react'; +import PropTypes from 'prop-types'; +import { observer, PropTypes as MobxPropTypes } from 'mobx-react'; +import { defineMessages, injectIntl } from 'react-intl'; +import { NavLink } from 'react-router-dom'; + +import injectSheet from 'react-jss'; + +import { mdiOpenInNew } from '@mdi/js'; +import Button from '../../ui/button'; +import Input from '../../ui/input/index'; +import { H1, H2, H3 } from '../../ui/headline'; +import SearchInput from '../../ui/SearchInput'; +import Infobox from '../../ui/Infobox'; +import RecipeItem from './RecipeItem'; +import Loader from '../../ui/Loader'; +import Appear from '../../ui/effects/Appear'; +import { FERDIUM_SERVICE_REQUEST } from '../../../config'; +import RecipePreview from '../../../models/RecipePreview'; +import Icon from '../../ui/icon'; + +const messages = defineMessages({ + headline: { + id: 'settings.recipes.headline', + defaultMessage: 'Available services', + }, + searchService: { + id: 'settings.searchService', + defaultMessage: 'Search service', + }, + ferdiumPicksRecipes: { + id: 'settings.recipes.ferdiumPicks', + defaultMessage: 'Ferdium Picks', + }, + allRecipes: { + id: 'settings.recipes.all', + defaultMessage: 'All services', + }, + customRecipes: { + id: 'settings.recipes.custom', + defaultMessage: 'Custom Services', + }, + nothingFound: { + id: 'settings.recipes.nothingFound', + defaultMessage: + 'Sorry, but no service matched your search term - but you can still probably add it using the "Custom Website" option. Please note that the website might show more services that have been added to Ferdium since the version that you are currently on. To get those new services, please consider upgrading to a newer version of Ferdium.', + }, + servicesSuccessfulAddedInfo: { + id: 'settings.recipes.servicesSuccessfulAddedInfo', + defaultMessage: 'Service successfully added', + }, + missingService: { + id: 'settings.recipes.missingService', + defaultMessage: 'Missing a service?', + }, + customRecipeIntro: { + id: 'settings.recipes.customService.intro', + defaultMessage: + 'To add a custom service, copy the service recipe folder inside:', + }, + openFolder: { + id: 'settings.recipes.customService.openFolder', + defaultMessage: 'Open folder', + }, + openDevDocs: { + id: 'settings.recipes.customService.openDevDocs', + defaultMessage: 'Developer Documentation', + }, + headlineCustomRecipes: { + id: 'settings.recipes.customService.headline.customRecipes', + defaultMessage: 'Custom 3rd Party Recipes', + }, + headlineCommunityRecipes: { + id: 'settings.recipes.customService.headline.communityRecipes', + defaultMessage: 'Community 3rd Party Recipes', + }, + headlineDevRecipes: { + id: 'settings.recipes.customService.headline.devRecipes', + defaultMessage: 'Your Development Service Recipes', + }, +}); + +const styles = { + devRecipeIntroContainer: { + textAlign: 'center', + width: '100%', + height: 'auto', + margin: [40, 0], + }, + path: { + marginTop: 20, + + '& > div': { + fontFamily: + 'SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace', + }, + }, + actionContainer: { + '& button': { + margin: [0, 10], + }, + }, + devRecipeList: { + marginTop: 20, + height: 'auto', + }, + proBadge: { + marginLeft: '10px !important', + }, +}; + +class RecipesDashboard extends Component { + static propTypes = { + recipes: MobxPropTypes.arrayOrObservableArray.isRequired, + customWebsiteRecipe: PropTypes.instanceOf(RecipePreview).isRequired, + isLoading: PropTypes.bool.isRequired, + hasLoadedRecipes: PropTypes.bool.isRequired, + showAddServiceInterface: PropTypes.func.isRequired, + searchRecipes: PropTypes.func.isRequired, + resetSearch: PropTypes.func.isRequired, + serviceStatus: MobxPropTypes.arrayOrObservableArray.isRequired, + searchNeedle: PropTypes.string, + recipeFilter: PropTypes.string, + recipeDirectory: PropTypes.string.isRequired, + openRecipeDirectory: PropTypes.func.isRequired, + openDevDocs: PropTypes.func.isRequired, + classes: PropTypes.object.isRequired, + }; + + static defaultProps = { + searchNeedle: '', + recipeFilter: 'all', + }; + + render() { + const { + recipes, + customWebsiteRecipe, + isLoading, + hasLoadedRecipes, + showAddServiceInterface, + searchRecipes, + resetSearch, + serviceStatus, + searchNeedle, + recipeFilter, + recipeDirectory, + openRecipeDirectory, + openDevDocs, + classes, + } = this.props; + const { intl } = this.props; + + const communityRecipes = recipes.filter(r => !r.isDevRecipe); + const devRecipes = recipes.filter(r => r.isDevRecipe); + + return ( +
+
+

{intl.formatMessage(messages.headline)}

+
+
+ {serviceStatus.length > 0 && serviceStatus.includes('created') && ( + + + {intl.formatMessage(messages.servicesSuccessfulAddedInfo)} + + + )} + searchRecipes(e)} + onReset={() => resetSearch()} + autoFocus + throttle + /> +
+ + recipeFilter === 'featured' ? 'badge badge--primary' : 'badge' + } + onClick={() => resetSearch()} + > + {intl.formatMessage(messages.ferdiumPicksRecipes)} + + + isActive && recipeFilter === 'all' ? 'badge badge--primary' : 'badge' + } + onClick={() => resetSearch()} + > + {intl.formatMessage(messages.allRecipes)} + + + isActive && !searchNeedle ? 'badge badge--primary' : 'badge' + } + onClick={() => resetSearch()} + > + {intl.formatMessage(messages.customRecipes)} + + + {intl.formatMessage(messages.missingService)}{' '} + + +
+ {/* )} */} + {isLoading ? ( + + ) : ( + <> + {recipeFilter === 'dev' && ( + <> +

{intl.formatMessage(messages.headlineCustomRecipes)}

+
+

{intl.formatMessage(messages.customRecipeIntro)}

+ +
+
+
+ + )} + {recipeFilter === 'dev' && communityRecipes.length > 0 && ( +

{intl.formatMessage(messages.headlineCommunityRecipes)}

+ )} +
+ {communityRecipes.map(recipe => ( + + showAddServiceInterface({ recipeId: recipe.id }) + } + /> + ))} +
+ {hasLoadedRecipes && + recipes.length === 0 && + recipeFilter !== 'dev' && ( +
+ {customWebsiteRecipe && customWebsiteRecipe.id && ( + + showAddServiceInterface({ + recipeId: customWebsiteRecipe.id, + }) + } + /> + )} +

+ {intl.formatMessage(messages.nothingFound)} +

+
+ )} + {recipeFilter === 'dev' && devRecipes.length > 0 && ( +
+

{intl.formatMessage(messages.headlineDevRecipes)}

+
+ {devRecipes.map(recipe => ( + + showAddServiceInterface({ recipeId: recipe.id }) + } + /> + ))} +
+
+ )} + + )} +
+
+ ); + } +} + +export default injectIntl( + injectSheet(styles, { injectTheme: true })(observer(RecipesDashboard)), +); -- cgit v1.2.3-70-g09d2