Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My library got the Javascript part that I'm thriving to properly add JSdocs to it. Basically, a function that returns an object that have multiple functions inside is making me confused. Take this code:

    $.fn.extend({
        reset:function () {
            return this.each(function () {
                if ($(this).is('form')) {
                    this.reset();
                }
            });
        },
        /**
         * Calls phery functions attached to the element
         *
         * @param {String|Object} name String name of the phery function or object containing all calls
         * @param {*} value Arguments for the functions
         * @return {*}
         * @memberOf {jQuery}
         */
        phery:function (name, value) {
            var
                $this = this,
                _out = {
                    /**
                     * Trigger phery exception on the element
                     *
                     * @param {String} msg
                     * @param {*} data
                     * @return {jQuery}
                     */
                    'exception':function (msg, data) {
                        return $this.each(function () {
                            var $this = $(this);
                            triggerPheryEvent($this, 'exception', [msg, data]);
                        });
                    },
                    /**
                     * Call the bound remote function on the element
                     * @return {jQuery}
                     */
                    'remote':function () {
                        return $this.each(function () {
                            var $this = $(this);

                            if ($this.is('form')) {
                                form_submit($this);
                            } else {
                                ajax_call.call($this);
                            }
                        });
                    },
                    /**
                     * Append arguments to the element
                     * @param {...} varargs
                     * @return {Object}
                     */
                    'append_args':function (varargs) {
                        var args = Array.prototype.slice.call(arguments);
                        $this.each(function () {
                            var $this = $(this);
                            append_args.apply($this, [args]);
                        });
                        return _out;
                    },
                    /**
                     * Set the arguments of the element. Prefer using objects or arrays
                     * @param {*} args
                     * @return {Object}
                     */
                    'set_args':function (args) {
                        $this.each(function () {
                            var $this = $(this);
                            set_args.call($this, [args]);
                        });
                        return _out;
                    },
                    /**
                     * Current element arguments
                     *
                     * @return {*}
                     */
                    'get_args':function () {
                        return $this.data('args.phery');
                    },
                    /**
                     * Remove the DOM object from the page, doing some cleanups
                     * @return void
                     */
                    'remove':function () {
                        $this.each(function () {
                            var $this = $(this);
                            $this.data('temp.phery', true);
                            clean_up($this);
                        });
                    },
                    /**
                     * Make the current elements ajaxified
                     *
                     * @param {String} func Name of the AJAX function
                     * @param {*} args Arguments
                     * @return {jQuery}
                     */
                    'make':function (func, args) {
                        if (Object.toType(func) === 'string') {
                            return $this.each(function () {
                                var $this = $(this);
                                $this.attr('data-remote', func).data('remote.phery', func);
                                if (args) {
                                    set_args.call($this, [args]);
                                }
                            });
                        }
                        return $this;
                    },
                    /**
                     * Remove phery from the current element.
                     * @param {Boolean} unbind Unbind phery events
                     * @return {jQuery}
                     */
                    'unmake':function (unbind) {
                        return $this.each(function () {
                            var $this = $(this);
                            if (unbind) {
                                $this.off('.phery');
                            }
                            $.removeData(this, '.phery');
                            $.removeData(this, 'remote');
                            $.removeData(this, 'remote.phery');
                            $this
                                .removeAttr('data-remote')
                                .removeAttr('data-remote.phery')
                                .removeAttr('data-args')
                                .removeAttr('data-args.phery')
                                .removeAttr('data-confirm')
                                .removeAttr('data-confirm.phery');
                        });
                    }
                };

            if (name && Object.toType(name) === 'object') {
                var last;
                for (var x in name) {
                    if (name.hasOwnProperty(x) && (x in _out)) {
                        last = _out[x].apply($this, name[x]);
                    }
                }
                return last;
            } else if (name && (name in _out)) {
                return _out[name].apply($this, Array.prototype.slice.call(arguments, 1));
            }

            return _out;
        },
                    //...

What would be the best way to document each function there? Right now, it's kinda making jsdoc blind. Also, when I want to return a variable, in this case the _out variable, while still maintaining everything encapsulated, how can I do it?

The full code can be seen here https://github.com/pocesar/phery/blob/master/phery.js#L1607

Another thing, I need to know how can I specify required object members for a constructor, like function instance needs to receive {name: "name", callback: function} for example

Thanks in advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.