首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >纯血鸿蒙APP实战开发——ArkWeb同层渲染

纯血鸿蒙APP实战开发——ArkWeb同层渲染

原创
作者头像
小帅聊鸿蒙
发布2025-01-07 14:11:44
发布2025-01-07 14:11:44
4080
举报
文章被收录于专栏:鸿蒙开发笔记鸿蒙开发笔记

介绍

该方案展示了ArkWeb 同层渲染 :将系统原生组件直接渲染到前端H5页面上,原生组件不仅可以提供H5组件无法实现的一些功能,还能提升用户体验的流畅度。

效果图预览

使用说明

  1. 进入页面即可看到同层渲染效果,Text,Image都是原生组件。

实现思路

  1. 添加权限。
代码语言:json
复制
   "ohos.permission.INTERNET"
  1. 创建控制器管理绑定的NodeController。
代码语言:ts
复制
   class SearchNodeController extends NodeController {
     private rootNode: BuilderNode<[Params]> | undefined | null = null;
     private embedId: string = "";
     private surfaceId: string = "";
     private renderType: NodeRenderType = NodeRenderType.RENDER_componentTypeDISPLAY;
     private componentWidth: number = 0;
     private componentHeight: number = 0;
     private componentType: string = "";

     setRenderOption(params : NodeControllerParams): void {
       this.surfaceId = params.surfaceId;
       this.renderType = params.renderType;
       this.embedId = params.embedId;
       this.componentWidth = params.width;
       this.componentHeight = params.height;
       this.componentType = params.type;
     }
     /**
      * 在对应NodeContainer创建的时候调用、或者通过rebuild方法调用刷新
      */
     makeNode(uiContext: UIContext): FrameNode | null {
       this.rootNode = new BuilderNode(uiContext, { surfaceId: this.surfaceId, type: this.renderType});
       if (this.componentType === 'native/component') {
         this.rootNode.build(wrapBuilder(searchBuilder), { width: this.componentWidth, height: this.componentHeight});
       } else {
       }
       // 返回FrameNode节点
       return this.rootNode.getFrameNode();
     }
     /**
      * 设置BuilderNode节点
      */
     setBuilderNode(rootNode: BuilderNode<Params[]> | null): void {
       this.rootNode = rootNode;
     }
     /**
      * 获取BuilderNode节点
      */
     getBuilderNode(): BuilderNode<[Params]> | undefined | null {
       return this.rootNode;
     }
     /**
      * 更新BuilderNode节点
      */
     updateNode(arg: Object): void {
       this.rootNode?.update(arg);
     }
     /**
      * 获取EmbedId
      */
     getEmbedId(): string {
       return this.embedId;
     }
     /**
      * 将触摸事件派发到rootNode创建出的FrameNode上
      */
     postEvent(event: TouchEvent | undefined): boolean {
       return this.rootNode?.postTouchEvent(event) as boolean;
     }
   }
  1. 添加同层渲染的组件。
代码语言:ts
复制
   @Component
   struct SearchComponent {
   @Prop params: Params;

   build() {
     Column({ space: MARGIN_VERTICAL }) {
       // 原生Text组件
       Text($r('app.string.mall')).fontSize($r('app.string.ohos_id_text_size_body1'))
       Row() {
         Image($r('app.media.search_icon'))
           .width($r('app.integer.search_icon_width'))
           .margin({ left: $r('app.integer.left_margin') })
         Text($r('app.string.search_text_placeholder'))
           .fontSize($r('app.string.ohos_id_text_size_body2'))
           .opacity(OPACITY)
           .fontColor($r('app.color.ohos_id_color_foreground'))
           .margin({ left: $r('app.integer.left_margin') })
       }
       // 原生Grid组件,Grid中包含Image和Text
       Grid() {
         // 性能知识点:此处数据量确定且数量较少,使用了ForEach,在数据量多的情况下,推荐使用LazyForeEach
         ForEach(PRODUCT_DATA, (item: ProductDataModel, index: number) => {
           GridItem() {
             Column({ space: MARGIN_VERTICAL }) {
               Image(item.uri).width($r('app.integer.image_size'))
               Row({ space: MARGIN_VERTICAL }) {
                 Text(item.title).fontSize($r('app.string.ohos_id_text_size_body3'))
                 Text(item.price).fontSize($r('app.string.ohos_id_text_size_body3'))
               }
             }
           }
         })
       }
       .columnsTemplate('1fr 1fr')
       .rowsTemplate('1fr 1fr 1fr')
       .rowsGap($r('app.string.ohos_id_elements_margin_vertical_m'))
       .columnsGap($r('app.string.ohos_id_elements_margin_vertical_m'))
      }
    }
   }
  1. embed标签可以在H5页面中嵌入任何类型的内容,在H5界面上通过embed标签标识同层元素,应用侧会将原生组件渲染到H5页面embed标签所在位置。
代码语言:html
复制
   <div>
       <div id="bodyId">
           <!-- 在H5界面上通过embed标签标识同层元素,在应用侧将原生组件渲染到H5页面embed标签所在位置-->
           <embed id="nativeSearch" type = "native/component" width="100%" height="100%" src="view"/>
       </div>
   </div>
  1. 通过WebView的enableNativeEmbedMode()控制同层渲染开关,通过onNativeEmbedLifecycleChange获取embed标签的生命周期变化数据。
