I have been working off and on for a while on an update to my popular Chrome Extension 'Post To Tumblr' and seeing as Tumblr have just changed thier API I thought it was time to accelerate its development and release it, finally.
First some screenshots to give you an idea of what it does:
You can right-click any thing on a page and "Post To Tumblr".
A new tab opens where you can format it how you like.
You can change the post type very easily.
When done you just "Create Post"
This version is written totally from scratch using Haxe's Javascript target. Although not strictly necessary for something as simple as this I thought it was a good opportunity to experiment around with Haxe's JS capabilities. I must admit I was pleasantly surprised at how well it worked.
Most stuff just worked. There are also plenty of externs out there for the popular Javascript libraries on lib.haxe.org such as the "chrome-extension" library.
Having type-safe Javacript is great for for so many reasons that im not going to get into here. I must admit however there were times when I was lazy and didn't want fancy creating a type-safe extern class for a library. Fortunately however Haxe has a mechanism for the lazy coder in the form of "untyped".
An example of this is the way in which you access the "localStorage" object in chrome extensions. localStorage is basically a global object that you can set keys and values in and will persist for the life of your extension. To access it you use: "localStorage[myKey]" to return a value. If you tried to do that in Haxe it would throw an error because Haxe has no concept of global variables (quite rightly).
So to access the localStorage you can use untyped to quickly get access to a global variable, I then decided to wrap this little hack in a Model class to make it a little neater:
[codesyntax lang="actionscript3" lines="normal"]
package models;
import js.Lib;
/**
* ...
* @author MikeC
*/
class ChromeLocalStorageModel extends BaseModel
{
public function get(key:String) : Dynamic
{
var val = untyped localStorage[key];
trace('Getting from localStorage: '+key+" :: "+val);
return val;
}
public function set(key:String, val:Dynamic) : Void
{
trace('Saving in localStorage: '+key+" :: "+val);
untyped localStorage[key] = val;
}
}
[/codesyntax]
This lets you just just mix and match the type-safe stuff when you need to and just do a little "hack" when you need to ;)
The above example also shows off another cool feature im using in Post To Tumblr, which is RobotLegs. Thanks to the fact that the RobotHaxe library is written in pure Haxe (has no platform specific bits) that means I am able to use it on a Javascript project.
The only problem is the issue with Views and Mediation. Because unlike Flash events don't bubble up to a central source there is no way to do automatic mediation in the JS target. Instead what you do is implement "IViewContainer" on your context view, then whenever a child is added or removed you call viewAdded() or viewRemoved() that way the MediatorMap can try to make a mediator for that view.
Im not sure if the way I have used RobotLegs is the correct or best way, it was more of an experiment as I went along. The way I have done it is to wrap many of the main HTML elements in my own view classes. So for example I have a "DivView" that represents a "div" and extends BaseView:
[codesyntax lang="actionscript3" lines="normal"]
class DivView extends BaseView
{
public function new(elementId:String=null)
{
super(Lib.document.createElement('div'));
if (elementId != null) element.id = elementId;
}
}
[/codesyntax]
BaseView implements the IViewContainer interface:
[codesyntax lang="actionscript3" lines="normal"]
class BaseView implements IViewContainer
{
public var viewAdded:Dynamic -> Void;
public var viewRemoved:Dynamic -> Void;
public var element : HtmlDom;
public var parent : BaseView;
public var children : Array;
....
public function new(element:HtmlDom)
{
this.element = element;
this.children = [];
isLayoutInvalid = true;
}
...
public function add(child:BaseView) : BaseView
{
children.push(child);
child.parent = this;
child.viewAdded = viewAdded;
child.viewRemoved = viewRemoved;
if(viewAdded!=null) child.addChildren();
element.appendChild(child.element);
if (viewAdded != null) viewAdded(child);
return child;
}
public function remove(child:BaseView) : Void
{
if (viewRemoved != null) child.removeChildren();
children.remove(child);
child.parent = null;
child.viewAdded = null;
child.viewRemoved = null;
element.removeChild(child.element);
if (viewRemoved != null) viewRemoved(child);
}
...
}
[/codesyntax]
Then say I want to construct the following html:
[codesyntax lang="html4strict"]
<div id="container">
<div id="inner">Hello World!</div>
</div>
[/codesyntax]
I would do something like this:
[codesyntax lang="actionscript3" lines="normal"]
class MainPopupContainer extends DivView
{
private var inner : DivView;
public function new()
{
super("container");
inner = new DivView("inner");
inner.element.innerHTML = "Hello World!";
add(inner);
}
}
[/codesyntax]
Then perhaps I want to turn the "Hello World!" red when clicked I would do something like this:
[codesyntax lang="actionscript3" lines="normal"]
class MainPopupContainer extends DivView
{
private var inner : DivView;
public function new()
{
super("container");
inner = new DivView("inner");
inner.element.innerHTML = "Hello World!";
add(inner);
new JQuery(inner.element).click(onInnerClicked);
}
private function onInnerClicked()
{
inner.element.style.color = "#FF0000";
}
}
[/codesyntax]
What this means is you have a RobotLegs-familiar looking View with a Mediator behind it (thanks to the mediation happening when you call add()) which is nice. What it does mean however is I have quite abit of boiler plate wrapping the HTML nodes, which definitely slowed down my development.
Another thing im not sure about is my mixing of in-line styles and stylesheets. Sometimes I would use the styles in my css and other times I would just set them on the element directly. To be honest, because I was using classes and inheritance and all that good stuff I usually found it easier and more expedient to set the styles inline in my View class rather than go digging through several hundred lines of css to find the selector I was looking for
For example I may have a "HeaderOptionButton" that defines some inline styles then whenever I wanted a button that looked and acted like a header button I would just make and add a HeaderOptionButton. I know im probably going to get flamed to hell and back for that!
As I said, im not sure if im doing it the "right" or "best" way, its just the way that seemed to work at the time ;)
Well that's a quick overview of where im at. Once I have cleaned the project up a little and added some missing features ill be sticking the source up on GitHub for anyone interested.
Hi! I've been using PTT for quite awhile and I think it's great! In the newest version is there no way to add tags to posts? Thanks!
ReplyDeleteHi, not quite yet. Ill be adding that functionality in next :)
ReplyDeleteHi, Thanks for the update on PTT and reacting so quickly to fix the problems. Will there be a future update allowing posting to queue? Loved this feature in the prev. version.
ReplyDeleteKeep up the great work!!!
Cheers...
Hi Jeremy,Certainty, I hope to add it very soon! Mike
ReplyDeleteThank you so much! You are quite the gentleman. I am going to force everyone I know to use this extension. Small beer fund donation incoming.
ReplyDeleteHi. I recently found this extension and think it is very good. Just one thing: when I right click on an image to post it, the URL of the image will be put in the "Add Link" input box. I think it will be better if the URL of the source page is put there. What do you think? :)
ReplyDeleteHi Betty, yes thats a good idea, ill do that instead
ReplyDeletei using this extension, too but it don't run and i think it's hard for choose blog where it's display, if me have more one tumblr blog, i think last version is better. :)
ReplyDeleteI think tumblr were having some problems this week, it should be working now.Mike Cann (mobile)
ReplyDeleteHey Mike, Thanks so much for all your hard work on this! You have created an incredible extension that I use daily... love it. - Just curious how one click integration was coming?
ReplyDeleteThanks so much for all your work!
Hi Vince, thanks for the nice comments, its those that keep me going. I hope to get round to 1-click as soon as I can!
ReplyDeleteI'm using this expansion too, but it doesn't run and I think it's difficult to select weblog where it shows, if I have more tumblrblog, I think last edition is better.
ReplyDelete