第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

React 如何有條件地覆蓋 Material-UI 中的 TextField 錯誤顏色?

React 如何有條件地覆蓋 Material-UI 中的 TextField 錯誤顏色?

ABOUTYOU 2023-10-30 20:39:43
我正在使用React Material-UI庫,并且想有條件地覆蓋文本字段的錯誤顏色。當錯誤屬于某種類型時,我需要將 helperText、邊框、文本和所需標記顏色更改為黃色。像這樣的東西:否則,我想為所有其他類型的錯誤保留默認顏色(紅色)。我嘗試遵循此codesandbox中使用的相同原則,但我無法掌握需要更改的所有組件,并且important幾乎每次都必須使用關(guān)鍵字才能看到差異。我已經(jīng)設(shè)法有條件地改變類似的顏色helperText:                       <TextField                            label="Name"                            className={formClasses.textField}                            margin="normal"                            variant="outlined"                            required                            error={!!errors}                            helperText={errors && "Incorrect entry."}                            FormHelperTextProps={{classes: {root: getColorType(AnErrorType)}}}                        />將getColorType返回一個 CSS 對象,其屬性 color 設(shè)置為與給定錯誤類型相對應(yīng)的顏色。前任:hardRequiredHintText: {    color: `${theme.palette.warning.light} !important`},是否有更簡單的方法來覆蓋 MUI 錯誤顏色并查看它反映在所有使用它的組件中?
查看完整描述

1 回答

?
互換的青春

TA貢獻1797條經(jīng)驗 獲得超6個贊

對于每種類型的驗證,顯示不同的顏色,我們可以將參數(shù)傳遞給makeStyles


import { makeStyles } from "@material-ui/core/styles";

const useStyles = params =>

  makeStyles(theme => ({

    root: {

    }

  }));

const Component = () => {

  const classes = useStyles(someParams)();

https://img1.sycdn.imooc.com/653fa4360001b46d06500109.jpg

完整代碼:


import React from "react";

import "./styles.css";

import { TextField } from "@material-ui/core";

import { makeStyles } from "@material-ui/core/styles";

const useStyles = value =>

  makeStyles(theme => ({

    root: {

      "& .Mui-error": {

        color: acquireValidationColor(value)

      },

      "& .MuiFormHelperText-root": {

        color: acquireValidationColor(value)

      }

    }

  }));


const acquireValidationColor = message => {

  switch (message) {

    case "Incorrect entry":

      return "green";

    case "Please input":

      return "orange";

    default:

      return "black";

  }

};


const ValidationTextField = ({ helperText }) => {

  const classes = useStyles(helperText)();

  return (

    <TextField

      label="Name"

      margin="normal"

      variant="outlined"

      required

      error={helperText !== ""}

      helperText={helperText}

      className={classes.root}

    />

  );

};


export default function App() {

  const data = ["Incorrect entry", "Please input", ""];

  return (

    <div className="App">

      {data.map((x, idx) => (

        <ValidationTextField helperText={x} key={idx} />

      ))}

    </div>

  );

}


查看完整回答
反對 回復(fù) 2023-10-30
  • 1 回答
  • 0 關(guān)注
  • 222 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號