-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Emoji Autocomplete #3433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emoji Autocomplete #3433
Changes from 2 commits
fe4be89
cf877ae
27c89bd
1f77796
859c052
d466f99
96d2f7f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,6 +89,37 @@ | |
| issuesTribute.attach(document.getElementById('content')) | ||
| </script> | ||
| {{end}} | ||
| <script> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason to not put this in
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kolaente it can't be put (at least currently) in index.js as it has server-side condition check if this should be included so such refactoring would probably be better done in different PR
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried putting it to But I think it is much cleaner, if the emojiTribute is only initialized when the page requiring it is loaded.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh ok I see... |
||
| var emojiTribute = new Tribute({ | ||
| trigger: ':', | ||
| values: function (text, cb) { | ||
| var array = emojify.emojiNames; | ||
| var data = []; | ||
| var counter = 0; | ||
| for(var j=0; j<array.length; j++) { | ||
|
||
| if(array[j].indexOf(text) !== -1) { | ||
| data.push(array[j]); | ||
| counter++; | ||
| if(counter > 5) { | ||
| break; | ||
| } | ||
| } | ||
| } | ||
| cb(data); | ||
| }, | ||
| lookup: function (item) { | ||
| return item; | ||
| }, | ||
| selectTemplate: function (item) { | ||
| if (typeof item === 'undefinied') return null; | ||
| return ':' + item.original + ':'; | ||
| }, | ||
| menuItemTemplate: function (item) { | ||
| return '<img class="emoji" src="{{AppSubUrl}}/vendor/plugins/emojify/images/' + item.original + '.png"/>' + item.original; | ||
| } | ||
| }); | ||
| emojiTribute.attach(document.getElementById('content')) | ||
| </script> | ||
| {{end}} | ||
| <script src="{{AppSubUrl}}/vendor/plugins/autolink/autolink.js"></script> | ||
| <script src="{{AppSubUrl}}/vendor/plugins/emojify/emojify.min.js"></script> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vendor css should not be changed. Instead create new rule in gitea style less file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The vendor css has apparently already been altered, if you take a look at the original repo:
https://github.com/zurb/tribute/blob/master/dist/tribute.css
Then we should reset it to default and transport the changes been done to the gitea style less file as well.