-
Notifications
You must be signed in to change notification settings - Fork 55
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
Fixes #57: attr-for-selected
now always expects hyphenated names.
#101
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!-- | ||
Copyright (c) 2016 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"> | ||
|
||
<dom-module id="attr-reflector"> | ||
<template> | ||
<div>{{someAttr}}</div> | ||
</template> | ||
<script> | ||
Polymer({ | ||
is: 'attr-reflector', | ||
|
||
properties: { | ||
someAttr: { | ||
type: String, | ||
value: "", | ||
reflectToAttribute: true | ||
} | ||
} | ||
}); | ||
</script> | ||
</dom-module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
<!doctype html> | ||
<!-- | ||
Copyright (c) 2016 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 | ||
--> | ||
|
||
<html> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add copyright comment. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (done) |
||
<head> | ||
|
||
<title>iron-selector attr-for-selected</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> | ||
|
||
<script src="../../webcomponentsjs/webcomponents-lite.js"></script> | ||
<script src="../../web-component-tester/browser.js"></script> | ||
<script src="../../test-fixture/test-fixture-mocha.js"></script> | ||
|
||
<link rel="import" href="../../test-fixture/test-fixture.html"> | ||
<link rel="import" href="../../iron-test-helpers/iron-test-helpers.html"> | ||
<link rel="import" href="../attr-for-selected-elements.html"> | ||
|
||
<link rel="import" href="../iron-selector.html"> | ||
|
||
<style> | ||
.iron-selected { | ||
background: #ccc; | ||
} | ||
|
||
.my-selected { | ||
background: red; | ||
} | ||
</style> | ||
|
||
</head> | ||
<body> | ||
|
||
<test-fixture id="inlineAttributes"> | ||
<template> | ||
<iron-selector attr-for-selected="some-attr"> | ||
<div some-attr="value0">Item 0</div> | ||
<div some-attr="value1">Item 1</div> | ||
<div some-attr="value2">Item 2</div> | ||
</iron-selector> | ||
</template> | ||
</test-fixture> | ||
|
||
<test-fixture id="reflectedProperties"> | ||
<template> | ||
<iron-selector attr-for-selected="some-attr"> | ||
<attr-reflector>Item 0</attr-reflector> | ||
<attr-reflector>Item 1</attr-reflector> | ||
<attr-reflector>Item 2</attr-reflector> | ||
</iron-selector> | ||
</template> | ||
</test-fixture> | ||
|
||
<test-fixture id="mixedPropertiesAndAttributes"> | ||
<template> | ||
<iron-selector attr-for-selected="some-attr"> | ||
<attr-reflector>Item 0</attr-reflector> | ||
<attr-reflector>Item 1</attr-reflector> | ||
<div some-attr="value2">Item 2</div> | ||
<div some-attr="value3">Item 3</div> | ||
<attr-reflector>Item 4</attr-reflector> | ||
<div some-attr="value5">Item 5</div> | ||
</iron-selector> | ||
</template> | ||
</test-fixture> | ||
|
||
<script> | ||
suite('inline attributes', function() { | ||
var selector; | ||
var items; | ||
|
||
setup(function () { | ||
selector = fixture('inlineAttributes'); | ||
items = Array.prototype.slice.apply(selector.querySelectorAll('div[some-attr]')); | ||
}); | ||
|
||
test('selecting value programatically selects correct item', function() { | ||
selector.select('value1'); | ||
assert.equal(selector.selectedItem, items[1]); | ||
}); | ||
|
||
test('selecting item sets the correct selected value', function(done) { | ||
MockInteractions.downAndUp(items[2], function() { | ||
assert.equal(selector.selected, 'value2'); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
|
||
suite('reflected properties as attributes', function() { | ||
var selector; | ||
var items; | ||
|
||
setup(function () { | ||
selector = fixture('reflectedProperties'); | ||
items = Array.prototype.slice.apply(selector.querySelectorAll('attr-reflector')); | ||
for (var i = 0; i < items.length; i++) { | ||
items[i].someAttr = "value" + i; | ||
} | ||
}); | ||
|
||
test('selecting value programatically selects correct item', function() { | ||
selector.select('value1'); | ||
assert.equal(selector.selectedItem, items[1]); | ||
}); | ||
|
||
test('selecting item sets the correct selected value', function(done) { | ||
MockInteractions.downAndUp(items[2], function() { | ||
assert.equal(selector.selected, 'value2'); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
|
||
suite('mixed properties and inline attributes', function() { | ||
var selector; | ||
var items; | ||
|
||
setup(function () { | ||
selector = fixture('mixedPropertiesAndAttributes'); | ||
items = Array.prototype.slice.apply(selector.querySelectorAll('attr-reflector, div[some-attr]')); | ||
for (var i = 0; i < items.length; i++) { | ||
items[i].someAttr = "value" + i; | ||
} | ||
}); | ||
|
||
test('selecting value programatically selects correct item', function() { | ||
for (var i = 0; i < items.length; i++) { | ||
selector.select('value' + i); | ||
assert.equal(selector.selectedItem, items[i]); | ||
} | ||
}); | ||
|
||
test('selecting item sets the correct selected value', function(done) { | ||
var i = 0; | ||
|
||
function testSelectItem(i) { | ||
if (i >= items.length) { | ||
done(); | ||
return; | ||
} | ||
|
||
MockInteractions.downAndUp(items[i], function() { | ||
assert.equal(selector.selected, 'value' + i); | ||
|
||
testSelectItem(i + 1); | ||
}); | ||
} | ||
|
||
testSelectItem(i); | ||
}); | ||
}); | ||
</script> | ||
|
||
</body> | ||
</html> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This caching is way broken (static)! Don't merge until I've fixed it!