Просмотр исходного кода

🏗 scrtipt: remove functions

chenshuai2144 5 лет назад
Родитель
Сommit
6a0883d432
4 измененных файлов с 2 добавлено и 4468 удалено
  1. 0 26
      lambda/api.js
  2. 0 4320
      lambda/mock/index.js
  3. 0 116
      lambda/mock/matchMock.js
  4. 2 6
      package.json

+ 0 - 26
lambda/api.js

@@ -1,26 +0,0 @@
-// [START functions import]
-const express = require('express');
-const serverLess = require('serverless-http');
-
-const matchMock = require('./mock/matchMock');
-
-const app = express();
-
-app.all('*', (req, res, next) => {
-  res.header('Access-Control-Allow-Origin', '*');
-  res.header(
-    'Access-Control-Allow-Headers',
-    'Content-Type, Content-Length, Authorization, Accept, X-Requested-With , yourHeaderFeild',
-  );
-  res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
-
-  if (req.method == 'OPTIONS') {
-    res.send(200);
-  } else {
-    next();
-  }
-});
-
-app.use(matchMock);
-
-exports.handler = serverLess(app);

Разница между файлами не показана из-за своего большого размера
+ 0 - 4320
lambda/mock/index.js


+ 0 - 116
lambda/mock/matchMock.js

@@ -1,116 +0,0 @@
-const pathToRegexp = require('path-to-regexp');
-const bodyParser = require('body-parser');
-
-const mockFile = require('./index');
-
-const BODY_PARSED_METHODS = ['post', 'put', 'patch'];
-
-const debug = console.log;
-function parseKey(key) {
-  let method = 'get';
-  let path = key;
-  if (key.indexOf(' ') > -1) {
-    const spliced = key.split(' ');
-    method = spliced[0].toLowerCase();
-    path = spliced[1]; // eslint-disable-line
-  }
-  const routerBasePath = `${path}`;
-  return {
-    method,
-    path: routerBasePath,
-  };
-}
-
-function createHandler(method, path, handler) {
-  return (req, res, next) => {
-    function sendData() {
-      if (typeof handler === 'function') {
-        handler(req, res, next);
-      } else {
-        res.json(handler);
-      }
-    }
-    if (BODY_PARSED_METHODS.includes(method)) {
-      bodyParser.json({ limit: '5mb', strict: false })(req, res, () => {
-        bodyParser.urlencoded({ limit: '5mb', extended: true })(req, res, () => {
-          sendData();
-        });
-      });
-    } else {
-      sendData();
-    }
-  };
-}
-
-function normalizeConfig(config) {
-  return Object.keys(config).reduce((memo, key) => {
-    const handler = config[key];
-    const { method, path } = parseKey(key);
-    const keys = [];
-    const re = pathToRegexp(path, keys);
-    memo.push({
-      method,
-      path,
-      re,
-      keys,
-      handler: createHandler(method, path, handler),
-    });
-    return memo;
-  }, []);
-}
-
-const mockData = normalizeConfig(mockFile);
-
-function matchMock(req) {
-  const { path: exceptPath } = req;
-  const exceptMethod = req.method.toLowerCase();
-  function decodeParam(val) {
-    if (typeof val !== 'string' || val.length === 0) {
-      return val;
-    }
-
-    try {
-      return decodeURIComponent(val);
-    } catch (err) {
-      if (err instanceof URIError) {
-        err.message = `Failed to decode param ' ${val} '`;
-        err.statusCode = 400;
-        err.status = 400;
-      }
-
-      throw err;
-    }
-  }
-  // eslint-disable-next-line no-restricted-syntax
-  for (const mock of mockData) {
-    const { method, re, keys } = mock;
-    if (method === exceptMethod) {
-      const match = re.exec(req.path);
-      if (match) {
-        const params = {};
-
-        for (let i = 1; i < match.length; i += 1) {
-          const key = keys[i - 1];
-          const prop = key.name;
-          const val = decodeParam(match[i]);
-
-          if (val !== undefined || !hasOwnProperty.call(params, prop)) {
-            params[prop] = val;
-          }
-        }
-        req.params = params;
-        return mock;
-      }
-    }
-  }
-
-  return mockData.filter(({ method, re }) => method === exceptMethod && re.test(exceptPath))[0];
-}
-module.exports = (req, res, next) => {
-  const match = matchMock(req);
-  if (match) {
-    debug(`mock matched: [${match.method}] ${match.path}`);
-    return match.handler(req, res, next);
-  }
-  return next();
-};

+ 2 - 6
package.json

@@ -14,9 +14,7 @@
     "docker:dev": "docker-compose -f ./docker/docker-compose.dev.yml up",
     "docker:push": "npm run docker-hub:build && npm run docker:tag && docker push antdesign/ant-design-pro",
     "docker:tag": "docker tag ant-design-pro antdesign/ant-design-pro",
-    "fetch:blocks": "pro fetch-blocks --branch antd@4 && npm run prettier",
-    "functions:build": "netlify-lambda build ./lambda",
-    "functions:run": "cross-env NODE_ENV=dev netlify-lambda serve ./lambda",
+    "fetch:blocks": "pro fetch-blocks && npm run prettier",
     "gh-pages": "cp CNAME ./dist/ && gh-pages -d dist",
     "i18n-remove": "pro i18n-remove --locale=zh-CN --write",
     "lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
@@ -27,7 +25,7 @@
     "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
     "lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
     "prettier": "prettier -c --write \"**/*\"",
-    "site": "npm run fetch:blocks && npm run build && npm run functions:build",
+    "site": "npm run fetch:blocks && npm run build",
     "start": "umi dev",
     "dev": "npm run start:dev",
     "start:dev": "cross-env REACT_APP_ENV=dev MOCK=none umi dev",
@@ -100,14 +98,12 @@
     "cross-env": "^7.0.0",
     "cross-port-killer": "^1.1.1",
     "enzyme": "^3.11.0",
-    "express": "^4.17.1",
     "gh-pages": "^2.0.1",
     "husky": "^4.0.7",
     "jest-puppeteer": "^4.2.0",
     "jsdom-global": "^3.0.2",
     "lint-staged": "^10.0.0",
     "mockjs": "^1.0.1-beta3",
-    "netlify-lambda": "^1.4.13",
     "node-fetch": "^2.6.0",
     "prettier": "^1.19.1",
     "pro-download": "1.0.1",