Skip to content

Commit d07aaeb

Browse files
author
jhickerson
committed
init commit
0 parents  commit d07aaeb

File tree

4 files changed

+148
-0
lines changed

4 files changed

+148
-0
lines changed

bower.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "xenon-fullname-input",
3+
"version": "1.0",
4+
"description": "one input field splits value into first, middle, and last name",
5+
"authors": [
6+
"ACA[X]Labs"
7+
],
8+
"keywords": [
9+
"web-components",
10+
"polymer",
11+
"router"
12+
],
13+
"main": "xenon-fullname-input.html",
14+
"private": true,
15+
"repository": {
16+
"type": "git",
17+
"url": "git://github.com/BenefitGeek/XenonFullnameInput.git"
18+
},
19+
"license": "https://github.com/BenefitGeek/XenonFullnameInput/blob/master/LICENSE.txt",
20+
"homepage": "https://github.com/BenefitGeek/XenonFullnameInput",
21+
"ignore": [],
22+
"dependencies": {
23+
"polymer": "Polymer/polymer#^1.2.0",
24+
"paper-input": "PolymerElements/paper-input#^1.0.15"
25+
},
26+
"devDependencies": {
27+
}
28+
}

demo/index.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<title></title>
5+
</head>
6+
<body>
7+
<script src="../../webcomponentsjs/webcomponents-lite.min.js"></script>
8+
<link rel="import" href="../xenon-fullname-input.html" />
9+
10+
<xenon-fullname-input id="name" allowed-pattern="[A-Z a-z]" prevent-invalid-input label="Full Name" error-message="First name and last name are required" required></xenon-fullname-input>
11+
<br />
12+
<button onclick="check()">click</button>
13+
14+
<script>
15+
function check() {
16+
var ele = document.getElementById("name");
17+
ele.validate();
18+
}
19+
</script>
20+
</body>
21+
</html>

index.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<title></title>
5+
<script src="../webcomponentsjs/webcomponents-lite.min.js"></script>
6+
<link rel="import" href="../iron-component-page/iron-component-page.html" />
7+
</head>
8+
<body>
9+
<iron-component-page></iron-component-page>
10+
</body>
11+
</html>

xenon-fullname-input.html

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<link rel="import" href="../polymer/polymer.html" />
2+
<link rel="import" href="../paper-input/paper-input.html" />
3+
<!--
4+
@group Xenon Elements
5+
@element xenon-fullname-input
6+
@demo demo/index.html
7+
-->
8+
<dom-module id="xenon-fullname-input">
9+
<template>
10+
<paper-input-container id="container" invalid="{{invalid}}">
11+
<label style="left:40px;" hidden$="[[!label]]">[[label]]</label>
12+
<div class="horizontal layout">
13+
<input is="iron-input"
14+
id="input"
15+
class="flex"
16+
aria-labelledby$="[[_ariaLabelledBy]]"
17+
aria-describedby$="[[_ariaDescribedBy]]"
18+
required$="[[required]]"
19+
bind-value="{{value}}"
20+
name$="[[name]]"
21+
disabled$="[[disabled]]"
22+
invalid="{{invalid}}"
23+
autofocus$="[[autofocus]]"
24+
inputmode$="[[inputmode]]"
25+
placeholder$="[[placeholder]]"
26+
readonly$="[[readonly]]"
27+
pattern$="[[pattern]]"
28+
maxlength$="[[length]]"
29+
prevent-invalid-input="[[preventInvalidInput]]"
30+
allowed-pattern="[[allowedPattern]]">
31+
</div>
32+
<template is="dom-if" if="[[errorMessage]]">
33+
<paper-input-error id="error">[[errorMessage]]</paper-input-error>
34+
</template>
35+
</paper-input-container>
36+
</template>
37+
<script>
38+
Polymer({
39+
is: "xenon-fullname-input",
40+
properties: {
41+
value: { type: String, notify: true, value: "" },
42+
firstname: { type: String, notify: true, value: "" },
43+
middlename: { type: String, notify: true, value: "" },
44+
lastname: { type: String, notify: true, value: "" },
45+
},
46+
behaviors: [
47+
Polymer.PaperInputBehavior,
48+
Polymer.IronValidatableBehavior,
49+
Polymer.IronFormElementBehavior
50+
],
51+
fullnamesplit: function () {
52+
var fullname = this.value.trim();
53+
var temp = fullname.split(" ");
54+
55+
var firstName = "";
56+
var middleName = "";
57+
var lastName = "";
58+
59+
if (temp.length < 3) {
60+
firstName = temp[0];
61+
lastName = temp[1];
62+
}
63+
else {
64+
firstName = temp[0];
65+
middleName = temp[1];
66+
lastName = temp[2];
67+
}
68+
69+
this.set("firstname", firstName);
70+
this.set("middlename", middleName);
71+
this.set("lastname", lastName);
72+
73+
console.log("fistname: " + this.firstname);
74+
console.log("middlename: " + this.middlename);
75+
console.log("lastname: " + this.lastname);
76+
},
77+
validate: function () {
78+
if (this.value.split(" ").length < 2) {
79+
this.set("invalid", true);
80+
return false;
81+
}
82+
this.fullnamesplit();
83+
console.log(this.$.input.validate());
84+
return this.$.input.validate();
85+
}
86+
})
87+
</script>
88+
</dom-module>

0 commit comments

Comments
 (0)