import React, { 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 { Button, Input } from '@meetfranz/forms'; import injectSheet from 'react-jss'; import { H3, H2 } from '@meetfranz/ui'; 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 { FRANZ_SERVICE_REQUEST } from '../../../config'; import RecipePreview from '../../../models/RecipePreview'; const messages = defineMessages({ headline: { id: 'settings.recipes.headline', defaultMessage: 'Available Services', }, searchService: { id: 'settings.searchService', defaultMessage: 'Search service', }, 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 Ferdi since the version that you are currently on. To get those new services, please consider upgrading to a newer version of Ferdi.', }, 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 recipe folder into:', }, openFolder: { id: 'settings.recipes.customService.openFolder', defaultMessage: 'Open directory', }, 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', }, }; @injectSheet(styles) @observer class RecipesDashboard extends Component { static propTypes = { recipes: MobxPropTypes.arrayOrObservableArray.isRequired, customWebsiteRecipe: PropTypes.instanceOf(RecipePreview).isRequired, isLoading: 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, 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); const isLoggedIn = Boolean(localStorage.getItem('authToken')); 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.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)}

)}
{recipes.length === 0 && recipeFilter !== 'dev' && (

{intl.formatMessage(messages.nothingFound)}

isLoggedIn && showAddServiceInterface({ recipeId: customWebsiteRecipe.id, }) } />
)} {communityRecipes.map(recipe => ( isLoggedIn && showAddServiceInterface({ recipeId: recipe.id }) } /> ))}
{recipeFilter === 'dev' && devRecipes.length > 0 && (

{intl.formatMessage(messages.headlineDevRecipes)}

{devRecipes.map(recipe => ( isLoggedIn && showAddServiceInterface({ recipeId: recipe.id }) } /> ))}
)} )}
); } } export default injectIntl(RecipesDashboard);