1# @ohos.pluginComponent (PluginComponentManager) 2 3The **PluginComponentManager** module provides APIs for the **PluginComponent** user to request components and data and send component templates and data. For details about how to display the **PluginComponent** template, see [PluginComponent](../arkui-ts/ts-basic-components-plugincomponent.md). 4 5> **NOTE** 6> 7> The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version. 8 9## Modules to Import 10 11```ts 12import pluginComponentManager from '@ohos.pluginComponent' 13import Want from '@ohos.app.ability.Want'; 14``` 15 16## PluginComponentTemplate 17 18Describes the **PluginComponent** template parameters. 19 20**System capability**: SystemCapability.ArkUI.ArkUI.Full 21 22| Name | Type | Mandatory | Description | 23| ---------- | ------ | ---- | ---------------------- | 24| source | string | Yes | Component template name. | 25| bundleName | string | Yes | Bundle name of the provider ability.| 26 27 28## PluginComponentManager 29 30### KVObject 31 32Stores information in key-value pairs in JSON format. 33 34**System capability**: SystemCapability.ArkUI.ArkUI.Full 35 36 37| Value Range | Description | 38| --------------------- | -------------------- | 39| [key: string] | Keyword. The value is a string and can be an empty string.| 40| number | Key value of the number type. | 41| string | Key value of the string type. The value can be an empty string.| 42| boolean | Key value of the Boolean type. | 43| [] | Key value. The value can be []. | 44| [KVObject](#kvobject) | Key value of the KVObject type. | 45 46 47### PushParameters 48 49Sets the parameters to be passed in the **PluginManager.Push** API in the FA model. 50 51**Model restriction**: This API can be used only in the FA model. 52 53**System capability**: SystemCapability.ArkUI.ArkUI.Full 54 55| Name | Type | Mandatory | Description | 56| --------- | ----------------------------------- | ---- | ---------------------------------------- | 57| want | [Want](js-apis-application-want.md) | Yes | Ability information of the component user. | 58| name | string | Yes | Component name. | 59| data | [KVObject](#kvobject) | Yes | Component data value. | 60| extraData | [KVObject](#kvobject) | Yes | Additional data value. | 61| jsonPath | string | No | Path to the [external.json](#about-the-externaljson-file) file that stores the template path.| 62 63### PushParameterForStage 64 65Sets the parameters to be passed in the **PluginManager.Push** API in the stage model. 66 67**Model restriction**: This API can be used only in the stage model. 68 69**System API**: This is a system API. 70 71**System capability**: SystemCapability.ArkUI.ArkUI.Full 72 73| Name | Type | Mandatory | Description | 74| --------- | ----------------------------------- | ---- | ---------------------------------------- | 75| owner | [Want](js-apis-application-want.md) | Yes | Ability information of the component provider. | 76| target | [Want](js-apis-application-want.md) | Yes | Ability information of the component user. | 77| name | string | Yes | Component name. | 78| data | [KVObject](#kvobject) | Yes | Component data value. | 79| extraData | [KVObject](#kvobject) | Yes | Additional data value. | 80| jsonPath | string | No | Path to the [external.json](#about-the-externaljson-file) file that stores the template path.| 81 82### RequestParameters 83 84Sets the parameters to be passed in the **PluginManager.Request** API in the FA model. 85 86**Model restriction**: This API can be used only in the FA model. 87 88**System capability**: SystemCapability.ArkUI.ArkUI.Full 89 90| Name | Type | Mandatory | Description | 91| -------- | ----------------------------------- | ---- | ---------------------------------------- | 92| want | [Want](js-apis-application-want.md) | Yes | Ability information of the component provider. | 93| name | string | Yes | Name of the requested component. | 94| data | [KVObject](#kvobject) | Yes | Additional data. | 95| jsonPath | string | No | Path to the [external.json](#about-the-externaljson-file) file that stores the template path. Request communication is not triggered when **jsonPath** is not empty or not set.| 96 97### RequestParameterForStage 98 99Sets the parameters to be passed in the **PluginManager.Request** API in the stage model. 100 101**System API**: This is a system API. 102 103**Model restriction**: This API can be used only in the stage model. 104 105**System capability**: SystemCapability.ArkUI.ArkUI.Full 106 107| Name | Type | Mandatory | Description | 108| -------- | ----------------------------------- | ---- | ---------------------------------------- | 109| owner | [Want](js-apis-application-want.md) | Yes | Ability information of the component user. | 110| target | [Want](js-apis-application-want.md) | Yes | Ability information of the component provider. | 111| name | string | Yes | Name of the requested component. | 112| data | [KVObject](#kvobject) | Yes | Additional data. | 113| jsonPath | string | No | Path to the [external.json](#about-the-externaljson-file) file that stores the template path. Request communication is not triggered when **jsonPath** is not empty or not set.| 114 115### RequestCallbackParameters 116 117Provides the result returned after the **PluginManager.Request** API is called. 118 119**System capability**: SystemCapability.ArkUI.ArkUI.Full 120 121| Name | Type | Mandatory | Description | 122| ----------------- | ---------------------------------------- | ---- | ----- | 123| componentTemplate | [PluginComponentTemplate](#plugincomponenttemplate) | Yes | Component template.| 124| data | [KVObject](#kvobject) | Yes | Component data.| 125| extraData | [KVObject](#kvobject) | Yes | Additional data.| 126 127### RequestEventResult 128 129Provides the result returned after the request listener is registered and the requested event is received. 130 131**System capability**: SystemCapability.ArkUI.ArkUI.Full 132 133| Name | Type | Mandatory | Description | 134| --------- | --------------------- | ---- | ----- | 135| template | string | No | Component template.| 136| data | [KVObject](#kvobject) | No | Component data.| 137| extraData | [KVObject](#kvobject) | No | Additional data.| 138 139### OnPushEventCallback 140 141OnPushEventCallback = (source: Want, template: PluginComponentTemplate, data: KVObject, 142 extraData: KVObject) => void 143 144Registers the listener for the push event. 145 146**Parameters** 147 148| Name | Type | Mandatory | Description | 149| --------- | ---------------------------------------- | ---- | ---------------------- | 150| source | [Want](js-apis-application-want.md) | Yes | Information about the push request sender. | 151| template | [PluginComponentTemplate](#plugincomponenttemplate) | Yes | Name of the request component template for the push request sender.| 152| data | [KVObject](#kvobject) | Yes | Data. | 153| extraData | [KVObject](#kvobject) | Yes | Additional data. | 154 155**Example** 156 157```ts 158import pluginComponentManager from '@ohos.pluginComponent' 159import Want from '@ohos.app.ability.Want'; 160function onPushListener(source: Want, template: PluginComponentTemplate, data: pluginComponentManager.KVObject, extraData: pluginComponentManager.KVObject) { 161 console.log("onPushListener template.source=" + template.source) 162 console.log("onPushListener source=" + JSON.stringify(source)) 163 console.log("onPushListener template=" + JSON.stringify(template)) 164 console.log("onPushListener data=" + JSON.stringify(data)) 165 console.log("onPushListener extraData=" + JSON.stringify(extraData)) 166} 167``` 168 169 170### OnRequestEventCallback 171 172OnRequestEventCallback = (source: Want, name: string, data: KVObject) => RequestEventResult 173 174Registers the listener for the request event. 175 176**Parameters** 177 178| Name | Type | Mandatory | Description | 179| --------- | ----------------------------------- | ---- | ----------------- | 180| source | [Want](js-apis-application-want.md) | Yes | Information about the request sender.| 181| name | string | Yes | Template name. | 182| extraData | [KVObject](#kvobject) | Yes | Additional data. | 183 184**Example** 185 186```ts 187import pluginComponentManager from '@ohos.pluginComponent' 188import Want from '@ohos.app.ability.Want'; 189function onRequestListener(source:Want, name:string, data:pluginComponentManager.KVObject) { 190 console.error("onRequestListener"); 191 console.log("onRequestListener source=" + JSON.stringify(source)); 192 console.log("onRequestListener name=" + name); 193 console.log("onRequestListener data=" + JSON.stringify(data)); 194 let RtnData:Record<string,string|pluginComponentManager.KVObject> = { 'template': "ets/pages/plugin.js", 'data': data } 195 return RtnData; 196} 197``` 198 199### push 200 201push(param: PushParameters , callback: AsyncCallback<void>): void 202 203Pushes the component and data to the component user. 204 205**Model restriction**: This API can be used only in the FA model. 206 207**Parameters** 208| Name | Type | Mandatory | Description | 209| -------- | --------------------------------- | ---- | ------------ | 210| param | [PushParameters](#pushparameters) | Yes | Information about the component user. | 211| callback | AsyncCallback<void> | Yes | Asynchronous callback used to return the result.| 212 213**Example** 214 215```ts 216import pluginComponentManager from '@ohos.pluginComponent' 217pluginComponentManager.push( 218 { 219 want: { 220 bundleName: "com.example.provider", 221 abilityName: "com.example.provider.MainAbility", 222 }, 223 name: "plugintemplate", 224 data: { 225 "key_1": "plugin component test", 226 "key_2": 34234 227 }, 228 extraData: { 229 "extra_str": "this is push event" 230 }, 231 jsonPath: "", 232 }, 233 (err, data) => { 234 console.log("push_callback: push ok!"); 235 } 236) 237``` 238 239### push 240 241push(param: PushParameterForStage, callback: AsyncCallback<void>): void 242 243Pushes the component and data to the component user. 244 245**System API**: This is a system API. 246 247**Model restriction**: This API can be used only in the stage model. 248 249**Parameters** 250| Name | Type | Mandatory | Description | 251| -------- | ---------------------------------------- | ---- | ------------ | 252| param | [PushParameterForStage](#pushparameterforstage) | Yes | Information about the component user. | 253| callback | AsyncCallback<void> | Yes | Asynchronous callback used to return the result.| 254 255**Example** 256 257```ts 258import pluginComponentManager from '@ohos.pluginComponent' 259pluginComponentManager.push( 260 { 261 owner: { 262 bundleName: "com.example.provider", 263 abilityName: "com.example.provider.MainAbility" 264 }, 265 target: { 266 bundleName: "com.example.provider", 267 abilityName: "com.example.provider.MainAbility", 268 }, 269 name: "ets/pages/plugin2.js", 270 data: { 271 "js": "ets/pages/plugin.js", 272 "key_1": 1111, 273 }, 274 extraData: { 275 "extra_str": "this is push event" 276 }, 277 jsonPath: "", 278 }, 279 (err, data) => { 280 console.log("push_callback:err: ", JSON.stringify(err)); 281 console.log("push_callback:data: ", JSON.stringify(data)); 282 console.log("push_callback: push ok!"); 283 } 284) 285``` 286 287 288### request 289 290request(param: RequestParameters, callback: AsyncCallback<RequestCallbackParameters>): void 291 292Requests the component from the component provider. 293 294**Model restriction**: This API can be used only in the FA model. 295 296 297**Parameters** 298 299| Name | Type | Mandatory | Description | 300| -------- | ---------------------------------------- | ---- | ----------------------------------- | 301| param | [RequestParameters](#requestparameters) | Yes | Information about the component request. | 302| callback | AsyncCallback<[RequestCallbackParameters](#requestcallbackparameters) \| void> | Yes | Asynchronous callback used to return the requested data.| 303 304**Example** 305 306```ts 307import pluginComponentManager from '@ohos.pluginComponent' 308pluginComponentManager.request( 309 { 310 want: { 311 bundleName: "com.example.provider", 312 abilityName: "com.example.provider.MainAbility", 313 }, 314 name: "plugintemplate", 315 data: { 316 "key_1": "plugin component test", 317 "key_2": 1111111 318 }, 319 jsonPath: "", 320 }, 321 (err, data) => { 322 console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability) 323 console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source) 324 console.log("request_callback: data=" + JSON.stringify(data.data)) 325 console.log("request_callback: extraData=" + JSON.stringify(data.extraData)) 326 } 327) 328``` 329 330 331### request 332 333request(param: RequestParameterForStage, callback: AsyncCallback<RequestCallbackParameters>): void 334 335Requests the component from the component provider. 336 337**System API**: This is a system API. 338 339**Model restriction**: This API can be used only in the stage model. 340 341**Parameters** 342 343| Name | Type | Mandatory | Description | 344| -------- | ---------------------------------------- | ---- | ----------------------------------- | 345| param | [RequestParameterForStage](#requestparameterforstage) | Yes | Information about the component request. | 346| callback | AsyncCallback<[RequestCallbackParameters](#requestcallbackparameters) \| void> | Yes | Asynchronous callback used to return the requested data.| 347 348**Example** 349 350```ts 351import pluginComponentManager from '@ohos.pluginComponent' 352pluginComponentManager.request( 353 { 354 owner: { 355 bundleName: "com.example.provider", 356 abilityName: "com.example.provider.MainAbility" 357 }, 358 target: { 359 bundleName: "com.example.provider", 360 abilityName: "ets/pages/plugin2.js", 361 }, 362 name: "plugintemplate", 363 data: { 364 "key_1": " myapplication plugin component test", 365 }, 366 jsonPath: "", 367 }, 368 (err, data) => { 369 console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability) 370 console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source) 371 } 372) 373``` 374 375### on 376 377on(eventType: string, callback: OnPushEventCallback | OnRequestEventCallback ): void 378 379Listens for events of the request type and returns the requested data, or listens for events of the push type and receives the data pushed by the provider. 380 381**Parameters** 382 383| Name | Type | Mandatory | Description | 384| --------- | ---------------------------------------- | ---- | ---------------------------------------- | 385| eventType | string | Yes | Type of the event to listen for. The options are as follows:<br>**"push"**: The component provider pushes data to the component consumer.<br>**"request"**: The component consumer proactively requests data from the component provider.| 386| callback | [OnPushEventCallback](#onpusheventcallback) \| [OnRequestEventCallback](#onrequesteventcallback) | Yes | Callback used to return the result. The type is [OnPushEventCallback](#onpusheventcallback) for the push event and [OnRequestEventCallback](#onrequesteventcallback) for the request event.| 387 388**Example** 389 390```ts 391import pluginComponentManager from '@ohos.pluginComponent' 392import Want from '@ohos.app.ability.Want'; 393import {PluginComponentTemplate} from '@ohos.pluginComponent' 394function onPushListener(source:Want, template:PluginComponentTemplate, data:pluginComponentManager.KVObject, extraData:pluginComponentManager.KVObject) { 395 console.log("onPushListener template.source=" + template.source) 396 console.log("onPushListener source=" + JSON.stringify(source)) 397 console.log("onPushListener template=" + JSON.stringify(template)) 398 console.log("onPushListener data=" + JSON.stringify(data)) 399 console.log("onPushListener extraData=" + JSON.stringify(extraData)) 400} 401function onRequestListener(source:Want, name:string, data:pluginComponentManager.KVObject) { 402 console.error("onRequestListener"); 403 console.log("onRequestListener source=" + JSON.stringify(source)); 404 console.log("onRequestListener name=" + name); 405 console.log("onRequestListener data=" + JSON.stringify(data)); 406 let RtnData:Record<string,string|pluginComponentManager.KVObject> = { 'template': "ets/pages/plugin.js", 'data': data } 407 return RtnData; 408} 409pluginComponentManager.on("push", onPushListener) 410pluginComponentManager.on("request", onRequestListener) 411``` 412 413## About the external.json File 414 415The **external.json** file is created by developers. It stores component names and template paths in key-value pairs. The component name is used as the keyword, and the corresponding template path is used as the value. 416 417**Example** 418 419```json 420{ 421 "PluginProviderExample": "ets/pages/PluginProviderExample.js", 422 "plugintemplate2": "ets/pages/plugintemplate2.js" 423} 424 425``` 426