115 lines
3.6 KiB
TypeScript
115 lines
3.6 KiB
TypeScript
// Copyright (c) 2021 Robin Davies
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
// the Software without restriction, including without limitation the rights to
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
// subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
import { Component, SyntheticEvent } from 'react';
|
|
import { createStyles, withStyles, WithStyles, Theme } from '@material-ui/core/styles';
|
|
|
|
|
|
const styles = ({ palette }: Theme) => createStyles({
|
|
frame: {
|
|
position: "absolute",
|
|
width: "100%",
|
|
height: "100%"
|
|
},
|
|
hover: {
|
|
position: "absolute",
|
|
width: "100%",
|
|
height: "100%",
|
|
background: "#000000",
|
|
opacity: 0.1
|
|
},
|
|
selected: {
|
|
position: "absolute",
|
|
width: "100%",
|
|
height: "100%",
|
|
background: palette.action.active,
|
|
opacity: 0.3
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
interface HoverProps extends WithStyles<typeof styles> {
|
|
selected: boolean;
|
|
showHover?: boolean;
|
|
theme: Theme;
|
|
};
|
|
|
|
interface HoverState {
|
|
hovering: boolean;
|
|
};
|
|
|
|
|
|
export const SelectHoverBackground =
|
|
withStyles(styles, { withTheme: true })(
|
|
class extends Component<HoverProps, HoverState>
|
|
{
|
|
constructor(props: HoverProps) {
|
|
super(props);
|
|
this.state = {
|
|
hovering: false
|
|
};
|
|
|
|
this.handleMouseEnter = this.handleMouseEnter.bind(this);
|
|
this.handleMouseLeave = this.handleMouseLeave.bind(this);
|
|
|
|
}
|
|
|
|
handleMouseEnter(e: SyntheticEvent): void {
|
|
if (this.props.showHover??true)
|
|
{
|
|
this.setHovering(true);
|
|
}
|
|
|
|
}
|
|
handleMouseLeave(e: SyntheticEvent): void {
|
|
if (this.props.showHover??true)
|
|
{
|
|
this.setHovering(false);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
setHovering(value: boolean): void {
|
|
if (this.state.hovering !== value) {
|
|
this.setState({ hovering: value });
|
|
}
|
|
}
|
|
render() {
|
|
let classes = this.props.classes;
|
|
let isSelected = this.props.selected;
|
|
let hovering = this.state.hovering && (this.props.showHover??true);
|
|
return (<div className={classes.frame}
|
|
onMouseEnter={(e) => { this.handleMouseEnter(e); }} onMouseLeave={(e) => { this.handleMouseLeave(e) }}
|
|
>
|
|
<div className={classes.selected} style={{ display: (isSelected ? "block" : "none") }} />
|
|
<div className={classes.hover} style={{ display: (hovering ? "block" : "none") }} />
|
|
</div>);
|
|
|
|
}
|
|
}
|
|
);
|
|
|
|
export default SelectHoverBackground;
|
|
|
|
|
|
|