fix folder links in filebrowser dialog
This commit is contained in:
parent
b52158e7cf
commit
f5657e283c
|
@ -67,6 +67,13 @@ var FileBrowser = {
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("FileBrowser:", nickname, type,FileBrowser.event, FileBrowser.id );
|
console.log("FileBrowser:", nickname, type,FileBrowser.event, FileBrowser.id );
|
||||||
|
|
||||||
|
$(".folders a, .path a").on("click", function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
var url = baseurl + "/fbrowser/" + FileBrowser.type + "/" + this.dataset.folder + "?mode=minimal" + location['hash'];
|
||||||
|
location.href = url;
|
||||||
|
});
|
||||||
|
|
||||||
$(".photo-album-photo-link").on('click', function(e){
|
$(".photo-album-photo-link").on('click', function(e){
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ function fbrowser_content($a){
|
||||||
|
|
||||||
switch($a->argv[1]){
|
switch($a->argv[1]){
|
||||||
case "image":
|
case "image":
|
||||||
$path = array( array($a->get_baseurl()."/fbrowser/image/".$mode, t("Photos")));
|
$path = array( array("", t("Photos")));
|
||||||
$albums = false;
|
$albums = false;
|
||||||
$sql_extra = "";
|
$sql_extra = "";
|
||||||
$sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
|
$sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
|
||||||
|
@ -39,7 +39,7 @@ function fbrowser_content($a){
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
);
|
);
|
||||||
// anon functions only from 5.3.0... meglio tardi che mai..
|
// anon functions only from 5.3.0... meglio tardi che mai..
|
||||||
$folder1 = function($el) use ($mode) {return array(bin2hex($el['album']).$mode,$el['album']);};
|
$folder1 = function($el) use ($mode) {return array(bin2hex($el['album']),$el['album']);};
|
||||||
$albums = array_map( $folder1 , $albums);
|
$albums = array_map( $folder1 , $albums);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -49,7 +49,7 @@ function fbrowser_content($a){
|
||||||
$album = hex2bin($a->argv[2]);
|
$album = hex2bin($a->argv[2]);
|
||||||
$sql_extra = sprintf("AND `album` = '%s' ",dbesc($album));
|
$sql_extra = sprintf("AND `album` = '%s' ",dbesc($album));
|
||||||
$sql_extra2 = "";
|
$sql_extra2 = "";
|
||||||
$path[]=array($a->get_baseurl()."/fbrowser/image/".$a->argv[2]."/".$mode, $album);
|
$path[]=array($a->argv[2], $album);
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`
|
$r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`
|
||||||
|
@ -119,7 +119,7 @@ function fbrowser_content($a){
|
||||||
$o = replace_macros($tpl, array(
|
$o = replace_macros($tpl, array(
|
||||||
'$type' => 'file',
|
'$type' => 'file',
|
||||||
'$baseurl' => $a->get_baseurl(),
|
'$baseurl' => $a->get_baseurl(),
|
||||||
'$path' => array( array($a->get_baseurl()."/fbrowser/file/", t("Files")) ),
|
'$path' => array( array( "", t("Files")) ),
|
||||||
'$folders' => false,
|
'$folders' => false,
|
||||||
'$files' =>$files,
|
'$files' =>$files,
|
||||||
'$cancel' => t('Cancel'),
|
'$cancel' => t('Cancel'),
|
||||||
|
|
|
@ -13,13 +13,13 @@
|
||||||
<div class="fbrowser {{$type}}">
|
<div class="fbrowser {{$type}}">
|
||||||
|
|
||||||
<div class="path">
|
<div class="path">
|
||||||
{{foreach $path as $p}}<a href="{{$p.0}}">{{$p.1}}</a>{{/foreach}}
|
{{foreach $path as $p}}<a href="#" data-folder="{{$p.0}}">{{$p.1}}</a>{{/foreach}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{if $folders }}
|
{{if $folders }}
|
||||||
<div class="folders">
|
<div class="folders">
|
||||||
<ul>
|
<ul>
|
||||||
{{foreach $folders as $f}}<li><a href="{{$baseurl}}/fbrowser/{{$type}}/{{$f.0}}">{{$f.1}}</a></li>{{/foreach}}
|
{{foreach $folders as $f}}<li><a href="#" data-folder="{{$f.0}}">{{$f.1}}</a></li>{{/foreach}}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -142,21 +142,21 @@ function enableOnUser(){
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/* callback */
|
/* callback */
|
||||||
$('body').on('fbrowser.image', function(e, filename, embedcode, id) {
|
$('body').on('fbrowser.image.main', function(e, filename, embedcode, id) {
|
||||||
$.colorbox.close();
|
$.colorbox.close();
|
||||||
addeditortext(embedcode);
|
addeditortext(embedcode);
|
||||||
});
|
});
|
||||||
$('body').on('fbrowser.file', function(e, filename, embedcode, id) {
|
$('body').on('fbrowser.file.main', function(e, filename, embedcode, id) {
|
||||||
$.colorbox.close();
|
$.colorbox.close();
|
||||||
addeditortext(embedcode);
|
addeditortext(embedcode);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#wall-image-upload').on('click', function(){
|
$('#wall-image-upload').on('click', function(){
|
||||||
$.colorbox({href: baseurl + "/fbrowser/image/?mode=minimal", iframe:true,innerWidth:'500px',innerHeight:'400px'})
|
$.colorbox({href: baseurl + "/fbrowser/image/?mode=minimal#main", iframe:true,innerWidth:'500px',innerHeight:'400px'})
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#wall-file-upload').on('click', function(){
|
$('#wall-file-upload').on('click', function(){
|
||||||
$.colorbox({href: baseurl + "/fbrowser/file/?mode=minimal", iframe:true,innerWidth:'500px',innerHeight:'400px'})
|
$.colorbox({href: baseurl + "/fbrowser/file/?mode=minimal#main", iframe:true,innerWidth:'500px',innerHeight:'400px'})
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue