|
@@ -1,9 +1,8 @@
|
|
import React, { useEffect, useState } from 'react';
|
|
import React, { useEffect, useState } from 'react';
|
|
import { ListItem, ListItemIcon, ListItemText, useTheme } from '@material-ui/core';
|
|
import { ListItem, ListItemIcon, ListItemText, useTheme } from '@material-ui/core';
|
|
import CreatableSelect from 'react-select/creatable';
|
|
import CreatableSelect from 'react-select/creatable';
|
|
-// import MuiAlert from '@material-ui/lab/Alert';
|
|
|
|
import { makeStyles } from '@material-ui/styles';
|
|
import { makeStyles } from '@material-ui/styles';
|
|
-import { func, object, shape, string } from "prop-types";
|
|
|
|
|
|
+import { func, string } from "prop-types";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useAuth0, withAuthenticationRequired } from "@auth0/auth0-react";
|
|
import { useAuth0, withAuthenticationRequired } from "@auth0/auth0-react";
|
|
import { LoadingBody } from "../Loading";
|
|
import { LoadingBody } from "../Loading";
|
|
@@ -11,7 +10,7 @@ import { getSettingsOfUser } from "../Settings/settings.util";
|
|
import { faPlusCircle } from "@fortawesome/free-solid-svg-icons";
|
|
import { faPlusCircle } from "@fortawesome/free-solid-svg-icons";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { ChooseIconDialog, updateMealCategories } from "../Settings/EditMealCategories";
|
|
import { ChooseIconDialog, updateMealCategories } from "../Settings/EditMealCategories";
|
|
-import { useCategoryIcons } from "./meals.util";
|
|
|
|
|
|
+import { reactSelectTheme, useCategoryIcons } from "./meals.util";
|
|
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
const useStyles = makeStyles((theme) => ({
|
|
textField: {
|
|
textField: {
|
|
@@ -107,13 +106,6 @@ const SelectMealCategory = (props) => {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- const theme = (givenTheme) => {
|
|
|
|
- givenTheme.colors.primary = muiTheme.palette.primary.main;
|
|
|
|
- givenTheme.colors.danger = muiTheme.palette.error.main;
|
|
|
|
- givenTheme.spacing.baseUnit = 4;
|
|
|
|
- return givenTheme;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
console.log(categoryIcons);
|
|
console.log(categoryIcons);
|
|
console.log(categoryName, currentCategory, allCategories);
|
|
console.log(categoryName, currentCategory, allCategories);
|
|
return (
|
|
return (
|
|
@@ -124,7 +116,7 @@ const SelectMealCategory = (props) => {
|
|
components={{ Option: SelectOption, SingleValue: ChosenOption }}
|
|
components={{ Option: SelectOption, SingleValue: ChosenOption }}
|
|
getOptionLabel={option => option.name}
|
|
getOptionLabel={option => option.name}
|
|
onChange={handleCategoryChange}
|
|
onChange={handleCategoryChange}
|
|
- theme={givenTheme => theme(givenTheme)}
|
|
|
|
|
|
+ theme={givenTheme => reactSelectTheme(givenTheme, muiTheme, true)}
|
|
getNewOptionData={(value) => {
|
|
getNewOptionData={(value) => {
|
|
return {
|
|
return {
|
|
name: value,
|
|
name: value,
|