2016-03-28 10:29:05 -04:00
|
|
|
/**
|
|
|
|
* Filebrowser - Friendica Communications Server
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010-2015 the Friendica Project
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This code handle user interaction for image/file upload/browser dialog.
|
|
|
|
* Is loaded from filebrowser_plain.tpl
|
|
|
|
*
|
|
|
|
* To load filebrowser in colorbox, call
|
|
|
|
*
|
|
|
|
* Dialog.doImageBrowser(eventname, id);
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* Dialog.doFileBrowser(eventname, id);
|
|
|
|
*
|
|
|
|
* where:
|
|
|
|
*
|
|
|
|
* eventname: event name to catch return value
|
|
|
|
* id: id returned to event handler
|
|
|
|
*
|
|
|
|
* When user select an item, an event in fired in parent page, on body element
|
|
|
|
* The event is named
|
|
|
|
*
|
|
|
|
* fbrowser.<type>.[<eventname>]
|
|
|
|
*
|
|
|
|
* <type> will be one of "image" or "file", and the event handler will
|
|
|
|
* get the following params:
|
|
|
|
*
|
|
|
|
* filemane: filename of item choosed by user
|
|
|
|
* embed: bbcode to embed element into posts
|
|
|
|
* id: id from caller code
|
|
|
|
*
|
|
|
|
* example:
|
|
|
|
*
|
|
|
|
* // open dialog for select an image for a textarea with id "myeditor"
|
|
|
|
* var id="myeditor";
|
|
|
|
* Dialog.doImageBrowser("example", id);
|
|
|
|
*
|
|
|
|
* // setup event handler to get user selection
|
|
|
|
* $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) {
|
|
|
|
* // close colorbox
|
|
|
|
* $.colorbox.close();
|
|
|
|
* // replace textxarea text with bbcode
|
|
|
|
* $(id).value = bbcode;
|
|
|
|
* });
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IMPORTANT
|
|
|
|
*
|
|
|
|
* This is a modified version to work with
|
|
|
|
* the frio theme.and bootstrap modals
|
|
|
|
*
|
|
|
|
* The origninal file is under:
|
|
|
|
* js/filebrowser.js
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
var FileBrowser = {
|
|
|
|
nickname : "",
|
|
|
|
type : "",
|
|
|
|
event: "",
|
|
|
|
id : null,
|
|
|
|
|
|
|
|
init: function(nickname, type, hash) {
|
|
|
|
FileBrowser.nickname = nickname;
|
|
|
|
FileBrowser.type = type;
|
|
|
|
FileBrowser.event = "fbrowser."+type;
|
|
|
|
|
|
|
|
if (hash!=="") {
|
|
|
|
var h = hash.replace("#","");
|
2016-05-09 15:08:11 -04:00
|
|
|
var destination = h.split("-")[0];
|
2016-03-28 10:29:05 -04:00
|
|
|
FileBrowser.id = h.split("-")[1];
|
2016-05-09 15:08:11 -04:00
|
|
|
FileBrowser.event = FileBrowser.event + "." + destination;
|
|
|
|
if (destination == "comment") {
|
|
|
|
// get the comment textimput field
|
|
|
|
var commentElm = document.getElementById("comment-edit-text-" + FileBrowser.id);
|
|
|
|
}
|
2016-03-28 10:29:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
console.log("FileBrowser:", nickname, type,FileBrowser.event, FileBrowser.id );
|
|
|
|
|
|
|
|
$(".error a.close").on("click", function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
$(".error").addClass("hidden");
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".folders a, .path a").on("click", function(e){
|
|
|
|
e.preventDefault();
|
2016-05-15 07:41:37 -04:00
|
|
|
var url = baseurl + "/fbrowser/" + FileBrowser.type + "/" + this.dataset.folder + "?mode=none";
|
2016-03-28 10:29:05 -04:00
|
|
|
|
2016-05-09 15:08:11 -04:00
|
|
|
// load new content to fbrowser window
|
|
|
|
$(".fbrowser").load(url,function(){
|
|
|
|
$(function() {FileBrowser.init(nickname, type, hash);});
|
2016-03-28 10:29:05 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-05-09 15:08:11 -04:00
|
|
|
//embed on click
|
2016-03-28 10:29:05 -04:00
|
|
|
$(".photo-album-photo-link").on('click', function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
var embed = "";
|
|
|
|
if (FileBrowser.type == "image") {
|
|
|
|
embed = "[url="+this.dataset.link+"][img]"+this.dataset.img+"[/img][/url]";
|
|
|
|
}
|
|
|
|
if (FileBrowser.type=="file") {
|
|
|
|
// attachment links are "baseurl/attach/id"; we need id
|
|
|
|
embed = "[attachment]"+this.dataset.link.split("/").pop()+"[/attachment]";
|
|
|
|
}
|
2016-05-09 15:08:11 -04:00
|
|
|
|
|
|
|
// Delete prefilled Text of the comment input
|
|
|
|
// Note: not the best solution but function commentOpenUI don't
|
|
|
|
// work as expected (we need a way to wait until commentOpenUI would be finished).
|
|
|
|
// As for now we insert pieces of this function here
|
|
|
|
if ((commentElm !== null) && (typeof commentElm !== "undefined")) {
|
|
|
|
if (commentElm.value == aStr.comment){
|
|
|
|
commentElm.value = "";
|
|
|
|
$("#comment-edit-text-" + FileBrowser.id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty");
|
|
|
|
$("#comment-edit-submit-wrapper-" + FileBrowser.id).show();
|
|
|
|
$("#comment-edit-text-" + FileBrowser.id).attr('tabindex','9');
|
|
|
|
$("#comment-edit-submit-" + FileBrowser.id).attr('tabindex','10');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-03-28 10:29:05 -04:00
|
|
|
console.log(FileBrowser.event, this.dataset.filename, embed, FileBrowser.id);
|
|
|
|
parent.$("body").trigger(FileBrowser.event, [
|
|
|
|
this.dataset.filename,
|
|
|
|
embed,
|
|
|
|
FileBrowser.id,
|
2016-08-23 10:48:13 -04:00
|
|
|
this.dataset.img,
|
2016-03-28 10:29:05 -04:00
|
|
|
]);
|
|
|
|
|
|
|
|
// close model
|
|
|
|
$('#modal').modal('hide');
|
2016-08-23 10:48:13 -04:00
|
|
|
// update autosize for this textarea
|
|
|
|
autosize.update($(".text-autosize"));
|
2016-05-09 15:08:11 -04:00
|
|
|
// if (id!=="") {
|
|
|
|
// commentExpand(FileBrowser.id);
|
|
|
|
// //$("#comment-edit-text-558").empty();
|
|
|
|
// };
|
2016-03-28 10:29:05 -04:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
if ($("#upload-image").length)
|
|
|
|
var image_uploader = new window.AjaxUpload(
|
|
|
|
'upload-image',
|
|
|
|
{ action: 'wall_upload/'+FileBrowser.nickname+'?response=json',
|
|
|
|
name: 'userfile',
|
|
|
|
responseType: 'json',
|
|
|
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); },
|
|
|
|
onComplete: function(file,response) {
|
|
|
|
if (response['error']!= undefined) {
|
|
|
|
$(".error span").html(response['error']);
|
|
|
|
$(".error").removeClass('hidden');
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
return;
|
|
|
|
}
|
2016-05-15 07:41:37 -04:00
|
|
|
// location = baseurl + "/fbrowser/image/?mode=none"+location['hash'];
|
2016-05-09 15:08:11 -04:00
|
|
|
// location.reload(true);
|
|
|
|
|
2016-05-15 07:41:37 -04:00
|
|
|
var url = baseurl + "/fbrowser/" + FileBrowser.type + "?mode=none"
|
2016-05-09 15:08:11 -04:00
|
|
|
// load new content to fbrowser window
|
|
|
|
$(".fbrowser").load(url,function(){
|
|
|
|
$(function() {FileBrowser.init(nickname, type, hash);});
|
|
|
|
});
|
2016-03-28 10:29:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($("#upload-file").length)
|
|
|
|
var file_uploader = new window.AjaxUpload(
|
|
|
|
'upload-file',
|
|
|
|
{ action: 'wall_attach/'+FileBrowser.nickname+'?response=json',
|
|
|
|
name: 'userfile',
|
|
|
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); },
|
|
|
|
onComplete: function(file,response) {
|
|
|
|
if (response['error']!= undefined) {
|
|
|
|
$(".error span").html(response['error']);
|
|
|
|
$(".error").removeClass('hidden');
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
return;
|
|
|
|
}
|
2016-05-15 07:41:37 -04:00
|
|
|
// location = baseurl + "/fbrowser/file/?mode=none"+location['hash'];
|
2016-05-09 15:08:11 -04:00
|
|
|
// location.reload(true);
|
|
|
|
|
2016-05-15 07:41:37 -04:00
|
|
|
var url = baseurl + "/fbrowser/" + FileBrowser.type + "?mode=none"
|
2016-05-09 15:08:11 -04:00
|
|
|
// load new content to fbrowser window
|
|
|
|
$(".fbrowser").load(url,function(){
|
|
|
|
$(function() {FileBrowser.init(nickname, type, hash);});
|
|
|
|
});
|
2016-03-28 10:29:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2016-05-09 15:08:11 -04:00
|
|
|
},
|
2016-03-28 10:29:05 -04:00
|
|
|
};
|
|
|
|
|