Uploaded image for project: 'Shindig'
  1. Shindig
  2. SHINDIG-1248

UserPref problems in example container code: gadgets.js and cookiebaseduserprefstore.js

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Minor
    • Resolution: Unresolved
    • None
    • None
    • Javascript
    • None

    Description

      I was trying to create a simple test container which supported user preferences based on the pubsub example but I encountered a number of bugs in the example container javascript files.

      In gadgets.js the setUserPref function appears to be setting the preference in the GadgetService object instead of the Gadget object. Also the ways it runs the loop processing the function arguments might give an unwanted effect if no value was specified for the last name argument. The fixed function is:

      gadgets.IfrGadgetService.prototype.setUserPref = function(editToken, name, value) {
      var id = gadgets.container.gadgetService.getGadgetIdFromModuleId(this.f);
      var gadget = gadgets.container.getGadget(id);
      for (var i = 2, j = arguments.length; i < j; i += 2)

      { // *** run loop using the value argument to detect the end *** gadget.userPrefs[arguments[i - 1]] = arguments[i]; // *** argument accesses changed *** }

      gadget.saveUserPrefs(); // *** use gadget instead of this ***
      };

      In gadgets.js the getUserPrefValue and handleSaveUserPrefs functions fail to fetch/store the value for a preference because they seem to think that it is stored as a value attribute; it isn't according to the rest of the code. The fixed functions are:

      gadgets.Gadget.prototype.getUserPrefValue = function(name) {
      var pref = this.userPrefs[name];
      return typeof(pref) != 'undefined' && pref != null ? // *** .value deleted from this line twice ***
      pref : this.userPrefs['default']; // *** .value deleted from this line ***
      };

      (Actually in the above is there really any point in fetching a global default value for a preference that doesn't have a value set? This probably isn't going to be the correct default value as given by the gadget specification.)

      gadgets.IfrGadget.prototype.handleSaveUserPrefs = function() {
      this.hideUserPrefsDialog();

      var numFields = document.getElementById('m_' + this.id +
      '_numfields').value;
      for (var i = 0; i < numFields; i++)

      { var input = document.getElementById('m_' + this.id + '_' + i); var userPrefNamePrefix = 'm_' + this.id + '_up_'; var userPrefName = input.name.substring(userPrefNamePrefix.length); var userPrefValue = input.value; this.userPrefs[userPrefName] = userPrefValue; // *** .value deleted from this line *** }

      this.saveUserPrefs();
      this.refresh();
      };

      The current settings of the user preferences are not loaded into the gadget during its creation. I added a comment to SHINDIG-181 about this but here is the fixed function anyway:

      gadgets.Container.prototype.addGadget = function(gadget)
      {
      gadget.id = this.getNextGadgetInstanceId();
      this.gadgets_[this.getGadgetKey_(gadget.id)] = gadget;
      gadget.userPrefs = this.userPrefStore.getPrefs(gadget); // *** new line ***
      };

      In cookiebaseduserprefstore.js the savePrefs function is trying to fetch a preference value by calling getUserPref on the gadget but the function is should be calling is getUserPrefValue. However, it would be neater to simple use the userPrefs object it fetched to find the preference names directly. The fixed function is:

      gadgets.CookieBasedUserPrefStore.prototype.savePrefs = function(gadget) {
      var pairs = [];
      var prefs = gadget.getUserPrefs(); // *** new line ***
      for (var name in prefs)

      { // *** use the fetched prefs *** var pair = encodeURIComponent(name) + '=' + encodeURIComponent(prefs[name]); // *** access the fetched prefs directly *** pairs.push(pair); }

      var cookieName = this.USER_PREFS_PREFIX + gadget.id;
      var cookieValue = pairs.join('&');
      shindig.cookies.set(cookieName, cookieValue);
      };

      Attachments

        Activity

          People

            Unassigned Unassigned
            bgodden Bruce Godden
            Votes:
            2 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: