Blame view

bower_components/iron-jsonp-library/iron-jsonp-library.html 7.4 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  <!--
  @license
  Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
  This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
  The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
  Code distributed by Google as part of the polymer project is also
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
  -->
  <link rel="import" href="../polymer/polymer.html">
  
  <script>
  (function() {
    "use strict";
    /**
      `Polymer.IronJsonpLibraryBehavior` loads a jsonp library.
      Multiple components can request same library, only one copy will load.
  
      Some libraries require a specific global function be defined.
      If this is the case, specify the `callbackName` property.
  
      You should use an HTML Import to load library dependencies
      when possible instead of using this element.
  
      @hero hero.svg
      @demo demo/index.html
      @polymerBehavior
     */
    Polymer.IronJsonpLibraryBehavior = {
  
      properties: {
        /**
         * True if library has been successfully loaded
         */
        libraryLoaded: {
          type: Boolean,
          value: false,
          notify: true,
          readOnly: true
        },
        /**
         * Not null if library has failed to load
         */
        libraryErrorMessage: {
          type: String,
          value: null,
          notify: true,
          readOnly: true
        }
        // Following properties are to be set by behavior users
        /**
c5169e0e   Renato De Donato   a new hope
52
         * Library url. Must contain string `%%callback_name%%`.
73bcce88   luigser   COMPONENTS
53
         *
c5169e0e   Renato De Donato   a new hope
54
         * `%%callback_name%%` is a placeholder for jsonp wrapper function name
73bcce88   luigser   COMPONENTS
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
         *
         * Ex: https://maps.googleapis.com/maps/api/js?callback=%%callback%%
         * @property libraryUrl
         */
        /**
         * Set if library requires specific callback name.
         * Name will be automatically generated if not set.
         * @property callbackName
         */
        /**
         * name of event to be emitted when library loads. Standard is `api-load`
         * @property notifyEvent
         */
        /**
         * event with name specified in `notifyEvent` attribute
         * will fire upon successful load2
         * @event `notifyEvent`
         */
      },
  
      observers: [
        '_libraryUrlChanged(libraryUrl)'
      ],
  
      _libraryUrlChanged: function(libraryUrl) {
        // can't load before ready because notifyEvent might not be set
        if (this._isReady && this.libraryUrl)
          this._loadLibrary();
      },
  
      _libraryLoadCallback: function(err, result) {
        if (err) {
          console.warn("Library load failed:", err.message);
          this._setLibraryErrorMessage(err.message);
        }
        else {
          this._setLibraryErrorMessage(null);
          this._setLibraryLoaded(true);
          if (this.notifyEvent)
            this.fire(this.notifyEvent, result);
        }
      },
  
      /** loads the library, and fires this.notifyEvent upon completion */
      _loadLibrary: function() {
        LoaderMap.require(
          this.libraryUrl,
          this._libraryLoadCallback.bind(this),
          this.callbackName
        );
      },
  
      ready: function() {
        this._isReady = true;
        if (this.libraryUrl)
          this._loadLibrary();
      }
    };
  
    /**
     * LoaderMap keeps track of all Loaders
     */
    var LoaderMap = {
      apiMap: {}, // { hash -> Loader }
  
      /**
       * @param {Function} notifyCallback loaded callback fn(result)
       * @param {string} jsonpCallbackName name of jsonpcallback. If API does not provide it, leave empty. Optional.
       */
      require: function(url, notifyCallback, jsonpCallbackName) {
  
        // make hashable string form url
        var name = this.nameFromUrl(url);
  
        // create a loader as needed
        if (!this.apiMap[name])
          this.apiMap[name] = new Loader(name, url, jsonpCallbackName);
  
        // ask for notification
        this.apiMap[name].requestNotify(notifyCallback);
      },
  
      nameFromUrl: function(url) {
        return url.replace(/[\:\/\%\?\&\.\=\-\,]/g, '_') + '_api';
      }
    };
  
    /** @constructor */
    var Loader = function(name, url, callbackName) {
      this.notifiers = [];  // array of notifyFn [ notifyFn* ]
  
      // callback is specified either as callback name
      // or computed dynamically if url has callbackMacro in it
      if (!callbackName) {
        if (url.indexOf(this.callbackMacro) >= 0) {
          callbackName = name + '_loaded';
          url = url.replace(this.callbackMacro, callbackName);
        } else {
c5169e0e   Renato De Donato   a new hope
153
          this.error = new Error('IronJsonpLibraryBehavior a %%callback_name%% parameter is required in libraryUrl');
73bcce88   luigser   COMPONENTS
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
          // TODO(sjmiles): we should probably fallback to listening to script.load
          return;
        }
      }
      this.callbackName = callbackName;
      window[this.callbackName] = this.success.bind(this);
      this.addScript(url);
    };
  
    Loader.prototype = {
  
      callbackMacro: '%%callback%%',
      loaded: false,
  
      addScript: function(src) {
        var script = document.createElement('script');
        script.src = src;
        script.onerror = this.handleError.bind(this);
        var s = document.querySelector('script') || document.body;
        s.parentNode.insertBefore(script, s);
        this.script = script;
      },
  
      removeScript: function() {
        if (this.script.parentNode) {
          this.script.parentNode.removeChild(this.script);
        }
        this.script = null;
      },
  
      handleError: function(ev) {
        this.error = new Error("Library failed to load");
        this.notifyAll();
        this.cleanup();
      },
  
      success: function() {
        this.loaded = true;
        this.result = Array.prototype.slice.call(arguments);
        this.notifyAll();
        this.cleanup();
      },
  
      cleanup: function() {
        delete window[this.callbackName];
      },
  
      notifyAll: function() {
        this.notifiers.forEach( function(notifyCallback) {
          notifyCallback(this.error, this.result);
        }.bind(this));
        this.notifiers = [];
      },
  
      requestNotify: function(notifyCallback) {
        if (this.loaded || this.error) {
          notifyCallback( this.error, this.result);
        } else {
          this.notifiers.push(notifyCallback);
        }
      }
    };
  })();
  </script>
  
  <!--
    Loads specified jsonp library.
  
    Example:
  
