如何在页面调用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;
    // 当组件加载时处理记录 ID
    async connectedCallback() {
        // console.log('Selected Record IDs: ', this.selectedIds);
        console.log('record Id: ', this.recordId);
        debugger
        await this.handleOpen();
        setTimeout(() => {
            this.handlePublish();
            this.closeQuickAction()
        }, 1000); // 延迟1000毫秒,可以根据情况调整时间

    }
    //调用utility api打开utility bar
    async handleOpen(){
        debugger
        const 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事件至channel
    handlePublish(){
        // 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) {
        debugger
        var 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中组件无法订阅

相关推荐
大家的林语冰2 小时前
👍 Rust 为 Node 插上翅膀,反超 Bun 和 pnpm,一体化工具我也有!
前端·javascript·node.js
ssshooter3 小时前
Promise 和 async/await 被 try-catch 包裹时的行为差异
前端·javascript·面试
kisshyshy4 小时前
从0到1彻底理解流式输出:先读懂Vue的“乐高积木”,再拧开LLM的“数据水龙头”
javascript·vue.js·人工智能
触底反弹4 小时前
Vue 实战:手把手教你实现 ChatGPT 同款打字机效果
前端·javascript·人工智能
Kel4 小时前
Node.js 本质:从全脉络视角理解运行时原理
javascript·设计模式·node.js
ikoala5 小时前
Codex 小白入门:从安装到插件、MCP、Skills,一篇把配置讲明白
前端·javascript·后端
多加点辣也没关系6 小时前
JavaScript|第12章:属性配置与 getter/setter
javascript
gis开发之家6 小时前
《Vue3 从入门到大神29篇》单元测试与 E2E 测试 —— 保障 Vue3 项目的质量
前端·javascript·vue.js·单元测试·前端框架·vue3
柒和远方7 小时前
从等待到流式:LLM 流式输出的原理、协议与工程实践
javascript·llm
全栈项目管理程序猿7 小时前
Cesium-1.143 中文版 API
javascript·cesium