如何在页面调用utility bar并传递参数至lwc组件

2024-09-09 17:20

本文主要是介绍如何在页面调用utility bar并传递参数至lwc组件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.在app的utility item中添加lwc组件:

2.调用utility bar api的方式有两种:

方法一,通过lwc调用:

import {LightningElement,api ,wire   } from 'lwc';
import { publish, MessageContext } from 'lightning/messageService';
import CallCenterMessageChannel from '@salesforce/messageChannel/callCenterChannelName__c';
import{open , getAllUtilityInfo} from 'lightning/platformUtilityBarApi';
import { CloseActionScreenEvent } from 'lightning/actions';export default class CallCenterMessageService extends LightningElement {@api selectedIds; // 从 Flow 传递的记录 ID@api recordId@wire(MessageContext)messageContext;// 当组件加载时处理记录 IDasync connectedCallback() {// console.log('Selected Record IDs: ', this.selectedIds);console.log('record Id: ', this.recordId);debuggerawait this.handleOpen();setTimeout(() => {this.handlePublish();this.closeQuickAction()}, 1000); // 延迟1000毫秒,可以根据情况调整时间}//调用utility api打开utility barasync handleOpen(){debuggerconst unitilyInfo=await getAllUtilityInfo();for (let i = 0; i < unitilyInfo.length; i++) {console.log('util at index', i, ':', unitilyInfo[i]);if(unitilyInfo[i].utilityLabel==='呼叫控制台'){open(unitilyInfo[i].id);}}}//publish事件至channelhandlePublish(){// debugger// console.log('handlePublish--Selected Record IDs: ', JSON.stringify(this.selectedIds));const payload = { recordId:  this.recordId};publish(this.messageContext, CallCenterMessageChannel, payload);}closeQuickAction() {this.dispatchEvent(new CloseActionScreenEvent());}}

方式二,通过aura调用:

handleGetUtilityInfo: function (component, event, helper) {debuggervar utilityBarAPI = component.find("utilitybar");console.log('utilityBarAPI--->' + JSON.stringify(utilityBarAPI));console.log('utilityBarAPI--->' + JSON.stringify(utilityBarAPI.getAllUtilityInfo()));utilityBarAPI.getAllUtilityInfo().then(function (response) {console.log(response.length);console.log(JSON.stringify(response));for (let i = 0; i < response.length; i++) {var myUtilityInfo = response[i];console.log("myUtilityInfo--》" + JSON.stringify(myUtilityInfo));if (myUtilityInfo.utilityLabel === '呼叫控制台') {utilityBarAPI.openUtility({utilityId: myUtilityInfo.id});}}})setTimeout(() => {// this.handlePublish();}, 1000); // 延迟1000毫秒,可以根据情况调整时间},handlePublish: function (cmp, event, helper) {var payload = {recordId: cmp.get("v.recordId")};cmp.find("callCenterMessageChannel").publish(payload);}

3.传递参数,通过message channel publish事件,在utility bar中lwc/aura组件订阅事件接受参数:

  handleCallCenterChannel: function (cmp, message, helper) {// debugger;console.log("订阅信息!!");if (message != null && message.getParam("recordId") != null) {console.log("recordId--->" + message.getParam("recordId"));cmp.set("v.recordId", message.getParam("recordId"));}},

tips:publish事件之前,需要提前open utility bar,否则utility bar中组件无法订阅

这篇关于如何在页面调用utility bar并传递参数至lwc组件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1151792

相关文章

MySQL中时区参数time_zone解读

《MySQL中时区参数time_zone解读》MySQL时区参数time_zone用于控制系统函数和字段的DEFAULTCURRENT_TIMESTAMP属性,修改时区可能会影响timestamp类型... 目录前言1.时区参数影响2.如何设置3.字段类型选择总结前言mysql 时区参数 time_zon

Python如何使用seleniumwire接管Chrome查看控制台中参数

《Python如何使用seleniumwire接管Chrome查看控制台中参数》文章介绍了如何使用Python的seleniumwire库来接管Chrome浏览器,并通过控制台查看接口参数,本文给大家... 1、cmd打开控制台,启动谷歌并制定端口号,找不到文件的加环境变量chrome.exe --rem

Idea调用WebService的关键步骤和注意事项

《Idea调用WebService的关键步骤和注意事项》:本文主要介绍如何在Idea中调用WebService,包括理解WebService的基本概念、获取WSDL文件、阅读和理解WSDL文件、选... 目录前言一、理解WebService的基本概念二、获取WSDL文件三、阅读和理解WSDL文件四、选择对接

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

基于Qt Qml实现时间轴组件

《基于QtQml实现时间轴组件》时间轴组件是现代用户界面中常见的元素,用于按时间顺序展示事件,本文主要为大家详细介绍了如何使用Qml实现一个简单的时间轴组件,需要的可以参考下... 目录写在前面效果图组件概述实现细节1. 组件结构2. 属性定义3. 数据模型4. 事件项的添加和排序5. 事件项的渲染如何使用

Linux中Curl参数详解实践应用

《Linux中Curl参数详解实践应用》在现代网络开发和运维工作中,curl命令是一个不可或缺的工具,它是一个利用URL语法在命令行下工作的文件传输工具,支持多种协议,如HTTP、HTTPS、FTP等... 目录引言一、基础请求参数1. -X 或 --request2. -d 或 --data3. -H 或

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python

使用JavaScript将PDF页面中的标注扁平化的操作指南

《使用JavaScript将PDF页面中的标注扁平化的操作指南》扁平化(flatten)操作可以将标注作为矢量图形包含在PDF页面的内容中,使其不可编辑,DynamsoftDocumentViewer... 目录使用Dynamsoft Document Viewer打开一个PDF文件并启用标注添加功能扁平化

SpringBoot如何访问jsp页面

《SpringBoot如何访问jsp页面》本文介绍了如何在SpringBoot项目中进行Web开发,包括创建项目、配置文件、添加依赖、控制层修改、测试效果以及在IDEA中进行配置的详细步骤... 目录SpringBoot如何访问JSP页python面简介实现步骤1. 首先创建的项目一定要是web项目2. 在

详解Spring Boot接收参数的19种方式

《详解SpringBoot接收参数的19种方式》SpringBoot提供了多种注解来接收不同类型的参数,本文给大家介绍SpringBoot接收参数的19种方式,感兴趣的朋友跟随小编一起看看吧... 目录SpringBoot接受参数相关@PathVariable注解@RequestHeader注解@Reque