~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/javascript/client.js

  • Committer: Curtis Hovey
  • Date: 2011-05-27 21:53:34 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527215334-jqlkmt52nnl4bpeh
Moved launchpad.event into registry interfaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
    }
165
165
};
166
166
 
167
 
 
168
 
/**
169
 
 * Get the URL of the view for an Entry
170
 
 * @method get_view_url
171
 
 * @param {Entry} entry
172
 
 * @param {String} view_name
173
 
 * @param {String} namespace
174
 
 * @return {String} URL
175
 
 */
176
 
module.get_view_url = function(entry, view_name, namespace){
177
 
    entry_url = Y.lp.get_url_path(entry.get('web_link'));
178
 
    return entry_url + '/' + view_name + '/++' + namespace + '++';
179
 
};
180
 
 
181
 
 
182
 
/**
183
 
 * Get the URL of the form for a view for an Entry
184
 
 * @method get_form_url
185
 
 * @param {Entry} entry
186
 
 * @param {String} view_name
187
 
 * @return {String} URL
188
 
 */
189
 
module.get_form_url = function(entry, view_name) {
190
 
    return module.get_view_url(entry, view_name, 'form');
191
 
};
192
 
 
193
 
 
194
 
module.load_model = function(entry, view_name, config){
195
 
    var url = module.get_view_url(entry, view_name, 'model');
196
 
    var old_on_success = config.on.success;
197
 
    var on = config.on;
198
 
    on.success = module.wrap_resource_on_success;
199
 
    var y_config = {
200
 
        on: on,
201
 
        'arguments': [entry.lp_client, url, old_on_success, false]
202
 
    };
203
 
    var io = config.io;
204
 
    if (!Y.Lang.isValue(io)) {
205
 
        io = Y.io;
206
 
    }
207
 
    io(url, y_config);
208
 
};
209
 
 
210
 
 
211
167
module.add_accept = function(config, headers) {
212
168
    if (headers === undefined) {
213
169
        headers = {};
746
702
    },
747
703
 
748
704
    'wrap_resource': function(uri, representation) {
749
 
        var key;
750
 
        var new_representation;
751
705
        /* Given a representation, turn it into a subclass of Resource. */
752
706
        if (representation === null || representation === undefined) {
753
707
            return representation;
763
717
                // It's a list. Treat it as a collection;
764
718
                // it should be slicable.
765
719
                return new Collection(this, representation, uri);
766
 
            } else if (Y.Lang.isObject(representation)) {
767
 
                // It's an Array or mapping.  Recurse into it.
768
 
                if (Y.Lang.isArray(representation)) {
769
 
                    new_representation = [];
770
 
                }
771
 
                else {
772
 
                    new_representation = {};
773
 
                }
774
 
                for (key in representation) {
775
 
                    if (representation.hasOwnProperty(key)) {
776
 
                        var value = representation[key];
777
 
                        if (Y.Lang.isValue(value)) {
778
 
                            value = this.wrap_resource(
779
 
                                value.self_link, value);
780
 
                        }
781
 
                        new_representation[key] = value;
782
 
                    }
783
 
                }
784
 
                return new_representation;
785
720
            } else {
786
721
                // It's a random JSON object. Leave it alone.
787
722
                return representation;
909
844
module.FormErrorHandler = FormErrorHandler;
910
845
 
911
846
 
912
 
}, "0.1",
913
 
    {"requires":["attribute", "io", "json-parse", "json-stringify", "lp"]});
 
847
}, "0.1" ,{"requires":["attribute", "io", "json-parse", "json-stringify"]});
914
848
 
915
849
 
916
850
YUI.add('lp.client.plugins', function (Y) {