aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings
diff options
context:
space:
mode:
authorLibravatar Nathanaƫl Houn <contact@nathanaelhoun.fr>2022-05-15 23:42:36 +0200
committerLibravatar GitHub <noreply@github.com>2022-05-15 23:42:36 +0200
commited2e034b12b15c5b4ac638e6b89a4ee9a7ed5012 (patch)
treee51d99224a111a02e9ce0f39ea9762387be2950a /src/components/settings
parentExtracted ImageHelper and ImageController from ServiceController for reuse (diff)
downloadferdium-app-ed2e034b12b15c5b4ac638e6b89a4ee9a7ed5012.tar.gz
ferdium-app-ed2e034b12b15c5b4ac638e6b89a4ee9a7ed5012.tar.zst
ferdium-app-ed2e034b12b15c5b4ac638e6b89a4ee9a7ed5012.zip
fix: revert "Typescript conversion" (#153)
Diffstat (limited to 'src/components/settings')
-rw-r--r--src/components/settings/recipes/RecipeItem.js (renamed from src/components/settings/recipes/RecipeItem.tsx)13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/components/settings/recipes/RecipeItem.tsx b/src/components/settings/recipes/RecipeItem.js
index 1dfe88683..df5b42222 100644
--- a/src/components/settings/recipes/RecipeItem.tsx
+++ b/src/components/settings/recipes/RecipeItem.js
@@ -1,14 +1,15 @@
1import { Component } from 'react'; 1import { Component } from 'react';
2import PropTypes from 'prop-types';
2import { observer } from 'mobx-react'; 3import { observer } from 'mobx-react';
3 4
4import RecipePreviewModel from '../../../models/RecipePreview'; 5import RecipePreviewModel from '../../../models/RecipePreview';
5 6
6type Props = { 7class RecipeItem extends Component {
7 recipe: RecipePreviewModel; 8 static propTypes = {
8 onClick: () => {}; 9 recipe: PropTypes.instanceOf(RecipePreviewModel).isRequired,
9}; 10 onClick: PropTypes.func.isRequired,
11 };
10 12
11class RecipeItem extends Component<Props> {
12 render() { 13 render() {
13 const { recipe, onClick } = this.props; 14 const { recipe, onClick } = this.props;
14 15
@@ -17,7 +18,7 @@ class RecipeItem extends Component<Props> {
17 {recipe.isDevRecipe && ( 18 {recipe.isDevRecipe && (
18 <span className="recipe-teaser__dev-badge">dev</span> 19 <span className="recipe-teaser__dev-badge">dev</span>
19 )} 20 )}
20 <img src={recipe.icon} className="recipe-teaser__icon" alt="" /> 21 <img src={recipe.icons.svg} className="recipe-teaser__icon" alt="" />
21 <span className="recipe-teaser__label">{recipe.name}</span> 22 <span className="recipe-teaser__label">{recipe.name}</span>
22 {recipe.aliases && recipe.aliases.length > 0 && ( 23 {recipe.aliases && recipe.aliases.length > 0 && (
23 <span className="recipe-teaser__alias_label"> 24 <span className="recipe-teaser__alias_label">