
The change converts the following files to typescript: * elements/shared/gr-js-api-interface/gr-js-api-interface-element.ts Change-Id: I601884eb786dd3c896b977cf2c42cd9e9287d260
106 lines
3.0 KiB
TypeScript
106 lines
3.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import {GrReplyDialog} from '../../../services/services/gr-rest-api/gr-rest-api';
|
|
import {PluginApi, TargetElement} from '../../plugins/gr-plugin-types';
|
|
import {JsApiService} from './gr-js-api-types';
|
|
|
|
// TODO(TS): maybe move interfaces\types to other files when convertion complete
|
|
interface LabelsChangedDetail {
|
|
name: string;
|
|
value: string;
|
|
}
|
|
interface ValueChangedDetail {
|
|
value: string;
|
|
}
|
|
|
|
type ReplyChangedCallback = (text: string) => void;
|
|
type LabelsChangedCallback = (detail: LabelsChangedDetail) => void;
|
|
|
|
/**
|
|
* GrChangeReplyInterface, provides a set of handy methods on reply dialog.
|
|
*/
|
|
export class GrChangeReplyInterface {
|
|
constructor(
|
|
readonly plugin: PluginApi,
|
|
readonly sharedApiElement: JsApiService
|
|
) {}
|
|
|
|
get _el(): GrReplyDialog {
|
|
return (this.sharedApiElement.getElement(
|
|
TargetElement.REPLY_DIALOG
|
|
) as unknown) as GrReplyDialog;
|
|
}
|
|
|
|
getLabelValue(label: string) {
|
|
return this._el.getLabelValue(label);
|
|
}
|
|
|
|
setLabelValue(label: string, value: string) {
|
|
this._el.setLabelValue(label, value);
|
|
}
|
|
|
|
send(includeComments?: boolean) {
|
|
this._el.send(includeComments);
|
|
}
|
|
|
|
addReplyTextChangedCallback(handler: ReplyChangedCallback) {
|
|
const hookApi = this.plugin.hook('reply-text');
|
|
const registeredHandler = (e: Event) => {
|
|
const ce = e as CustomEvent<ValueChangedDetail>;
|
|
handler(ce.detail.value);
|
|
};
|
|
hookApi.onAttached(el => {
|
|
if (!el.content) {
|
|
return;
|
|
}
|
|
el.content.addEventListener('value-changed', registeredHandler);
|
|
});
|
|
hookApi.onDetached(el => {
|
|
if (!el.content) {
|
|
return;
|
|
}
|
|
el.content.removeEventListener('value-changed', registeredHandler);
|
|
});
|
|
}
|
|
|
|
addLabelValuesChangedCallback(handler: LabelsChangedCallback) {
|
|
const hookApi = this.plugin.hook('reply-label-scores');
|
|
const registeredHandler = (e: Event) => {
|
|
const ce = e as CustomEvent<LabelsChangedDetail>;
|
|
handler(ce.detail);
|
|
};
|
|
hookApi.onAttached(el => {
|
|
if (!el.content) {
|
|
return;
|
|
}
|
|
el.content.addEventListener('labels-changed', registeredHandler);
|
|
});
|
|
|
|
hookApi.onDetached(el => {
|
|
if (!el.content) {
|
|
return;
|
|
}
|
|
el.content.removeEventListener('labels-changed', registeredHandler);
|
|
});
|
|
}
|
|
|
|
showMessage(message: string) {
|
|
return this._el.setPluginMessage(message);
|
|
}
|
|
}
|