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
|
jQuery(function($) {
"use strict";
// cache dialogs
var DIALOGS = DATA.site_dialogs;
$.each(DIALOGS.paths, function(dialog_id, save_path) {
var p = '#site-' + dialog_id + '-';
$(p + 'dialog').on('show.bs.modal', function() {
var me = $(this);
// show spinner
me.find('.modal-body').addClass('hidden');
me.find('.modal-body.loading').removeClass('hidden');
}).on('guff.loaded', function(ev) {
// populate text fields
$.each(DIALOGS.fields.text, function(_, id) {
$(p + id).val(ev.site_data[id]);
});
// populate textareas
$.each(DIALOGS.fields.list, function(_, id) {
$(p + id).val(ev.site_data[id].join("\n"));
});
// hide spinner, show body
$(this).find('.modal-body').toggleClass('hidden');
}).on('shown.bs.modal', function() {
// show content tab
$(p + 'tab-content').click();
// focus name field
$(p + 'name').focus();
});
$(p + 'dialog input[type="text"]').keydown(function(ev) {
if (ev.which == 13) {
setTimeout(function() {
$(p + 'confirm').click();
}, 10);
// stop event
return false;
}
});
$(p + 'name').keydown(function(ev) {
var me = $(this);
setTimeout(function() {
$(p + 'slug').val(slugify(me.val()));
}, 10);
});
$(p + 'confirm').click(function() {
var me = $(this);
if (me.hasClass('disabled'))
return false;
// toggle loading
me.toggleClass('disabled').find('.loading').toggleClass('hidden');
// build args
var args = DIALOGS.fields.text.reduce(function(r, id) {
r[id] = $(p + id).val();
return r;
}, DIALOGS.fields.list.reduce(function(r, id) {
r[id] = listify(p + id);
return r;
}, {
site_id: $(p + 'dialog').data('site_id'),
// hard-code this for now
is_full_feed: 't',
}));
// send request
send(save_path, args).always(function() {
// toggle loading
me.toggleClass('disabled').find('.loading').toggleClass('hidden');
}).fail(function(r) {
gripe(r, dialog_id + ' site');
}).done(function(r) {
$('#sites-reload').click();
$(p + 'dialog').modal('hide');
});
// stop event
return false;
});
});
});
|