
2024-12-16 日报 Day37

今日的鸡汤
且以青春赴山海,
青舟无惧万重山。
今日学习内容
1、《JavaScript数据结构与算法》 P174-
今日笔记
1、插入排序: 插入排序是一种最简单的排序算法,其原理是通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。
1 | this.insertionSort = function(){ |
时间复杂度: O(n^2)
空间复杂度: O(1)
低代码平台学习
1、以https://github.com/alibaba/lowcode-demo提供的https://lowcode-engine.cn/index 模版学习
主要了解低代码平台所包含的主要模块和分包各自功能实现。对整体框架有一个简单的认识。
2、首先以demo-basic-antd为例进行学习,了解其基本功能和实现方式。
demo-basic-antd引入的包:
1 | "@alilc/lowcode-datasource-fetch-handler": "^1.0.1", |
接下来对各个包的功能进行简单的分析:
- lowcode-datasource-fetch-handler: 数据源获取处理
- lowcode-plugin-code-editor: 代码编辑器 https://github.com/alibaba/lowcode-plugins
- lowcode-plugin-code-generator: 出码器 https://github.com/alibaba/lowcode-code-generator-demo 有demo但应该不是完整的
- lowcode-plugin-components-pane: 低代码组件面板 https://github.com/alibaba/lowcode-plugins.git
- lowcode-plugin-datasource-pane: 数据源面板 https://github.com/alibaba/lowcode-plugins.git
- lowcode-plugin-inject: 低代码引擎生态元素项目内调试用插件 https://github.com/alibaba/lowcode-tools.git
- lowcode-plugin-manual: 低代码产品使用手册 https://github.com/alibaba/lowcode-plugins.git
- lowcode-plugin-schema: 查看低代码引擎 schema https://github.com/alibaba/lowcode-plugins.git
- lowcode-plugin-simulator-select: 画布切换 https://github.com/alibaba/lowcode-plugins.git
- lowcode-plugin-undo-redo: alibaba lowcode editor undo redo plugin https://github.com/alibaba/lowcode-plugins.git
- lowcode-plugin-zh-en: alibaba lowcode editor zhong english plugin https://github.com/alibaba/lowcode-plugins.git
- lowcode-plugin-set-ref-prop: alibaba lowcode editor plugin for setting ref-id https://github.com/alibaba/lowcode-plugins.git
- lowcode-react-renderer: react renderer for ali lowcode engine https://github.com/alibaba/lowcode-engine/tree/main/packages/react-renderer
- lowcode-setter-behavior: 交互 setter
- lowcode-setter-title: 标题 setter
找到了npm包对应源码的地址
包名 | 仓库 | 路径 |
---|---|---|
@alilc/lowcode-code-generator | https://github.com/alibaba/lowcode-engine | modules/code-generator |
@alilc/lowcode-material-parser | https://github.com/alibaba/lowcode-engine | modules/material-parser |
@alilc/lowcode-designer | https://github.com/alibaba/lowcode-engine | packages/designer |
@alilc/lowcode-editor-core | https://github.com/alibaba/lowcode-engine | packages/editor-core |
@alilc/lowcode-editor-skeleton | https://github.com/alibaba/lowcode-engine | packages/editor-skeleton |
@alilc/lowcode-engine | https://github.com/alibaba/lowcode-engine | packages/engine |
@alilc/lowcode-plugin-designer | https://github.com/alibaba/lowcode-engine | packages/plugin-designer |
@alilc/lowcode-plugin-outline-pane | https://github.com/alibaba/lowcode-engine | packages/plugin-outline-pane |
@alilc/lowcode-react-renderer | https://github.com/alibaba/lowcode-engine | packages/react-renderer |
@alilc/lowcode-react-simulator-renderer | https://github.com/alibaba/lowcode-engine | packages/react-simulator-renderer |
@alilc/lowcode-renderer-core | https://github.com/alibaba/lowcode-engine | packages/renderer-core |
@alilc/lowcode-shell | https://github.com/alibaba/lowcode-engine | packages/shell |
@alilc/lowcode-types | https://github.com/alibaba/lowcode-engine | packages/types |
@alilc/lowcode-utils | https://github.com/alibaba/lowcode-engine | packages/utils |
@alilc/lowcode-datasource-engine | https://github.com/alibaba/lowcode-datasource | packages/datasource-engine |
@alilc/lowcode-datasource-fetch-handler | https://github.com/alibaba/lowcode-datasource | packages/datasource-fetch-handler |
@alilc/lowcode-datasource-jsonp-handler | https://github.com/alibaba/lowcode-datasource | packages/datasource-jsonp-handler |
@alilc/lowcode-datasource-mopen-handler | https://github.com/alibaba/lowcode-datasource | packages/datasource-mopen-handler |
@alilc/lowcode-datasource-mtop-handler | https://github.com/alibaba/lowcode-datasource | packages/datasource-mtop-handler |
@alilc/lowcode-datasource-types | https://github.com/alibaba/lowcode-datasource | packages/datasource-types |
@alilc/lowcode-datasource-universal-mtop-handler | https://github.com/alibaba/lowcode-datasource | packages/datasource-universal-mtop-handler |
@alilc/lowcode-datasource-url-params-handler | https://github.com/alibaba/lowcode-datasource | packages/datasource-url-params-handler |
@alilc/build-plugin-alt | https://github.com/alibaba/lowcode-tools | packages/build-plugin-alt |
@alilc/create-element | https://github.com/alibaba/lowcode-tools | packages/create-element |
@alilc/lowcode-plugin-inject | https://github.com/alibaba/lowcode-tools | packages/lowcode-plugin-inject |
@alilc/action-block | https://github.com/alibaba/lowcode-plugins | packages/action-block |
@alilc/lowcode-plugin-base-monaco-editor | https://github.com/alibaba/lowcode-plugins | packages/plugin-base-monaco-editor |
@alilc/lowcode-plugin-block | https://github.com/alibaba/lowcode-plugins | packages/plugin-block |
@alilc/lowcode-plugin-code-editor | https://github.com/alibaba/lowcode-plugins | packages/plugin-code-editor |
@alilc/lowcode-plugin-components-pane | https://github.com/alibaba/lowcode-plugins | packages/plugin-components-pane |
@alilc/lowcode-plugin-datasource-pane | https://github.com/alibaba/lowcode-plugins | packages/plugin-datasource-pane |
@alilc/lowcode-plugin-manual | https://github.com/alibaba/lowcode-plugins | packages/plugin-manual |
@alilc/lowcode-plugin-schema | https://github.com/alibaba/lowcode-plugins | packages/plugin-schema |
@alilc/lowcode-plugin-undo-redo | https://github.com/alibaba/lowcode-plugins | packages/plugin-undo-redo |
@alilc/lowcode-plugin-zh-en | https://github.com/alibaba/lowcode-plugins | packages/plugin-zh-en |
@alifd/fusion-ui | https://github.com/alibaba/lowcode-materials | packages/fusion-ui |
@alilc/lowcode-materials | https://github.com/alibaba/lowcode-materials | packages/fusion-lowcode-materials |
@alilc/antd-lowcode-materials | https://github.com/alibaba/lowcode-materials | packages/antd-lowcode-materials |
@alifd/layout(原 @alifd/pro-layout 升级后的版本) | https://github.com/alibaba-fusion/layout |