wangxq b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
..
api b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
cluster-activity b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
components b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
context b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
dag b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
datasets b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
types b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
utils b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
App.tsx b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
README.md b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
connection_form.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
dag.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
dag_dependencies.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
dags.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
datasetUtils.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
datetime_utils.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
duration_chart.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
index.d.ts b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
main.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
task.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
task_instances.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
theme.ts b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
ti_log.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
toggle_theme.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
trigger.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago
variable_edit.js b18b6738cb 第一次提交,定时调度版本的resource,daily已经基本调试完成 11 months ago

README.md

Grid View

In 2.3.0 the Tree view was completely rebuilt using React and renamed to Grid. Here is a primer on the new technologies used:

React

The most popular javascript framework for building user interfaces with reusable components. Written as javascript and html together in .jsx files. In-component state can be managed via useState(), application state that spans many components can be managed via a context provider (see /context for examples), API state can be managed by React Query (see below)

Chakra UI

A good component and helper function library. Tooltips, modals, toasts, switches, etc are all out of the box Styles are applied via global theme when initializing the app or inline with individual components like <Box padding="5px" />

React Query

A powerful async data handler that makes it easy to manage loading/error states as well as caching, refetching, background updates, etc. This is our state management for any data that comes from an API. Each API request is its own hook. Ie useTasks will get all the tasks for a DAG

React Testing Library

Easily write tests for react components and hooks