pattern-view.js
4.33 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
var main_field = 'name',
initialColModel = [
{name:'name', index:'name', width:150},
{name:'type', index:'type', width:70},
{name:'part_of_speech', index:'part_of_speech', width:200}
],
initialColNames = ['Id', 'Typ', 'Cz. mowy'],
initial_sort_rules = [{field: main_field, order: 'asc'}],
grid_caption = "Wzory",
edit_form_id = 'pattern-edit-form',
edit_form_cancel_id = 'pattern-edit-cancel',
edit_form_submit_id = 'pattern-edit-submit',
deleted,
qualifier_options = { // copypasta z leksemów...
noneSelectedText: 'Wybierz kwalifikatory',
selectedText: '# kwalifikatorów',
selectedList: 4,
header: false,
create: function() {
var select = $(this);
var selected = select.val();
if (selected) {
$.each(selected, function(i, value) {
toggle_excluded(select, value, false);
});
}
},
click: function(event, ui) {
toggle_excluded(this, ui.value, !ui.checked);
}
},
reverse_exclusion_classes = {};
for (ec in exclusion_classes) {
$.each(exclusion_classes[ec], function(i, q_id) {
reverse_exclusion_classes[q_id] = ec;
});
}
// duuuużo copypasty :(
function toggle_excluded(select, value, enable) {
var ec = reverse_exclusion_classes[Number(value)],
values = exclusion_classes[ec];
if (values)
$.each(values, function(i, v) {
if (v != Number(value))
multiselect_toggle(select, v, enable);
});
};
function init_form_widgets() {
$('span.remove').live('click', function() {
li = $(this).closest('li');
name = li.find('input')[0].id;
if (name.split('-')[1] != 'add')
deleted.push(name.split('-')[1]);
li.remove();
show_changed();
});
$('.add-ending').live('click', function() {
var id = $('input[name=id]', $(this).closest('form')).value();
var new_row = $(get_new_row_html());
$(this).closest('tr').find('.ending-group').append(new_row);
$('#ending-list .qualifiers').last().multiselect(qualifier_options);
show_changed();
});
}
function load_content(id) {
$('#edit').load(ajax_edit_form, 'id='+id, edit_form_init);
grid.jqGrid('setGridParam', {'lastSelectedId' : id});
}
function edit_form_init() {
$('button', '#edit').button();
$('#ending-list.editable .ending-group').sortable().sortable({
change: function(event, ui) {
show_changed();
}
});
//$('#ending-list').disableSelection();
$('#ending-list .qualifiers').multiselect(qualifier_options);
deleted = [];
hide_changed();
if (ctrl)
ctrl.remove();
}
function edit_form_submit() {
this_form = $(this);
form_data = this_form.serializeArray();
form_data.push({name: 'deleted', value: deleted});
deleted = [];
var ending_list = [];
var rows = $('#ending-list tr');
$.each(rows, function(i, row){
var label = $(row).find('td:eq(0) strong').html();
var endings = [];
$(row).find('td:eq(1) input').map(function(i, input) {
var id = $(input).attr('id').split('-')[1], q_id;
if (id == 'add')
q_id = '#id_add-' + $(input).attr('id').split('-')[2] + '-qualifiers';
else
q_id = '#id_end' + id + '-qualifiers';
endings.push({
id: id,
string: $(input).val(),
qualifiers: $(q_id).val() || []
});
});
ending_list.push({base_form_label: label, endings: endings});
});
form_data.push({name: 'ending_list', value: ending_list})
ctrl = getBusyOverlay(
'viewport',
{color: 'black', opacity: 0.5},
{size: 100});
$.ajaxJSON({
method: 'post',
url: ajax_update_pattern,
data: {
form_data: form_data
},
description: "Zapisanie zmian",
callback: function() {
hide_changed();
grid.jqGrid('setGridParam', {'setOnComplete' : true});
grid.trigger("reloadGrid");
},
error_callback: function(xhr, status, error) {
error_alert(status + ': ' + error);
if (ctrl)
ctrl.remove();
},
bad_data_callback: function(result) {
if (ctrl)
ctrl.remove();
return true;
}
});
return false;
}
var new_row_counter = 1; // potrzebne tylko dla niepowtarzalności idów
function get_new_row_html() {
var new_row_html = $.ajax({
type: 'get',
url: ajax_new_ending_row,
data: {},
async: false // w zasadzie się tak nie powinno robić
}).responseText;
var row_html = new_row_html.replace(/NUM/g, new_row_counter);
new_row_counter++;
return row_html;
}
function add_buttons(f) {
}