Last active
October 2, 2017 04:25
-
-
Save alexdiliberto/57ab359f4a2cf940c59e1aa21abe3034 to your computer and use it in GitHub Desktop.
skipValidate ember-changeset-validations demo
This file contains hidden or 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
import Ember from 'ember'; | |
import Changeset from 'ember-changeset'; | |
import lookupValidator from 'ember-changeset-validations'; | |
export default Ember.Component.extend({ | |
init() { | |
this._super(...arguments); | |
let user = Ember.get(this, 'user'); | |
let validations = Ember.get(this, 'validations'); | |
/* | |
NOTE: It is currently necessary to create the changeset programatically through Javascript until the following PR is merged: https://github.com/DockYard/ember-changeset-validations/pull/147. Once merged we can simply use the template helper | |
```{{#with (changeset model validator) as |changeset|}}``` | |
*/ | |
this.changeset = new Changeset(user, lookupValidator(validations), validations, { skipValidate: true } ); | |
} | |
}); |
This file contains hidden or 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
import Ember from 'ember'; | |
const { | |
Component, | |
get, | |
run | |
} = Ember; | |
const DEBOUNCE_TIMER = 400; | |
export default Component.extend({ | |
changeset: null, | |
property: null, | |
actions: { | |
debounce(event) { | |
let val = event.target.value; | |
run.debounce(this, '_updateChangeset', val, DEBOUNCE_TIMER); | |
} | |
}, | |
_updateChangeset(value) { | |
let property = get(this, 'property'); | |
let changeset = get(this, 'changeset'); | |
changeset.set(property, value); | |
} | |
}); |
This file contains hidden or 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
import Ember from 'ember'; | |
import AdultValidations from '../validations/adult'; | |
import ChildValidations from '../validations/child'; | |
import { reservedEmails } from '../validators/uniqueness'; | |
import { schema } from '../models/user'; | |
const { get } = Ember; | |
const { keys } = Object; | |
export default Ember.Controller.extend({ | |
AdultValidations, | |
ChildValidations, | |
reservedEmails, | |
actions: { | |
save(changeset) { | |
let snapshot = changeset.snapshot(); | |
return changeset | |
.cast(keys(schema)) | |
.validate() | |
.then(() => { | |
if (get(changeset, 'isValid')) { | |
return changeset.execute(); | |
} | |
}).catch(() => { | |
changeset.restore(snapshot); | |
}); | |
}, | |
reset(changeset) { | |
return changeset.rollback(); | |
}, | |
validateProperty(changeset, property) { | |
console.log(`validate ${property}`); | |
console.log(changeset.validate(property).then(function(x) { console.log(x); return x; })); | |
return changeset.validate(property); | |
} | |
} | |
}); |
This file contains hidden or 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
import Model from 'ember-data/model'; | |
import attr from 'ember-data/attr'; | |
import { belongsTo, hasMany } from 'ember-data/relationships'; | |
export const schema = { | |
firstName: attr('string'), | |
lastName: attr('string'), | |
email: attr('string'), | |
age: attr('number'), | |
job: attr('string') | |
}; | |
export default Model.extend(schema); |
This file contains hidden or 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
import Ember from 'ember'; | |
export default Ember.Route.extend({ | |
model() { | |
return this.get('store').createRecord('user', { | |
firstName: 'Jim', | |
lastName: 'Bob', | |
age: 10 | |
}); | |
} | |
}); |
This file contains hidden or 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
{ | |
"version": "0.12.1", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.12.0", | |
"ember-template-compiler": "2.12.0", | |
"ember-testing": "2.12.0", | |
"skeleton-css": "https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" | |
}, | |
"addons": { | |
"ember-data": "2.12.1", | |
"ember-changeset-validations": "1.2.8", | |
"ember-one-way-controls": "0.8.3" | |
} | |
} |
This file contains hidden or 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
import Ember from 'ember'; | |
import { validateNumber } from 'ember-changeset-validations/validators'; | |
import UserValidations from './user'; | |
const { assign } = Ember; | |
export default assign({}, UserValidations, { | |
age: validateNumber({ gte: 18 }) | |
}); |
This file contains hidden or 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
import Ember from 'ember'; | |
import { validateNumber } from 'ember-changeset-validations/validators'; | |
import UserValidations from './user'; | |
const { assign } = Ember; | |
export default assign({}, UserValidations, { | |
age: validateNumber({ lt: 18 }) | |
}); |
This file contains hidden or 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
import { | |
validatePresence, | |
validateLength, | |
validateFormat | |
} from 'ember-changeset-validations/validators'; | |
import validateUniqueness from '../validators/uniqueness'; | |
export default { | |
firstName: [ | |
validateLength({ min: 2 }), | |
validatePresence(true) | |
], | |
lastName: [ | |
validatePresence(true), | |
validateLength({ min: 2 }) | |
], | |
email: [ | |
validateUniqueness(), | |
validateFormat({ type: 'email' }) | |
], | |
job: validatePresence(true) | |
} |
This file contains hidden or 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
import Ember from 'ember'; | |
const { RSVP: { resolve } } = Ember; | |
export const reservedEmails = ['[email protected]', '[email protected]']; | |
export default function validateUniqueness() { | |
return (key, newValue, oldValue, changes) => { | |
let isAvailable = reservedEmails.indexOf(newValue) === -1; | |
return resolve(isAvailable || 'is taken'); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment