How to get the name of a Mootools class from within - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T16:37:48Zhttp://stackoverflow.com/feeds/question/837729http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/837729/how-to-get-the-name-of-a-mootools-class-from-within4How to get the name of a Mootools class from withinseanmonstar2009-05-08T00:39:49Z2009-05-08T18:43:35Z
<p>I'd like to get at the variable name of class.</p>
<pre><code>var Poop = new Class({
getClassName: function() {
return arguments.callee._owner.name;
}
});
var a = new Poop();
a.getClassName(); //want 'Poop'
</code></pre>
<p>I'm making that will be implemented into other classes, and I'd like to build a SQL query that uses the class name (pluralized) for the table. </p>
<p>I've tried various combinations of the above example to try to get the name, and can't figure it out (if it's even possible considering MooTools class system).</p>
http://stackoverflow.com/questions/837729/how-to-get-the-name-of-a-mootools-class-from-within/838049#8380490Answer by zombat for How to get the name of a Mootools class from withinzombat2009-05-08T02:59:57Z2009-05-08T03:08:15Z<p>I don't think this is possible in Javascript, due to the prototype-oriented nature of the language. There are several things you can do to determine whether an object is of an existing class that you know, such as:</p>
<pre><code>if (a.constructor == Poop) {
alert("This will work, but I don't really want any Poop.");
}
</code></pre>
<p>However, that doesn't really work for determining an unknown object's class. There's other prototype things you can do to check for class that involve <code>toString()</code>, but they only work for built-in objects, not custom classes, and this is a drawback of prototyping that's not specific to MooTools.</p>
<p>If you check out the <a href="http://books.google.ca/books?id=2weL0iAfrEMC" rel="nofollow">5th Edition of Javascript, The Definitive Guide</a>, page 174, chapter 9.7, there's a nice discussion on it there. Basically the recommendation is to populate your custom classes with a <code>classname</code> property, and override the default base Object class <code>toString()</code> method to check this property when you're calling it on a custom class.</p>
http://stackoverflow.com/questions/837729/how-to-get-the-name-of-a-mootools-class-from-within/838530#8385303Answer by seanmonstar for How to get the name of a Mootools class from withinseanmonstar2009-05-08T06:52:06Z2009-05-08T18:43:35Z<p>Found a solution. <a href="http://mootools.net/docs/core/Native/Hash#Hash:keyOf" rel="nofollow">Hash has a keyOf function</a>, which will give me the variable name that holds a value. So I made a Hash of window, and then asked for the key of the class constructor.</p>
<pre><code>var Poop = new Class({
name: function() {
var w = $H(window);
return w.keyOf(this.constructor);
}
});
var a = new Poop();
a.name(); // returns 'Poop'
</code></pre>
<p>This of course works only because I create classes in the global window namespace (as is common with MooTools). If you made classes inside some namespace, then you'd just need to Hash that namespace instead.</p>
<p>Edit: <a href="http://mcarthurgfx.com/blog/article/get-class-of-an-instance" rel="nofollow">I wrote up</a> about how to use this solution and how to make it work in namespaces automatically, for any MooToolers interested.</p>