danilowoz/react-content-loader is tracked by TopGit as a frontend project, with 14.0k stars on GitHub, written primarily in TypeScript. ⚪ SVG-Powered component to easily create skeleton loadings.
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
To create custom loaders there is an important difference: as React Native doesn't have any native module for SVG components, it's necessary to import the shapes from react-native-svg or use the named export Rect and Circle from react-content-loader import:
It's used to describe what element it is. Use '' (empty string) to remove.
baseUrl?: string Defaults to an empty string
React DOM only
Required if you're using <base url="/" /> document <head/>. This prop is common used as: <ContentLoader baseUrl={window.location.pathname} /> which will fill the SVG attribute with the relative path. Related #93.
speed?: number Defaults to 1.2
React DOM React Native
Animation speed in seconds.
viewBox?: string Defaults to undefined
React DOM React Native
Use viewBox props to set a custom viewBox value, for more information about how to use it, read the article How to Scale SVG.
gradientRatio?: number Defaults to 1.2
React DOM only
Width of the animated gradient as a fraction of the view box width.
rtl?: boolean Defaults to false
React DOM React Native
Content right-to-left.
backgroundColor?: string Defaults to #f5f6f7
React DOM React Native
Used as background of animation.
foregroundColor?: string Defaults to #eee
React DOM React Native
Used as the foreground of animation.
backgroundOpacity?: number Defaults to 1
React DOM React Native
Background opacity (0 = transparent, 1 = opaque) used to solve an issue in Safari
foregroundOpacity?: number Defaults to 1
React DOM React Native
Animation opacity (0 = transparent, 1 = opaque) used to solve an issue in Safari
style?: React.CSSProperties Defaults to {}
React DOM only
uniqueKey?: string Defaults to random unique id
React DOM only
Use the same value of prop key, that will solve inconsistency on the SSR, see more here.
beforeMask?: JSX.Element Defaults to null
React DOM React Native
Define custom shapes before content, see more here.
In order to avoid unexpected behavior, the package doesn't have opinioned settings. So if it needs to be responsive, have in mind that the output of the package is a regular SVG, so it just needs the same attributes to become a regular SVG responsive, which means:
As the main component generates random values to match the id of the SVG element with background style, it can encounter unexpected errors and unmatching warning on render, once the random value of id will be generated twice, in case of SSR: server and client; or in case of snapshot test: on the first match and re-running the test.
To fix it, set the prop uniqueKey, then the id will not be random anymore:
When using rgba as a backgroundColor or foregroundColor value, Safari does not respect the alpha channel, meaning that the color will be opaque. To prevent this, instead of using a rgba value for backgroundColor/foregroundColor, use the rgb equivalent and move the alpha channel value to the backgroundOpacity/foregroundOpacity props.
{/* Opaque color in Safari and iOS */}
<ContentLoader
backgroundColor="rgba(0,0,0,0.06)"
foregroundColor="rgba(0,0,0,0.12)">
{/_ Semi-transparent color in Safari and iOS _/}
<ContentLoader
backgroundColor="rgb(0,0,0)"
foregroundColor="rgb(0,0,0)"
backgroundOpacity={0.06}
foregroundOpacity={0.12}>
Black box in Safari / iOS (again)
Using the base tag on a page that contains SVG elements fails to render and it looks like a black box. Just remove the base-href tag from the <head /> and the issue has been solved.
See: #93 / 109
Browser supports SVG-Animate
Old browsers don't support animation in SVG (compatibility list), and if your project must support IE, for examples, here's a couple of ways to make sure that browser supports SVG Animate:
$ git clone [email protected]:YourUsername/react-content-loader.git && cd react-content-loader
$ npm i: Install the dependencies;
$ npm run build: Build to production;
$ npm run dev: Run the Storybook to see your changes;
$ npm run test: Run all tests: type checking, unit tests on web and native;
$ npm run test:watch: Watch unit tests;
React Native
As React Native doesn't support symbolic links (to link the dependency to another folder) and as there is no playground to check your contributions (like storybook), this is recommended strategy to run the project locally:
Create a new React Native from scratch, either Metro or create-react-native-app;
Install the dependency to your root project:
yarn add react-content-loader react-native-svg
Open the project just created and clone this repository there;
Create your loading component and point the react-content-loader to the project just cloned, like:
import ContentLoader, { Rect, Circle } from './react-content-loader/native'
Commit messages
Commit messages should follow the commit message convention so, changelogs could be generated automatically by that. Commit messages are validated automatically upon commit. If you aren't familiar with the commit message convention, you can use yarn commit (or npm run commit) instead of git commit, which provides an interactive CLI for generating proper commit messages.
How active is development on danilowoz/react-content-loader?
The most recent commit recorded on danilowoz/react-content-loader was 6 months ago, based on the GitHub push timestamp. The repository has 423 forks — one of the better signals of community interest.
How many stars does danilowoz/react-content-loader have?
danilowoz/react-content-loader has 14.0k GitHub stars — refresh the page for the live number, or check github.com/danilowoz/react-content-loader. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is danilowoz/react-content-loader open source?
Yes — danilowoz/react-content-loader ships under the MIT license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/danilowoz/react-content-loader.
What else is in the Frontend space?
danilowoz/react-content-loader is tracked by TopGit under the Frontend category, alongside 11 GitHub-tagged topics. Trending and Topics pages list peer repositories of comparable stars and language.
What is danilowoz/react-content-loader?
danilowoz/react-content-loader (danilowoz/react-content-loader) is a TypeScript project on GitHub. From the project's own README: ⚪ SVG-Powered component to easily create skeleton loadings.
What language is danilowoz/react-content-loader written in?
danilowoz/react-content-loader is written primarily in TypeScript. GitHub's language field is based on the largest share of bytes in the default branch.
What license does danilowoz/react-content-loader use?
danilowoz/react-content-loader is released under the MIT license. Always verify the LICENSE file directly on GitHub for the authoritative terms — license strings can be edited out of sync with a project's actual stance.
Where do I read more about danilowoz/react-content-loader?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/danilowoz/react-content-loader is the definitive source.
Read full README in the tab above.
Still deciding about react-content-loader?
One click hands the question to an AI along with this page — see what it says about react-content-loader.