2024-12-16 日报 Day37

2024-12-16 日报 Day37

Yuyang 前端小白🥬

今日的鸡汤

且以青春赴山海,
青舟无惧万重山。

今日学习内容

1、《JavaScript数据结构与算法》 P174-

今日笔记

1、插入排序: 插入排序是一种最简单的排序算法,其原理是通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。

1
2
3
4
5
6
7
8
9
10
11
12
13
this.insertionSort = function(){
var length = array.length,
j, temp;
for(var i=1; i<length; i++){
j = i;
temp = array[i];
while(j>0 && array[j-1] > temp){
array[j] = array[j-1];
j--;
}
array[j] = temp;
}
};

时间复杂度: 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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"@alilc/lowcode-datasource-fetch-handler": "^1.0.1",
"@alilc/lowcode-plugin-code-editor": "^1.0.3",
"@alilc/lowcode-plugin-code-generator": "^1.0.4",
"@alilc/lowcode-plugin-components-pane": "^2.0.0",
"@alilc/lowcode-plugin-datasource-pane": "^1.0.9",
"@alilc/lowcode-plugin-inject": "^1.2.1",
"@alilc/lowcode-plugin-manual": "^1.0.4",
"@alilc/lowcode-plugin-schema": "^1.0.2",
"@alilc/lowcode-plugin-simulator-select": "^1.0.2",
"@alilc/lowcode-plugin-undo-redo": "^1.0.0",
"@alilc/lowcode-plugin-zh-en": "^1.0.0",
"@alilc/lowcode-plugin-set-ref-prop": "^1.0.1",
"@alilc/lowcode-react-renderer": "^1.1.2",
"@alilc/lowcode-setter-behavior": "^1.0.0",
"@alilc/lowcode-setter-title": "^1.0.2",

接下来对各个包的功能进行简单的分析:

找到了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
此页目录
2024-12-16 日报 Day37