Post Tools: How to Add a New Item
-
Following up to my last post: Could I create a new CSS class in my
Custom HTML & CSS
area that I could reference?For example the current Facebook, Twitter and Google sharing are referenced through the class
{postSharing.class}
and{postSharing.name}
. If I were to create a custom class, let's say{myCustomSharing.class}
and have the javascript there and then reference it in thepost-menu-list.tpl
file, would that work? -
@rod You can just add the HTML directly into that file with the
class
attribute hard coded to whatever you want, and then listen to the click handler on the document level, like so:HMTL in template file:
post-menu-list.tpl@48 <!-- END postSharing --> + <li role="presentation"> + <a role="menuitem" component="share/whatever" class="post-share-whatever" tabindex="-1" href="#"> + <span class="menu-icon"><i class="fa fa-whatever-site-icon"></i></span> Whatever + </a> + </li> <li role="presentation" class="divider"></li>
JS in custom header:
$(document.body).on('click', '[component="post/tools"] .post-share-whatever', function () { // do something when a "Whatever" share element is clicked });
Of course, replace "whatever" with the site, and the
fa-whatever-site-icon
and be found here. -
@PitaJ said in Post Tools: How to Add a New Item:
$(document.body).on('click', '[component="post/tools"] .post-share-whatever', function () {
// do something when a "Whatever" share element is clicked
});Do I need to wrap that in <script> </script> tags for the
Custom Header
section?<script type="text/javascript"> $(document.body).on('click', '[component="post/tools"] .post-share-whatever', function () { // do something when a "Whatever" share element is clicked }); </script>
-
@rod yes you would need to put it in a script tag, and probably a jQuery document.ready as well.
-
@PitaJ The
dense
must be strong with me. I can't even get a simpleconsole.log
to work.This is what I have in the post-menu-list.tpl file:
In the<li role="presentation"> <a role="menuitem" component="share/yourlsNbb" class="post-share-yourlsNbb" tabindex="-1" href="#"><span class="menu-icon"><i class="fa {postSharing.class}"></i></span> Shortlink</a> </li>
And in my Custom Header I have:
<script type="text/javascript"> $(document.body).on('click', '[component="post/tools"] .post-share-yourlsNbb', function () { $( document ).ready(function() { console.log( "Shortlink clicked" ); }); }); </script>
Would you be able to point to the error of my ways?
Thanks.
-
@rod you put the document.ready inside the event listener. You should have wrapped the event listener with it.
Also, you don't need the script type attribute anymore.
<script type="text/javascript"> $( document ).ready(function() { $(document.body).on('click', '[component="post/tools"] .post-share-yourlsNbb', function () { console.log( "Shortlink clicked" ); }); }); </script>
-
@PitaJ Is there a way that I can call another set of javascript that is outside of NodeBB?
Specifically the YOURLS api code is on the shortlink server. My test html pages (outside of NodeBB) work by doing this:
<script type="text/javascript" src="http://example.com/api/yourls.js"></script> <script> // More things here </script>
Now when I try to embed the
<script type="text/javascript" src="http://example.com/api/yourls.js"></script>
line in the$(document.body)
or$(document).ready
sections it all breaks. -
@rod this should work
<script type="text/javascript" src="http://example.com/api/yourls.js"></script> <script type="text/javascript"> $( document ).ready(function() { $(document.body).on('click', '[component="post/tools"] .post-share-yourlsNbb', function () { // Call yourls API }); }); </script>
-
@PitaJ Sooo close.
In my browser console log I am getting
ReferenceErrors
For example:ReferenceError: yourls is not defined <anonymous> w.event.dispatch() w.event.add/y.handle()
To me it seems like although I have the api js loaded that the
$(document.body)
section cannot reference it. -
@rod are there no errors in the browser console? Can you access
yourls
from it? What is the API of yourls.js? -
@PitaJ At this point I am only referencing the
yourls.VERSION
which is part of the api (https://neocotic.com/yourls-api) via the console.log. Using Firefox's browser consoleSpecifically:
<script type="text/javascript" src="https://example.com/api/yourls.js"></script> <script type="text/javascript"> $( document ).ready(function() { $(document.body).on('click', '[component="post/tools"] .post-share-yourlsNbb', function () { console.log(yourls.VERSION); }); }); </script>
When I click the part of the post topic pull down that references the
.post-share-yourlsNbb
that is when the error gets displayed in the browser debug console.N.B. I am not actually pointing to example.com, just using that as a place holder -- I could share the real URL if necessary and then redact later.
-
@rod I think this is what you need:
<script type="text/javascript" src="https://example.com/api/yourls.js"></script> <script type="text/javascript"> $( document ).ready(function() { $(document.body).on('click', '[component="post/tools"] .post-share-yourlsNbb', function () { require(['yourls'], function(yourls) { console.log(yourls.VERSION); }); }); }); </script>
-
@PitaJ I hope you can help me figure out this last problem. I am once again receiving a
ReferenceError: yourls is not defined
message in my browser debug console. (But theconsole.log(yourls.VERSION)
statement does work fine -- it prints the version of the api as expected)The URL is being entered into the YOURLS database but I get an error instead of seeing the shortlink that was created for the URL with
console.log(data.shorturl)
Do I need another " require(['yourls'], function(yourls) {" block some where nested in there?This is what I have:
<script type="text/javascript" src="https://example.com/api/yourls.js"></script> <script type="text/javascript"> $( document ).ready(function() { $(document.body).on('click', '[component="post/tools"] .post-share-yourlsNbb', function () { require(['yourls'], function(yourls) { console.log(yourls.VERSION); var yourlsNbb = yourls.connect('https://example.com/yourls-api.php'); yourlsNbb.shorten(window.location.href, function(data) { console.log(data.shorturl); }); }); }); });
-
@rod can you message me the link to your site? It will be easier for me to debug directly.
-
@rod here you go, just need a reference on the window object for JSONp:
<script type="text/javascript" src="https://example.com/api/yourls.js"></script> <script type="text/javascript"> $( document ).ready(function() { $(document.body).on('click', '[component="post/tools"] .post-share-yourlsNbb', function () { require(['yourls'], function(yourls) { window.yourls = yourls; // need this for JSONp console.log(yourls.VERSION); var yourlsNbb = yourls.connect('https://example.com/yourls-api.php'); yourlsNbb.shorten(window.location.href, function(data) { console.log(data.shorturl); }); }); }); });
-
And now the end result (for now -- I intend to change the pop-up box to some other method of displaying the shortlink):
New
Shortlink
post topic tool entry:
After clicking the shortlink option you get a pop-up with the shortlinked url:
Thank you @PitaJ @pichalite and @alff0x1f for your contributions.
N.B. Until now I have been using @rbeer 's great Smooth-shorts plugin but he doesn't seem to be supporting it anylonger. I have been stuck on NodeBB
v1.0.2
because of that. It is bittersweet to disable his plugin but I am really happy with my new solution. As an aside I have Piwik tracking my YOURLS system also.