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.tsx
More file actions
160 lines (152 loc) · 5.82 KB
/
toolbar-integration.tsx
File metadata and controls
160 lines (152 loc) · 5.82 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
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { MenuComponent, MenuItemModel, ToolbarComponent, ItemsDirective, ItemDirective, MenuAnimationSettings } from '@syncfusion/ej2-react-navigations';
import { DropDownButtonComponent, ItemModel } from '@syncfusion/ej2-react-splitbuttons';
import { SampleBase } from '../common/sample-base';
import './toolbar-integration.css';
export class ToolbarIntegration extends SampleBase<{}, {}> {
public searchTemplate: string = '<div class="e-input-group"><input class="e-input" type="text" placeholder="Search" /><span class="em-icons e-search"></span></div>';
public tbObj: ToolbarComponent;
public items: ItemModel[] = [
{ text: 'My Profile' },
{ text: 'Orders' },
{ text: 'Rewards' },
{ text: 'Logout' }
];
private menuTemplate(): JSX.Element {
return (<MenuComponent id="menuele" items={this.menuItems} animationSettings={this.animation} />);
}
private ddbTemplate(): any {
return (<DropDownButtonComponent id="userDBtn" content='Andrew' created={this.onCreated.bind(this)} items={this.items}></DropDownButtonComponent>);
}
public onCreated(): void {
this.tbObj.refreshOverflow();
}
public animation: MenuAnimationSettings = { effect: 'None' };
//Menu items definition
public menuItems: MenuItemModel[] = [
{
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' }
]
}
]
}
];
render() {
return (
<div className='control-pane'>
<div id="menu-control" className='control-section'>
<div className='toolbar-menu-control'>
<ToolbarComponent id="toolbar" ref={(scope) => { this.tbObj = scope; }} >
<ItemsDirective>
<ItemDirective template={this.menuTemplate.bind(this)} />
<ItemDirective template={this.searchTemplate} align='Right' />
<ItemDirective template={this.ddbTemplate.bind(this)} align='Right' />
<ItemDirective prefixIcon='em-icons e-shopping-cart' align='Right' />
</ItemsDirective>
</ToolbarComponent>
</div>
</div>
<div id="action-description">
<p>This sample demonstrates the real use case of <code>menu</code> component in web application.</p>
</div>
<div id="description">
<p>
Menu utilizes the <code>items</code> 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.
</p>
<p>
More information about menu can be found in this
<a target="_blank" href="http://ej2.syncfusion.com/react/documentation/menu/getting-started.html">
documentation</a> section.
</p>
</div>
</div>
)
}
}