2016-03-28 16:29:05 +02:00
|
|
|
|
2016-11-18 23:48:31 +01:00
|
|
|
<script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2016-11-18 23:48:31 +01:00
|
|
|
<script type="text/javascript">
|
2017-01-27 04:54:32 +01:00
|
|
|
var editor = false;
|
2016-11-18 23:48:31 +01:00
|
|
|
var textlen = 0;
|
|
|
|
|
2017-01-27 04:54:32 +01:00
|
|
|
function initEditor(callback) {
|
|
|
|
if (editor == false) {
|
2016-11-18 23:48:31 +01:00
|
|
|
$("#profile-jot-text-loading").show();
|
2017-01-27 04:54:32 +01:00
|
|
|
$("#profile-jot-text-loading").hide();
|
|
|
|
//$("#profile-jot-text").addClass("profile-jot-text-full").removeClass("profile-jot-text-empty");
|
|
|
|
$("#jot-category").show();
|
|
|
|
$("#jot-category").addClass("jot-category-ex");
|
|
|
|
$("#jot-profile-jot-wrapper").show();
|
|
|
|
$("#profile-jot-text").editor_autocomplete(baseurl+"/acl");
|
|
|
|
$("#profile-jot-text").bbco_autocomplete('bbcode');
|
2016-11-18 23:48:31 +01:00
|
|
|
$("a#jot-perms-icon").colorbox({
|
|
|
|
'inline' : true,
|
|
|
|
'transition' : 'elastic'
|
2017-01-22 17:01:10 +01:00
|
|
|
});
|
2017-01-27 04:54:32 +01:00
|
|
|
$(".jothidden").show();
|
|
|
|
$("#profile-jot-text").keyup(function(){
|
|
|
|
var textlen = $(this).val().length;
|
|
|
|
$('#character-counter').text(textlen);
|
|
|
|
});
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2017-01-27 04:54:32 +01:00
|
|
|
editor = true;
|
|
|
|
}
|
|
|
|
if (typeof callback != "undefined") {
|
|
|
|
callback();
|
2016-11-18 23:48:31 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2016-11-18 23:48:31 +01:00
|
|
|
function enableOnUser(){
|
|
|
|
initEditor();
|
|
|
|
}
|
2016-03-28 16:29:05 +02:00
|
|
|
</script>
|
2016-11-18 23:48:31 +01:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
2016-03-28 16:29:05 +02:00
|
|
|
var ispublic = '{{$ispublic}}';
|
|
|
|
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
2017-01-27 04:54:32 +01:00
|
|
|
/* enable editor on focus and click */
|
2016-07-01 17:03:40 +02:00
|
|
|
$("#profile-jot-text").focus(enableOnUser);
|
|
|
|
$("#profile-jot-text").click(enableOnUser);
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2016-06-26 03:49:21 +02:00
|
|
|
// When clicking on a forum in acl we should remove the profile jot textarea
|
|
|
|
// default value before inserting the forum mention
|
|
|
|
$("body").on('click', '#jot-modal .acl-list-item.forum', function(){
|
|
|
|
jotTextOpenUI(document.getElementById("profile-jot-text"));
|
|
|
|
});
|
2016-03-28 16:29:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* show images / file browser window
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
/* callback */
|
|
|
|
$('body').on('fbrowser.image.main', function(e, filename, embedcode, id) {
|
2016-05-09 21:08:11 +02:00
|
|
|
///@todo this part isn't ideal and need to be done in a better way
|
|
|
|
jotTextOpenUI(document.getElementById("profile-jot-text"));
|
|
|
|
jotActive();
|
2016-03-28 16:29:05 +02:00
|
|
|
addeditortext(embedcode);
|
|
|
|
});
|
|
|
|
$('body').on('fbrowser.file.main', function(e, filename, embedcode, id) {
|
2016-05-09 21:08:11 +02:00
|
|
|
jotTextOpenUI(document.getElementById("profile-jot-text"));
|
|
|
|
jotActive();
|
2016-03-28 16:29:05 +02:00
|
|
|
addeditortext(embedcode);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#wall-image-upload').on('click', function(){
|
|
|
|
Dialog.doImageBrowser("main");
|
2016-05-09 21:08:11 +02:00
|
|
|
jotActive();
|
2016-03-28 16:29:05 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$('#wall-file-upload').on('click', function(){
|
|
|
|
Dialog.doFileBrowser("main");
|
2016-05-09 21:08:11 +02:00
|
|
|
jotActive();
|
2016-03-28 16:29:05 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function deleteCheckedItems() {
|
|
|
|
if(confirm('{{$delitems}}')) {
|
|
|
|
var checkedstr = '';
|
2016-05-11 16:04:11 +02:00
|
|
|
var ItemsToDelete = {};
|
2016-03-28 16:29:05 +02:00
|
|
|
|
|
|
|
$("#item-delete-selected").hide();
|
|
|
|
$('#item-delete-selected-rotator').show();
|
2016-05-11 16:04:11 +02:00
|
|
|
$('body').css('cursor', 'wait');
|
2016-03-28 16:29:05 +02:00
|
|
|
|
|
|
|
$('.item-select').each( function() {
|
|
|
|
if($(this).is(':checked')) {
|
|
|
|
if(checkedstr.length != 0) {
|
|
|
|
checkedstr = checkedstr + ',' + $(this).val();
|
2016-05-11 16:04:11 +02:00
|
|
|
var deleteItem = this.closest(".wall-item-container");
|
|
|
|
ItemsToDelete[deleteItem.id] = deleteItem;
|
2016-03-28 16:29:05 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
checkedstr = $(this).val();
|
|
|
|
}
|
2016-05-11 16:04:11 +02:00
|
|
|
|
|
|
|
// Get the corresponding item container
|
|
|
|
var deleteItem = this.closest(".wall-item-container");
|
|
|
|
ItemsToDelete[deleteItem.id] = deleteItem;
|
2016-03-28 16:29:05 +02:00
|
|
|
}
|
|
|
|
});
|
2016-05-11 16:04:11 +02:00
|
|
|
|
|
|
|
// Fade the the the container from the items we want to delete
|
|
|
|
for(var key in ItemsToDelete) {
|
|
|
|
$(ItemsToDelete[key]).fadeTo('fast', 0.33);
|
|
|
|
};
|
|
|
|
|
2016-03-28 16:29:05 +02:00
|
|
|
$.post('item', { dropitems: checkedstr }, function(data) {
|
2016-05-11 16:04:11 +02:00
|
|
|
}).done(function() {
|
|
|
|
// Loop through the ItemsToDelete Object and remove
|
|
|
|
// corresponding item div
|
|
|
|
for(var key in ItemsToDelete) {
|
|
|
|
$(ItemsToDelete[key]).remove();
|
|
|
|
}
|
|
|
|
$('body').css('cursor', 'auto');
|
|
|
|
$('#item-delete-selected-rotator').hide();
|
2016-03-28 16:29:05 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotGetLink() {
|
|
|
|
reply = prompt("{{$linkurl}}");
|
|
|
|
if(reply && reply.length) {
|
|
|
|
reply = bin2hex(reply);
|
|
|
|
$('#profile-rotator').show();
|
|
|
|
$.get('parse_url?binurl=' + reply, function(data) {
|
|
|
|
addeditortext(data);
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotVideoURL() {
|
|
|
|
reply = prompt("{{$vidurl}}");
|
|
|
|
if(reply && reply.length) {
|
|
|
|
addeditortext('[video]' + reply + '[/video]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotAudioURL() {
|
|
|
|
reply = prompt("{{$audurl}}");
|
|
|
|
if(reply && reply.length) {
|
|
|
|
addeditortext('[audio]' + reply + '[/audio]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function jotGetLocation() {
|
|
|
|
reply = prompt("{{$whereareu}}", $('#jot-location').val());
|
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#jot-location').val(reply);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotShare(id) {
|
|
|
|
$.get('share/' + id, function(data) {
|
2016-06-08 20:53:01 +02:00
|
|
|
// remove the former content of the text input
|
|
|
|
$("#profile-jot-text").val("");
|
2016-03-28 16:29:05 +02:00
|
|
|
initEditor(function(){
|
2016-06-08 20:53:01 +02:00
|
|
|
addeditortext(data);
|
2016-03-28 16:29:05 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
jotShow();
|
|
|
|
|
|
|
|
$("#jot-popup").show();
|
|
|
|
}
|
|
|
|
|
|
|
|
function linkdropper(event) {
|
|
|
|
var linkFound = event.dataTransfer.types.contains("text/uri-list");
|
|
|
|
if(linkFound)
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
function linkdrop(event) {
|
|
|
|
var reply = event.dataTransfer.getData("text/uri-list");
|
|
|
|
event.target.textContent = reply;
|
|
|
|
event.preventDefault();
|
|
|
|
if(reply && reply.length) {
|
|
|
|
reply = bin2hex(reply);
|
|
|
|
$('#profile-rotator').show();
|
|
|
|
$.get('parse_url?binurl=' + reply, function(data) {
|
|
|
|
if (!editor) $("#profile-jot-text").val("");
|
|
|
|
initEditor(function(){
|
|
|
|
addeditortext(data);
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function itemTag(id) {
|
|
|
|
reply = prompt("{{$term}}");
|
|
|
|
if(reply && reply.length) {
|
|
|
|
reply = reply.replace('#','');
|
|
|
|
if(reply.length) {
|
|
|
|
|
|
|
|
commentBusy = true;
|
|
|
|
$('body').css('cursor', 'wait');
|
|
|
|
|
|
|
|
$.get('tagger/' + id + '?term=' + reply);
|
|
|
|
if(timer) clearTimeout(timer);
|
|
|
|
timer = setTimeout(NavUpdate,3000);
|
|
|
|
liking = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function itemFiler(id) {
|
|
|
|
|
|
|
|
var bordercolor = $("input").css("border-color");
|
|
|
|
|
|
|
|
$.get('filer/', function(data){
|
|
|
|
$.colorbox({html:data});
|
|
|
|
$("#id_term").keypress(function(){
|
|
|
|
$(this).css("border-color",bordercolor);
|
|
|
|
})
|
|
|
|
$("#select_term").change(function(){
|
|
|
|
$("#id_term").css("border-color",bordercolor);
|
|
|
|
})
|
|
|
|
|
|
|
|
$("#filer_save").click(function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
reply = $("#id_term").val();
|
|
|
|
if(reply && reply.length) {
|
|
|
|
commentBusy = true;
|
|
|
|
$('body').css('cursor', 'wait');
|
|
|
|
$.get('filer/' + id + '?term=' + reply, NavUpdate);
|
|
|
|
// if(timer) clearTimeout(timer);
|
|
|
|
// timer = setTimeout(NavUpdate,3000);
|
|
|
|
liking = 1;
|
|
|
|
$.colorbox.close();
|
|
|
|
} else {
|
|
|
|
$("#id_term").css("border-color","#FF0000");
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotClearLocation() {
|
|
|
|
$('#jot-coord').val('');
|
|
|
|
$('#profile-nolocation-wrapper').hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
function addeditortext(data) {
|
2017-01-27 04:54:32 +01:00
|
|
|
// get the textfield
|
|
|
|
var textfield = document.getElementById("profile-jot-text");
|
|
|
|
// check if the textfield does have the default-value
|
|
|
|
jotTextOpenUI(textfield);
|
|
|
|
// save already existent content
|
|
|
|
var currentText = $("#profile-jot-text").val();
|
|
|
|
//insert the data as new value
|
|
|
|
textfield.value = currentText + data;
|
2016-03-28 16:29:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{{$geotag}}
|
|
|
|
|
|
|
|
function jotShow() {
|
|
|
|
var modal = $('#jot-modal').modal();
|
2016-08-04 14:33:08 +02:00
|
|
|
jotcache = $("#jot-sections");
|
2016-03-28 16:29:05 +02:00
|
|
|
|
2017-01-22 17:01:10 +01:00
|
|
|
// Auto focus on the first enabled field in the modal
|
|
|
|
modal.on('shown.bs.modal', function (e) {
|
|
|
|
$('#jot-modal-content').find('select:not([disabled]), input:not([type=hidden]):not([disabled]), textarea:not([disabled])').first().focus();
|
|
|
|
})
|
|
|
|
|
2016-03-28 16:29:05 +02:00
|
|
|
modal
|
2016-06-27 10:33:20 +02:00
|
|
|
.find('#jot-modal-content')
|
2016-06-08 20:53:01 +02:00
|
|
|
.append(jotcache)
|
2016-06-27 10:33:20 +02:00
|
|
|
.modal.show;
|
2016-03-28 16:29:05 +02:00
|
|
|
}
|
|
|
|
|
2017-01-22 17:01:10 +01:00
|
|
|
// the following functions show/hide the specific jot content
|
2016-03-28 16:29:05 +02:00
|
|
|
// in dependence of the selected nav
|
|
|
|
function aclActive() {
|
2016-05-09 21:08:11 +02:00
|
|
|
$(".modal-body #profile-jot-wrapper, .modal-body #jot-preview-content, .modal-body #jot-fbrowser-wrapper").hide();
|
2016-03-28 16:29:05 +02:00
|
|
|
$(".modal-body #profile-jot-acl-wrapper").show();
|
2016-05-09 21:08:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function previewActive() {
|
|
|
|
$(".modal-body #profile-jot-wrapper, .modal-body #profile-jot-acl-wrapper,.modal-body #jot-fbrowser-wrapper").hide();
|
|
|
|
preview_post();
|
2016-03-28 16:29:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function jotActive() {
|
2016-05-09 21:08:11 +02:00
|
|
|
$(".modal-body #profile-jot-acl-wrapper, .modal-body #jot-preview-content, .modal-body #jot-fbrowser-wrapper").hide();
|
2016-03-28 16:29:05 +02:00
|
|
|
$(".modal-body #profile-jot-wrapper").show();
|
2016-05-09 21:08:11 +02:00
|
|
|
|
|
|
|
//make sure jot text does have really the active class (we do this because there are some
|
|
|
|
// other events which trigger jot text
|
|
|
|
toggleJotNav($("#jot-modal .jot-nav #jot-text-lnk"));
|
2016-03-28 16:29:05 +02:00
|
|
|
}
|
|
|
|
|
2016-05-09 21:08:11 +02:00
|
|
|
function fbrowserActive() {
|
|
|
|
$(".modal-body #profile-jot-wrapper, .modal-body #jot-preview-content, .modal-body #profile-jot-acl-wrapper").hide();
|
|
|
|
|
|
|
|
$(".modal-body #jot-fbrowser-wrapper").show();
|
|
|
|
|
|
|
|
$(function() {Dialog.showJot();});
|
2016-03-28 16:29:05 +02:00
|
|
|
}
|
2016-05-09 21:08:11 +02:00
|
|
|
|
2016-06-26 03:49:21 +02:00
|
|
|
|
2016-03-28 16:29:05 +02:00
|
|
|
</script>
|
|
|
|
|