Paulo Veiga c60254aca1 Add support for emoji
Update core libraries.
2022-10-31 05:17:01 +00:00

62 lines
1.9 KiB
TypeScript

/*
* Copyright [2021] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* 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 { $assert } from '@wisemapping/core-js';
import NotesImage from '../../assets/icons/notes.svg';
import Topic from './Topic';
import NoteModel from './model/NoteModel';
import FeatureModel from './model/FeatureModel';
import WidgetManager from './WidgetManager';
import ImageIcon from './ImageIcon';
class NoteIcon extends ImageIcon {
private _linksModel: NoteModel;
private _topic: Topic;
private _readOnly: boolean;
constructor(topic: Topic, noteModel: NoteModel, readOnly: boolean) {
$assert(topic, 'topic can not be null');
super(NoteIcon.IMAGE_URL);
this._linksModel = noteModel;
this._topic = topic;
this._readOnly = readOnly;
this._registerEvents();
}
private _registerEvents(): void {
this._image.setCursor('pointer');
const manager = WidgetManager.getInstance();
manager.createTooltipForNote(this._topic, this._linksModel as NoteModel, this);
if (!this._readOnly) {
manager.configureEditorForNote(this._topic, this._linksModel as NoteModel, this);
}
}
getModel(): FeatureModel {
return this._linksModel;
}
static IMAGE_URL = NotesImage;
}
export default NoteIcon;