* add opt-in Prettier config * remove legacy `examples` implementation * create ExamplesSelect * support `Response.examples` in OpenAPI 3 * create response controls group * prettier reformat * prepare to break up Parameters * reunify Parameters and OAS3 Parameters * Parameter Examples * Example component * handle parameter value stringification correctly * FOR REVIEW: add prop for controlling Select * use regular header for param examples in Try-It-Out * manage active examples member via Redux * Request Body Try-It-Out examples * remove special Response description styling * omit Example value display in Try-It-Out * support disabled text inputs in JsonSchemaForm * Example.omitValue => Example.showValue * ExamplesSelectValueRetainer * styling for disabled inputs * remove console.log * support "Modified Values" in ExamplesSelect * remove Examples component (wasn't used anywhere) * use ParameterRow.getParamKey for active examples member keying * split-rendering of examples in ParameterRow * send disabled prop to JsonSchemaForm * use content type to key request body active examples members * remove debugger * rewire RequestBodyEditor to be a controlled component REVIEW: does this have perf implications? * trigger synthetic onSelect events in ExamplesSelect * prettier updates * remove outdated Examples usage in RequestBody * don't handle examples changes in ESVR * make RequestBodyEditor semi-controlled * don't default to an empty Map for request bodies * add namespaceKey to ESVR for state mgmt * don't key RequestBody activeExampleKeys on media type * tweak ESVR isModifiedValueSelected calculation * add trace class to ExamplesSelect * remove usage of ESVR.currentNamespace * reset to first example if currentExampleKey is invalid * add default values to RequestBody rendering * stringify things in ESVR * avoid null select value (silences React warning) * detect user inputs that match any examples member's value * add trace class for json-schema-array * shallowly convert namespace state, to preserve Immutable stucts in state * stringify RBE values; don't trim JSON in editor * match user input to an example when non-primitives are expressed in state as strings * update Cypress * don't apply sample values in JsonSchema_Object * support disabling all JsonSchemaForm subcomponents * Core tests * style changes to accomodate Examples * fix version-checking error in Response * disable SCU for Responses * don't stringify Select values * ModelExample: default to Model tab if no example is available; provide a default no example message * don't trim JSON ParamBody inputs * read directly from 2.0 Response.schema instead of inferring a value * show current Example information in RequestBody * show label for Examples dropdown by default * rework Response content ordering * style disabled textareas like other read-only blocks * meta: fix sourcemaps * refactor ESVR setNameForNamespace * protect second half of ternary expession * cypress: `select.examples-select` => `.examples-select > select` * clarify ModelExample.componentWillReceiveProps * add gates/defaults to prevent issues in very bare-boned documents * fix test block organization problem * simplify RequestBodyEditor interface * linter fixes * prettier updates * use plugin system for new components * move ME Cypress helpers to other file
165 lines
3.8 KiB
JavaScript
165 lines
3.8 KiB
JavaScript
var path = require("path")
|
|
|
|
var webpack = require("webpack")
|
|
var ExtractTextPlugin = require("extract-text-webpack-plugin")
|
|
const CopyWebpackPlugin = require("copy-webpack-plugin")
|
|
const UglifyJsPlugin = require("uglifyjs-webpack-plugin")
|
|
var deepExtend = require("deep-extend")
|
|
const {gitDescribeSync} = require("git-describe")
|
|
const os = require("os")
|
|
|
|
var pkg = require("./package.json")
|
|
|
|
let gitInfo
|
|
|
|
try {
|
|
gitInfo = gitDescribeSync(__dirname)
|
|
} catch(e) {
|
|
gitInfo = {
|
|
hash: "noGit",
|
|
dirty: false
|
|
}
|
|
}
|
|
|
|
var commonRules = [
|
|
{ test: /\.(js(x)?)(\?.*)?$/,
|
|
use: [{
|
|
loader: "babel-loader",
|
|
options: {
|
|
retainLines: true
|
|
}
|
|
}],
|
|
include: [
|
|
path.join(__dirname, "src"),
|
|
path.join(__dirname, "node_modules", "object-assign-deep"),
|
|
]
|
|
},
|
|
{ test: /\.(txt|yaml)(\?.*)?$/,
|
|
loader: "raw-loader" },
|
|
{ test: /\.(png|jpg|jpeg|gif|svg)(\?.*)?$/,
|
|
loader: "url-loader" },
|
|
{ test: /\.(woff|woff2)(\?.*)?$/,
|
|
loader: "url-loader?limit=100000" },
|
|
{ test: /\.(ttf|eot)(\?.*)?$/,
|
|
loader: "file-loader" }
|
|
]
|
|
|
|
module.exports = function(rules, options) {
|
|
|
|
// Special options, that have logic in this file
|
|
// ...with defaults
|
|
var specialOptions = deepExtend({}, {
|
|
hot: false,
|
|
separateStylesheets: true,
|
|
minimize: false,
|
|
mangle: false,
|
|
longTermCaching: false,
|
|
sourcemaps: false,
|
|
}, options._special)
|
|
|
|
var plugins = []
|
|
|
|
if( specialOptions.separateStylesheets ) {
|
|
plugins.push(new ExtractTextPlugin({
|
|
filename: "[name].css" + (specialOptions.longTermCaching ? "?[contenthash]" : ""),
|
|
allChunks: true
|
|
}))
|
|
}
|
|
|
|
if( specialOptions.minimize ) { // production mode
|
|
|
|
plugins.push(
|
|
new UglifyJsPlugin({
|
|
uglifyOptions: {
|
|
mangle: specialOptions.mangle,
|
|
compress: specialOptions.mangle ? {
|
|
dead_code: true
|
|
} : false,
|
|
beautify: !specialOptions.mangle,
|
|
},
|
|
|
|
sourceMap: true,
|
|
}),
|
|
new webpack.LoaderOptionsPlugin({
|
|
options: {
|
|
context: __dirname
|
|
}
|
|
})
|
|
)
|
|
|
|
plugins.push( new webpack.NoEmitOnErrorsPlugin())
|
|
|
|
} else { // development mode
|
|
plugins.push(new CopyWebpackPlugin([ { from: "test/e2e-selenium/specs", to: "test-specs" } ]))
|
|
}
|
|
|
|
plugins.push(
|
|
new webpack.DefinePlugin({
|
|
"process.env": {
|
|
NODE_ENV: specialOptions.minimize ? JSON.stringify("production") : null,
|
|
WEBPACK_INLINE_STYLES: !specialOptions.separateStylesheets
|
|
},
|
|
"buildInfo": JSON.stringify({
|
|
PACKAGE_VERSION: (pkg.version),
|
|
GIT_COMMIT: gitInfo.hash,
|
|
GIT_DIRTY: gitInfo.dirty,
|
|
HOSTNAME: os.hostname(),
|
|
BUILD_TIME: new Date().toUTCString()
|
|
})
|
|
}))
|
|
|
|
delete options._special
|
|
|
|
var completeConfig = deepExtend({
|
|
entry: {},
|
|
|
|
output: {
|
|
path: path.join(__dirname, "dist"),
|
|
publicPath: "/",
|
|
filename: "[name].js",
|
|
chunkFilename: "[name].js"
|
|
},
|
|
|
|
target: "web",
|
|
|
|
// yaml-js has a reference to `fs`, this is a workaround
|
|
node: {
|
|
fs: "empty"
|
|
},
|
|
|
|
module: {
|
|
rules: commonRules.concat(rules),
|
|
},
|
|
|
|
resolveLoader: {
|
|
modules: [path.join(__dirname, "node_modules")],
|
|
},
|
|
|
|
externals: {
|
|
"buffertools": true // json-react-schema/deeper depends on buffertools, which fails.
|
|
},
|
|
|
|
resolve: {
|
|
modules: [
|
|
path.join(__dirname, "./src"),
|
|
"node_modules"
|
|
],
|
|
extensions: [".web.js", ".js", ".jsx", ".json", ".less"],
|
|
alias: {
|
|
"js-yaml": "@kyleshockey/js-yaml"
|
|
}
|
|
},
|
|
|
|
devtool: specialOptions.sourcemaps ? (
|
|
// If we're mangling, size is a concern -- so use trace-only sourcemaps
|
|
// Otherwise, provide heavy souremaps suitable for development
|
|
specialOptions.minimize ? "nosource-source-map" : "cheap-module-source-map"
|
|
): false,
|
|
|
|
plugins,
|
|
|
|
}, options)
|
|
|
|
return completeConfig
|
|
}
|