Miao-Yunzai/DEV.md

125 lines
2.3 KiB
Markdown
Raw Normal View History

2024-06-09 01:00:07 +08:00
# 开发者需知
该版本将支持TS、TSX环境提供Miao-Yunzai完全的类型声明及其开发文档。
2024-06-09 01:00:25 +08:00
- 提交
```ts
/**
* feature新功能
* update更新某功能
* fixbug修补某功能的bug
* refactor重构某个功能
* optimize: 优化构建工具或运行时性能
* style仅样式改动
* docs仅文档新增/改动
* chore构建过程或辅助工具的变动
*/
```
2024-06-09 01:00:07 +08:00
## 关于lib目录
lib目录将在未来逐渐放弃在版本发布后开发者需要有意识的对此变化做出调整.
```ts
// 已废弃
2024-06-09 01:00:25 +08:00
--lib / puppeteer
2024-06-09 01:00:07 +08:00
// 无扩展性,计划废弃
2024-06-09 01:00:25 +08:00
--lib / renderer
2024-06-09 01:00:07 +08:00
// 非机器人框架的核心处理代码
// 消耗服务器内存,无扩展性,计划废弃
2024-06-09 01:00:25 +08:00
--lib / tools / web.js / test.js / log.js / ksr.js
2024-06-09 01:00:07 +08:00
// 计划废弃
2024-06-09 01:00:25 +08:00
--renderers
2024-06-09 01:00:07 +08:00
```
## 新版目录
- 核心源码
src/core
- 数据管理
src/db
- 接口板块
src/mys
- 工具类
src/utils
## 开发示例
2024-06-09 01:00:25 +08:00
2024-06-09 01:00:07 +08:00
- 图片组件
```tsx
import React from 'react'
export default function App() {
return (
<html>
<head>
<link rel="stylesheet" href="../css/output.css"></link>
</head>
<body>
<div id="root">
<div className="text-red-500 p-2 text-xl">Hello, world!</div>
</div>
</body>
</html>
)
}
```
```ts
import React from 'react'
import { renderToString } from 'react-dom/server'
import { mkdirSync, writeFileSync } from 'fs'
import { join } from 'path'
// puppeteer
import { Puppeteer } from './puppeteer.ts'
// component
import HelloComponent from '../component/hello.tsx'
//
class Component {
puppeteer: typeof Puppeteer.prototype
#dir = ''
constructor(dir: string) {
this.puppeteer = new Puppeteer()
this.#dir = dir
mkdirSync(this.#dir, {
recursive: true
})
}
/**
* 渲染字符串
* @param element
* @param name
* @returns
*/
create(element: React.ReactNode, dirs: string, name: string) {
const html = renderToString(element)
const dir = join(this.#dir, dirs)
mkdirSync(dir, {
recursive: true
})
const address = join(dir, name)
writeFileSync(address, `<!DOCTYPE html>${html}`)
return address
}
/**
* hello
* @param _
* @param name
* @returns
*/
hello() {
return this.puppeteer.render(
this.create(<HelloComponent />, 'hello', 'help.html')
)
}
}
2024-06-09 01:00:25 +08:00
```