0.2.43 • Published 15 days ago

@difizen/libro-rendermime v0.2.43

Weekly downloads
-
License
MIT
Repository
github
Last release
15 days ago

libro-rendermime

该包提供了 LibroRenderMimeModule 模块用于识别不同数据格式的内容并且正确解析渲染。通过定义多个 MIME 类型和优先级,可以在不同的环境中提供灵活的输出展示选项,以适应各种类型的数据和前端环境的要求。内置了文本、图片、Markdown、HTML、SVG 等 MIME 渲染器,同时提供 MIME 渲染器扩展,支持扩展更多自定义的 MIME 类型渲染。

Token/API

RenderMimeRegistry

RenderMimeRegistry 管理 MIME,提供获取当前输出最合适的 MIME 类型,基于输出和类型创建对应的渲染器,MIME 渲染监听等能力。

// 组件内引入
const renderMimeRegistry = useInject(RenderMimeRegistry);

// 属性引入
@inject(RenderMimeRegistry) renderMimeRegistry:RenderMimeRegistry;

// 事件监听
renderMimeRegistry.onMimeRender();

//获取当前输出最合适的 MIME 类型
const preferredMimeType = renderMimeRegistry.preferredMimeType(model)

//基于输出和类型创建对应的渲染器
const OutputRender = defaultRenderMime.createRenderer(
  preferredMimeType,
  model,
);

扩展点

MIME 渲染器扩展

export interface RenderMimeContribution {
  canHandle: (model: BaseOutputView) => number;
  safe: boolean;
  renderType: string;
  mimeTypes: string[];
  render: React.FC<{ model: BaseOutputView; options?: Record<string, any> }>;
}
0.2.43

15 days ago

0.2.41-next.5

16 days ago

0.2.41-next.4

16 days ago

0.2.42

16 days ago

0.2.41-next.0

16 days ago

0.2.41-next.1

16 days ago

0.2.41-next.2

16 days ago

0.2.41-next.3

16 days ago

0.2.41

1 month ago

0.2.40

1 month ago

0.2.39

1 month ago

0.2.40-next.4

1 month ago

0.2.38

2 months ago

0.2.37

2 months ago

0.2.40-next.1

1 month ago

0.2.40-next.0

1 month ago

0.2.40-next.3

1 month ago

0.2.40-next.2

1 month ago

0.2.27

2 months ago

0.2.26

3 months ago

0.2.25

3 months ago

0.2.24

3 months ago

0.2.23

3 months ago

0.2.22

3 months ago

0.2.21

3 months ago

0.2.20

3 months ago

0.2.19

3 months ago

0.2.18

3 months ago

0.2.17

3 months ago

0.2.16

3 months ago

0.2.15

3 months ago

0.2.14

3 months ago

0.2.13

4 months ago

0.2.12

4 months ago

0.2.11

5 months ago

0.2.10

5 months ago

0.2.35-next.0

2 months ago

0.2.30

2 months ago

0.2.35

2 months ago

0.2.34

2 months ago

0.2.33

2 months ago

0.2.32

2 months ago

0.2.31

2 months ago

0.2.1

6 months ago

0.2.29

2 months ago

0.2.28

2 months ago

0.2.7

5 months ago

0.2.6

5 months ago

0.2.9

5 months ago

0.2.8

5 months ago

0.2.3

6 months ago

0.2.2

6 months ago

0.2.5

6 months ago

0.2.4

6 months ago

0.1.37

6 months ago

0.1.36

6 months ago

0.1.35

6 months ago

0.1.34

6 months ago

0.1.32

7 months ago

0.1.33

7 months ago

0.1.31

7 months ago

0.1.30

7 months ago

0.1.29

7 months ago

0.1.28

8 months ago

0.1.27

8 months ago

0.1.26

8 months ago

0.1.24

8 months ago

0.1.23

9 months ago

0.1.22

9 months ago

0.2.0

9 months ago

0.1.20

9 months ago

0.1.21

9 months ago

0.1.19

9 months ago

0.1.18

10 months ago

0.1.15

10 months ago

0.1.16

10 months ago

0.1.17

10 months ago

0.1.14

10 months ago

0.1.13

10 months ago

0.1.12

10 months ago

0.1.11

10 months ago

0.1.10

11 months ago

0.1.9

11 months ago

0.1.8

11 months ago

0.1.7

11 months ago

0.1.6

11 months ago

0.1.4

11 months ago

0.1.5

11 months ago

0.1.2

11 months ago

0.1.3

11 months ago

0.1.1

11 months ago

0.1.0

12 months ago

0.0.2-alpha.0

1 year ago