2016-01-19 18:11:40 +01:00
/ * *
2016-02-01 18:22:26 +01:00
* @ brief Friendica people autocomplete
2016-01-19 18:11:40 +01:00
*
* require jQuery , jquery . textcomplete
2017-01-27 04:50:27 +01:00
*
2016-02-01 18:22:26 +01:00
* for further documentation look at :
* http : //yuku-t.com/jquery-textcomplete/
2017-01-27 04:50:27 +01:00
*
2016-02-01 18:22:26 +01:00
* https : //github.com/yuku-t/jquery-textcomplete/blob/master/doc/how_to_use.md
2016-01-19 18:11:40 +01:00
* /
2016-02-01 18:22:26 +01:00
2016-02-02 22:33:14 +01:00
function contact _search ( term , callback , backend _url , type , mode ) {
2016-01-19 18:11:40 +01:00
2016-01-21 13:28:29 +01:00
// Check if there is a conversation id to include the unkonwn contacts of the conversation
var conv _id = document . activeElement . id . match ( /\d+$/ ) ;
2016-01-19 18:11:40 +01:00
// Check if there is a cached result that contains the same information we would get with a full server-side search
var bt = backend _url + type ;
if ( ! ( bt in contact _search . cache ) ) contact _search . cache [ bt ] = { } ;
var lterm = term . toLowerCase ( ) ; // Ignore case
for ( var t in contact _search . cache [ bt ] ) {
if ( lterm . indexOf ( t ) >= 0 ) { // A more broad search has been performed already, so use those results
// Filter old results locally
var matching = contact _search . cache [ bt ] [ t ] . filter ( function ( x ) { return ( x . name . toLowerCase ( ) . indexOf ( lterm ) >= 0 || ( typeof x . nick !== 'undefined' && x . nick . toLowerCase ( ) . indexOf ( lterm ) >= 0 ) ) ; } ) ; // Need to check that nick exists because groups don't have one
2016-02-03 00:25:33 +01:00
matching . unshift ( { forum : false , text : term , replace : term } ) ;
2016-01-19 18:11:40 +01:00
setTimeout ( function ( ) { callback ( matching ) ; } , 1 ) ; // Use "pseudo-thread" to avoid some problems
return ;
}
}
var postdata = {
start : 0 ,
count : 100 ,
search : term ,
type : type ,
} ;
2016-01-21 13:28:29 +01:00
if ( conv _id !== null )
postdata [ 'conversation' ] = conv _id [ 0 ] ;
2016-02-02 22:33:14 +01:00
if ( mode !== null )
2016-07-11 10:33:39 +02:00
postdata [ 'smode' ] = mode ;
2016-02-02 22:33:14 +01:00
2016-01-19 18:11:40 +01:00
$ . ajax ( {
type : 'POST' ,
url : backend _url ,
data : postdata ,
dataType : 'json' ,
success : function ( data ) {
// Cache results if we got them all (more information would not improve results)
// data.count represents the maximum number of items
if ( data . items . length - 1 < data . count ) {
contact _search . cache [ bt ] [ lterm ] = data . items ;
}
var items = data . items . slice ( 0 ) ;
items . unshift ( { taggable : false , text : term , replace : term } ) ;
callback ( items ) ;
} ,
} ) . fail ( function ( ) { callback ( [ ] ) ; } ) ; // Callback must be invoked even if something went wrong.
}
contact _search . cache = { } ;
function contact _format ( item ) {
// Show contact information if not explicitly told to show something else
if ( typeof item . text === 'undefined' ) {
var desc = ( ( item . label ) ? item . nick + ' ' + item . label : item . nick ) ;
2016-02-03 00:25:33 +01:00
var forum = ( ( item . forum ) ? 'forum' : '' ) ;
2016-01-19 18:11:40 +01:00
if ( typeof desc === 'undefined' ) desc = '' ;
if ( desc ) desc = ' (' + desc + ')' ;
2016-02-03 00:25:33 +01:00
return "<div class='{0}' title='{4}'><img class='acpopup-img' src='{1}'><span class='acpopup-contactname'>{2}</span><span class='acpopup-sub-text'>{3}</span><div class='clear'></div></div>" . format ( forum , item . photo , item . name , desc , item . link ) ;
2016-01-19 18:11:40 +01:00
}
else
return "<div>" + item . text + "</div>" ;
}
function editor _replace ( item ) {
2017-05-05 13:55:01 +02:00
if ( typeof item . replace !== 'undefined' ) {
2016-01-19 18:11:40 +01:00
return '$1$2' + item . replace ;
}
2017-05-05 13:55:01 +02:00
if ( typeof item . addr !== 'undefined' ) {
return '$1$2' + item . addr + ' ' ;
}
2016-01-19 18:11:40 +01:00
// $2 ensures that prefix (@,@!) is preserved
var id = item . id ;
2016-04-16 15:37:34 +02:00
// don't add the id if it is empty (the id empty eg. if there are unknow contacts in thread)
2017-05-05 13:55:01 +02:00
if ( id . length < 1 ) {
2016-04-16 15:58:11 +02:00
return '$1$2' + item . nick . replace ( ' ' , '' ) + ' ' ;
2017-05-05 13:55:01 +02:00
}
2016-04-16 15:37:34 +02:00
// 16 chars of hash should be enough. Full hash could be used if it can be done in a visually appealing way.
2016-01-19 18:11:40 +01:00
// 16 chars is also the minimum length in the backend (otherwise it's interpreted as a local id).
2017-05-05 13:55:01 +02:00
if ( id . length > 16 ) {
2016-01-19 18:11:40 +01:00
id = item . id . substring ( 0 , 16 ) ;
2017-05-05 13:55:01 +02:00
}
2016-01-19 18:11:40 +01:00
return '$1$2' + item . nick . replace ( ' ' , '' ) + '+' + id + ' ' ;
}
function basic _replace ( item ) {
if ( typeof item . replace !== 'undefined' )
return '$1' + item . replace ;
return '$1' + item . name + ' ' ;
}
2016-05-01 08:45:11 +02:00
function webbie _replace ( item ) {
if ( typeof item . replace !== 'undefined' )
return '$1' + item . replace ;
return '$1' + item . nick + ' ' ;
}
2016-01-19 18:11:40 +01:00
function trim _replace ( item ) {
if ( typeof item . replace !== 'undefined' )
return '$1' + item . replace ;
return '$1' + item . name ;
}
function submit _form ( e ) {
$ ( e ) . parents ( 'form' ) . submit ( ) ;
}
2016-04-14 23:59:29 +02:00
function getWord ( text , caretPos ) {
var index = text . indexOf ( caretPos ) ;
var postText = text . substring ( caretPos , caretPos + 8 ) ;
if ( ( postText . indexOf ( "[/list]" ) > 0 ) || postText . indexOf ( "[/ul]" ) > 0 || postText . indexOf ( "[/ol]" ) > 0 ) {
return postText ;
}
}
function getCaretPosition ( ctrl ) {
var CaretPos = 0 ; // IE Support
if ( document . selection ) {
ctrl . focus ( ) ;
var Sel = document . selection . createRange ( ) ;
Sel . moveStart ( 'character' , - ctrl . value . length ) ;
CaretPos = Sel . text . length ;
}
// Firefox support
else if ( ctrl . selectionStart || ctrl . selectionStart == '0' )
CaretPos = ctrl . selectionStart ;
return ( CaretPos ) ;
}
function setCaretPosition ( ctrl , pos ) {
if ( ctrl . setSelectionRange ) {
ctrl . focus ( ) ;
ctrl . setSelectionRange ( pos , pos ) ;
}
else if ( ctrl . createTextRange ) {
var range = ctrl . createTextRange ( ) ;
range . collapse ( true ) ;
range . moveEnd ( 'character' , pos ) ;
range . moveStart ( 'character' , pos ) ;
range . select ( ) ;
}
}
function listNewLineAutocomplete ( id ) {
var text = document . getElementById ( id ) ;
var caretPos = getCaretPosition ( text )
var word = getWord ( text . value , caretPos ) ;
if ( word != null ) {
var textBefore = text . value . substring ( 0 , caretPos ) ;
var textAfter = text . value . substring ( caretPos , text . length ) ;
2017-04-19 04:04:23 +02:00
$ ( '#' + id ) . val ( textBefore + '\r\n[*] ' + textAfter ) . trigger ( 'change' ) ;
2016-04-14 23:59:29 +02:00
setCaretPosition ( text , caretPos + 5 ) ;
return true ;
}
2016-04-29 14:42:12 +02:00
else {
return false ;
}
2016-04-14 23:59:29 +02:00
}
function string2bb ( element ) {
if ( element == 'bold' ) return 'b' ;
else if ( element == 'italic' ) return 'i' ;
else if ( element == 'underline' ) return 'u' ;
else if ( element == 'overline' ) return 'o' ;
else if ( element == 'strike' ) return 's' ;
else return element ;
}
2016-01-19 18:11:40 +01:00
/ * *
* jQuery plugin 'editor_autocomplete'
* /
( function ( $ ) {
$ . fn . editor _autocomplete = function ( backend _url ) {
// Autocomplete contacts
contacts = {
match : /(^|\s)(@\!*)([^ \n]+)$/ ,
index : 3 ,
search : function ( term , callback ) { contact _search ( term , callback , backend _url , 'c' ) ; } ,
replace : editor _replace ,
template : contact _format ,
} ;
2016-02-02 22:33:14 +01:00
// Autocomplete smilies e.g. ":like"
2016-01-19 18:11:40 +01:00
smilies = {
match : /(^|\s)(:[a-z]{2,})$/ ,
index : 2 ,
2016-02-01 18:22:26 +01:00
search : function ( term , callback ) { $ . getJSON ( 'smilies/json' ) . done ( function ( data ) { callback ( $ . map ( data , function ( entry ) { return entry . text . indexOf ( term ) === 0 ? entry : null ; } ) ) ; } ) ; } ,
template : function ( item ) { return item . icon + ' ' + item . text ; } ,
2016-01-19 18:11:40 +01:00
replace : function ( item ) { return "$1" + item . text + ' ' ; } ,
} ;
2016-02-01 18:22:26 +01:00
2016-01-19 18:11:40 +01:00
this . attr ( 'autocomplete' , 'off' ) ;
2016-04-15 02:02:54 +02:00
this . textcomplete ( [ contacts , smilies ] , { className : 'acpopup' , zIndex : 10000 } ) ;
2016-01-19 18:11:40 +01:00
} ;
} ) ( jQuery ) ;
/ * *
* jQuery plugin 'search_autocomplete'
* /
( function ( $ ) {
$ . fn . search _autocomplete = function ( backend _url ) {
// Autocomplete contacts
contacts = {
match : /(^@)([^\n]{2,})$/ ,
index : 2 ,
2016-02-02 22:33:14 +01:00
search : function ( term , callback ) { contact _search ( term , callback , backend _url , 'x' , 'contact' ) ; } ,
2016-05-01 08:45:11 +02:00
replace : webbie _replace ,
2016-02-02 22:33:14 +01:00
template : contact _format ,
} ;
// Autocomplete forum accounts
community = {
match : /(^!)([^\n]{2,})$/ ,
index : 2 ,
search : function ( term , callback ) { contact _search ( term , callback , backend _url , 'x' , 'community' ) ; } ,
2016-05-01 08:45:11 +02:00
replace : webbie _replace ,
2016-01-19 18:11:40 +01:00
template : contact _format ,
} ;
this . attr ( 'autocomplete' , 'off' ) ;
2016-04-15 02:02:54 +02:00
var a = this . textcomplete ( [ contacts , community ] , { className : 'acpopup' , maxCount : 100 , zIndex : 10000 , appendTo : 'nav' } ) ;
2016-01-19 18:11:40 +01:00
a . on ( 'textComplete:select' , function ( e , value , strategy ) { submit _form ( this ) ; } ) ;
} ;
} ) ( jQuery ) ;
( function ( $ ) {
$ . fn . contact _autocomplete = function ( backend _url , typ , autosubmit , onselect ) {
if ( typeof typ === 'undefined' ) typ = '' ;
if ( typeof autosubmit === 'undefined' ) autosubmit = false ;
// Autocomplete contacts
contacts = {
match : /(^)([^\n]+)$/ ,
index : 2 ,
search : function ( term , callback ) { contact _search ( term , callback , backend _url , typ ) ; } ,
replace : basic _replace ,
template : contact _format ,
} ;
this . attr ( 'autocomplete' , 'off' ) ;
2016-04-15 02:02:54 +02:00
var a = this . textcomplete ( [ contacts ] , { className : 'acpopup' , zIndex : 10000 } ) ;
2016-01-19 18:11:40 +01:00
if ( autosubmit )
a . on ( 'textComplete:select' , function ( e , value , strategy ) { submit _form ( this ) ; } ) ;
if ( typeof onselect !== 'undefined' )
a . on ( 'textComplete:select' , function ( e , value , strategy ) { onselect ( value ) ; } ) ;
} ;
} ) ( jQuery ) ;
( function ( $ ) {
$ . fn . name _autocomplete = function ( backend _url , typ , autosubmit , onselect ) {
if ( typeof typ === 'undefined' ) typ = '' ;
if ( typeof autosubmit === 'undefined' ) autosubmit = false ;
// Autocomplete contacts
names = {
match : /(^)([^\n]+)$/ ,
index : 2 ,
search : function ( term , callback ) { contact _search ( term , callback , backend _url , typ ) ; } ,
replace : trim _replace ,
template : contact _format ,
} ;
this . attr ( 'autocomplete' , 'off' ) ;
2016-04-15 02:02:54 +02:00
var a = this . textcomplete ( [ names ] , { className : 'acpopup' , zIndex : 10000 } ) ;
2016-01-19 18:11:40 +01:00
if ( autosubmit )
a . on ( 'textComplete:select' , function ( e , value , strategy ) { submit _form ( this ) ; } ) ;
if ( typeof onselect !== 'undefined' )
a . on ( 'textComplete:select' , function ( e , value , strategy ) { onselect ( value ) ; } ) ;
} ;
} ) ( jQuery ) ;
2016-01-21 13:28:29 +01:00
2016-04-14 23:59:29 +02:00
( function ( $ ) {
$ . fn . bbco _autocomplete = function ( type ) {
if ( type == 'bbcode' ) {
2016-12-02 19:39:35 +01:00
var open _close _elements = [ 'bold' , 'italic' , 'underline' , 'overline' , 'strike' , 'quote' , 'code' , 'spoiler' , 'map' , 'img' , 'url' , 'audio' , 'video' , 'embed' , 'youtube' , 'vimeo' , 'list' , 'ul' , 'ol' , 'li' , 'table' , 'tr' , 'th' , 'td' , 'center' , 'color' , 'font' , 'size' , 'h1' , 'h2' , 'h3' , 'h4' , 'h5' , 'h6' , 'nobb' , 'noparse' , 'pre' , 'abstract' ] ;
2016-04-14 23:59:29 +02:00
var open _elements = [ '*' , 'hr' ] ;
var elements = open _close _elements . concat ( open _elements ) ;
}
bbco = {
match : /\[(\w*\**)$/ ,
search : function ( term , callback ) {
callback ( $ . map ( elements , function ( element ) {
return element . indexOf ( term ) === 0 ? element : null ;
} ) ) ;
} ,
index : 1 ,
replace : function ( element ) {
element = string2bb ( element ) ;
if ( open _elements . indexOf ( element ) < 0 ) {
if ( element === 'list' || element === 'ol' || element === 'ul' ) {
return [ '\[' + element + '\]' + '\n\[*\] ' , '\n\[/' + element + '\]' ] ;
}
else if ( element === 'table' ) {
return [ '\[' + element + '\]' + '\n\[tr\]' , '\[/tr\]\n\[/' + element + '\]' ] ;
}
else {
return [ '\[' + element + '\]' , '\[/' + element + '\]' ] ;
}
}
else {
return '\[' + element + '\] ' ;
}
}
} ;
this . attr ( 'autocomplete' , 'off' ) ;
2016-04-15 02:02:54 +02:00
var a = this . textcomplete ( [ bbco ] , { className : 'acpopup' , zIndex : 10000 } ) ;
2016-04-14 23:59:29 +02:00
a . on ( 'textComplete:select' , function ( e , value , strategy ) { value ; } ) ;
a . keypress ( function ( e ) {
if ( e . keyCode == 13 ) {
var x = listNewLineAutocomplete ( this . id ) ;
2016-04-29 14:42:12 +02:00
if ( x ) {
e . stopImmediatePropagation ( ) ;
2016-04-14 23:59:29 +02:00
e . preventDefault ( ) ;
2016-04-29 14:42:12 +02:00
}
2016-04-14 23:59:29 +02:00
}
} ) ;
} ;
} ) ( jQuery ) ;
2016-01-21 13:28:29 +01:00
/ * *
2017-01-27 04:50:27 +01:00
* Friendica people autocomplete legacy code
2016-01-21 13:28:29 +01:00
*
* require jQuery , jquery . textareas
* /
2017-01-27 04:50:27 +01:00
function ACPopup ( elm , backend _url ) {
this . idsel = - 1 ;
2016-01-21 13:28:29 +01:00
this . element = elm ;
2017-01-27 04:50:27 +01:00
this . searchText = '' ;
this . ready = true ;
2016-01-21 13:28:29 +01:00
this . kp _timer = false ;
this . url = backend _url ;
this . conversation _id = null ;
var conv _id = this . element . id . match ( /\d+$/ ) ;
2017-01-27 04:50:27 +01:00
if ( conv _id ) {
this . conversation _id = conv _id [ 0 ] ;
2016-01-21 13:28:29 +01:00
}
2017-01-27 04:50:27 +01:00
var w = $ ( elm ) . width ( ) ;
var h = $ ( elm ) . height ( ) ;
var style = $ ( elm ) . offset ( ) ;
style . top = style . top + h ;
2016-01-21 13:28:29 +01:00
style . width = w ;
style . position = 'absolute' ;
style . display = 'none' ;
2017-01-27 04:50:27 +01:00
this . cont = $ ( '<div class="acpopup-mce"></div>' ) ;
2016-01-21 13:28:29 +01:00
this . cont . css ( style ) ;
2017-01-27 04:50:27 +01:00
$ ( 'body' ) . append ( this . cont ) ;
}
2016-01-21 13:28:29 +01:00
ACPopup . prototype . close = function ( ) {
$ ( this . cont ) . remove ( ) ;
this . ready = false ;
}
ACPopup . prototype . search = function ( text ) {
var that = this ;
this . searchText = text ;
if ( this . kp _timer ) clearTimeout ( this . kp _timer ) ;
this . kp _timer = setTimeout ( function ( ) { that . _search ( ) ; } , 500 ) ;
}
ACPopup . prototype . _search = function ( ) {
console . log ( "_search" ) ;
var that = this ;
var postdata = {
start : 0 ,
count : 100 ,
search : this . searchText ,
type : 'c' ,
conversation : this . conversation _id ,
}
$ . ajax ( {
type : 'POST' ,
url : this . url ,
data : postdata ,
dataType : 'json' ,
success : function ( data ) {
that . cont . html ( "" ) ;
if ( data . tot > 0 ) {
that . cont . show ( ) ;
$ ( data . items ) . each ( function ( ) {
var html = "<img src='{0}' height='16px' width='16px'>{1} ({2})" . format ( this . photo , this . name , this . nick ) ;
var nick = this . nick . replace ( ' ' , '' ) ;
if ( this . id !== '' ) nick += '+' + this . id ;
that . add ( html , nick + ' - ' + this . link ) ;
} ) ;
} else {
that . cont . hide ( ) ;
}
}
} ) ;
}
ACPopup . prototype . add = function ( label , value ) {
2017-01-27 04:50:27 +01:00
var that = this ;
var elm = $ ( '<div class="acpopupitem" title="' + value + '">' + label + '</div>' ) ;
2016-01-21 13:28:29 +01:00
elm . click ( function ( e ) {
2017-01-27 04:50:27 +01:00
t = $ ( this ) . attr ( 'title' ) . replace ( new RegExp ( ' \- .*' ) , '' ) ;
el = $ ( that . element ) ;
sel = el . getSelection ( ) ;
sel . start = sel . start - that . searchText . length ;
el . setSelection ( sel . start , sel . end ) . replaceSelectedText ( t + ' ' ) . collapseSelection ( false ) ;
that . close ( ) ;
2016-01-21 13:28:29 +01:00
} ) ;
$ ( this . cont ) . append ( elm ) ;
}
ACPopup . prototype . onkey = function ( event ) {
if ( event . keyCode == '13' ) {
2017-01-27 04:50:27 +01:00
if ( this . idsel > - 1 ) {
2016-01-21 13:28:29 +01:00
this . cont . children ( ) [ this . idsel ] . click ( ) ;
event . preventDefault ( ) ;
2017-01-27 04:50:27 +01:00
} else {
2016-01-21 13:28:29 +01:00
this . close ( ) ;
2017-01-27 04:50:27 +01:00
}
2016-01-21 13:28:29 +01:00
}
if ( event . keyCode == '38' ) { //cursor up
2017-01-27 04:50:27 +01:00
var cmax = this . cont . children ( ) . size ( ) - 1 ;
2016-01-21 13:28:29 +01:00
this . idsel -- ;
2017-01-27 04:50:27 +01:00
if ( this . idsel < 0 ) {
this . idsel = cmax ;
}
2016-01-21 13:28:29 +01:00
event . preventDefault ( ) ;
}
if ( event . keyCode == '40' || event . keyCode == '9' ) { //cursor down
2017-01-27 04:50:27 +01:00
var cmax = this . cont . children ( ) . size ( ) - 1 ;
2016-01-21 13:28:29 +01:00
this . idsel ++ ;
2017-01-27 04:50:27 +01:00
if ( this . idsel > cmax ) {
this . idsel = 0 ;
}
2016-01-21 13:28:29 +01:00
event . preventDefault ( ) ;
}
if ( event . keyCode == '38' || event . keyCode == '40' || event . keyCode == '9' ) {
this . cont . children ( ) . removeClass ( 'selected' ) ;
$ ( this . cont . children ( ) [ this . idsel ] ) . addClass ( 'selected' ) ;
}
if ( event . keyCode == '27' ) { //ESC
this . close ( ) ;
}
}