我将在下面包含我的代码,但是它很大程度上基于Material-ui和Algolia SearchBox文档。它们都可以单独工作,但是从本质上讲,我的应用程序试图将Algolia的搜索功能合并到Material-ui内置的AppBar的搜索栏功能中,该功能实际上在技术上(功能上)正常工作,只是没有一个CSS与搜索Input字段本身相关似乎正在工作。
谁能看到为什么我的代码可能无法在CSS上使用?
现在的样子:
根据material-ui文档,应该是什么样子,以及在我尝试将两者混合之前的样子:
我认为还应该注意的另一件事是,当我对页面进行更改并重新编译时(我说的是任何更改,而不仅仅是CSS),我都会在屏幕上看到第二张图片,但是很快当我重新加载时,它会回到第一张图片。我知道这种行为必定具有重要意义,但仅此而已。而且,没有一个可观察到的搜索栏增长行为。
还有,因为为什么不fully functional repository with api keys included, just npm install
and npm run dev
linked
//components/AppBar.js
import React from 'react';
import PropTypes from 'prop-types';
import AppBar from '@material-ui/core/Appbar';
import Toolbar from '@material-ui/core/Toolbar';
import Typography from '@material-ui/core/Typography';
import InputBase from '@material-ui/core/InputBase';
import {fade} from '@material-ui/core/styles/colorManipulator';
import {withStyles} from "@material-ui/core/styles";
import SearchIcon from '@material-ui/icons/Search';
import { connectSearchBox } from 'react-instantsearch-dom';
const styles = theme => ({
root:{
width: '100%',
},
grow:{
flexGrow: 1,
},
menuButton:{
marginLeft: -12,
marginRight: 20,
},
title:{
display: 'none',
[theme.breakpoints.up('sm')]:{
display: 'block',
},
},
search:{
position: 'relative',
borderRadius: theme.shape.borderRadius,
backgroundColor: fade(theme.palette.common.white, 0.15),
'&:hover':{
backgroundColor: fade(theme.palette.common.white, 0.25),
},
marginLeft: 0,
width: '100%',
[theme.breakpoints.up('sm')]:{
marginLeft: theme.spacing.unit,
width: 'auto',
},
},
searchIcon:{
width: theme.spacing.unit * 9,
height: '100%',
position: 'absolute',
pointerEvents: 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
},
inputRoot:{
color: 'inherit',
width: '100%',
},
inputInput:{
paddingTop: theme.spacing.unit,
paddingRight: theme.spacing.unit,
paddingBottom: theme.spacing.unit,
paddingLeft: theme.spacing.unit * 10,
transition: theme.transitions.create('width'),
width: '100%',
[theme.breakpoints.up('sm')]:{
width: 120,
'&:focus':{
width: 200,
},
},
},
});
function SearchBox({currentRefinement, refine}, props){
const classes = props;
return(
<InputBase
type='search'
value={currentRefinement}
onChange={event => refine(event.currentTarget.value)}
placeholder="Search for Destination by Name, State, and keywords..."
classes={{
root: classes.inputRoot,
input: classes.inputInput,
}}
/>
);
}
const CustomSearchBox = connectSearchBox(SearchBox);
function SearchAppBar(props){
const {classes} = props;
return(
<div className={classes.root}>
<AppBar position="static">
<Toolbar>
<Typography className={classes.title} variant="h6" color='inherit' noWrap>
Title
</Typography>
<div className={classes.grow}/>
<div className={classes.search}>
<div className={classes.searchIcon}>
<SearchIcon/>
</div>
<CustomSearchBox/>
</div>
</Toolbar>
</AppBar>
</div>
);
}
SearchAppBar.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(SearchAppBar);
如果您想知道为什么CSS与AppBar的CSS的Material-ui文档不完全匹配,那是因为Material-ui的样式化方法(通过makeStyles()破坏了Algolia的集成),SearchBox函数喜欢使用它的props参数,如果没有则中断。