blob: 47d332b210e8037da0b7c26d95b3935630c970d0 [file] [log] [blame]
Nils Diewald0e6992a2015-04-14 20:13:52 +00001/**
2 * Hint menu item based on MenuItem
3 */
Akron0b489ad2018-02-02 16:49:32 +01004define(['menu/item', 'util'], function (itemClass) {
Nils Diewald0e6992a2015-04-14 20:13:52 +00005 return {
Nils Diewald7148c6f2015-05-04 15:07:53 +00006
7 /**
8 * Create new menu item object.
9 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000010 create : function (params) {
11 return Object.create(itemClass)
Akron65c74352016-09-02 17:23:39 +020012 .upgradeTo(this)
13 ._init(params);
Nils Diewald0e6992a2015-04-14 20:13:52 +000014 },
Nils Diewald47f366b2015-04-15 20:06:35 +000015
Nils Diewald7148c6f2015-05-04 15:07:53 +000016 // Initialize menu item object
Nils Diewald0e6992a2015-04-14 20:13:52 +000017 _init : function (params) {
18 if (params[0] === undefined ||
Akron65c74352016-09-02 17:23:39 +020019 params[1] === undefined)
20 throw new Error("Missing parameters");
Nils Diewald0e6992a2015-04-14 20:13:52 +000021
22 this._name = params[0];
23 this._action = params[1];
24 this._lcField = ' ' + this._name.toLowerCase();
25
26 if (params.length > 2) {
Akron65c74352016-09-02 17:23:39 +020027 this._desc = params[2];
28 this._lcField += " " + this._desc.toLowerCase();
Nils Diewald0e6992a2015-04-14 20:13:52 +000029 };
30
31 return this;
32 },
33
Nils Diewald7148c6f2015-05-04 15:07:53 +000034 /**
35 * Get or set the content of the item.
36 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000037 content : function (content) {
38 if (arguments.length === 1) {
Akron65c74352016-09-02 17:23:39 +020039 this._content = content;
Nils Diewald0e6992a2015-04-14 20:13:52 +000040 };
41 return this._content;
42 },
Nils Diewald7148c6f2015-05-04 15:07:53 +000043
44 /**
45 * Override the click action
46 * of the menu item.
47 */
Nils Diewald47f366b2015-04-15 20:06:35 +000048 onclick : function (e) {
Nils Diewald0e6992a2015-04-14 20:13:52 +000049 var m = this.menu();
50 var h = m.hint();
Akron02360e42016-06-07 13:41:12 +020051 // m.hide();
Nils Diewald0e6992a2015-04-14 20:13:52 +000052
Akron95abaf42018-04-26 15:33:22 +020053 // Reset prefix
54 m.prefix("");
55
Nils Diewald0e6992a2015-04-14 20:13:52 +000056 // Update input field
57 var input = h.inputField();
Akron308db382016-05-30 22:34:07 +020058 input.insert(this._action).update();
Nils Diewald0e6992a2015-04-14 20:13:52 +000059
Nils Diewald47f366b2015-04-15 20:06:35 +000060 e.halt();
Akron95abaf42018-04-26 15:33:22 +020061
Akron02360e42016-06-07 13:41:12 +020062 // show alt
Nils Diewald0e6992a2015-04-14 20:13:52 +000063 h.show(true);
64 },
Nils Diewald47f366b2015-04-15 20:06:35 +000065
Nils Diewald7148c6f2015-05-04 15:07:53 +000066 /**
67 * The name of the menu entry.
68 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000069 name : function () {
70 return this._name;
71 },
Nils Diewald7148c6f2015-05-04 15:07:53 +000072
73 /**
74 * The action (the string inserted on click)
75 * of the menu item.
76 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000077 action : function () {
78 return this._action;
79 },
Nils Diewald7148c6f2015-05-04 15:07:53 +000080
81 /**
82 * The description of the menu item.
83 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000084 desc : function () {
85 return this._desc;
86 },
Nils Diewald7148c6f2015-05-04 15:07:53 +000087
88 /**
89 * The associated dom element of the
90 * menu item.
91 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000092 element : function () {
93 // already defined
94 if (this._element !== undefined)
Akron65c74352016-09-02 17:23:39 +020095 return this._element;
Nils Diewald0e6992a2015-04-14 20:13:52 +000096
97 // Create list item
98 var li = document.createElement("li");
99
100 if (this.onclick !== undefined) {
Akron65c74352016-09-02 17:23:39 +0200101 li["onclick"] = this.onclick.bind(this);
Nils Diewald0e6992a2015-04-14 20:13:52 +0000102 };
103
104 // Create title
105 var name = document.createElement("span");
Akron0b489ad2018-02-02 16:49:32 +0100106 name.addT(this._name);
Nils Diewald0e6992a2015-04-14 20:13:52 +0000107
108 li.appendChild(name);
109
110 // Create description
111 if (this._desc !== undefined) {
Akron65c74352016-09-02 17:23:39 +0200112 var desc = document.createElement("span");
113 desc.classList.add('desc');
Akron0b489ad2018-02-02 16:49:32 +0100114 desc.addT(this._desc);
Akron65c74352016-09-02 17:23:39 +0200115 li.appendChild(desc);
Nils Diewald0e6992a2015-04-14 20:13:52 +0000116 };
117 return this._element = li;
118 }
119 };
120});