1/*
2 * Copyright (c) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the 'License');
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an 'AS IS' BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16const hilog = requireNapi('hilog');
17const Want = requireNapi('app.ability.Want');
18const componentSnapshot = requireNapi('arkui.componentSnapshot');
19const componentUtils = requireNapi('arkui.componentUtils');
20const image = requireNapi('multimedia.image');
21const util = requireNapi('util');
22
23const tag = 'AddFormMenuItem::js::';
24
25async function querySnapshotAsync(want, componentId) {
26  let compInfo = componentUtils.getRectangleById(componentId);
27  let imagePackageApi = null;
28  try {
29    imagePackageApi = image.createImagePacker();
30    const packOpts = {
31      format: 'image/webp',
32      quality: 50,
33    };
34    let packPixmap = await componentSnapshot.get(componentId);
35    let arrayBuffer = await imagePackageApi.packing(packPixmap, packOpts);
36    let base64Helper = new util.Base64Helper();
37    let uint8Arr = new Uint8Array(arrayBuffer);
38    let pixelStr = base64Helper.encodeToStringSync(uint8Arr);
39    !want.parameters && (want.parameters = {});
40    want.parameters['ohos.extra.param.key.add_form_to_host_width'] = compInfo.size.width.toFixed(2);
41    want.parameters['ohos.extra.param.key.add_form_to_host_height'] = compInfo.size.height.toFixed(2);
42    want.parameters['ohos.extra.param.key.add_form_to_host_screenx'] = compInfo.screenOffset.x.toFixed(2);
43    want.parameters['ohos.extra.param.key.add_form_to_host_screeny'] = compInfo.screenOffset.y.toFixed(2);
44    want.parameters['ohos.extra.param.key.add_form_to_host_snapshot'] = pixelStr;
45    hilog.info(0x3900, tag, 'pixelStr length:' + pixelStr.length);
46  } catch (err) {
47    hilog.error(0x3900, tag, 'get pixelmap string error:' + err);
48  } finally {
49    imagePackageApi?.release();
50  }
51}
52
53function querySnapshot(want, componentId) {
54  querySnapshotAsync(want, componentId);
55  return true;
56}
57
58/**
59 * Build function of AddFormMenuItem.
60 *
61 * @param { Want } want - The want of the form to publish.
62 * @param { string } componentId - The id of the component used to get form snapshot.
63 * @param { AddFormOptions } [options] - Add form options.
64 * @syscap SystemCapability.ArkUI.ArkUI.Full
65 * @since 12
66 */
67export function AddFormMenuItem(want, componentId, options, parent = null) {
68  this.observeComponentCreation2((elmtId, isInitialRender) => {
69    If.create();
70    if (querySnapshot(want, componentId)) {
71      this.ifElseBranchUpdateFunction(0, () => {
72      });
73    }
74    else {
75      this.ifElseBranchUpdateFunction(1, () => {
76      });
77    }
78  }, If);
79  If.pop();
80  this.observeComponentCreation2((elmtId, isInitialRender) => {
81    FormMenuItem.create(options?.style?.options ? options.style.options : {
82      startIcon: {
83        'id': 125832775,
84        'type': 20000,
85        params: ['sys.media.ic_form_menu_add'],
86        'bundleName': '',
87        'moduleName': ''
88      },
89      content: {
90        'id': 125832726,
91        'type': 10003,
92        params: ['sys.string.ohos_add_form_to_desktop'],
93        'bundleName': '',
94        'moduleName': ''
95      }
96    });
97    FormMenuItem.onRegClick(want, componentId, options?.formBindingData?.data, options?.callback);
98  }, FormMenuItem);
99  FormMenuItem.pop();
100}
101
102export default { AddFormMenuItem };
103