2 * Filebrowser - Friendica Communications Server
\r
4 * Copyright (c) 2010-2015 the Friendica Project
\r
6 * This program is free software: you can redistribute it and/or modify
\r
7 * it under the terms of the GNU Affero General Public License as published by
\r
8 * the Free Software Foundation, either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * This code handle user interaction for image/file upload/browser dialog.
\r
12 * Is loaded from filebrowser_plain.tpl
\r
14 * To load filebrowser in colorbox, call
\r
16 * Dialog.doImageBrowser(eventname, id);
\r
20 * Dialog.doFileBrowser(eventname, id);
\r
24 * eventname: event name to catch return value
\r
25 * id: id returned to event handler
\r
27 * When user select an item, an event in fired in parent page, on body element
\r
28 * The event is named
\r
30 * fbrowser.<type>.[<eventname>]
\r
32 * <type> will be one of "image" or "file", and the event handler will
\r
33 * get the following params:
\r
35 * filemane: filename of item choosed by user
\r
36 * embed: bbcode to embed element into posts
\r
37 * id: id from caller code
\r
41 * // open dialog for select an image for a textarea with id "myeditor"
\r
42 * var id="myeditor";
\r
43 * Dialog.doImageBrowser("example", id);
\r
45 * // setup event handler to get user selection
\r
46 * $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) {
\r
48 * $.colorbox.close();
\r
49 * // replace textxarea text with bbcode
\r
50 * $(id).value = bbcode;
\r
60 init: function(nickname, type) {
\r
61 FileBrowser.nickname = nickname;
\r
62 FileBrowser.type = type;
\r
63 FileBrowser.event = "fbrowser."+type;
\r
64 if (location['hash']!=="") {
\r
65 var h = location['hash'].replace("#","");
\r
66 FileBrowser.event = FileBrowser.event + "." + h.split("-")[0];
\r
67 FileBrowser.id = h.split("-")[1];
\r
70 console.log("FileBrowser:", nickname, type,FileBrowser.event, FileBrowser.id );
\r
72 $(".error a.close").on("click", function(e) {
\r
74 $(".error").addClass("hidden");
\r
77 $(".folders a, .path a").on("click", function(e){
\r
79 var url = baseurl + "/fbrowser/" + FileBrowser.type + "/" + this.dataset.folder + "?mode=minimal" + location['hash'];
\r
80 location.href = url;
\r
83 $(".photo-album-photo-link").on('click', function(e){
\r
87 if (FileBrowser.type == "image") {
\r
88 embed = "[url="+this.dataset.link+"][img]"+this.dataset.img+"[/img][/url]";
\r
90 if (FileBrowser.type=="file") {
\r
91 // attachment links are "baseurl/attach/id"; we need id
\r
92 embed = "[attachment]"+this.dataset.link.split("/").pop()+"[/attachment]";
\r
94 console.log(FileBrowser.event, this.dataset.filename, embed, FileBrowser.id);
\r
95 parent.$("body").trigger(FileBrowser.event, [
\r
96 this.dataset.filename,
\r
103 if ($("#upload-image").length)
\r
104 var image_uploader = new window.AjaxUpload(
\r
106 { action: 'wall_upload/'+FileBrowser.nickname+'?response=json',
\r
108 responseType: 'json',
\r
109 onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); },
\r
110 onComplete: function(file,response) {
\r
111 if (response['error']!= undefined) {
\r
112 $(".error span").html(response['error']);
\r
113 $(".error").removeClass('hidden');
\r
114 $('#profile-rotator').hide();
\r
117 location = baseurl + "/fbrowser/image/?mode=minimal"+location['hash'];
\r
118 location.reload(true);
\r
123 if ($("#upload-file").length)
\r
124 var file_uploader = new window.AjaxUpload(
\r
126 { action: 'wall_attach/'+FileBrowser.nickname+'?response=json',
\r
128 onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); },
\r
129 onComplete: function(file,response) {
\r
130 if (response['error']!= undefined) {
\r
131 $(".error span").html(response['error']);
\r
132 $(".error").removeClass('hidden');
\r
133 $('#profile-rotator').hide();
\r
136 location = baseurl + "/fbrowser/file/?mode=minimal"+location['hash'];
\r
137 location.reload(true);
\r