Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syphon.deserialze does not work with <select multiple> elements #25

Open
SimplGy opened this issue Jun 24, 2013 · 11 comments
Open

Syphon.deserialze does not work with <select multiple> elements #25

SimplGy opened this issue Jun 24, 2013 · 11 comments
Labels

Comments

@SimplGy
Copy link

SimplGy commented Jun 24, 2013

I could definitely have something wrong on my end, but so far it seems like Syphon.serialize will take a multiselect and turn it into an array of strings, but pass the same array of strings back to Syphon.deserialize and the values do not get set. I see that the inputwriter delegates to $el.val(), so this should work OK.

On further investigation, It appears to be failing at Syphon.deserialize where the key is used to pull data:

Syphon.deserialize = function(view, data, options){
    /* ... */
    var value = flattenedData[key]; // <--------- This returns undefined, even though the console shows that this contains an array
    inputWriter($el, value);
  });

flattenedData at this point in the execution contains an array at the key of handedness, but it is not accessible for some reason.

flattenedData
  gender: "Female"
  guest: false
  handedness[]: Array[2]
  id: 37
  nickname: "oo@oo.com"
  state: null
@SimplGy
Copy link
Author

SimplGy commented Jun 24, 2013

I learned this:

flattenedData["handedness"] // undefined
flattenedData["handedness[]"] // returns expected value

I thought the [] was just a helpful chrome hint. I didn't realize it's part of the key.

I think this means that they keyExtractor for select should add [] if it's multi select. Or those brackets should never be part of the key. I'm not sure why they are there.

@SimplGy
Copy link
Author

SimplGy commented Jun 24, 2013

Since the input writer and the key extractor are both keyed by type, which does not include the multiple distinction on a select, I see two possible solutions:

  1. Change the deserialize method to check for a value at key[] if a value does not exist at key
  2. Change the flattenData method to not add '[]' to the key, ever.

What's the best way to proceed do ya think? Is there another, better way to go?

@SimplGy
Copy link
Author

SimplGy commented Jun 24, 2013

The solution that seems easiest is here:

Syphon.deserialize = function(view, data, options){
// Build the configuration
var config = buildConfig(options);

// Get all of the elements to process
var elements = getInputElements(view, config);

// Flatten the data structure that we are deserializing
var flattenedData = flattenData(config, data);

// Process all of the elements
_.each(elements, function(el){
  var $el = $(el);
  var type = getElementType($el); 

  // Get the key for the input
  var keyExtractor = config.keyExtractors.get(type);
  var key = keyExtractor($el);

  // Get the input writer and the value to write
  var inputWriter = config.inputWriters.get(type);
  var value = flattenedData[key];
  if (!value) { value = flattenedData[key+'[]'] } // keys can either be `name` or `name[]`

  // Write the value to the input
  inputWriter($el, value);
});

Want a pull request?

@SimplGy
Copy link
Author

SimplGy commented Jun 24, 2013

The other way is to comment out line 273 of lib/amd/backbone.syphon.js:

    if (_.isArray(value)){
      //keyName += "[]";
      hash[keyName] = value;
    } else if (_.isObject(value)){
      hash = flattenData(config, value, keyName);
    } else {
      hash[keyName] = value;
    }

I'm not sure what side effects this would have though.

@SebastianTroc
Copy link

@derickbailey, Have you ever intend to combine these changes?

@jamiebuilds
Copy link
Member

@SimpleAsCouldBe @SebastianTroc Sorry this wasn't addressed sooner. It has now been marked critical.

@rafi
Copy link

rafi commented May 22, 2014

Multiple selects definitely do not work. Why is the keyName being suffixed with "[]" in flattenData? That's the real question.

@knarewski
Copy link

The hotfix of @SimpleAsCouldBe (#25 (comment)) worked for me.
Mind the missing bracket at the end when applying the fix

@rhubarbselleven
Copy link
Contributor

Very much related to discussion in #34

@clayzermk1
Copy link

👍 Still seeing this on 0.6.2.

@sonnerti
Copy link

sonnerti commented Feb 4, 2016

Just ran into this issue in 0.6.3! ++ for an fix

@rogelio2k rogelio2k removed their assignment Oct 18, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

9 participants