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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
/**
* JavaScript functionalitiy for the media management popup
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
var media_manager = {
keepopen: false,
hide: false,
/**
* Attach event handlers to all "folders" below the given element
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
treeattach: function(obj){
if(!obj) return;
var items = obj.getElementsByTagName('li');
for(var i=0; i<items.length; i++){
var elem = items[i];
// attach action to make the +/- clickable
var clicky = elem.getElementsByTagName('img')[0];
clicky.style.cursor = 'pointer';
addEvent(clicky,'click',function(event){ return media_manager.toggle(event,this); });
// attach action load folder list via AJAX
var link = elem.getElementsByTagName('a')[0];
link.style.cursor = 'pointer';
addEvent(link,'click',function(event){ return media_manager.list(event,this); });
}
},
/**
* Attach the image selector action to all links below the given element
* also add the action to autofill the "upload as" field
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
selectorattach: function(obj){
if(!obj) return;
var items = getElementsByClass('select',obj,'a');
for(var i=0; i<items.length; i++){
var elem = items[i];
elem.style.cursor = 'pointer';
addEvent(elem,'click',function(event){ return media_manager.select(event,this); });
}
// hide syntax example
items = getElementsByClass('example',obj,'div');
for(var i=0; i<items.length; i++){
elem = items[i];
elem.style.display = 'none';
}
var file = $('upload__file');
if(!file) return;
addEvent(file,'change',media_manager.suggest);
},
/**
* Attach deletion confirmation dialog to the delete buttons.
*
* Michael Klier <chi@chimeric.de>
*/
confirmattach: function(obj){
if(!obj) return;
items = getElementsByClass('btn_media_delete',obj,'a');
for(var i=0; i<items.length; i++){
var elem = items[i];
addEvent(elem,'click',function(e){
if(e.target.tagName == 'IMG'){
var name = e.target.parentNode.title;
}else{
var name = e.target.title;
}
if(!confirm(LANG['del_confirm'] + "\n" + name)) {
e.preventDefault();
return false;
} else {
return true;
}
});
}
},
/**
* Creates checkboxes for additional options
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
attachoptions: function(obj){
if(!obj) return;
// keep open
if(opener){
var kobox = document.createElement('input');
kobox.type = 'checkbox';
kobox.id = 'media__keepopen';
if(DokuCookie.getValue('keepopen')){
kobox.checked = true;
kobox.defaultChecked = true; //IE wants this
media_manager.keepopen = true;
}
addEvent(kobox,'click',function(event){ return media_manager.togglekeepopen(event,this); });
var kolbl = document.createElement('label');
kolbl.htmlFor = 'media__keepopen';
kolbl.innerHTML = LANG['keepopen'];
var kobr = document.createElement('br');
obj.appendChild(kobox);
obj.appendChild(kolbl);
obj.appendChild(kobr);
}
// hide details
var hdbox = document.createElement('input');
hdbox.type = 'checkbox';
hdbox.id = 'media__hide';
if(DokuCookie.getValue('hide')){
hdbox.checked = true;
hdbox.defaultChecked = true; //IE wants this
media_manager.hide = true;
}
addEvent(hdbox,'click',function(event){ return media_manager.togglehide(event,this); });
var hdlbl = document.createElement('label');
hdlbl.htmlFor = 'media__hide';
hdlbl.innerHTML = LANG['hidedetails'];
var hdbr = document.createElement('br');
obj.appendChild(hdbox);
obj.appendChild(hdlbl);
obj.appendChild(hdbr);
media_manager.updatehide();
},
/**
* Opens the searchfield
*
* @author Tobias Sarnowski <sarnowski@cosmocode.de>
*/
showsearchfield: function(event,link){
// prepare an AJAX call to fetch the search
var ajax = new sack(DOKU_BASE + 'lib/exe/ajax.php');
ajax.AjaxFailedAlert = '';
ajax.encodeURIString = false;
if(ajax.failed) return true;
cleanMsgArea();
var content = $('media__content');
content.innerHTML = '<img src="'+DOKU_BASE+'lib/images/loading.gif" alt="..." class="load" />';
ajax.elementObj = content;
ajax.afterCompletion = function(){
media_manager.selectorattach(content);
media_manager.confirmattach(content);
media_manager.updatehide();
};
ajax.runAJAX(link.search.substr(1)+'&call=mediasearchlist');
return false;
},
/**
* Toggles the keep open state
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
togglekeepopen: function(event,cb){
if(cb.checked){
DokuCookie.setValue('keepopen',1);
media_manager.keepopen = true;
}else{
DokuCookie.setValue('keepopen','');
media_manager.keepopen = false;
}
},
/**
* Toggles the hide details state
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
togglehide: function(event,cb){
if(cb.checked){
DokuCookie.setValue('hide',1);
media_manager.hide = true;
}else{
DokuCookie.setValue('hide','');
media_manager.hide = false;
}
media_manager.updatehide();
},
/**
* Sets the visibility of the image details accordingly to the
* chosen hide state
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
updatehide: function(){
var obj = $('media__content');
if(!obj) return;
var details = getElementsByClass('detail',obj,'div');
for(var i=0; i<details.length; i++){
if(media_manager.hide){
details[i].style.display = 'none';
}else{
details[i].style.display = '';
}
}
},
/**
* Insert the clicked image into the opener's textarea
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
select: function(event,link){
var id = link.name.substr(2);
if(!opener){
// if we don't run in popup display example
var ex = $('ex_'+id.replace(/:/g,'_'));
if(ex.style.display == ''){
ex.style.display = 'none';
}else{
ex.style.display = '';
}
return false;
}
opener.insertTags('wiki__text','{{'+id+'|','}}','');
if(!media_manager.keepopen) window.close();
opener.focus();
return false;
},
/**
* list the content of a namespace using AJAX
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
list: function(event,link){
// prepare an AJAX call to fetch the subtree
var ajax = new sack(DOKU_BASE + 'lib/exe/ajax.php');
ajax.AjaxFailedAlert = '';
ajax.encodeURIString = false;
if(ajax.failed) return true;
cleanMsgArea();
var content = $('media__content');
content.innerHTML = '<img src="'+DOKU_BASE+'lib/images/loading.gif" alt="..." class="load" />';
ajax.elementObj = content;
ajax.afterCompletion = function(){
media_manager.selectorattach(content);
media_manager.confirmattach(content);
media_manager.updatehide();
media_manager.initFlashUpload();
};
ajax.runAJAX(link.search.substr(1)+'&call=medialist');
return false;
},
/**
* Open or close a subtree using AJAX
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
toggle: function(event,clicky){
var listitem = clicky.parentNode;
// if already open, close by removing the sublist
var sublists = listitem.getElementsByTagName('ul');
if(sublists.length){
listitem.removeChild(sublists[0]);
clicky.src = DOKU_BASE+'lib/images/plus.gif';
return false;
}
// get the enclosed link (is always the first one)
var link = listitem.getElementsByTagName('a')[0];
// prepare an AJAX call to fetch the subtree
var ajax = new sack(DOKU_BASE + 'lib/exe/ajax.php');
ajax.AjaxFailedAlert = '';
ajax.encodeURIString = false;
if(ajax.failed) return true;
//prepare the new ul
var ul = document.createElement('ul');
//fixme add classname here
listitem.appendChild(ul);
ajax.elementObj = ul;
ajax.afterCompletion = function(){ media_manager.treeattach(ul); };
ajax.runAJAX(link.search.substr(1)+'&call=medians');
clicky.src = DOKU_BASE+'lib/images/minus.gif';
return false;
},
/**
* Prefills the wikiname.
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
suggest: function(){
var file = $('upload__file');
var name = $('upload__name');
if(!file || !name) return;
var text = file.value;
text = text.substr(text.lastIndexOf('/')+1);
text = text.substr(text.lastIndexOf('\\')+1);
name.value = text;
},
initFlashUpload: function(){
if(!hasFlash(8)) return;
var oform = $('dw__upload');
var oflash = $('dw__flashupload');
if(!oform || !oflash) return;
var clicky = document.createElement('img');
clicky.src = DOKU_BASE+'lib/images/multiupload.png';
clicky.title = LANG['mu_btn'];
clicky.alt = LANG['mu_btn'];
clicky.style.cursor = 'pointer';
clicky.onclick = function(){
oform.style.display = 'none';
oflash.style.display = '';
};
oform.appendChild(clicky);
}
};
addInitEvent(function(){
media_manager.treeattach($('media__tree'));
media_manager.selectorattach($('media__content'));
media_manager.confirmattach($('media__content'));
media_manager.attachoptions($('media__opts'));
media_manager.initFlashUpload();
});
|