summaryrefslogtreecommitdiffstats
path: root/third_party/google_input_tools/src/chrome/os/inputview/elements/content/emojikey.js
blob: 04f06290eb34d86d988346b36af1055b9bf63930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// Copyright 2014 The ChromeOS IME Authors. All Rights Reserved.
// limitations under the License.
// See the License for the specific language governing permissions and
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// distributed under the License is distributed on an "AS-IS" BASIS,
// Unless required by applicable law or agreed to in writing, software
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// You may obtain a copy of the License at
// you may not use this file except in compliance with the License.
// Licensed under the Apache License, Version 2.0 (the "License");
//
goog.provide('i18n.input.chrome.inputview.elements.content.EmojiKey');
goog.require('goog.a11y.aria');
goog.require('goog.a11y.aria.State');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.dom.classlist');
goog.require('i18n.input.chrome.inputview.Css');
goog.require('i18n.input.chrome.inputview.elements.content.SoftKey');

goog.scope(function() {

var EMOJI_KEY_MARGIN = 6;



/**
 * The emoji key
 *
 * @param {string} id The id.
 * @param {!i18n.input.chrome.inputview.elements.ElementType} type The element
 *     type.
 * @param {string} text The text.
 * @param {boolean} isEmoticon Wether it is an emoticon.
 * @param {goog.events.EventTarget=} opt_eventTarget The event target.
 * @constructor
 * @extends {i18n.input.chrome.inputview.elements.content.SoftKey}
 */
i18n.input.chrome.inputview.elements.content.EmojiKey = function(id, type,
    text, isEmoticon, opt_eventTarget) {
  i18n.input.chrome.inputview.elements.content.EmojiKey.base(
      this, 'constructor', id, type, opt_eventTarget);
  /**
   * The text in the key.
   *
   * @type {string}
   */
  this.text = text;


  /**
   * Wether it is an emoticon.
   *
   * @type {boolean}
   */
  this.isEmoticon = isEmoticon;

  this.pointerConfig.stopEventPropagation = false;
  this.pointerConfig.dblClick = true;
};
goog.inherits(i18n.input.chrome.inputview.elements.content.EmojiKey,
    i18n.input.chrome.inputview.elements.content.SoftKey);
var EmojiKey = i18n.input.chrome.inputview.elements.content.EmojiKey;


/** @override */
EmojiKey.prototype.createDom = function() {
  goog.base(this, 'createDom');
  var dom = this.getDomHelper();
  var elem = this.getElement();
  if (!this.textElem) {
    this.textElem = dom.createDom(goog.dom.TagName.DIV,
        i18n.input.chrome.inputview.Css.SPECIAL_KEY_NAME, this.text);
  }
  goog.dom.classlist.add(elem, i18n.input.chrome.inputview.Css.EMOJI_KEY);
  elem.style.margin = EMOJI_KEY_MARGIN + 'px';
  this.updateText(this.text, this.isEmoticon);
  dom.appendChild(elem, this.textElem);
  // Sets aria label after UI is ready.
  setTimeout(this.setAriaLable_.bind(this), 0);
};


/** @override */
EmojiKey.prototype.resize = function(width, height) {
  var elem = this.getElement();
  var w = width - EMOJI_KEY_MARGIN * 2;
  var h = height - EMOJI_KEY_MARGIN * 2;
  elem.style.width = w + 'px';
  elem.style.height = h + 'px';
  this.availableWidth = w;
  this.availableHeight = h;
};


/** @override */
EmojiKey.prototype.setHighlighted = function(highlight) {
  if (this.text == '') {
    return;
  }
  goog.base(this, 'setHighlighted', highlight);
};


/** @override */
EmojiKey.prototype.update = function() {
  goog.base(this, 'update');
  goog.dom.setTextContent(this.textElem, this.text);
};


/**
 * Update the emoji's text
 *
 * @param {string} text The new text.
 * @param {boolean} isEmoticon .
 */
EmojiKey.prototype.updateText = function(text, isEmoticon) {
  this.text = text;
  this.isEmoticon = isEmoticon;
  goog.dom.setTextContent(this.textElem, text);
  var elem = this.getElement();
  if (isEmoticon) {
    goog.dom.classlist.add(elem, i18n.input.chrome.inputview.Css.EMOTICON);
  } else {
    goog.dom.classlist.remove(elem, i18n.input.chrome.inputview.Css.EMOTICON);
  }
};


/**
 * Sets the aria label for this emoji key if any.
 *
 * @private
 */
EmojiKey.prototype.setAriaLable_ = function() {
  var emojiName = '';
  var lead = this.text.charCodeAt(0);
  if (this.isEmoticon) {
    emojiName = chrome.i18n.getMessage('smiley');
  } else if (lead) {
    var trail = this.text.charCodeAt(1);
    var msgName = lead.toString(16);
    if (!!trail) {
      msgName += '_' + trail.toString(16);
    }
    emojiName = chrome.i18n.getMessage(msgName.toLowerCase());
  }
  if (emojiName) {
    goog.a11y.aria.setState(/** @type {!Element} */ (this.getElement()),
        goog.a11y.aria.State.LABEL, emojiName);
  }
};
});  // goog.scope