index.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. const Mock = require('mockjs')
  2. const { param2Obj } = require('./utils')
  3. const user = require('./user')
  4. const table = require('./table')
  5. const mocks = [...user, ...table]
  6. // for front mock
  7. // please use it cautiously, it will redefine XMLHttpRequest,
  8. // which will cause many of your third-party libraries to be invalidated(like progress event).
  9. function mockXHR() {
  10. // mock patch
  11. // https://github.com/nuysoft/Mock/issues/300
  12. Mock.XHR.prototype.proxy_send = Mock.XHR.prototype.send
  13. Mock.XHR.prototype.send = function () {
  14. if (this.custom.xhr) {
  15. this.custom.xhr.withCredentials = this.withCredentials || false
  16. if (this.responseType) {
  17. this.custom.xhr.responseType = this.responseType
  18. }
  19. }
  20. this.proxy_send(...arguments)
  21. }
  22. function XHR2ExpressReqWrap(respond) {
  23. return function (options) {
  24. let result = null
  25. if (respond instanceof Function) {
  26. const { body, type, url } = options
  27. // https://expressjs.com/en/4x/api.html#req
  28. result = respond({
  29. method: type,
  30. body: JSON.parse(body),
  31. query: param2Obj(url)
  32. })
  33. } else {
  34. result = respond
  35. }
  36. return Mock.mock(result)
  37. }
  38. }
  39. for (const i of mocks) {
  40. Mock.mock(new RegExp(i.url), i.type || 'get', XHR2ExpressReqWrap(i.response))
  41. }
  42. }
  43. module.exports = {
  44. mocks,
  45. mockXHR
  46. }