article.js
5.44 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
164
165
jQuery(function($) {
$(".lead-button").live('click', function(){
article_id = this.getAttribute("article_id");
$(this).toggleClass('icon-add').toggleClass('icon-remove');
$(article_id).slideToggle();
return false;
})
$("#body-button").click(function(){
$(this).toggleClass('icon-add').toggleClass('icon-remove');
$('#article-body-field').slideToggle();
return false;
})
$("#textile-quickref-show").click(function(){
$('#textile-quickref-hide').show();
$(this).hide();
$('#textile-quickref').slideToggle();
return false;
})
$("#textile-quickref-hide").click(function(){
$('#textile-quickref-show').show();
$(this).hide();
$('#textile-quickref').slideToggle();
return false;
})
var button_add = $('.text-editor-sidebar meta[name=button.add]').attr('value');
var button_zoom = $('.text-editor-sidebar meta[name=button.zoom]').attr('value');
var button_close = $('.text-editor-sidebar meta[name=button.close]').attr('value');
function add_to_text_button(extra_class) {
if (!extra_class) { extra_class = '' }
return '<a class="button icon-add add-to-text ' + extra_class + '" href="#"><span>' + button_add + '</span></a>';
}
function close_button(extra_class) {
if (!extra_class) { extra_class = '' }
return '<a class="button icon-cancel close ' + extra_class + '" href="#"><span>' + button_close + '</span></a>';
}
function zoom_button() {
return '<a class="button icon-zoom zoom" href="#" title="' + button_zoom + '"><span>' + button_zoom + '</span></a>';
}
function list_items(items, selector, auto_add) {
var html_for_items = '';
var images = [];
var files = [];
var errors = [];
$.each(items, function(i, item) {
if (item.error) {
errors.push(item);
return;
}
if (item.content_type && item.content_type.match(/^image/)) {
images.push(item);
} else {
files.push(item);
}
});
$.each(images, function(i, item) {
html_for_items += '<div class="item image" data-item="span"><span><img src="' + item.url + '"/></span><div class="controls image-controls">' + add_to_text_button() + zoom_button() + '</div></div>';
});
$.each(files, function(i, item) {
html_for_items += '<div class="item file ' + item.icon + '" data-item="div"><div><a href="' + item.url + '">' + item.title + '</a></div> <div class="controls file-controls">' + add_to_text_button() + '</div></div>';
});
$.each(errors, function(i, item) {
html_for_items += '<div class="media-upload-error">' + item.error + '</div>';
});
$(selector).html(html_for_items);
if (auto_add) {
$(selector).find('a.add-to-text').click();
}
}
$('a.add-to-text').live('click', function() {
var $item = $(this).closest('.item');
var html_selector = $item.attr('data-item');
insert_item_in_text($item.find(html_selector));
$.colorbox.close();
return false;
});
$('a.zoom').live('click', function() {
var $item = $(this).closest('.item');
var html_selector = $item.attr('data-item');
var img = $item.find(html_selector).find('img').attr('src');
$.colorbox({ html: '<div class="item" data-item="div"><div><img src="' + img + '" style="max-width: 580px; max-height: 580px"/></div>' + '<div class="button-bar" style="padding-top: 5px;">' + add_to_text_button('with-text') + ' ' + close_button('with-text') + '</div></div>', maxWidth: '640px', maxHeight: '640px', scrolling: false });
return false;
});
$('a.close').live('click', function() {
$.colorbox.close();
return false;
})
// FIXME the user may also want to add the item to the abstract textarea!
var text_field = 'article_body';
function insert_item_in_text($wrapper) {
if (window.tinymce) {
var html = $wrapper.html();
var editor = tinymce.get(text_field);
editor.setContent(editor.getContent() + html);
} else {
// simple text editor
var $text_element = $('#' + text_field);
var text = $text_element.val();
var $item = $wrapper.children().first();
if ($item.attr('src')) {
$text_element.val(text + '!' + $item.attr('src') + "!\n");
}
if ($item.attr('href')) {
$text_element.val(text + $item.attr('href'));
}
}
}
$('#media-search-button').click(function() {
var query = '*' + $('#media-search-query').val() + '*';
var $button = $(this);
$('#media-search-box .header').toggleClass('icon-loading');
$.get($(this).parent().attr('action'), { 'q': query }, function(data) {
list_items(data, '#media-search-results .items', false);
if (data.length && data.length > 0) {
$('#media-search-results').slideDown();
}
$('#media-search-box .header').toggleClass('icon-loading');
});
return false;
});
$('#media-upload-form form').ajaxForm({
dataType: 'json',
resetForm: true,
beforeSubmit:
function() {
$('#media-upload-form').slideUp();
$('#media-upload-box .header').toggleClass('icon-loading');
},
success:
function(data) {
list_items(data, '#media-upload-results .items', true);
if (data.length && data.length > 0) {
$('#media-upload-results').slideDown();
}
$('#media-upload-box .header').toggleClass('icon-loading');
}
});
$('#media-upload-more-files').click(function() {
$('#media-upload-results').hide();
$('#media-upload-form').show();
});
});