diff options
author | zotlabs <mike@macgirvin.com> | 2018-03-07 16:59:55 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-03-07 16:59:55 -0800 |
commit | 48b1042347d098672e583010fe9dbf71eb81623c (patch) | |
tree | ceb68660981e533eee933c5d992c3df9882cbfd7 | |
parent | a454aad124f999e59e8bffb625c103b975aef107 (diff) | |
download | volse-hubzilla-48b1042347d098672e583010fe9dbf71eb81623c.tar.gz volse-hubzilla-48b1042347d098672e583010fe9dbf71eb81623c.tar.bz2 volse-hubzilla-48b1042347d098672e583010fe9dbf71eb81623c.zip |
hashtag autocomplete
-rw-r--r-- | Zotlabs/Module/Hashtags.php | 29 | ||||
-rw-r--r-- | view/js/autocomplete.js | 16 |
2 files changed, 44 insertions, 1 deletions
diff --git a/Zotlabs/Module/Hashtags.php b/Zotlabs/Module/Hashtags.php new file mode 100644 index 000000000..d87a82818 --- /dev/null +++ b/Zotlabs/Module/Hashtags.php @@ -0,0 +1,29 @@ +<?php + +namespace Zotlabs\Module; + + +class Hashtags extends \Zotlabs\Web\Controller { + + function init() { + $result = []; + + logger(print_r($_REQUEST,true)); + + $t = escape_tags($_REQUEST['t']); + if(! $t) + json_return_and_die($result); + + $r = q("select distinct(term) from term where term like '%s' and ttype = %d order by term", + dbesc($t . '%'), + intval(TERM_HASHTAG) + ); + if($r) { + foreach($r as $rv) { + $result[] = [ 'text' => strtolower($rv['term']) ]; + } + } + logger(print_r($result,true)); + json_return_and_die($result); + } +}
\ No newline at end of file diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 01def9900..2d017db18 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -74,6 +74,10 @@ function bbco_format(item) { return "<div class='dropdown-item'>" + item + "</div>"; } +function tag_format(item) { + return "<div class='dropdown-item'>" + '#' + item.text + "</div>"; +} + function editor_replace(item) { if(typeof item.replace !== 'undefined') { return '$1$2' + item.replace; @@ -202,6 +206,16 @@ function string2bb(element) { }; + // Autocomplete hashtags + tags = { + match: /(^|\s)(\#)([^ \n]{2,})$/, + index: 3, + search: function(term, callback) { $.getJSON('/hashtags/' + '$f=&t=' + term).done(function(data) { callback($.map(data, function(entry) { return entry.text.indexOf(term) === 0 ? entry : null; })); }); }, + replace: function(item) { return "$1$2" + item.text + ' '; }, + template: tag_format + }; + + smilies = { match: /(^|\s)(:[a-z_:]{2,})$/, index: 2, @@ -211,7 +225,7 @@ function string2bb(element) { template: smiley_format }; this.attr('autocomplete','off'); - this.textcomplete([contacts,forums,smilies], {className:'acpopup', zIndex:1020}); + this.textcomplete([contacts,forums,smilies,tags], {className:'acpopup', zIndex:1020}); }; })( jQuery ); |