c5169e0e   Renato De Donato   a new hope
224
225
226
227
      <iron-jsonp-library
        library-url="https://apis.google.com/js/plusone.js?onload=%%callback%%"
        notify-event="api-load"
        library-loaded="{{loaded}}"></iron-jsonp-library>
73bcce88   luigser   COMPONENTS
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
  
    Will emit 'api-load' event when loaded, and set 'loaded' to true
  
    Implemented by  Polymer.IronJsonpLibraryBehavior. Use it
    to create specific library loader elements.
  
    @demo
  -->
  <script>
    Polymer({
  
      is: 'iron-jsonp-library',
  
      behaviors: [ Polymer.IronJsonpLibraryBehavior ],
  
      properties: {
        /**
c5169e0e   Renato De Donato   a new hope
245
         * Library url. Must contain string `%%callback_name%%`.
73bcce88   luigser   COMPONENTS
246
         *
c5169e0e   Renato De Donato   a new hope
247
         * `%%callback_name%%` is a placeholder for jsonp wrapper function name
73bcce88   luigser   COMPONENTS
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
         *
         * Ex: https://maps.googleapis.com/maps/api/js?callback=%%callback%%
         */
        libraryUrl: String,
        /**
         * Set if library requires specific callback name.
         * Name will be automatically generated if not set.
         */
        callbackName: String,
        /**
         * event with name specified in 'notifyEvent' attribute
         * will fire upon successful load
         */
        notifyEvent: String
        /**
         * event with name specified in 'notifyEvent' attribute
         * will fire upon successful load
         * @event `notifyEvent`
         */
  
      }
    });
  
  </script>