forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridster-tests.ts
79 lines (65 loc) · 2.01 KB
/
gridster-tests.ts
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
/// <reference path="gridster.d.ts" />
interface SerializeData {
x?: number;
y?: number;
}
var options: GridsterOptions = {
min_cols: 5,
autogenerate_sytesheet: true,
serialize_params: ($w: JQuery, wgd: GridsterCoords) => {
return {
x: wgd.row,
y: wgd.col
};
},
widget_base_dimensions: [100, 100]
};
var gridster: Gridster = $('.gridster ul').gridster(options).data('gridster');
gridster.add_widget('<li class="new">The HTML of the widget...</li>', 2, 1);
gridster.remove_widget($('gridster li').eq(3).get(0));
var json = gridster.serialize<SerializeData>();
var coords: GridsterCoords = gridster.get_highest_occupied_cell();
var position = coords.col + coords.row;
options.widget_base_dimensions = [100, 200];
gridster.resize_widget_dimensions(options);
gridster.set_widget_min_size(0, [1, 2]);
function noOptions() {
var grid: Gridster = $('.gridster ul').gridster().data('gridster')
}
function widgetSelectorHTMLElements() {
var opts: GridsterOptions = {
widget_selector: $('.gridster ul li').get()
};
var grid: Gridster = $('.gridster ul').gridster(opts).data('gridster')
}
function widgetSelectorString() {
var opts: GridsterOptions = {
widget_selector: '.gridster ul li'
};
var grid: Gridster = $('.gridster ul').gridster(opts).data('gridster')
}
function withNamespace() {
var grid: Gridster = $('.gridster ul').gridster({
namespace: 'custom-gridster'
}).data('gridster')
}
function withStylesheet() {
var grid: Gridster = $('.gridster ul').gridster({
autogenerate_stylesheet: false
}).data('gridster')
}
function withResize() {
var grid: Gridster = $('.gridster ul').gridster({
resize: {
enabled: true,
axes: ['both'],
handle_append_to: 'li .handle-container',
handle_class: '.handle',
max_size: [5, 5],
min_size: [1, 1],
resize: (event: Event, ui: GridsterUi, $el: JQuery) => {},
start: (event: Event, ui: { helper: JQuery; }, $el: JQuery) => {},
stop: (event: Event, ui: { helper: JQuery; }, $el: JQuery) => {},
}
}).data('gridster')
}