diff --git a/package.json b/package.json
index 060a5f0..7ca5b04 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "@braid/vue-formulate-next",
+ "name": "@braid/vue-formulate",
"version": "2.0.0-alpha.1",
"description": "The easiest way to build forms in Vue.",
"main": "dist/formulate.umd.js",
diff --git a/src~v1/components/Formulate.vue b/src~v1/components/Formulate.vue
deleted file mode 100644
index 5003d3c..0000000
--- a/src~v1/components/Formulate.vue
+++ /dev/null
@@ -1,181 +0,0 @@
-
-
-
-
-
diff --git a/src~v1/components/FormulateElement.vue b/src~v1/components/FormulateElement.vue
deleted file mode 100644
index 0274311..0000000
--- a/src~v1/components/FormulateElement.vue
+++ /dev/null
@@ -1,458 +0,0 @@
-
-
-
-
-
diff --git a/src~v1/errors.js b/src~v1/errors.js
deleted file mode 100644
index e19e446..0000000
--- a/src~v1/errors.js
+++ /dev/null
@@ -1,7 +0,0 @@
-export default {
- required: ({label, value}) => `${label} is required`,
- email: ({label, value}) => `${label} is invalid.`,
- confirmed: ({label, value}) => `${label} does not match the confirmation field.`,
- number: ({label, value}) => `${label} is not a number`,
- default: ({label, value}) => `This field is invalid.`
-}
diff --git a/src~v1/formulate.js b/src~v1/formulate.js
deleted file mode 100644
index d84a722..0000000
--- a/src~v1/formulate.js
+++ /dev/null
@@ -1,115 +0,0 @@
-import FormulateGroup from './components/Formulate'
-import FormulateElement from './components/FormulateElement'
-import DefaultRules from './rules'
-import DefaultErrors from './errors'
-
-class Formulate {
- /**
- * Initialize vue-formulate.
- */
- constructor () {
- this.defaultOptions = {
- registerComponents: true,
- tags: {
- Formulate: 'formulate',
- FormulateElement: 'formulate-element'
- },
- errors: {},
- rules: {},
- vuexModule: false
- }
- this.errors = DefaultErrors
- this.rules = DefaultRules
- }
-
- /**
- * Install vue-formulate as an instance of Vue.
- * @param {Vue} Vue
- */
- install (Vue, options = {}) {
- Vue.prototype.$formulate = this
- options = Object.assign(this.defaultOptions, options)
- if (options.registerComponents) {
- Vue.component(options.tags.Formulate, FormulateGroup)
- Vue.component(options.tags.FormulateElement, FormulateElement)
- }
- if (options.errors) {
- this.errors = Object.assign(this.errors, options.errors)
- }
- if (options.rules) {
- this.rules = Object.assign(this.rules, options.rules)
- }
- this.options = options
- }
-
- /**
- * Given a string of rules parse them out to relevant pieces/parts
- * @param {string} rulesString
- */
- parseRules (rulesString) {
- return rulesString.split('|')
- .map(rule => rule.trim())
- .map(rule => rule.match(/([a-zA-Z0-9]+)\((.*)?\)/) || [null, rule, ''])
- .map(([ruleString, rule, args]) => Object.assign({}, {rule}, args ? {
- args: args.split(',').map(arg => arg.trim())
- } : {args: []}))
- }
-
- /**
- * Return the function that generates a validation error message for a given
- * validation rule.
- * @param {string} rule
- */
- errorFactory (rule) {
- return this.errors[rule] ? this.errors[rule] : this.errors['default']
- }
-
- /**
- * Given a particular field, value, validation rules, and form values
- * perform asynchronous field validation.
- * @param {Object} validatee
- * @param {string} rulesString
- * @param {Object} values
- */
- async validationErrors ({field, value, label}, rulesString, values) {
- return rulesString ? Promise.all(
- this.parseRules(rulesString)
- .map(({rule, args}) => {
- if (typeof this.rules[rule] !== 'function') {
- throw new Error(`Validation rule is invalid: ${rule}`)
- }
- return this.rules[rule]({field, value, label, error: this.errorFactory(rule), values}, ...args)
- })
- ).then(responses => responses.reduce((errors, error) => {
- return error ? (Array.isArray(errors) ? errors.concat(error) : [error]) : errors
- }, false)) : false
- }
-}
-const formulate = new Formulate()
-export default formulate
-export * from './store'
-
-/**
- * Mapper to allow bindings to the vuex store for custom fields.
- * @param {Object} definitions
- */
-export const mapModels = (definitions) => {
- const models = {}
- for (let mapTo in definitions) {
- let [form, field] = definitions[mapTo].split('/')
- models[mapTo] = {
- set (value) {
- let m = formulate.options.vuexModule ? `${formulate.options.vuexModule}/` : ''
- this.$store.commit(`${m}setFieldValue`, {form, field, value})
- },
- get () {
- let m = formulate.options.vuexModule ? `${formulate.options.vuexModule}/` : ''
- if (this.$store.getters[`${m}formValues`][form]) {
- return this.$store.getters[`${m}formValues`][form][field]
- }
- return ''
- }
- }
- }
- return models
-}
diff --git a/src~v1/rules.js b/src~v1/rules.js
deleted file mode 100644
index 324b487..0000000
--- a/src~v1/rules.js
+++ /dev/null
@@ -1,41 +0,0 @@
-export default {
- /**
- * Validate a required field.
- * @param {Object} field
- * @param {string} label
- */
- async required ({value, error}) {
- return (!value || (Array.isArray(value) && !value.length)) ? error(...arguments) : false
- },
-
- /**
- * Validates the field contains only numbers
- * @param {Object} field
- * @param {string} label
- */
- async number ({value, error}) {
- return isNaN(value) ? error(...arguments) : false
- },
-
- /**
- * Validate email addresses
- * @param {Object} field
- * @param {string} label
- */
- async email ({value, error}) {
- // eslint-disable-next-line
- var re = /^(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])$/;
- return (value && !re.test(value.toLowerCase())) ? error(...arguments) : false
- },
-
- /**
- * Check if a particular field is matches another field in the form.
- * @param {Object} field
- * @param {string} label
- * @param {string} confirmField (uses `${field}_confirmation` by default)
- */
- async confirmed ({field, value, error, values}, confirmField) {
- confirmField = confirmField || `${field}_confirmation`
- return (value && value !== values[confirmField]) ? error(...arguments) : false
- }
-}
diff --git a/src~v1/store.js b/src~v1/store.js
deleted file mode 100644
index 4831495..0000000
--- a/src~v1/store.js
+++ /dev/null
@@ -1,112 +0,0 @@
-import {map, reduce, filter} from './utils'
-
-/**
- * Curried function for creating the formState
- * @param {Object} options
- */
-export const formulateState = (options = {}) => () => Object.assign({
- values: {},
- errors: {},
- validationErrors: {},
- meta: {}
-}, options)
-
-/**
- * Function for creating the formGetters
- * @param {string} module
- * @param {Object} getters
- */
-export const formulateGetters = (moduleName = '', getters = {}) => Object.assign({
- formValues (state) {
- return state.values
- },
- formErrors (state) {
- return state.errors
- },
- formValidationErrors (state) {
- return state.validationErrors
- },
- formMeta (state) {
- return reduce(state.meta, (forms, form, fields) => {
- forms[form] = reduce(fields, (arr, field, data) => arr.concat(data), [])
- return forms
- }, {})
- },
- hasErrors (state) {
- return map(state.errors, (form, errors) => {
- return reduce(errors, (hasErrors, field, errors) => hasErrors || !!errors.length, false)
- })
- },
- hasValidationErrors (state) {
- return map(state.validationErrors, (form, errors) => {
- return reduce(errors, (hasErrors, field, errors) => hasErrors || !!errors.length, false)
- })
- }
-}, getters)
-
-/**
- * Function for creating the formActions
- * @param {string} moduleName
- * @param {Object} actions
- */
-export const formulateActions = (moduleName = '', actions = {}) => Object.assign({
-}, actions)
-
-/**
- * Function for creating the formMutations
- * @param {Object} mutations
- */
-export const formulateMutations = (mutations = {}) => Object.assign({
- setFieldValue (state, {form, field, value}) {
- state.values = Object.assign({}, state.values, {
- [form]: Object.assign({}, state.values[form] || {}, {[field]: value})
- })
- },
- setFieldErrors (state, {form, field, errors}) {
- state.errors = Object.assign({}, state.errors, {
- [form]: Object.assign({}, state.errors[form] || {}, {[field]: errors})
- })
- },
- setFieldValidationErrors (state, {form, field, errors}) {
- state.validationErrors = Object.assign({}, state.validationErrors, {
- [form]: Object.assign({}, state.validationErrors[form] || {}, {[field]: errors})
- })
- },
- setFieldMeta (state, {form, field, data}) {
- state.meta = Object.assign({}, state.meta, {
- [form]: Object.assign({}, state.meta[form] || {}, {[field]: data})
- })
- },
- resetForm (state, form) {
- if (state.values[form]) {
- state.values = Object.assign({}, state.values, {
- [form]: map(state.values[form], (key, value) => undefined)
- })
- }
- },
- removeField (state, {form, field}) {
- for (let group in state) {
- if (state[group][form] && state[group][form].hasOwnProperty(field)) {
- state[group][form] = filter(state[group][form], (key, value) => key !== field)
- }
- }
- },
- removeFieldValidationErrors (state, {form, field}) {
- state.validationErrors = Object.assign({}, state.validationErrors, {
- [form]: filter(state.validationErrors[form] || {}, key => key !== field)
- })
- }
-}, mutations)
-
-/**
- * Function for exposing a full vuex module.
- * @param {string} moduleName
- * @param {Object} validation
- */
-export const formulateModule = (moduleName) => ({
- state: formulateState(),
- getters: formulateGetters(moduleName),
- actions: formulateActions(moduleName),
- mutations: formulateMutations(),
- namespaced: true
-})
diff --git a/src~v1/utils.js b/src~v1/utils.js
deleted file mode 100644
index 6ff6fe4..0000000
--- a/src~v1/utils.js
+++ /dev/null
@@ -1,95 +0,0 @@
-import cloneDeep from 'clone-deep'
-
-/**
- * Compare the equality of two arrays.
- * @param {Array} arr1
- * @param {Array} arr2
- */
-export function equals (arr1, arr2) {
- var length = arr1.length
- if (length !== arr2.length) return false
- for (var i = 0; i < length; i++) {
- if (arr1[i] !== arr2[i]) {
- return false
- }
- }
- return true
-}
-
-/**
- * Function to map over an object.
- * @param {Object} obj An object to map over
- * @param {Function} callback
- */
-export function map (original, callback) {
- let obj = cloneDeep(original)
- for (let key in obj) {
- obj[key] = callback(key, obj[key])
- }
- return obj
-}
-
-/**
- * Function to filter an object's properties
- * @param {Object} original
- * @param {Function} callback
- */
-export function filter (original, callback) {
- let obj = {}
- for (let key in original) {
- if (callback(key, original[key])) {
- obj[key] = original[key]
- }
- }
- return obj
-}
-
-/**
- * Function to reduce an object's properties
- * @param {Object} original
- * @param {Function} callback
- * @param {*} accumulator
- */
-export function reduce (original, callback, accumulator) {
- for (let key in original) {
- accumulator = callback(accumulator, key, original[key])
- }
- return accumulator
-}
-
-/**
- * Comprehensive list of input types supported.
- */
-export const inputTypes = {
- text: [
- 'text',
- 'email',
- 'number',
- 'color',
- 'date',
- 'datetime-local',
- 'hidden',
- 'month',
- 'password',
- 'range',
- 'search',
- 'tel',
- 'time',
- 'url',
- 'week'
- ],
- button: [
- 'submit',
- 'button'
- ],
- select: [
- 'select'
- ],
- box: [
- 'radio',
- 'checkbox'
- ],
- textarea: [
- 'textarea'
- ]
-}