Skip to content

Commit

Permalink
更新readme文件
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaopujun committed Nov 3, 2023
1 parent ef696d4 commit c1ea8d4
Showing 1 changed file with 42 additions and 103 deletions.
145 changes: 42 additions & 103 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,150 +1,89 @@
[中文](README_ZH.md)

<h2 align="middle"> LIGHT CHASER</h2>
<h2> LIGHT CHASER</h2>

<p align="middle">
<p>
<img alt="" src="https://img.shields.io/badge/version-v0.0.3-blue">
<img alt="" src="https://img.shields.io/badge/language-typescript-blue">
<img alt="" src="https://img.shields.io/badge/license-MIT-08CE5D?logoColor=08CE5D">
<img alt="" src="https://img.shields.io/badge/framework-React-61daeb?logoColor=08CE5D">
</p>

<p align="middle">LIGHT CHASER IS A DRAG-AND-DROP WEB DATA VISUALIZATION DESIGNER</p>
<p align="middle">
<a href="https://xiaopujun.github.io/light-chaser-app/#/" target="_blank">Demo</a>
/
<a href="https://www.bilibili.com/video/BV1v8411z78f/?share_source=copy_web&vd_source=ece0559aa5b8c4f5c0d7307cb2b06aac" target="_blank">Video</a>
</p>
<p>Data visualization tools</p>

light chaser is an open source free data visualization design tool based on React technology stack implementation .
Through it you can simply and quickly produce data visualization related content. It can be used for large-screen data
visualization display , data reports, data analysis and other scenes

This project contains:

- A standard component editing panel
- An efficient blueprint editor for event interactions
- Rich component library

light chaser is built for data visualization and will continue to grow and improve!

# 1. Introduction
# Catalogs

Light Chaser (LC) is a data visualization designer for large screens based on the React ecosystem. With simple
drag-and-drop functionality, it allows users to generate beautiful and visually appealing data dashboards and boards.
- [Example](#example)
- [Usage & Deployment](#usage--deployment)
- [Contributing](#contributing)
- [License](#license)

It has the following features:
# Example

- High Performance: By combining the features of React, Mobx, and LC's own design philosophy, efforts have been made to
avoid unnecessary rendering of components. This ensures that LC maintains a good overall performance even in scenarios
with hundreds of complex components, achieving smooth rendering.
- High Extensibility: LC provides a unified interface, allowing integration with any React ecosystem components in
theory. This allows for limitless expansion of the component library in LC.
- High Customization: Similar to the dependency on a unified interface, for components implemented by developers
themselves, the configuration options can be fully customized. You can use the default configuration components
provided by LC or completely use your own implementation.
- Frontend-Backend Separation: This project is 100% separated between the frontend and backend. Even without a backend
service, the LC designer can run perfectly like a local application (currently only supports local execution, with
future support for deployment to servers).
- Quick Theme Switching: LC provides a theme switching feature, allowing you to switch themes globally or at the
component level. This enables you to quickly switch themes and generate screens with different styles.
- Keyboard Shortcuts: LC provides a rich set of keyboard shortcuts for quick operations, enhancing your work efficiency.
- Drag-and-Drop Grid Layout: LC offers drag-and-drop grid layout functionality, allowing you to quickly complete layouts
by dragging components, thereby generating large screens efficiently.
You can visit [LIGHT CHASER online](https://xiaopujun.github.io/light-chaser-app/#) to experience it online, or you can
launch it locally with the code to experience it!

# 2. Showcase
preview image:

![image.png](https://s2.loli.net/2023/08/30/SnIYcomQWxaGyfj.png)
![lightchaser1](https://picss.sunbangyan.cn/2023/11/03/9cbcb42f4c6d7bc12ffb79f4ad0ef9dd.png)

# 3. How to Run
![lightchaser blueprint](https://picss.sunbangyan.cn/2023/11/03/59ff17df602ce90d6ba7885037860449.png)

1. Clone the project to your local machine
# Usage & Deployment

If you need to start this project locally or build and deploy it to your own server, please refer to the following
commands:

- Clone the project to your local machine

```shell
git clone https://gitee.com/xiaopujun/light-chaser.git
```

2. Install project dependencies
- Install project dependencies

```shell
yarn install
```

3. Start the project
- Start the project

```shell
yarn start
```

4. Access the project
- Access the project

```shell
http://localhost:3000
```

5. Build the project
- Build the project

```shell
yarn build
```

# 4. How to Use

| Operation/Shortcut | Description |
| --- | --- |
| Double-click on the left component | Add component to canvas |
| Right-click and hold mouse | Drag canvas |
| alt + Scroll wheel | Zoom canvas |
| ctrl + v | Copy component |
| ctrl + l | Lock component |
| ctrl + Up arrow | Bring component to front |
| ctrl + Down arrow | Send component to back |
| delete | Delete component |
| up | Move component up |
| down | Move component down |
| left | Move component left |
| right | Move component right |
| ctrl + shift + up | Enlarge component upward |
| ctrl + shift + down | Enlarge component downward |
| ctrl + shift + left | Enlarge component to the left |
| ctrl + shift + right | Enlarge component to the right |
| ctrl + alt + up | Shrink component upward |
| ctrl + alt + down | Shrink component downward |
| ctrl + alt + left | Shrink component to the left |
| ctrl + alt + right | Shrink component to the right |
| ctrl + z | Undo |
| ctrl + shift + z | Redo |

# 5. Directory Structure

```text
src
├─comps Component List (All draggable components are implemented in this directory)
│ ├─antd Ant Design components implementation
│ ├─common-fragment Common code snippets
│ └─lc Light Chaser built-in components implementation
├─designer Designer
│ ├─canvas Canvas
│ ├─common Common code
│ ├─footer Designer footer
│ ├─header Designer header
│ ├─left Designer left panel
│ ├─operate-provider Designer event operations
│ ├─right Designer right panel
│ ├─store Designer state management
│ ├─structure Designer page framework structure
│ └─view
├─framework Framework design
│ └─core Automatic component definition scanning
├─icon
├─lib Custom component library
├─list List page (Home page)
└─utils Utility classes
```

# 6. How to Quickly Integrate Your Own Components

Integrating your own component into LC is incredibly simple. You just need to follow a few steps!
# Contributing

1. Locate the `src/comps` directory and create a new folder for your custom component.
2. Let's assume your custom component's name is: MyComp.
3. Create a new TypeScript file named `MyComp.ts` within this folder. In this file, define a class that inherits
from `AbstractCustomComponentDefinition` and implement its methods.
4. Create another TypeScript file named `MyCompDefinition.ts` within the same folder. In this file, define a class that
inherits from `AbstractDesignerComponent` and implement its methods.
Feel free to dive in! Open an issue or submit PRs.

That's it! The rest is handled by the automatic scanner, which will scan your components and register them in LC.
light chaser follows the Contributor Covenant Code of Conduct.

For a code example, you can refer to the implementation in `src/comps/antd/pie`.
# License

# 7. Conclusion
[MIT](LICENSE) © xiaopujun

If you find this project helpful, please consider giving it a star.
Thank you to every developer and person who contributed to this project!

0 comments on commit c1ea8d4

Please sign in to comment.