This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtoolbar-integration.js
More file actions
163 lines (163 loc) · 7.38 KB
/
Copy pathtoolbar-integration.js
File metadata and controls
163 lines (163 loc) · 7.38 KB
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
157
158
159
160
161
162
163
"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var ej2_react_navigations_1 = require("@syncfusion/ej2-react-navigations");
var ej2_react_splitbuttons_1 = require("@syncfusion/ej2-react-splitbuttons");
var sample_base_1 = require("../common/sample-base");
require("./toolbar-integration.css");
var ToolbarIntegration = (function (_super) {
__extends(ToolbarIntegration, _super);
function ToolbarIntegration() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.searchTemplate = '<div class="e-input-group"><input class="e-input" type="text" placeholder="Search" /><span class="em-icons e-search"></span></div>';
_this.items = [
{ text: 'My Profile' },
{ text: 'Orders' },
{ text: 'Rewards' },
{ text: 'Logout' }
];
_this.animation = { effect: 'None' };
//Menu items definition
_this.menuItems = [
{
text: 'Appliances',
items: [
{
text: 'Kitchen',
items: [
{ text: 'Electric Cookers' },
{ text: 'Coffee Makers' },
{ text: 'Blenders' }
]
},
{
text: 'Washing Machine',
items: [
{ text: 'Fully Automatic' },
{ text: 'Semi Automatic' }
]
},
{
text: 'Air Conditioners',
items: [
{ text: 'Inverter ACs' },
{ text: 'Split ACs' },
{ text: 'Window ACs' }
]
}
]
},
{
text: 'Accessories',
items: [
{
text: 'Mobile',
items: [
{ text: 'Headphones' },
{ text: 'Memory Cards' },
{ text: 'Power Banks' }
]
},
{
text: 'Computer',
items: [
{ text: 'Pendrives' },
{ text: 'External Hard Disks' },
{ text: 'Monitors' }
]
}
]
},
{
text: 'Fashion',
items: [
{
text: 'Men',
items: [
{ text: 'Shirts' },
{ text: 'Jackets' },
{ text: 'Track Suits' }
]
},
{
text: 'Women',
items: [
{ text: 'Kurtas' },
{ text: 'Salwars' },
{ text: 'Sarees' }
]
}
]
},
{
text: 'Home & Living',
items: [
{
text: 'Furniture',
items: [
{ text: 'Beds' },
{ text: 'Mattresses' },
{ text: 'Dining Tables' }
]
},
{
text: 'Decor',
items: [
{ text: 'Clocks' },
{ text: 'Wall Decals' },
{ text: 'Paintings' }
]
}
]
}
];
return _this;
}
ToolbarIntegration.prototype.menuTemplate = function () {
return (React.createElement(ej2_react_navigations_1.MenuComponent, { id: "menuele", items: this.menuItems, animationSettings: this.animation }));
};
ToolbarIntegration.prototype.ddbTemplate = function () {
return (React.createElement(ej2_react_splitbuttons_1.DropDownButtonComponent, { id: "userDBtn", content: 'Andrew', created: this.onCreated.bind(this), items: this.items }));
};
ToolbarIntegration.prototype.onCreated = function () {
this.tbObj.refreshOverflow();
};
ToolbarIntegration.prototype.render = function () {
var _this = this;
return (React.createElement("div", { className: 'control-pane' },
React.createElement("div", { id: "menu-control", className: 'control-section' },
React.createElement("div", { className: 'toolbar-menu-control' },
React.createElement(ej2_react_navigations_1.ToolbarComponent, { id: "toolbar", ref: function (scope) { _this.tbObj = scope; } },
React.createElement(ej2_react_navigations_1.ItemsDirective, null,
React.createElement(ej2_react_navigations_1.ItemDirective, { template: this.menuTemplate.bind(this) }),
React.createElement(ej2_react_navigations_1.ItemDirective, { template: this.searchTemplate, align: 'Right' }),
React.createElement(ej2_react_navigations_1.ItemDirective, { template: this.ddbTemplate.bind(this), align: 'Right' }),
React.createElement(ej2_react_navigations_1.ItemDirective, { prefixIcon: 'em-icons e-shopping-cart', align: 'Right' }))))),
React.createElement("div", { id: "action-description" },
React.createElement("p", null,
"This sample demonstrates the real use case of ",
React.createElement("code", null, "menu"),
" component in web application.")),
React.createElement("div", { id: "description" },
React.createElement("p", null,
"Menu utilizes the ",
React.createElement("code", null, "items"),
" property to represent the menu bar in web application. In this demo, the menu component is integrated with toolbar along with customized search input box, dropdownbutton component and added shopping cart item using toolbar default option."),
React.createElement("p", null,
"More information about menu can be found in this",
React.createElement("a", { target: "_blank", href: "http://ej2.syncfusion.com/react/documentation/menu/getting-started.html" }, "documentation"),
" section."))));
};
return ToolbarIntegration;
}(sample_base_1.SampleBase));
exports.ToolbarIntegration = ToolbarIntegration;