index.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. var nestRE = /^(attrs|props|on|nativeOn|class|style|hook)$/
  2. module.exports = function mergeJSXProps (objs) {
  3. return objs.reduce(function (a, b) {
  4. var aa, bb, key, nestedKey, temp
  5. for (key in b) {
  6. aa = a[key]
  7. bb = b[key]
  8. if (aa && nestRE.test(key)) {
  9. // normalize class
  10. if (key === 'class') {
  11. if (typeof aa === 'string') {
  12. temp = aa
  13. a[key] = aa = {}
  14. aa[temp] = true
  15. }
  16. if (typeof bb === 'string') {
  17. temp = bb
  18. b[key] = bb = {}
  19. bb[temp] = true
  20. }
  21. }
  22. if (key === 'on' || key === 'nativeOn' || key === 'hook') {
  23. // merge functions
  24. for (nestedKey in bb) {
  25. aa[nestedKey] = mergeFn(aa[nestedKey], bb[nestedKey])
  26. }
  27. } else if (Array.isArray(aa)) {
  28. a[key] = aa.concat(bb)
  29. } else if (Array.isArray(bb)) {
  30. a[key] = [aa].concat(bb)
  31. } else {
  32. for (nestedKey in bb) {
  33. aa[nestedKey] = bb[nestedKey]
  34. }
  35. }
  36. } else {
  37. a[key] = b[key]
  38. }
  39. }
  40. return a
  41. }, {})
  42. }
  43. function mergeFn (a, b) {
  44. return function () {
  45. a && a.apply(this, arguments)
  46. b && b.apply(this, arguments)
  47. }
  48. }