代码语言:ts
复制
   build(){
     Stack() {
       // 性能知识点:此处componentId项确定且数量较少,使用了ForEach,在数据量多的情况下,推荐使用LazyForeEach
       ForEach(this.componentIdArr, (componentId: string) => {
         NodeContainer(this.nodeControllerMap.get(componentId));
       }, (embedId: string) => embedId)
       // web组件加载本地test.html页面
       Web({ src: $rawfile("view.html"), controller: this.browserTabController })
         .backgroundColor($r('app.color.ohos_id_color_sub_background'))
         .zoomAccess(false) // 不允许执行缩放
         .enableNativeEmbedMode(true) // TODO: 知识点:通过enableNativeEmbedMode()配置同层渲染开关
         .onNativeEmbedLifecycleChange((embed) => { // TODO: 知识点:通过onNativeEmbedLifecycleChange获取embed标签的生命周期变化数据
           // 获取web侧embed元素的id
           const componentId = embed.info?.id?.toString() as string
           if (embed.status === NativeEmbedStatus.CREATE) {
             // 创建节点控制器,设置参数并rebuild
             let nodeController = new SearchNodeController();
             // 外接纹理与WebView同层渲染
             nodeController.setRenderOption({
               surfaceId: embed.surfaceId as string,
               type: embed.info?.type as string,
               renderType: NodeRenderType.RENDER_TYPE_TEXTURE,
               embedId: embed.embedId as string,
               width: px2vp(embed.info?.width),
               height: px2vp(embed.info?.height)
             });
             nodeController.rebuild();
             // 根据web传入的embed的id属性作为key,将nodeController存入map
             this.nodeControllerMap.set(componentId, nodeController);
             // 将web传入的embed的id属性存入@State状态数组变量中,用于动态创建nodeContainer节点容器,需要将push动作放在set之后
             this.componentIdArr.push(componentId);
           } else if (embed.status === NativeEmbedStatus.UPDATE) {
             let nodeController = this.nodeControllerMap.get(componentId);
             nodeController?.updateNode({
               text: 'update',
               width: px2vp(embed.info?.width),
               height: px2vp(embed.info?.height)
             } as ESObject);
             nodeController?.rebuild();
           } else {
             let nodeController = this.nodeControllerMap.get(componentId);
             nodeController?.setBuilderNode(null);
             nodeController?.rebuild();
           }
         })
         .onNativeEmbedGestureEvent((touch) => { // 获取同层渲染组件触摸事件信息
           this.componentIdArr.forEach((componentId: string) => {
             let nodeController = this.nodeControllerMap.get(componentId);
             if (nodeController?.getEmbedId() === touch.embedId) {
               nodeController?.postEvent(touch.touchEvent);
             }
           })
         })
     }
   }
  1. h5侧通过id名获取embed标签信息,并通过embed标签添加同层渲染界面的touch监听事件;应用侧添加onNativeEmbedGestureEvent回调使得手指触摸到embed标签时能获取到触摸事件信息。
代码语言:html
复制
   let nativeEmbed = {
     // 通过id名获取embed标签
     nativeSearch : document.getElementById('nativeSearch'),
     // 事件
     events:{},
     // 初始化
     init:function(){
       let self = this;
       // 添加touch的监听事件
       self.nativeSearch.addEventListener('touchstart', self.events, false);
     }
   };
   nativeEmbed.init();
DD一下:鸿蒙开发各类文档,可关注公Z号<程序猿百晓生>霍取。
代码语言:erlang
复制
1.OpenHarmony开发基础
2.OpenHarmony北向开发环境搭建
3.鸿蒙南向开发环境的搭建
4.鸿蒙生态应用开发白皮书V2.0 & V3.0
5.鸿蒙开发面试真题(含参考答案) 
6.TypeScript入门学习手册
7.OpenHarmony 经典面试题(含参考答案)
8.OpenHarmony设备开发入门【最新版】
9.沉浸式剖析OpenHarmony源代码
10.系统定制指南
11.【OpenHarmony】Uboot 驱动加载流程
12.OpenHarmony构建系统--GN与子系统、部件、模块详解
13.ohos开机init启动流程
14.鸿蒙版性能优化指南
.......

代码语言:ts
复制
   Web({ src: $rawfile("view.html"), controller: this.browserTabController })
     // 获取同层渲染组件触摸事件信息
     .onNativeEmbedGestureEvent((touch) => {
       this.componentIdArr.forEach((componentId: string) => {
         let nodeController = this.nodeControllerMap.get(componentId);
         if (nodeController?.getEmbedId() === touch.embedId) {
           nodeController?.postEvent(touch.touchEvent);
         }
       })
     })

高性能知识点

ArkWeb同层渲染原生组件,原生组件不仅可以提供H5组件无法实现的一些功能,还能提升用户体验的流畅度;同层渲染节点上下树,实现节点复用,节省节点重复开销。

工程结构&模块类型

代码语言:shell
复制
   nativeembed                            // har类型
   |---mock
   |   |---GoodsMock.ets                  // 数据源
   |---model
   |   |---GoodsModel.ets                 // 数据类
   |---view
   |   |---NativeEmbedView.ets            // 视图层

写在最后

如果你觉得这篇内容对你还蛮有帮助,我想邀请你帮我三个小忙:

  • 点赞,转发,有你们的 『点赞和评论』,才是我创造的动力;
  • 关注小编,同时可以期待后续文章ing🚀,不定期分享原创知识;
  • 想要获取更多完整鸿蒙最新学习知识点,可关注B站:码牛课堂;

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 介绍
  • 效果图预览
  • 实现思路
    • DD一下:鸿蒙开发各类文档,可关注公Z号<程序猿百晓生>霍取。
  • 高性能知识点
  • 工程结构&模块类型
  • 写在最后
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档