React implements a general skeleton screen component example

React implements a general skeleton screen component example

What is a skeleton screen?

The comrades who have found this place have more or less knowledge about skeleton screens. Please allow me to say a few words first. Skeleton Screen is a solution to optimize users' weak network experience and can effectively alleviate users' anxiety while waiting.

Demo

Let’s take a look at a demo first to get a rough idea of ​​the final product and how to use it.

npm install obiusm-react-components
import { Skeleton } from 'obiusm-react-components';
  <Skeleton isVisible={true}>
    <div className="wrapper">
      <div className="content1"></div>
      <div data-skeleton-ignore={true}>123456</div>
      <div className="content2"></div>
      <div className="content3" data-skeleton-style={{ width: '50%' }}></div>
    </div>
  </Skeleton>

Just wrap a layer around the component you wrote to decide whether it is displayed.

Design ideas

The skeleton allows users to perceive the real content before it is loaded, which can improve the user experience. If we have to customize the skeleton for each component we write, it will be quite cumbersome.

Thanks to the data transmission method of React props, we can easily get the entire ReactElement tree in props. Then we just need to recursively traverse the tree to imitate its structure and copy its class to automatically generate the skeleton.

But in actual use, we may only need the structure of the first few layers without simulating the structure of the entire tree. It is also possible that the automatically generated style is too ugly and we need to customize its node style. It is also possible that we do not need to pay attention to some floating layer content or want to ignore a certain node.

So we probably need to implement the following functions

  • Setting the recursion depth
  • Provides a method to ignore nodes
  • Provides methods for customizing skeleton node styles

Specific implementation

First, define a component function to decide whether to render the skeleton screen or the real element

function Skeleton(props: Props) {
  if (!props) {
    return <div />;
  }
  if (props.isVisible) {
    return createModal(props.children, props.depth || 4, 0);
  } else {
    return props.children ? props.children : <div />;
  }
}

createModal recursively traverses the div wrapped under the Skeleton. Each time it recurses, it adds current to 1 and passes it down. In this way, we can determine how many layers of recursion have been made and whether data-skeleton-ignore on each node has data-skeleton-style, so as to handle it specially.

const createModal = (child: ReactElement, depth: number, current: number) => {
  if (
    depth === current ||
    (child && child.props && child.props['data-skeleton-ignore'])
  ) {
    return;
  }
  if (
    child &&
    child.props &&
    child.props.children &&
    Array.isArray(child.props.children) &&
    current < depth - 1
  ) {
    return (
      <div
        className={`${
          child.props.className !== undefined ? child.props.className : ''
        } ${'react-skeleton'}`}
        style={
          child.props && child.props['data-skeleton-style']
            ? child.props['data-skeleton-style']
            : {}
        }
        key={Math.random() * 1000}
      >
        {child.props.children && child.props.children.length > 0
          ? child.props.children.map((child: any) => {
              return createModal(child, depth, current + 1);
            })
          : '*'}
      </div>
    );
  } else {
    return (
      <div
        className={`${
          child.props && child.props.className ? child.props.className : ''
        } ${'react-skeleton2'}`}
        style={
          child.props && child.props['data-skeleton-style']
            ? child.props['data-skeleton-style']
            : {}
        }
        key={Math.random() * 1000}
      >
        *
      </div>
    );
  }
};

Complete code and usage documentation

Complete code obiusm-react-components

Documentation https://magic-zhu.github.io/obiusm-react-components-docs/components/skeleton/

This is the end of this article about implementing a general skeleton screen component example with React. For more relevant React skeleton screen content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Example of implementing the skeleton screen of WeChat applet
  • How to use skeleton screen in vue project
  • How to use skeleton screen in WeChat applet
  • Taro applet adds skeleton screen implementation code
  • A brief discussion on the practice of Vue project skeleton screen injection
  • Detailed explanation of VUE single-page application skeleton screen solution
  • Vue page skeleton screen injection method
  • About Vue single page skeleton screen practice record

<<:  Summarize how to optimize Nginx performance under high concurrency

>>:  Using CSS3 to implement font color gradient

Recommend

CSS draw a lollipop example code

Background: Make a little progress every day, acc...

Win2008 Server Security Check Steps Guide (Daily Maintenance Instructions)

The document has been written for a while, but I ...

Test and solution for MySQL's large memory usage and high CPU usage

After the changes: innodb_buffer_pool_size=576M -...

Implementation of mysql backup strategy (full backup + incremental backup)

Table of contents Design scenario Technical Point...

WeChat applet implements a simple calculator

A simple calculator written in WeChat applet for ...

In-depth explanation of slots and filters in Vue

Table of contents Slots What are slots? Slot Cont...

React High-Order Component HOC Usage Summary

One sentence to introduce HOC What is a higher-or...

JavaScript parseInt() and Number() difference case study

Learning objectives: The two functions parseInt()...

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary Write a SQL que...

How to mount the CD to find the rpm package under Linux

Written in front Sometimes you need to install so...

A brief analysis of MySQL explicit type conversion

CAST function In the previous article, we mention...

In-depth understanding of the use of the infer keyword in typescript

Table of contents infer Case: Deepen your underst...

About MYSQL, you need to know the data types and operation tables

Data Types and Operations Data Table 1.1 MySQL ty...

What is JavaScript anti-shake and throttling

Table of contents 1. Function debounce 1. What is...