34de4ba6dc
* Adds support form FormulateError form errors * Adds support for form-errors prop Also includes tests for both named-form-errors as well, form-errors prop, positioning form errors with the <FormulateErrors /> component, and allowing multiple <FormulateErrors /> * Adds form error support, error handling, and supporting tests * Remove unused util functions * Adds german localization locales/de.js (#14) * Create de.js * Added startsWith and endsWith * adds build process for localization support, removes dist * Adds danish localization * fixes bug that resulted in validation failing if run more than once Credit to @luan-nk-nguyen for discovering the bug * Moves locales to vue-formulate-i18n * Adds dist files for locales * Adds vue-formulate-i18n 1.0.1 * Uses i18n 1.0.3 * Build files * Fixes #19 * Update src/locales/README.md Co-Authored-By: Andrew Boyd <andrew@wearebraid.com> * changes v-html to v-text for error message output credit to @skix123 for the bug report! Co-authored-by: Andrew Boyd <andrew@wearebraid.com>
170 lines
3.7 KiB
JavaScript
170 lines
3.7 KiB
JavaScript
import Formulate from '@/Formulate.js'
|
|
|
|
describe('Formulate', () => {
|
|
it('can merge simple object', () => {
|
|
let a = {
|
|
optionA: true,
|
|
optionB: '1234'
|
|
}
|
|
let b = {
|
|
optionA: false
|
|
}
|
|
expect(Formulate.merge(a, b)).toEqual({
|
|
optionA: false,
|
|
optionB: '1234'
|
|
})
|
|
})
|
|
|
|
it('can add to simple array', () => {
|
|
let a = {
|
|
optionA: true,
|
|
optionB: ['first', 'second']
|
|
}
|
|
let b = {
|
|
optionB: ['third']
|
|
}
|
|
expect(Formulate.merge(a, b, true)).toEqual({
|
|
optionA: true,
|
|
optionB: ['first', 'second', 'third']
|
|
})
|
|
})
|
|
|
|
it('can merge recursively', () => {
|
|
let a = {
|
|
optionA: true,
|
|
optionC: {
|
|
first: '123',
|
|
third: {
|
|
a: 'b'
|
|
}
|
|
},
|
|
optionB: '1234'
|
|
}
|
|
let b = {
|
|
optionB: '567',
|
|
optionC: {
|
|
first: '1234',
|
|
second: '789',
|
|
}
|
|
}
|
|
expect(Formulate.merge(a, b)).toEqual({
|
|
optionA: true,
|
|
optionC: {
|
|
first: '1234',
|
|
third: {
|
|
a: 'b'
|
|
},
|
|
second: '789'
|
|
},
|
|
optionB: '567'
|
|
})
|
|
})
|
|
|
|
it('installs on vue instance', () => {
|
|
const components = [
|
|
'FormulateForm',
|
|
'FormulateInput',
|
|
'FormulateErrors',
|
|
'FormulateInputBox',
|
|
'FormulateInputText',
|
|
'FormulateInputFile',
|
|
'FormulateInputGroup',
|
|
'FormulateInputButton',
|
|
'FormulateInputSelect',
|
|
'FormulateInputSlider',
|
|
'FormulateInputTextArea'
|
|
]
|
|
const registry = []
|
|
function Vue () {}
|
|
Vue.component = function (name, instance) {
|
|
registry.push(name)
|
|
}
|
|
Formulate.install(Vue, { extended: true })
|
|
expect(Vue.prototype.$formulate).toBe(Formulate)
|
|
expect(registry).toEqual(components)
|
|
})
|
|
|
|
it('can extend instance in a plugin', () => {
|
|
function Vue () {}
|
|
Vue.component = function (name, instance) {}
|
|
const plugin = function (i) {
|
|
i.extend({
|
|
rules: {
|
|
testRule: () => false
|
|
}
|
|
})
|
|
}
|
|
Formulate.install(Vue, {
|
|
plugins: [ plugin ]
|
|
})
|
|
|
|
expect(typeof Vue.prototype.$formulate.options.rules.testRule).toBe('function')
|
|
})
|
|
|
|
it('locale default to en', () => {
|
|
Formulate.selectedLocale = false // reset the memoization
|
|
function Vue () {}
|
|
Vue.component = function (name, instance) {}
|
|
const vm = {}
|
|
Formulate.install(Vue, {
|
|
locales: {
|
|
de: {},
|
|
fr: {},
|
|
cn: {},
|
|
en: {}
|
|
}
|
|
})
|
|
expect(Vue.prototype.$formulate.getLocale(vm)).toBe('en')
|
|
})
|
|
|
|
it('explicitly selects language', () => {
|
|
Formulate.selectedLocale = false // reset the memoization
|
|
function Vue () {}
|
|
Vue.component = function (name, instance) {}
|
|
const vm = {}
|
|
Formulate.install(Vue, {
|
|
locale: 'fr-CH',
|
|
locales: {
|
|
de: {},
|
|
fr: {},
|
|
cn: {},
|
|
en: {}
|
|
}
|
|
})
|
|
expect(Vue.prototype.$formulate.getLocale(vm)).toBe('fr')
|
|
})
|
|
|
|
it('can select a specific language tag', () => {
|
|
Formulate.selectedLocale = false // reset the memoization
|
|
function Vue () {}
|
|
Vue.component = function (name, instance) {}
|
|
const vm = {}
|
|
Formulate.install(Vue, {
|
|
locale: 'nl-BE',
|
|
locales: {
|
|
de: {},
|
|
fr: {},
|
|
'nl-BE': {},
|
|
nl: {},
|
|
cn: {},
|
|
en: {}
|
|
}
|
|
})
|
|
expect(Vue.prototype.$formulate.getLocale(vm)).toBe('nl-BE')
|
|
})
|
|
|
|
it('can select a matching locale using i18n', () => {
|
|
Formulate.selectedLocale = false // reset the memoization
|
|
function Vue () {}
|
|
Vue.component = function (name, instance) {}
|
|
const vm = { $i18n: {locale: 'cn-ET' } }
|
|
Formulate.install(Vue, {
|
|
locales: {
|
|
cn: {},
|
|
em: {}
|
|
}
|
|
})
|
|
expect(Vue.prototype.$formulate.getLocale(vm)).toBe('cn')
|
|
})
|
|
})
|