Go to file
Tianer Zhou 6312be0c74 implement init and gaps
Signed-off-by: Tianer Zhou <zhoutianer@huawei.com>
Change-Id: Ic575dc2c6c94cff00963c41d5a7e80af5c85cb09
2024-06-22 10:17:44 +08:00
.gitee
adapter !33829 fix :字符串使用单引号 2024-06-21 08:38:49 +00:00
advanced_ui_component customContentDialog的customStyle为true时透明色,不兼容老版本,修改成兼容 2024-06-21 15:49:17 +08:00
build
component_ext
examples/components 添加组件示例代码 2024-06-18 07:42:09 +00:00
figures
frameworks implement init and gaps 2024-06-22 10:17:44 +08:00
interfaces !36227 [Bug]: 修改文件页内存释放路径 2024-06-21 11:31:11 +00:00
test implement init and gaps 2024-06-22 10:17:44 +08:00
.clang-format repeat feture 2024-06-17 10:59:23 +08:00
.gitattributes
.gitignore
ace_config.gni
BUILD.gn
bundle.json Merge branch 'master' of gitee.com:openharmony/arkui_ace_engine into ipc 2024-06-17 12:36:44 +00:00
LICENSE
OAT.xml 添加组件示例代码 2024-06-18 07:42:09 +00:00
README_zh.md
README.md
如何新增一个组件.md

JS UI Framework

Introduction

The OpenHarmony JS UI framework provides basic, container, and canvas UI components and standard CSS animation capabilities. It supports the web-development-like programming paradigm.

  • Web-development-like paradigm

    The JS UI framework supports languages that are similar to those for web development, such as HTML and CSS. You can use them to describe the page layout and style, and use JavaScript conforming to the ECMAScript specification for page behavior. This paradigm allows you to avoid code for UI state switching. The view configuration information is intuitive.

Figure 1 Framework architecture

The JS UI framework consists of the application, framework, engine, and porting layers.

  • Application

    Contains apps with Feature Abilities FAs developed with the JS UI framework. The FA app in this document refers to the app with FAs developed using JavaScript.

  • Framework

    Parses UI pages and provides the Model-View-ViewModel MVVM, page routing, custom components and more for front end development.

  • Engine

    Accomplishes animation parsing, Document Object Model DOM building, layout computing, rendering command building and drawing, and event management.

  • Porting Layer

    Abstracts the platform layer to provide abstract interfaces to connect to the platform. For example, event interconnection, rendering pipeline interconnection, and lifecycle interconnection.

Directory Structure

The source code of the framework is stored in /foundation/arkui/ace_engine. The following shows the directory structure.

/foundation/arkui/ace_engine
├── adapter                       # Platform adaptation code
│   ├── common
│   └── ohos
├── frameworks                    # Framework code
│   ├── base                      # Basic libraries
│   ├── bridge                    # Bridging layer for frontend and backend components
│   └── core                      # Core components

When to Use

JS UI framework provides various UI components with rich functionalities and style definitions. You can use and reuse any component anywhere as needed. You can customize new components by combining existing ones to simplify development.

Available Components

Table 1 Components provided by the framework

Type

Components

Basic

button, text, input, label, image, progress, rating, span, marquee, image-animator, divider, menu, chart, option, picker, picker-view, piece, qrcode, select, slider, switch, toolbar, toolbar-item, toggle

Container

div, list, list-item, list-item-group, stack, swiper, tabs, tab-bar, tab-content, refresh, dialog, badge, panel, popup, stepper, stepper-item

Canvas

canvas

Grid

grid-container, grid-row, grid-col

Repositories Involved

JS UI framework

arkui_ace_engine

ace_engine_lite

arkui_napi