-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
React 15.5.0 deprecation error #32
Comments
I have the same problem. I think this repo is not maintained anymore. |
The issue is described here: Replace with a class or use the drop in replacement. |
@chatch Aware of it. But even if you fix it and try to raise a PR, it doesn't look like it is going to get merged. |
There are lots of examples of similar loaders in the Internet. So, I just created my own 30-lines react component for that purpose :) |
@alexbra Would love to take a look :) |
@Vishal0203
|
@alexbra Looks good! I didn't know about radium. I think its better to create our own as you said. Thanks for share. |
Yep! I similarly used styled-components (and prop-types for now) to roll my own. import React from "react";
import PropTypes from "prop-types";
import styled, { keyframes } from "styled-components";
const pulse = keyframes`
0% {
transform: scale(1);
opacity: 1;
}
45% {
transform: scale(0.1);
opacity: 0.7;
}
80% {
transform: scale(1);
opacity: 1;
}
`;
const Ball = styled.div`
display: inline-block;
border: 0px solid transparent;
background: ${props => props.color};
width: ${props => props.size};
height: ${props => props.size};
margin: ${props => props.margin};
border-radius: 100%;
animation: 0.75s cubic-bezier(.2,.68,.18,1.08) ${props => props.iteration * 0.12 + "s"} infinite both ${pulse};
`;
Ball.propTypes = {
color: PropTypes.string,
size: PropTypes.string,
margin: PropTypes.string,
iteration: PropTypes.number
};
const PulseLoader = ({
color = "#fff",
size = "15px",
margin = "2px",
...otherProps
}) => {
const ballProps = { color, size, margin };
return (
<div {...otherProps}>
<Ball iteration={1} {...ballProps} />
<Ball iteration={2} {...ballProps} />
<Ball iteration={3} {...ballProps} />
</div>
);
};
export default PulseLoader; |
Sad to see repo no longer being maintained, even if others are will to be contributors. Anyway, https://github.com/kirillDanshin/halogenium seems to be the next best option. |
Warning: Loader: React.createClass is deprecated and will be removed in version 16. Use plain JavaScript classes instead. If you're not yet ready to migrate, create-react-class is available on npm as a drop-in replacement.
The text was updated successfully, but these errors were encountered: