uni-forms.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <template>
  2. <view class="uni-forms">
  3. <form>
  4. <slot></slot>
  5. </form>
  6. </view>
  7. </template>
  8. <script>
  9. import Validator from './validate.js';
  10. import {
  11. deepCopy,
  12. getValue,
  13. isRequiredField,
  14. setDataValue,
  15. getDataValue,
  16. realName,
  17. isRealName,
  18. rawData,
  19. isEqual
  20. } from './utils.js'
  21. // #ifndef VUE3
  22. // 后续会慢慢废弃这个方法
  23. import Vue from 'vue';
  24. Vue.prototype.binddata = function(name, value, formName) {
  25. if (formName) {
  26. this.$refs[formName].setValue(name, value);
  27. } else {
  28. let formVm;
  29. for (let i in this.$refs) {
  30. const vm = this.$refs[i];
  31. if (vm && vm.$options && vm.$options.name === 'uniForms') {
  32. formVm = vm;
  33. break;
  34. }
  35. }
  36. if (!formVm) return console.error('当前 uni-froms 组件缺少 ref 属性');
  37. formVm.setValue(name, value);
  38. }
  39. };
  40. // #endif
  41. /**
  42. * Forms 表单
  43. * @description 由输入框、选择器、单选框、多选框等控件组成,用以收集、校验、提交数据
  44. * @tutorial https://ext.dcloud.net.cn/plugin?id=2773
  45. * @property {Object} rules 表单校验规则
  46. * @property {String} validateTrigger = [bind|submit|blur] 校验触发器方式 默认 submit
  47. * @value bind 发生变化时触发
  48. * @value submit 提交时触发
  49. * @value blur 失去焦点时触发
  50. * @property {String} labelPosition = [top|left] label 位置 默认 left
  51. * @value top 顶部显示 label
  52. * @value left 左侧显示 label
  53. * @property {String} labelWidth label 宽度,默认 70px
  54. * @property {String} labelAlign = [left|center|right] label 居中方式 默认 left
  55. * @value left label 左侧显示
  56. * @value center label 居中
  57. * @value right label 右侧对齐
  58. * @property {String} errShowType = [undertext|toast|modal] 校验错误信息提示方式
  59. * @value undertext 错误信息在底部显示
  60. * @value toast 错误信息toast显示
  61. * @value modal 错误信息modal显示
  62. * @event {Function} submit 提交时触发
  63. * @event {Function} validate 校验结果发生变化触发
  64. */
  65. export default {
  66. name: 'uniForms',
  67. emits: ['validate', 'submit'],
  68. options: {
  69. virtualHost: true
  70. },
  71. props: {
  72. // 即将弃用
  73. value: {
  74. type: Object,
  75. default () {
  76. return null;
  77. }
  78. },
  79. // vue3 替换 value 属性
  80. modelValue: {
  81. type: Object,
  82. default () {
  83. return null;
  84. }
  85. },
  86. // 1.4.0 开始将不支持 v-model ,且废弃 value 和 modelValue
  87. model: {
  88. type: Object,
  89. default () {
  90. return null;
  91. }
  92. },
  93. // 表单校验规则
  94. rules: {
  95. type: Object,
  96. default () {
  97. return {};
  98. }
  99. },
  100. //校验错误信息提示方式 默认 undertext 取值 [undertext|toast|modal]
  101. errShowType: {
  102. type: String,
  103. default: 'undertext'
  104. },
  105. // 校验触发器方式 默认 bind 取值 [bind|submit]
  106. validateTrigger: {
  107. type: String,
  108. default: 'submit'
  109. },
  110. // label 位置,默认 left 取值 top/left
  111. labelPosition: {
  112. type: String,
  113. default: 'left'
  114. },
  115. // label 宽度
  116. labelWidth: {
  117. type: [String, Number],
  118. default: ''
  119. },
  120. // label 居中方式,默认 left 取值 left/center/right
  121. labelAlign: {
  122. type: String,
  123. default: 'left'
  124. },
  125. border: {
  126. type: Boolean,
  127. default: false
  128. }
  129. },
  130. provide() {
  131. return {
  132. uniForm: this
  133. }
  134. },
  135. data() {
  136. return {
  137. // 表单本地值的记录,不应该与传如的值进行关联
  138. formData: {},
  139. formRules: {}
  140. };
  141. },
  142. computed: {
  143. // 计算数据源变化的
  144. localData() {
  145. const localVal = this.model || this.modelValue || this.value
  146. if (localVal) {
  147. return deepCopy(localVal)
  148. }
  149. return {}
  150. }
  151. },
  152. watch: {
  153. // 监听数据变化 ,暂时不使用,需要单独赋值
  154. // localData: {},
  155. // 监听规则变化
  156. rules: {
  157. handler: function(val, oldVal) {
  158. this.setRules(val)
  159. },
  160. deep: true,
  161. immediate: true
  162. }
  163. },
  164. created() {
  165. // #ifdef VUE3
  166. let getbinddata = getApp().$vm.$.appContext.config.globalProperties.binddata
  167. if (!getbinddata) {
  168. getApp().$vm.$.appContext.config.globalProperties.binddata = function(name, value, formName) {
  169. if (formName) {
  170. this.$refs[formName].setValue(name, value);
  171. } else {
  172. let formVm;
  173. for (let i in this.$refs) {
  174. const vm = this.$refs[i];
  175. if (vm && vm.$options && vm.$options.name === 'uniForms') {
  176. formVm = vm;
  177. break;
  178. }
  179. }
  180. if (!formVm) return console.error('当前 uni-froms 组件缺少 ref 属性');
  181. formVm.setValue(name, value);
  182. }
  183. }
  184. }
  185. // #endif
  186. // 子组件实例数组
  187. this.childrens = []
  188. // TODO 兼容旧版 uni-data-picker ,新版本中无效,只是避免报错
  189. this.inputChildrens = []
  190. this.setRules(this.rules)
  191. },
  192. methods: {
  193. /**
  194. * 外部调用方法
  195. * 设置规则 ,主要用于小程序自定义检验规则
  196. * @param {Array} rules 规则源数据
  197. */
  198. setRules(rules) {
  199. // TODO 有可能子组件合并规则的时机比这个要早,所以需要合并对象 ,而不是直接赋值,可能会被覆盖
  200. this.formRules = Object.assign({}, this.formRules, rules)
  201. // 初始化校验函数
  202. this.validator = new Validator(rules);
  203. },
  204. /**
  205. * 外部调用方法
  206. * 设置数据,用于设置表单数据,公开给用户使用 , 不支持在动态表单中使用
  207. * @param {Object} key
  208. * @param {Object} value
  209. */
  210. setValue(key, value) {
  211. let example = this.childrens.find(child => child.name === key);
  212. if (!example) return null;
  213. this.formData[key] = getValue(key, value, (this.formRules[key] && this.formRules[key].rules) || [])
  214. return example.onFieldChange(this.formData[key]);
  215. },
  216. /**
  217. * 外部调用方法
  218. * 手动提交校验表单
  219. * 对整个表单进行校验的方法,参数为一个回调函数。
  220. * @param {Array} keepitem 保留不参与校验的字段
  221. * @param {type} callback 方法回调
  222. */
  223. validate(keepitem, callback) {
  224. return this.checkAll(this.formData, keepitem, callback);
  225. },
  226. /**
  227. * 外部调用方法
  228. * 部分表单校验
  229. * @param {Array|String} props 需要校验的字段
  230. * @param {Function} 回调函数
  231. */
  232. validateField(props = [], callback) {
  233. props = [].concat(props);
  234. let invalidFields = {};
  235. this.childrens.forEach(item => {
  236. const name = realName(item.name)
  237. if (props.indexOf(name) !== -1) {
  238. invalidFields = Object.assign({}, invalidFields, {
  239. [name]: this.formData[name]
  240. });
  241. }
  242. });
  243. return this.checkAll(invalidFields, [], callback);
  244. },
  245. /**
  246. * 外部调用方法
  247. * 移除表单项的校验结果。传入待移除的表单项的 prop 属性或者 prop 组成的数组,如不传则移除整个表单的校验结果
  248. * @param {Array|String} props 需要移除校验的字段 ,不填为所有
  249. */
  250. clearValidate(props = []) {
  251. props = [].concat(props);
  252. this.childrens.forEach(item => {
  253. if (props.length === 0) {
  254. item.errMsg = '';
  255. } else {
  256. const name = realName(item.name)
  257. if (props.indexOf(name) !== -1) {
  258. item.errMsg = '';
  259. }
  260. }
  261. });
  262. },
  263. /**
  264. * 外部调用方法 ,即将废弃
  265. * 手动提交校验表单
  266. * 对整个表单进行校验的方法,参数为一个回调函数。
  267. * @param {Array} keepitem 保留不参与校验的字段
  268. * @param {type} callback 方法回调
  269. */
  270. submit(keepitem, callback, type) {
  271. for (let i in this.dataValue) {
  272. const itemData = this.childrens.find(v => v.name === i);
  273. if (itemData) {
  274. if (this.formData[i] === undefined) {
  275. this.formData[i] = this._getValue(i, this.dataValue[i]);
  276. }
  277. }
  278. }
  279. if (!type) {
  280. console.warn('submit 方法即将废弃,请使用validate方法代替!');
  281. }
  282. return this.checkAll(this.formData, keepitem, callback, 'submit');
  283. },
  284. // 校验所有
  285. async checkAll(invalidFields, keepitem, callback, type) {
  286. // 不存在校验规则 ,则停止校验流程
  287. if (!this.validator) return
  288. let childrens = []
  289. // 处理参与校验的item实例
  290. for (let i in invalidFields) {
  291. const item = this.childrens.find(v => realName(v.name) === i)
  292. if (item) {
  293. childrens.push(item)
  294. }
  295. }
  296. // 如果validate第一个参数是funciont ,那就走回调
  297. if (!callback && typeof keepitem === 'function') {
  298. callback = keepitem;
  299. }
  300. let promise;
  301. // 如果不存在回调,那么使用 Promise 方式返回
  302. if (!callback && typeof callback !== 'function' && Promise) {
  303. promise = new Promise((resolve, reject) => {
  304. callback = function(valid, invalidFields) {
  305. !valid ? resolve(invalidFields) : reject(valid);
  306. };
  307. });
  308. }
  309. let results = [];
  310. // 避免引用错乱 ,建议拷贝对象处理
  311. let tempFormData = JSON.parse(JSON.stringify(invalidFields))
  312. // 所有子组件参与校验,使用 for 可以使用 awiat
  313. for (let i in childrens) {
  314. const child = childrens[i]
  315. let name = realName(child.name);
  316. const result = await child.onFieldChange(tempFormData[name]);
  317. if (result) {
  318. results.push(result);
  319. // toast ,modal 只需要执行第一次就可以
  320. if (this.errShowType === 'toast' || this.errShowType === 'modal') break;
  321. }
  322. }
  323. if (Array.isArray(results)) {
  324. if (results.length === 0) results = null;
  325. }
  326. if (Array.isArray(keepitem)) {
  327. keepitem.forEach(v => {
  328. let vName = realName(v);
  329. let value = getDataValue(v, this.localData)
  330. if (value !== undefined) {
  331. tempFormData[vName] = value
  332. }
  333. });
  334. }
  335. // TODO submit 即将废弃
  336. if (type === 'submit') {
  337. this.$emit('submit', {
  338. detail: {
  339. value: tempFormData,
  340. errors: results
  341. }
  342. });
  343. } else {
  344. this.$emit('validate', results);
  345. }
  346. // const resetFormData = rawData(tempFormData, this.localData, this.name)
  347. let resetFormData = {}
  348. resetFormData = rawData(tempFormData, this.name)
  349. callback && typeof callback === 'function' && callback(results, resetFormData);
  350. if (promise && callback) {
  351. return promise;
  352. } else {
  353. return null;
  354. }
  355. },
  356. /**
  357. * 返回validate事件
  358. * @param {Object} result
  359. */
  360. validateCheck(result) {
  361. this.$emit('validate', result);
  362. },
  363. _getValue: getValue,
  364. _isRequiredField: isRequiredField,
  365. _setDataValue: setDataValue,
  366. _getDataValue: getDataValue,
  367. _realName: realName,
  368. _isRealName: isRealName,
  369. _isEqual: isEqual
  370. }
  371. };
  372. </script>
  373. <style lang="scss">
  374. .uni-forms {}
  375. </style>