From 864711a60273a7997ef8f284d2ce563fe6962926 Mon Sep 17 00:00:00 2001 From: JackHou Date: Thu, 7 Dec 2017 20:59:12 +0800 Subject: [PATCH 01/11] use different eslint config for es6 and es5 --- package.json | 1 + .../__tests__/ReactServerRendering-test.js | 2 +- scripts/eslint/baseConfig.js | 11 +++++++ scripts/eslint/es5Config.js | 3 ++ scripts/eslint/es6Config.js | 7 +++++ scripts/eslint/index.js | 10 +++++-- scripts/prettier/index.js | 17 ++--------- .../__tests__/judgeJSFilesVersion-test.js | 21 +++++++++++++ scripts/shared/esPath.js | 28 +++++++++++++++++ scripts/shared/judgeJSFilesVersion.js | 30 +++++++++++++++++++ scripts/tasks/eslint.js | 13 ++++++-- scripts/tasks/linc.js | 13 ++++++-- yarn.lock | 2 +- 13 files changed, 135 insertions(+), 23 deletions(-) create mode 100644 scripts/eslint/baseConfig.js create mode 100644 scripts/eslint/es5Config.js create mode 100644 scripts/eslint/es6Config.js create mode 100644 scripts/shared/__tests__/judgeJSFilesVersion-test.js create mode 100644 scripts/shared/esPath.js create mode 100644 scripts/shared/judgeJSFilesVersion.js diff --git a/package.json b/package.json index 0ef3224f371ae..85440f9a475d0 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,7 @@ "jest-jasmine2": "^21.3.0-beta.4", "jest-runtime": "^21.3.0-beta.4", "merge-stream": "^1.0.0", + "minimatch": "^3.0.4", "minimist": "^1.2.0", "mkdirp": "^0.5.1", "ncp": "^2.0.0", diff --git a/packages/react-dom/src/__tests__/ReactServerRendering-test.js b/packages/react-dom/src/__tests__/ReactServerRendering-test.js index c2a1e6b3d7f1d..1cb2915b7dfad 100644 --- a/packages/react-dom/src/__tests__/ReactServerRendering-test.js +++ b/packages/react-dom/src/__tests__/ReactServerRendering-test.js @@ -376,7 +376,7 @@ describe('ReactDOMServer', () => { it('should not focus on either server or client with autofocus={false} even if there is a markup mismatch', () => { spyOnDev(console, 'error'); - var element = document.createElement('div'); + const element = document.createElement('div'); element.innerHTML = ReactDOMServer.renderToString( , ); diff --git a/scripts/eslint/baseConfig.js b/scripts/eslint/baseConfig.js new file mode 100644 index 0000000000000..c010419d0cb90 --- /dev/null +++ b/scripts/eslint/baseConfig.js @@ -0,0 +1,11 @@ +'use strict'; +const eslintrc = require('../../.eslintrc'); + +const OFF = 0; +const ERROR = 2; + +module.exports = { + config: eslintrc, + OFF, + ERROR, +}; diff --git a/scripts/eslint/es5Config.js b/scripts/eslint/es5Config.js new file mode 100644 index 0000000000000..49f9d19ebb637 --- /dev/null +++ b/scripts/eslint/es5Config.js @@ -0,0 +1,3 @@ +const baseConfig = require('./baseConfig'); + +module.exports = baseConfig.config; diff --git a/scripts/eslint/es6Config.js b/scripts/eslint/es6Config.js new file mode 100644 index 0000000000000..99d507167aae0 --- /dev/null +++ b/scripts/eslint/es6Config.js @@ -0,0 +1,7 @@ +const {config, ERROR} = require('./baseConfig'); + +module.exports = Object.assign({}, config, { + rules: Object.assign({}, config.rules, { + 'no-var': ERROR, + }), +}); diff --git a/scripts/eslint/index.js b/scripts/eslint/index.js index 3e523165fd3fd..4b10cd8ed7868 100644 --- a/scripts/eslint/index.js +++ b/scripts/eslint/index.js @@ -8,10 +8,14 @@ 'use strict'; const CLIEngine = require('eslint').CLIEngine; -const cli = new CLIEngine(); -const formatter = cli.getFormatter(); +const eslintPath = './scripts/eslint'; -module.exports = function lintOnFiles(filePatterns) { +module.exports = function lintOnFiles({isES6, filePatterns}) { + const configFile = isES6 + ? `${eslintPath}/es6Config.js` + : `${eslintPath}/es5Config.js`; + const cli = new CLIEngine({configFile}); + const formatter = cli.getFormatter(); const report = cli.executeOnFiles(filePatterns); const formattedResults = formatter(report.results); console.log(formattedResults); diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index fa37756198472..a749eb7183f09 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -14,6 +14,7 @@ const glob = require('glob'); const prettier = require('prettier'); const fs = require('fs'); const listChangedFiles = require('../shared/listChangedFiles'); +const {es5Path, es6Path} = require('../shared/esPath'); const mode = process.argv[2] || 'check'; const shouldWrite = mode === 'write' || mode === 'write-changed'; @@ -28,23 +29,11 @@ const defaultOptions = { }; const config = { default: { - patterns: [ - // Internal forwarding modules - 'packages/*/*.js', - // Source files - 'packages/*/src/**/*.js', - 'packages/shared/**/*.js', - ], + patterns: es6Path, ignore: ['**/node_modules/**'], }, scripts: { - patterns: [ - // Forwarding modules that get published to npm (must be ES5) - 'packages/*/npm/**/*.js', - // Need to work on Node - 'scripts/**/*.js', - 'fixtures/**/*.js', - ], + patterns: es5Path, ignore: [ '**/node_modules/**', // Built files and React repo clone diff --git a/scripts/shared/__tests__/judgeJSFilesVersion-test.js b/scripts/shared/__tests__/judgeJSFilesVersion-test.js new file mode 100644 index 0000000000000..4fe546a531899 --- /dev/null +++ b/scripts/shared/__tests__/judgeJSFilesVersion-test.js @@ -0,0 +1,21 @@ +const judgeJSFilesVersion = require('../judgeJSFilesVersion'); + +describe('judgeJSFilesVersion', () => { + it('should match different es versions', () => { + const es6Files = [ + 'packages/react/index.js', + 'packages/react/src/forks/some.js', + 'packages/shared/ReactTypes.js', + ]; + + const es5Files = [ + 'packages/react/npm/aa/a.js', + 'scripts/aa/a.js', + 'fixtures/aa/a.js', + ]; + + const jsFiles = es6Files.concat(es5Files); + + expect(judgeJSFilesVersion(jsFiles)).toEqual({es6Files, es5Files}); + }); +}); diff --git a/scripts/shared/esPath.js b/scripts/shared/esPath.js new file mode 100644 index 0000000000000..075819b32f595 --- /dev/null +++ b/scripts/shared/esPath.js @@ -0,0 +1,28 @@ +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +'use strict'; + +const es6Path = [ + // Internal forwarding modules + 'packages/*/*.js', + // Source files + 'packages/*/src/**/*.js', + 'packages/shared/**/*.js', +]; + +const es5Path = [ + // Forwarding modules that get published to npm (must be ES5) + 'packages/*/npm/**/*.js', + // Need to work on Node + 'scripts/**/*.js', + 'fixtures/**/*.js', +]; + +module.exports = { + es6Path, + es5Path, +}; diff --git a/scripts/shared/judgeJSFilesVersion.js b/scripts/shared/judgeJSFilesVersion.js new file mode 100644 index 0000000000000..dc3442a9ef8ff --- /dev/null +++ b/scripts/shared/judgeJSFilesVersion.js @@ -0,0 +1,30 @@ +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +'use strict'; + +const minimatch = require('minimatch'); +const {es5Path} = require('./esPath'); + +module.exports = function(jsFiles) { + const es5Files = []; + for (let index in jsFiles) { + const file = jsFiles[index]; + for (let pathIndex in es5Path) { + const pattern = es5Path[pathIndex]; + const isES5 = minimatch(file, pattern); + if (isES5) { + es5Files.push(file); + break; + } + } + } + const es6Files = jsFiles.filter(function(val) { + return !es5Files.includes(val); + }); + + return {es5Files, es6Files}; +}; diff --git a/scripts/tasks/eslint.js b/scripts/tasks/eslint.js index b8d7a4b2194a7..682160ae5faac 100644 --- a/scripts/tasks/eslint.js +++ b/scripts/tasks/eslint.js @@ -8,8 +8,17 @@ 'use strict'; const lintOnFiles = require('../eslint'); -const report = lintOnFiles(['.']); -if (report.errorCount > 0 || report.warningCount > 0) { +const {es5Path, es6Path} = require('../shared/esPath'); + +const es6Report = lintOnFiles({isES6: true, filePatterns: es6Path}); +const es5Report = lintOnFiles({isES6: false, filePatterns: es5Path}); + +if ( + es6Report.errorCount > 0 || + es6Report.warningCount > 0 || + es5Report.errorCount > 0 || + es5Report.warningCount +) { console.log('Lint failed.'); process.exit(1); } else { diff --git a/scripts/tasks/linc.js b/scripts/tasks/linc.js index 978613a02c377..1a6f24233ac5a 100644 --- a/scripts/tasks/linc.js +++ b/scripts/tasks/linc.js @@ -9,12 +9,21 @@ const lintOnFiles = require('../eslint'); const listChangedFiles = require('../shared/listChangedFiles'); +const judgeJSFilesVersion = require('../shared/judgeJSFilesVersion'); const changedFiles = [...listChangedFiles()]; const jsFiles = changedFiles.filter(file => file.match(/.js$/g)); +const {es5Files, es6Files} = judgeJSFilesVersion(jsFiles); -const report = lintOnFiles(jsFiles); -if (report.errorCount > 0 || getSourceCodeWarnings(report)) { +const es6Report = lintOnFiles({isES6: true, filePatterns: es6Files}); +const es5Report = lintOnFiles({isES6: false, filePatterns: es5Files}); + +if ( + es6Report.errorCount > 0 || + getSourceCodeWarnings(es6Report) || + es5Report.errorCount > 0 || + getSourceCodeWarnings(es5Report) +) { console.log('Lint failed for changed files.'); process.exit(1); } else { diff --git a/yarn.lock b/yarn.lock index df11eb2e0b92c..2fee401803d70 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3358,7 +3358,7 @@ minimatch@^2.0.3: minimatch@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: brace-expansion "^1.1.7" From 589fb3959d47402bb9facab3336b631af787ebe4 Mon Sep 17 00:00:00 2001 From: JackHou Date: Fri, 8 Dec 2017 12:09:35 +0800 Subject: [PATCH 02/11] remove confusing eslint/baseConfig.js & add more eslint setting for es5, es6 --- scripts/eslint/baseConfig.js | 11 ----------- scripts/eslint/es5Config.js | 12 ++++++++++-- scripts/eslint/es6Config.js | 15 ++++++++++++--- 3 files changed, 22 insertions(+), 16 deletions(-) delete mode 100644 scripts/eslint/baseConfig.js diff --git a/scripts/eslint/baseConfig.js b/scripts/eslint/baseConfig.js deleted file mode 100644 index c010419d0cb90..0000000000000 --- a/scripts/eslint/baseConfig.js +++ /dev/null @@ -1,11 +0,0 @@ -'use strict'; -const eslintrc = require('../../.eslintrc'); - -const OFF = 0; -const ERROR = 2; - -module.exports = { - config: eslintrc, - OFF, - ERROR, -}; diff --git a/scripts/eslint/es5Config.js b/scripts/eslint/es5Config.js index 49f9d19ebb637..eec14ee783879 100644 --- a/scripts/eslint/es5Config.js +++ b/scripts/eslint/es5Config.js @@ -1,3 +1,11 @@ -const baseConfig = require('./baseConfig'); +const eslintrc = require('../../.eslintrc'); -module.exports = baseConfig.config; +module.exports = Object.assign({}, eslintrc, { + parseOptions: { + ecmaVersion: 5, + sourceType: 'module', + ecmaFeatures: { + jsx: true, + }, + }, +}); diff --git a/scripts/eslint/es6Config.js b/scripts/eslint/es6Config.js index 99d507167aae0..8cf26f6a3d025 100644 --- a/scripts/eslint/es6Config.js +++ b/scripts/eslint/es6Config.js @@ -1,7 +1,16 @@ -const {config, ERROR} = require('./baseConfig'); +const eslintrc = require('../../.eslintrc'); -module.exports = Object.assign({}, config, { - rules: Object.assign({}, config.rules, { +const ERROR = 2; + +module.exports = Object.assign({}, eslintrc, { + parseOptions: { + ecmaVersion: 6, + sourceType: 'module', + ecmaFeatures: { + jsx: true, + }, + }, + rules: Object.assign({}, eslintrc.rules, { 'no-var': ERROR, }), }); From 241dc6930ff5d60a9f624a02ae4d34247a2b0230 Mon Sep 17 00:00:00 2001 From: JackHou Date: Fri, 8 Dec 2017 20:26:53 +0800 Subject: [PATCH 03/11] more clear way to run eslint on es5 & es6 file --- package.json | 1 - scripts/eslint/es6Config.js | 2 +- scripts/eslint/index.js | 18 +++++++++-- .../__tests__/judgeJSFilesVersion-test.js | 21 ------------- scripts/shared/judgeJSFilesVersion.js | 30 ------------------- scripts/tasks/eslint.js | 4 +-- scripts/tasks/linc.js | 7 ++--- 7 files changed, 21 insertions(+), 62 deletions(-) delete mode 100644 scripts/shared/__tests__/judgeJSFilesVersion-test.js delete mode 100644 scripts/shared/judgeJSFilesVersion.js diff --git a/package.json b/package.json index 85440f9a475d0..0ef3224f371ae 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,6 @@ "jest-jasmine2": "^21.3.0-beta.4", "jest-runtime": "^21.3.0-beta.4", "merge-stream": "^1.0.0", - "minimatch": "^3.0.4", "minimist": "^1.2.0", "mkdirp": "^0.5.1", "ncp": "^2.0.0", diff --git a/scripts/eslint/es6Config.js b/scripts/eslint/es6Config.js index 8cf26f6a3d025..0b5fae5617cc4 100644 --- a/scripts/eslint/es6Config.js +++ b/scripts/eslint/es6Config.js @@ -1,6 +1,6 @@ const eslintrc = require('../../.eslintrc'); -const ERROR = 2; +var ERROR = 2; module.exports = Object.assign({}, eslintrc, { parseOptions: { diff --git a/scripts/eslint/index.js b/scripts/eslint/index.js index 4b10cd8ed7868..534b7c3450ea2 100644 --- a/scripts/eslint/index.js +++ b/scripts/eslint/index.js @@ -9,15 +9,29 @@ const CLIEngine = require('eslint').CLIEngine; const eslintPath = './scripts/eslint'; +const {es5Path, es6Path} = require('../shared/esPath'); module.exports = function lintOnFiles({isES6, filePatterns}) { const configFile = isES6 ? `${eslintPath}/es6Config.js` : `${eslintPath}/es5Config.js`; - const cli = new CLIEngine({configFile}); + + const ignorePattern = isES6 ? es5Path : es6Path; + const cli = new CLIEngine({configFile, ignorePattern}); const formatter = cli.getFormatter(); const report = cli.executeOnFiles(filePatterns); - const formattedResults = formatter(report.results); + + // When using `ignorePattern`, eslint will show `File ignored...` warning message when match ignore file. + // Currently, the only way to turn off this warning message is to set quiet = true. + // But it will remove `all warnings`, it's not appropriate to turn off other warning message + // So that's why we filter out the ignore pattern message. + // related issue: https://github.com/eslint/eslint/issues/5623 + const filteredReport = report.results.filter(item => { + const ignoreMessage = + 'File ignored because of a matching ignore pattern. Use "--no-ignore" to override.'; + return !(item.messages[0] && item.messages[0].message === ignoreMessage); + }); + const formattedResults = formatter(filteredReport); console.log(formattedResults); return report; }; diff --git a/scripts/shared/__tests__/judgeJSFilesVersion-test.js b/scripts/shared/__tests__/judgeJSFilesVersion-test.js deleted file mode 100644 index 4fe546a531899..0000000000000 --- a/scripts/shared/__tests__/judgeJSFilesVersion-test.js +++ /dev/null @@ -1,21 +0,0 @@ -const judgeJSFilesVersion = require('../judgeJSFilesVersion'); - -describe('judgeJSFilesVersion', () => { - it('should match different es versions', () => { - const es6Files = [ - 'packages/react/index.js', - 'packages/react/src/forks/some.js', - 'packages/shared/ReactTypes.js', - ]; - - const es5Files = [ - 'packages/react/npm/aa/a.js', - 'scripts/aa/a.js', - 'fixtures/aa/a.js', - ]; - - const jsFiles = es6Files.concat(es5Files); - - expect(judgeJSFilesVersion(jsFiles)).toEqual({es6Files, es5Files}); - }); -}); diff --git a/scripts/shared/judgeJSFilesVersion.js b/scripts/shared/judgeJSFilesVersion.js deleted file mode 100644 index dc3442a9ef8ff..0000000000000 --- a/scripts/shared/judgeJSFilesVersion.js +++ /dev/null @@ -1,30 +0,0 @@ -/** - * Copyright (c) 2013-present, Facebook, Inc. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -'use strict'; - -const minimatch = require('minimatch'); -const {es5Path} = require('./esPath'); - -module.exports = function(jsFiles) { - const es5Files = []; - for (let index in jsFiles) { - const file = jsFiles[index]; - for (let pathIndex in es5Path) { - const pattern = es5Path[pathIndex]; - const isES5 = minimatch(file, pattern); - if (isES5) { - es5Files.push(file); - break; - } - } - } - const es6Files = jsFiles.filter(function(val) { - return !es5Files.includes(val); - }); - - return {es5Files, es6Files}; -}; diff --git a/scripts/tasks/eslint.js b/scripts/tasks/eslint.js index 682160ae5faac..a9a5fbbc28405 100644 --- a/scripts/tasks/eslint.js +++ b/scripts/tasks/eslint.js @@ -8,9 +8,9 @@ 'use strict'; const lintOnFiles = require('../eslint'); -const {es5Path, es6Path} = require('../shared/esPath'); +const {es5Path} = require('../shared/esPath'); -const es6Report = lintOnFiles({isES6: true, filePatterns: es6Path}); +const es6Report = lintOnFiles({isES6: true, filePatterns: ['.']}); const es5Report = lintOnFiles({isES6: false, filePatterns: es5Path}); if ( diff --git a/scripts/tasks/linc.js b/scripts/tasks/linc.js index 1a6f24233ac5a..ba8d8221a8000 100644 --- a/scripts/tasks/linc.js +++ b/scripts/tasks/linc.js @@ -9,14 +9,11 @@ const lintOnFiles = require('../eslint'); const listChangedFiles = require('../shared/listChangedFiles'); -const judgeJSFilesVersion = require('../shared/judgeJSFilesVersion'); - const changedFiles = [...listChangedFiles()]; const jsFiles = changedFiles.filter(file => file.match(/.js$/g)); -const {es5Files, es6Files} = judgeJSFilesVersion(jsFiles); -const es6Report = lintOnFiles({isES6: true, filePatterns: es6Files}); -const es5Report = lintOnFiles({isES6: false, filePatterns: es5Files}); +const es6Report = lintOnFiles({isES6: true, filePatterns: jsFiles}); +const es5Report = lintOnFiles({isES6: false, filePatterns: jsFiles}); if ( es6Report.errorCount > 0 || From 730a58612f3d9573522b3420adf7f368b1a640ca Mon Sep 17 00:00:00 2001 From: JackHou Date: Sat, 9 Dec 2017 01:59:32 +0800 Subject: [PATCH 04/11] seperate ESNext, ES6, ES6 path, and use different lint config --- .../babel/transform-object-assign-require.js | 4 +- .../replace-invariant-error-codes-test.js | 2 +- .../replace-invariant-error-codes.js | 6 +-- ...no-primitive-constructors-test.internal.js | 6 +-- ...arning-and-invariant-args-test.internal.js | 6 +-- .../warning-and-invariant-args.js | 10 ++--- scripts/eslint/es5Config.js | 5 ++- scripts/eslint/es6Config.js | 8 ++-- scripts/eslint/esNextConfig.js | 9 ++++ scripts/eslint/index.js | 40 +++++++++++++---- scripts/facts-tracker/index.js | 45 ++++++++++--------- scripts/flow/react-native-host-hooks.js | 18 ++++---- scripts/jest/preprocessor.js | 24 +++++----- scripts/jest/setupTests.js | 10 ++--- .../spec-equivalence-reporter/setupTests.js | 4 +- scripts/jest/typescript/preprocessor.js | 26 ++++++----- scripts/prettier/index.js | 11 +++-- .../wrap-warning-with-env-check-test.js | 4 +- .../plugins/wrap-warning-with-env-check.js | 8 ++-- .../renderSubtreeIntoContainer.js | 2 +- .../shims/react-native/ReactFeatureFlags.js | 2 +- scripts/shared/__tests__/evalToString-test.js | 9 ++-- scripts/shared/esPath.js | 9 +++- scripts/shared/listChangedFiles.js | 2 +- scripts/tasks/eslint.js | 12 +++-- scripts/tasks/flow.js | 6 +-- scripts/tasks/linc.js | 7 ++- 27 files changed, 176 insertions(+), 119 deletions(-) create mode 100644 scripts/eslint/esNextConfig.js diff --git a/scripts/babel/transform-object-assign-require.js b/scripts/babel/transform-object-assign-require.js index 2ed1dad6492c6..2d4d8203b10c9 100644 --- a/scripts/babel/transform-object-assign-require.js +++ b/scripts/babel/transform-object-assign-require.js @@ -26,14 +26,14 @@ module.exports = function autoImporter(babel) { CallExpression: function(path, file) { if (path.get('callee').matchesPattern('Object.assign')) { // generate identifier and require if it hasn't been already - var id = getAssignIdent(path, file, this); + const id = getAssignIdent(path, file, this); path.node.callee = id; } }, MemberExpression: function(path, file) { if (path.matchesPattern('Object.assign')) { - var id = getAssignIdent(path, file, this); + const id = getAssignIdent(path, file, this); path.replaceWith(id); } }, diff --git a/scripts/error-codes/__tests__/replace-invariant-error-codes-test.js b/scripts/error-codes/__tests__/replace-invariant-error-codes-test.js index 2a7a4a310fcd1..fe92a70dbcf9d 100644 --- a/scripts/error-codes/__tests__/replace-invariant-error-codes-test.js +++ b/scripts/error-codes/__tests__/replace-invariant-error-codes-test.js @@ -47,7 +47,7 @@ describe('error codes transform', () => { }); it('should only add `reactProdInvariant` once', () => { - var expectedInvariantTransformResult = + const expectedInvariantTransformResult = '!condition ? ' + '__DEV__ ? ' + "invariant(false, 'Do not override existing functions.') : " + diff --git a/scripts/error-codes/replace-invariant-error-codes.js b/scripts/error-codes/replace-invariant-error-codes.js index faf61e35e5ed6..790018f6cdfbb 100644 --- a/scripts/error-codes/replace-invariant-error-codes.js +++ b/scripts/error-codes/replace-invariant-error-codes.js @@ -6,9 +6,9 @@ */ 'use strict'; -var fs = require('fs'); -var evalToString = require('../shared/evalToString'); -var invertObject = require('./invertObject'); +const fs = require('fs'); +const evalToString = require('../shared/evalToString'); +const invertObject = require('./invertObject'); module.exports = function(babel) { const t = babel.types; diff --git a/scripts/eslint-rules/__tests__/no-primitive-constructors-test.internal.js b/scripts/eslint-rules/__tests__/no-primitive-constructors-test.internal.js index ca25af446b180..b72c824a874b0 100644 --- a/scripts/eslint-rules/__tests__/no-primitive-constructors-test.internal.js +++ b/scripts/eslint-rules/__tests__/no-primitive-constructors-test.internal.js @@ -9,9 +9,9 @@ 'use strict'; -var rule = require('../no-primitive-constructors'); -var RuleTester = require('eslint').RuleTester; -var ruleTester = new RuleTester(); +const rule = require('../no-primitive-constructors'); +const RuleTester = require('eslint').RuleTester; +const ruleTester = new RuleTester(); ruleTester.run('eslint-rules/no-primitive-constructors', rule, { valid: ['!!obj', "'' + obj", '+string'], diff --git a/scripts/eslint-rules/__tests__/warning-and-invariant-args-test.internal.js b/scripts/eslint-rules/__tests__/warning-and-invariant-args-test.internal.js index 7e6b63942fd43..26c9843a0d9c4 100644 --- a/scripts/eslint-rules/__tests__/warning-and-invariant-args-test.internal.js +++ b/scripts/eslint-rules/__tests__/warning-and-invariant-args-test.internal.js @@ -9,9 +9,9 @@ 'use strict'; -var rule = require('../warning-and-invariant-args'); -var RuleTester = require('eslint').RuleTester; -var ruleTester = new RuleTester(); +const rule = require('../warning-and-invariant-args'); +const RuleTester = require('eslint').RuleTester; +const ruleTester = new RuleTester(); ruleTester.run('eslint-rules/warning-and-invariant-args', rule, { valid: [ diff --git a/scripts/eslint-rules/warning-and-invariant-args.js b/scripts/eslint-rules/warning-and-invariant-args.js index d2635fec2a7e0..ff7e6a9eedc6f 100644 --- a/scripts/eslint-rules/warning-and-invariant-args.js +++ b/scripts/eslint-rules/warning-and-invariant-args.js @@ -20,8 +20,8 @@ module.exports = function(context) { if (node.type === 'Literal' && typeof node.value === 'string') { return node.value; } else if (node.type === 'BinaryExpression' && node.operator === '+') { - var l = getLiteralString(node.left); - var r = getLiteralString(node.right); + const l = getLiteralString(node.left); + const r = getLiteralString(node.right); if (l !== null && r !== null) { return l + r; } @@ -33,7 +33,7 @@ module.exports = function(context) { CallExpression: function(node) { // This could be a little smarter by checking context.getScope() to see // how warning/invariant was defined. - var isWarningOrInvariant = + const isWarningOrInvariant = node.callee.type === 'Identifier' && (node.callee.name === 'warning' || node.callee.name === 'invariant'); if (!isWarningOrInvariant) { @@ -45,7 +45,7 @@ module.exports = function(context) { }); return; } - var format = getLiteralString(node.arguments[1]); + const format = getLiteralString(node.arguments[1]); if (format === null) { context.report( node, @@ -64,7 +64,7 @@ module.exports = function(context) { return; } // count the number of formatting substitutions, plus the first two args - var expectedNArgs = (format.match(/%s/g) || []).length + 2; + const expectedNArgs = (format.match(/%s/g) || []).length + 2; if (node.arguments.length !== expectedNArgs) { context.report( node, diff --git a/scripts/eslint/es5Config.js b/scripts/eslint/es5Config.js index eec14ee783879..bd6770c902f10 100644 --- a/scripts/eslint/es5Config.js +++ b/scripts/eslint/es5Config.js @@ -1,9 +1,10 @@ const eslintrc = require('../../.eslintrc'); module.exports = Object.assign({}, eslintrc, { - parseOptions: { + parser: 'espree', + parserOptions: { ecmaVersion: 5, - sourceType: 'module', + sourceType: 'script', ecmaFeatures: { jsx: true, }, diff --git a/scripts/eslint/es6Config.js b/scripts/eslint/es6Config.js index 0b5fae5617cc4..99ecb9d7ee386 100644 --- a/scripts/eslint/es6Config.js +++ b/scripts/eslint/es6Config.js @@ -1,13 +1,15 @@ const eslintrc = require('../../.eslintrc'); -var ERROR = 2; +const ERROR = 2; module.exports = Object.assign({}, eslintrc, { - parseOptions: { - ecmaVersion: 6, + parser: 'espree', + parserOptions: { + ecmaVersion: 2017, sourceType: 'module', ecmaFeatures: { jsx: true, + experimentalObjectRestSpread: true, }, }, rules: Object.assign({}, eslintrc.rules, { diff --git a/scripts/eslint/esNextConfig.js b/scripts/eslint/esNextConfig.js new file mode 100644 index 0000000000000..1346924022cc3 --- /dev/null +++ b/scripts/eslint/esNextConfig.js @@ -0,0 +1,9 @@ +const eslintrc = require('../../.eslintrc'); + +const ERROR = 2; + +module.exports = Object.assign({}, eslintrc, { + rules: Object.assign({}, eslintrc.rules, { + 'no-var': ERROR, + }), +}); diff --git a/scripts/eslint/index.js b/scripts/eslint/index.js index 534b7c3450ea2..8bf4345208804 100644 --- a/scripts/eslint/index.js +++ b/scripts/eslint/index.js @@ -8,16 +8,40 @@ 'use strict'; const CLIEngine = require('eslint').CLIEngine; -const eslintPath = './scripts/eslint'; -const {es5Path, es6Path} = require('../shared/esPath'); +const {es5Path, es6Path, esNextPath} = require('../shared/esPath'); -module.exports = function lintOnFiles({isES6, filePatterns}) { - const configFile = isES6 - ? `${eslintPath}/es6Config.js` - : `${eslintPath}/es5Config.js`; +const es5Options = { + configFile: `${__dirname}/es5Config.js`, + ignorePattern: [...es6Path, ...esNextPath], +}; + +const es6Options = { + configFile: `${__dirname}/es6Config.js`, + ignorePattern: [...es5Path, ...esNextPath], +}; + +const esNextOptions = { + configFile: `${__dirname}/esNextConfig.js`, + ignorePattern: [...es5Path, ...es6Path], +}; + +module.exports = function lintOnFiles({ecmaVersion, filePatterns}) { + let options; + switch (ecmaVersion) { + case '5': + options = es5Options; + break; + case '6': + options = es6Options; + break; + case 'next': + options = esNextOptions; + break; + default: + console.error('ecmaVersion only accpet value: "5", "6", "next"'); + } - const ignorePattern = isES6 ? es5Path : es6Path; - const cli = new CLIEngine({configFile, ignorePattern}); + const cli = new CLIEngine({...options}); const formatter = cli.getFormatter(); const report = cli.executeOnFiles(filePatterns); diff --git a/scripts/facts-tracker/index.js b/scripts/facts-tracker/index.js index d5b3f7425a120..78bd66cc71ab2 100644 --- a/scripts/facts-tracker/index.js +++ b/scripts/facts-tracker/index.js @@ -9,25 +9,25 @@ 'use strict'; -var fs = require('fs'); -var path = require('path'); -var execFileSync = require('child_process').execFileSync; +const fs = require('fs'); +const path = require('path'); +const execFileSync = require('child_process').execFileSync; -var cwd = null; +let cwd = null; function exec(command, args) { console.error('>', [command].concat(args)); - var options = {}; + const options = {}; if (cwd) { options.cwd = cwd; } return execFileSync(command, args, options).toString(); } -var isCI = !!process.env.TRAVIS_REPO_SLUG; +const isCI = !!process.env.TRAVIS_REPO_SLUG; if (isCI) { - var branch = process.env.TRAVIS_BRANCH || process.env.CIRCLE_BRANCH; - var isPullRequest = + const branch = process.env.TRAVIS_BRANCH || process.env.CIRCLE_BRANCH; + const isPullRequest = (!!process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false') || !!process.env.CI_PULL_REQUEST; @@ -92,9 +92,9 @@ function getRepoSlug() { return process.env.TRAVIS_REPO_SLUG; } - var remotes = exec('git', ['remote', '-v']).split('\n'); - for (var i = 0; i < remotes.length; ++i) { - var match = remotes[i].match(/^origin\t[^:]+:([^\.]+).+\(fetch\)/); + const remotes = exec('git', ['remote', '-v']).split('\n'); + for (let i = 0; i < remotes.length; ++i) { + const match = remotes[i].match(/^origin\t[^:]+:([^\.]+).+\(fetch\)/); if (match) { return match[1]; } @@ -104,17 +104,17 @@ function getRepoSlug() { process.exit(1); } -var repoSlug = getRepoSlug(); -var currentCommitHash = exec('git', ['rev-parse', 'HEAD']).trim(); -var currentTimestamp = new Date() +const repoSlug = getRepoSlug(); +const currentCommitHash = exec('git', ['rev-parse', 'HEAD']).trim(); +const currentTimestamp = new Date() .toISOString() .replace('T', ' ') .replace(/\..+/, ''); function checkoutFactsFolder() { - var factsFolder = '../' + repoSlug.split('/')[1] + '-facts'; + const factsFolder = '../' + repoSlug.split('/')[1] + '-facts'; if (!fs.existsSync(factsFolder)) { - var repoURL; + let repoURL; if (isCI) { repoURL = 'https://' + @@ -146,9 +146,9 @@ function checkoutFactsFolder() { } checkoutFactsFolder(); -for (var i = 2; i < process.argv.length; i += 2) { - var name = process.argv[i].trim(); - var value = process.argv[i + 1]; +for (let i = 2; i < process.argv.length; i += 2) { + const name = process.argv[i].trim(); + const value = process.argv[i + 1]; if (value.indexOf('\n') !== -1) { console.error( 'facts-tracker: skipping', @@ -159,13 +159,14 @@ for (var i = 2; i < process.argv.length; i += 2) { continue; } - var filename = name + '.txt'; + const filename = name + '.txt'; + let lastLine; try { - var lastLine = exec('tail', ['-n', '1', filename]); + lastLine = exec('tail', ['-n', '1', filename]); } catch (e) { // ignore error } - var lastValue = + const lastValue = lastLine && lastLine.replace(/^[^\t]+\t[^\t]+\t/, '').slice(0, -1); // commit hash \t timestamp \t // trailing \n if (value !== lastValue) { diff --git a/scripts/flow/react-native-host-hooks.js b/scripts/flow/react-native-host-hooks.js index ab33b763677da..1bfb9421faec3 100644 --- a/scripts/flow/react-native-host-hooks.js +++ b/scripts/flow/react-native-host-hooks.js @@ -39,7 +39,7 @@ declare module 'UIManager' { reactTag: number, viewName: string, rootTag: number, - props: ?Object + props: ?Object, ): void; declare function manageChildren( containerTag: number, @@ -47,30 +47,30 @@ declare module 'UIManager' { moveToIndices: Array, addChildReactTags: Array, addAtIndices: Array, - removeAtIndices: Array + removeAtIndices: Array, ): void; declare function measure(hostComponent: mixed, callback: Function): void; declare function measureInWindow( nativeTag: ?number, - callback: Function + callback: Function, ): void; declare function measureLayout( nativeTag: mixed, nativeNode: number, onFail: Function, - onSuccess: Function + onSuccess: Function, ): void; declare function removeRootView(containerTag: number): void; declare function removeSubviewsFromContainerWithID(containerId: number): void; declare function replaceExistingNonRootView(): void; declare function setChildren( containerTag: number, - reactTags: Array + reactTags: Array, ): void; declare function updateView( reactTag: number, viewName: string, - props: ?Object + props: ?Object, ): void; declare function __takeSnapshot( view?: 'window' | Element | number, @@ -79,7 +79,7 @@ declare module 'UIManager' { height?: number, format?: 'png' | 'jpeg', quality?: number, - } + }, ): Promise; } declare module 'View' { @@ -90,14 +90,14 @@ declare module 'RTManager' { declare function createNode( tag: number, classType: string, - props: ?Object + props: ?Object, ): void; declare function beginUpdates(): void; declare function appendChildToContext( contextTag: number, - childTag: number + childTag: number, ): void; declare function appendChild(parentTag: number, childTag: number): void; declare function prependChild(childTag: number, beforeTag: number): void; diff --git a/scripts/jest/preprocessor.js b/scripts/jest/preprocessor.js index d015793e3a680..fc2782b0ca53f 100644 --- a/scripts/jest/preprocessor.js +++ b/scripts/jest/preprocessor.js @@ -1,29 +1,29 @@ 'use strict'; -var path = require('path'); +const path = require('path'); -var babel = require('babel-core'); -var coffee = require('coffee-script'); +const babel = require('babel-core'); +const coffee = require('coffee-script'); -var tsPreprocessor = require('./typescript/preprocessor'); -var createCacheKeyFunction = require('fbjs-scripts/jest/createCacheKeyFunction'); +const tsPreprocessor = require('./typescript/preprocessor'); +const createCacheKeyFunction = require('fbjs-scripts/jest/createCacheKeyFunction'); // Use require.resolve to be resilient to file moves, npm updates, etc -var pathToBabel = path.join( +const pathToBabel = path.join( require.resolve('babel-core'), '..', 'package.json' ); -var pathToBabelPluginDevWithCode = require.resolve( +const pathToBabelPluginDevWithCode = require.resolve( '../error-codes/replace-invariant-error-codes' ); -var pathToBabelPluginAsyncToGenerator = require.resolve( +const pathToBabelPluginAsyncToGenerator = require.resolve( 'babel-plugin-transform-async-to-generator' ); -var pathToBabelrc = path.join(__dirname, '..', '..', '.babelrc'); -var pathToErrorCodes = require.resolve('../error-codes/codes.json'); +const pathToBabelrc = path.join(__dirname, '..', '..', '.babelrc'); +const pathToErrorCodes = require.resolve('../error-codes/codes.json'); -var babelOptions = { +const babelOptions = { plugins: [ // For Node environment only. For builds, Rollup takes care of ESM. require.resolve('babel-plugin-transform-es2015-modules-commonjs'), @@ -51,7 +51,7 @@ module.exports = { if (!filePath.match(/\/third_party\//)) { // for test files, we also apply the async-await transform, but we want to // make sure we don't accidentally apply that transform to product code. - var isTestFile = !!filePath.match(/\/__tests__\//); + const isTestFile = !!filePath.match(/\/__tests__\//); return babel.transform( src, Object.assign( diff --git a/scripts/jest/setupTests.js b/scripts/jest/setupTests.js index a5591fb605b88..1166e22be813d 100644 --- a/scripts/jest/setupTests.js +++ b/scripts/jest/setupTests.js @@ -5,8 +5,8 @@ if (process.env.REACT_CLASS_EQUIVALENCE_TEST) { // require that instead. require('./spec-equivalence-reporter/setupTests.js'); } else { - var env = jasmine.getEnv(); - var errorMap = require('../error-codes/codes.json'); + const env = jasmine.getEnv(); + const errorMap = require('../error-codes/codes.json'); // TODO: Stop using spyOn in all the test since that seem deprecated. // This is a legacy upgrade path strategy from: @@ -56,8 +56,8 @@ if (process.env.REACT_CLASS_EQUIVALENCE_TEST) { }); ['error', 'warn'].forEach(methodName => { - var oldMethod = console[methodName]; - var newMethod = function() { + const oldMethod = console[methodName]; + const newMethod = function() { newMethod.__callCount++; oldMethod.apply(this, arguments); }; @@ -90,7 +90,7 @@ if (process.env.REACT_CLASS_EQUIVALENCE_TEST) { if (process.env.NODE_ENV === 'production') { // In production, we strip error messages and turn them into codes. // This decodes them back so that the test assertions on them work. - var decodeErrorMessage = function(message) { + const decodeErrorMessage = function(message) { if (!message) { return message; } diff --git a/scripts/jest/spec-equivalence-reporter/setupTests.js b/scripts/jest/spec-equivalence-reporter/setupTests.js index c9f892fc071ed..753eea70e40cc 100644 --- a/scripts/jest/spec-equivalence-reporter/setupTests.js +++ b/scripts/jest/spec-equivalence-reporter/setupTests.js @@ -7,9 +7,9 @@ 'use strict'; -var expect = global.expect; +const expect = global.expect; -var numExpectations = 0; +let numExpectations = 0; global.expect = function() { numExpectations += 1; diff --git a/scripts/jest/typescript/preprocessor.js b/scripts/jest/typescript/preprocessor.js index 1345888c2c0d9..f6ec9c49f1aad 100644 --- a/scripts/jest/typescript/preprocessor.js +++ b/scripts/jest/typescript/preprocessor.js @@ -1,10 +1,10 @@ 'use strict'; -var fs = require('fs'); -var path = require('path'); -var ts = require('typescript'); +const fs = require('fs'); +const path = require('path'); +const ts = require('typescript'); -var tsOptions = { +const tsOptions = { module: ts.ModuleKind.CommonJS, jsx: ts.JsxEmit.React, }; @@ -20,12 +20,12 @@ function formatErrorMessage(error) { } function compile(content, contentFilename) { - var output = null; - var compilerHost = { + let output = null; + const compilerHost = { getSourceFile(filename, languageVersion) { - var source; - var jestRegex = /jest\.d\.ts/; - var reactRegex = /(?:React|ReactDOM|PropTypes)(?:\.d)?\.ts$/; + let source; + const jestRegex = /jest\.d\.ts/; + const reactRegex = /(?:React|ReactDOM|PropTypes)(?:\.d)?\.ts$/; // `path.normalize` is used to turn forward slashes in // the file path into backslashes on Windows. @@ -78,13 +78,15 @@ function compile(content, contentFilename) { return ts.sys.useCaseSensitiveFileNames; }, }; - var program = ts.createProgram( + const program = ts.createProgram( ['lib.d.ts', 'jest.d.ts', contentFilename], tsOptions, compilerHost ); - var emitResult = program.emit(); - var errors = ts.getPreEmitDiagnostics(program).concat(emitResult.diagnostics); + const emitResult = program.emit(); + const errors = ts + .getPreEmitDiagnostics(program) + .concat(emitResult.diagnostics); if (errors.length) { throw new Error(errors.map(formatErrorMessage).join('\n')); } diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index a749eb7183f09..2c40833ace6f0 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -14,7 +14,7 @@ const glob = require('glob'); const prettier = require('prettier'); const fs = require('fs'); const listChangedFiles = require('../shared/listChangedFiles'); -const {es5Path, es6Path} = require('../shared/esPath'); +const {es5Path, es6Path, esNextPath} = require('../shared/esPath'); const mode = process.argv[2] || 'check'; const shouldWrite = mode === 'write' || mode === 'write-changed'; @@ -29,15 +29,18 @@ const defaultOptions = { }; const config = { default: { - patterns: es6Path, + patterns: esNextPath, ignore: ['**/node_modules/**'], }, scripts: { - patterns: es5Path, + patterns: [...es5Path, ...es6Path], ignore: [ '**/node_modules/**', // Built files and React repo clone 'scripts/bench/benchmarks/**', + // shims & flow treat as ESNext + 'scripts/flow/*.js', + 'scripts/rollup/shims/**/*.js', ], options: { trailingComma: 'es5', @@ -45,7 +48,7 @@ const config = { }, }; -var changedFiles = listChangedFiles(); +const changedFiles = listChangedFiles(); let didWarn = false; let didError = false; Object.keys(config).forEach(key => { diff --git a/scripts/rollup/plugins/__tests__/wrap-warning-with-env-check-test.js b/scripts/rollup/plugins/__tests__/wrap-warning-with-env-check-test.js index 44e063f9f8017..3836a1e6e4dcc 100644 --- a/scripts/rollup/plugins/__tests__/wrap-warning-with-env-check-test.js +++ b/scripts/rollup/plugins/__tests__/wrap-warning-with-env-check-test.js @@ -17,11 +17,11 @@ function transform(input) { } function compare(input, output) { - var compiled = transform(input); + const compiled = transform(input); expect(compiled).toEqual(output); } -var oldEnv; +let oldEnv; describe('wrap-warning-with-env-check', () => { beforeEach(() => { diff --git a/scripts/rollup/plugins/wrap-warning-with-env-check.js b/scripts/rollup/plugins/wrap-warning-with-env-check.js index c5bd7e98619b0..1ab26a6b9aed5 100644 --- a/scripts/rollup/plugins/wrap-warning-with-env-check.js +++ b/scripts/rollup/plugins/wrap-warning-with-env-check.js @@ -7,17 +7,17 @@ 'use strict'; module.exports = function(babel, options) { - var t = babel.types; + const t = babel.types; - var DEV_EXPRESSION = t.identifier('__DEV__'); + const DEV_EXPRESSION = t.identifier('__DEV__'); - var SEEN_SYMBOL = Symbol('expression.seen'); + const SEEN_SYMBOL = Symbol('expression.seen'); return { visitor: { CallExpression: { exit: function(path) { - var node = path.node; + const node = path.node; // Ignore if it's already been processed if (node[SEEN_SYMBOL]) { diff --git a/scripts/rollup/shims/facebook-www/renderSubtreeIntoContainer.js b/scripts/rollup/shims/facebook-www/renderSubtreeIntoContainer.js index 4e3766c8ba451..703530f97287c 100644 --- a/scripts/rollup/shims/facebook-www/renderSubtreeIntoContainer.js +++ b/scripts/rollup/shims/facebook-www/renderSubtreeIntoContainer.js @@ -9,6 +9,6 @@ 'use strict'; -var ReactDOM = require('ReactDOM-fb'); +const ReactDOM = require('ReactDOM-fb'); module.exports = ReactDOM.unstable_renderSubtreeIntoContainer; diff --git a/scripts/rollup/shims/react-native/ReactFeatureFlags.js b/scripts/rollup/shims/react-native/ReactFeatureFlags.js index 276dc914254c5..18db9afc1934f 100644 --- a/scripts/rollup/shims/react-native/ReactFeatureFlags.js +++ b/scripts/rollup/shims/react-native/ReactFeatureFlags.js @@ -9,7 +9,7 @@ 'use strict'; -var ReactFeatureFlags = { +const ReactFeatureFlags = { debugRenderPhaseSideEffects: false, }; diff --git a/scripts/shared/__tests__/evalToString-test.js b/scripts/shared/__tests__/evalToString-test.js index 968a88079ac71..c039d61777915 100644 --- a/scripts/shared/__tests__/evalToString-test.js +++ b/scripts/shared/__tests__/evalToString-test.js @@ -6,12 +6,13 @@ */ 'use strict'; -var evalToString = require('../evalToString'); -var babylon = require('babylon'); +const evalToString = require('../evalToString'); +const babylon = require('babylon'); -var parse = source => babylon.parse(`(${source});`).program.body[0].expression; // quick way to get an exp node +const parse = source => + babylon.parse(`(${source});`).program.body[0].expression; // quick way to get an exp node -var parseAndEval = source => evalToString(parse(source)); +const parseAndEval = source => evalToString(parse(source)); describe('evalToString', () => { it('should support StringLiteral', () => { diff --git a/scripts/shared/esPath.js b/scripts/shared/esPath.js index 075819b32f595..7aed92fa55d82 100644 --- a/scripts/shared/esPath.js +++ b/scripts/shared/esPath.js @@ -6,23 +6,28 @@ */ 'use strict'; -const es6Path = [ +const esNextPath = [ // Internal forwarding modules 'packages/*/*.js', // Source files 'packages/*/src/**/*.js', 'packages/shared/**/*.js', + // shims & flow + 'scripts/flow/*.js', + 'scripts/rollup/shims/**/*.js', ]; +const es6Path = ['scripts/**/*.js']; + const es5Path = [ // Forwarding modules that get published to npm (must be ES5) 'packages/*/npm/**/*.js', // Need to work on Node - 'scripts/**/*.js', 'fixtures/**/*.js', ]; module.exports = { + esNextPath, es6Path, es5Path, }; diff --git a/scripts/shared/listChangedFiles.js b/scripts/shared/listChangedFiles.js index a98ed2db64506..ef36bc10f2127 100644 --- a/scripts/shared/listChangedFiles.js +++ b/scripts/shared/listChangedFiles.js @@ -10,7 +10,7 @@ const execFileSync = require('child_process').execFileSync; const exec = (command, args) => { console.log('> ' + [command].concat(args).join(' ')); - var options = { + const options = { cwd: process.cwd(), env: process.env, stdio: 'pipe', diff --git a/scripts/tasks/eslint.js b/scripts/tasks/eslint.js index a9a5fbbc28405..bd35c3d6d0b88 100644 --- a/scripts/tasks/eslint.js +++ b/scripts/tasks/eslint.js @@ -8,12 +8,18 @@ 'use strict'; const lintOnFiles = require('../eslint'); -const {es5Path} = require('../shared/esPath'); +const {es6Path, es5Path, esNextPath} = require('../shared/esPath'); -const es6Report = lintOnFiles({isES6: true, filePatterns: ['.']}); -const es5Report = lintOnFiles({isES6: false, filePatterns: es5Path}); +const esNextReport = lintOnFiles({ + ecmaVersion: 'next', + filePatterns: esNextPath, +}); +const es6Report = lintOnFiles({ecmaVersion: '6', filePatterns: es6Path}); +const es5Report = lintOnFiles({ecmaVersion: '5', filePatterns: es5Path}); if ( + esNextReport.errorCount > 0 || + esNextReport.warningCount > 0 || es6Report.errorCount > 0 || es6Report.warningCount > 0 || es5Report.errorCount > 0 || diff --git a/scripts/tasks/flow.js b/scripts/tasks/flow.js index 789f9a0ea299d..30ef8a3f230e4 100644 --- a/scripts/tasks/flow.js +++ b/scripts/tasks/flow.js @@ -7,10 +7,10 @@ 'use strict'; -var path = require('path'); -var spawn = require('child_process').spawn; +const path = require('path'); +const spawn = require('child_process').spawn; -var extension = process.platform === 'win32' ? '.cmd' : ''; +const extension = process.platform === 'win32' ? '.cmd' : ''; spawn(path.join('node_modules', '.bin', 'flow' + extension), ['check', '.'], { // Allow colors to pass through diff --git a/scripts/tasks/linc.js b/scripts/tasks/linc.js index ba8d8221a8000..dfa9633a93208 100644 --- a/scripts/tasks/linc.js +++ b/scripts/tasks/linc.js @@ -12,10 +12,13 @@ const listChangedFiles = require('../shared/listChangedFiles'); const changedFiles = [...listChangedFiles()]; const jsFiles = changedFiles.filter(file => file.match(/.js$/g)); -const es6Report = lintOnFiles({isES6: true, filePatterns: jsFiles}); -const es5Report = lintOnFiles({isES6: false, filePatterns: jsFiles}); +const esNextReport = lintOnFiles({ecmaVersion: 'next', filePatterns: jsFiles}); +const es6Report = lintOnFiles({ecmaVersion: '6', filePatterns: jsFiles}); +const es5Report = lintOnFiles({ecmaVersion: '5', filePatterns: jsFiles}); if ( + esNextReport.errorCount > 0 || + getSourceCodeWarnings(esNextReport) || es6Report.errorCount > 0 || getSourceCodeWarnings(es6Report) || es5Report.errorCount > 0 || From adb36b77d18e275c27b670abcc14ffc31f3505d6 Mon Sep 17 00:00:00 2001 From: JackHou Date: Mon, 11 Dec 2017 15:48:55 +0800 Subject: [PATCH 05/11] rename eslint config file & update eslint rules --- .../src/__tests__/ReactDOMComponent-test.js | 16 ++++++------ .../src/__tests__/validateDOMNesting-test.js | 4 +-- .../src/events/forks/EventListener-www.js | 2 +- .../transform-prevent-infinite-loops-test.js | 1 + scripts/eslint/es5Config.js | 12 --------- scripts/eslint/esNextConfig.js | 9 ------- .../eslint/{es6Config.js => eslintrc.node.js} | 13 ++++++++-- scripts/eslint/eslintrc.npm.js | 18 +++++++++++++ scripts/eslint/eslintrc.source.js | 18 +++++++++++++ scripts/eslint/index.js | 26 +++++++++---------- scripts/prettier/index.js | 6 ++--- scripts/shared/esPath.js | 14 +++++----- scripts/tasks/eslint.js | 8 +++--- 13 files changed, 85 insertions(+), 62 deletions(-) delete mode 100644 scripts/eslint/es5Config.js delete mode 100644 scripts/eslint/esNextConfig.js rename scripts/eslint/{es6Config.js => eslintrc.node.js} (56%) create mode 100644 scripts/eslint/eslintrc.npm.js create mode 100644 scripts/eslint/eslintrc.source.js diff --git a/packages/react-dom/src/__tests__/ReactDOMComponent-test.js b/packages/react-dom/src/__tests__/ReactDOMComponent-test.js index 0c49c01c28e4e..46961e7f3c347 100644 --- a/packages/react-dom/src/__tests__/ReactDOMComponent-test.js +++ b/packages/react-dom/src/__tests__/ReactDOMComponent-test.js @@ -443,10 +443,10 @@ describe('ReactDOMComponent', () => { }); it('should not set null/undefined attributes', () => { - var container = document.createElement('div'); + const container = document.createElement('div'); // Initial render. ReactDOM.render(, container); - var node = container.firstChild; + const node = container.firstChild; expect(node.hasAttribute('src')).toBe(false); expect(node.hasAttribute('data-foo')).toBe(false); // Update in one direction. @@ -468,9 +468,9 @@ describe('ReactDOMComponent', () => { }); it('should apply React-specific aliases to HTML elements', () => { - var container = document.createElement('div'); + const container = document.createElement('div'); ReactDOM.render(
, container); - var node = container.firstChild; + const node = container.firstChild; // Test attribute initialization. expect(node.getAttribute('accept-charset')).toBe('foo'); expect(node.hasAttribute('acceptCharset')).toBe(false); @@ -501,9 +501,9 @@ describe('ReactDOMComponent', () => { }); it('should apply React-specific aliases to SVG elements', () => { - var container = document.createElement('div'); + const container = document.createElement('div'); ReactDOM.render(, container); - var node = container.firstChild; + const node = container.firstChild; // Test attribute initialization. expect(node.getAttribute('arabic-form')).toBe('foo'); expect(node.hasAttribute('arabicForm')).toBe(false); @@ -543,9 +543,9 @@ describe('ReactDOMComponent', () => { }); it('should not apply React-specific aliases to custom elements', () => { - var container = document.createElement('div'); + const container = document.createElement('div'); ReactDOM.render(, container); - var node = container.firstChild; + const node = container.firstChild; // Should not get transformed to arabic-form as SVG would be. expect(node.getAttribute('arabicForm')).toBe('foo'); expect(node.hasAttribute('arabic-form')).toBe(false); diff --git a/packages/react-dom/src/__tests__/validateDOMNesting-test.js b/packages/react-dom/src/__tests__/validateDOMNesting-test.js index abee5a13bf8cf..f2e272338bbbd 100644 --- a/packages/react-dom/src/__tests__/validateDOMNesting-test.js +++ b/packages/react-dom/src/__tests__/validateDOMNesting-test.js @@ -9,8 +9,8 @@ 'use strict'; -var React = require('react'); -var ReactDOM = require('react-dom'); +const React = require('react'); +const ReactDOM = require('react-dom'); function normalizeCodeLocInfo(str) { return str && str.replace(/at .+?:\d+/g, 'at **'); diff --git a/packages/react-dom/src/events/forks/EventListener-www.js b/packages/react-dom/src/events/forks/EventListener-www.js index 0f6ddaf5bdae3..233c2ba56c5da 100644 --- a/packages/react-dom/src/events/forks/EventListener-www.js +++ b/packages/react-dom/src/events/forks/EventListener-www.js @@ -7,7 +7,7 @@ * @flow */ -var EventListenerWWW = require('EventListener'); +const EventListenerWWW = require('EventListener'); import typeof * as EventListenerType from '../EventListener'; import typeof * as EventListenerShimType from './EventListener-www'; diff --git a/scripts/babel/__tests__/transform-prevent-infinite-loops-test.js b/scripts/babel/__tests__/transform-prevent-infinite-loops-test.js index 82803d28d46c9..bcc508ad15800 100644 --- a/scripts/babel/__tests__/transform-prevent-infinite-loops-test.js +++ b/scripts/babel/__tests__/transform-prevent-infinite-loops-test.js @@ -4,6 +4,7 @@ * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ +'use strict'; describe('transform-prevent-infinite-loops', () => { // Note: instead of testing the transform by applying it, diff --git a/scripts/eslint/es5Config.js b/scripts/eslint/es5Config.js deleted file mode 100644 index bd6770c902f10..0000000000000 --- a/scripts/eslint/es5Config.js +++ /dev/null @@ -1,12 +0,0 @@ -const eslintrc = require('../../.eslintrc'); - -module.exports = Object.assign({}, eslintrc, { - parser: 'espree', - parserOptions: { - ecmaVersion: 5, - sourceType: 'script', - ecmaFeatures: { - jsx: true, - }, - }, -}); diff --git a/scripts/eslint/esNextConfig.js b/scripts/eslint/esNextConfig.js deleted file mode 100644 index 1346924022cc3..0000000000000 --- a/scripts/eslint/esNextConfig.js +++ /dev/null @@ -1,9 +0,0 @@ -const eslintrc = require('../../.eslintrc'); - -const ERROR = 2; - -module.exports = Object.assign({}, eslintrc, { - rules: Object.assign({}, eslintrc.rules, { - 'no-var': ERROR, - }), -}); diff --git a/scripts/eslint/es6Config.js b/scripts/eslint/eslintrc.node.js similarity index 56% rename from scripts/eslint/es6Config.js rename to scripts/eslint/eslintrc.node.js index 99ecb9d7ee386..81745f169bcf7 100644 --- a/scripts/eslint/es6Config.js +++ b/scripts/eslint/eslintrc.node.js @@ -1,3 +1,12 @@ +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +'use strict'; + const eslintrc = require('../../.eslintrc'); const ERROR = 2; @@ -6,13 +15,13 @@ module.exports = Object.assign({}, eslintrc, { parser: 'espree', parserOptions: { ecmaVersion: 2017, - sourceType: 'module', + sourceType: 'script', ecmaFeatures: { - jsx: true, experimentalObjectRestSpread: true, }, }, rules: Object.assign({}, eslintrc.rules, { 'no-var': ERROR, + strict: ERROR, }), }); diff --git a/scripts/eslint/eslintrc.npm.js b/scripts/eslint/eslintrc.npm.js new file mode 100644 index 0000000000000..6ddf3e5385c3d --- /dev/null +++ b/scripts/eslint/eslintrc.npm.js @@ -0,0 +1,18 @@ +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +'use strict'; + +const eslintrc = require('../../.eslintrc'); + +module.exports = Object.assign({}, eslintrc, { + parser: 'espree', + parserOptions: { + ecmaVersion: 5, + sourceType: 'script', + }, +}); diff --git a/scripts/eslint/eslintrc.source.js b/scripts/eslint/eslintrc.source.js new file mode 100644 index 0000000000000..6b36387869178 --- /dev/null +++ b/scripts/eslint/eslintrc.source.js @@ -0,0 +1,18 @@ +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +'use strict'; + +const eslintrc = require('../../.eslintrc'); + +const ERROR = 2; + +module.exports = Object.assign({}, eslintrc, { + rules: Object.assign({}, eslintrc.rules, { + 'no-var': ERROR, + }), +}); diff --git a/scripts/eslint/index.js b/scripts/eslint/index.js index 8bf4345208804..ad577bae541b9 100644 --- a/scripts/eslint/index.js +++ b/scripts/eslint/index.js @@ -8,34 +8,34 @@ 'use strict'; const CLIEngine = require('eslint').CLIEngine; -const {es5Path, es6Path, esNextPath} = require('../shared/esPath'); +const {npmPath, nodePath, sourcePath} = require('../shared/esPath'); -const es5Options = { - configFile: `${__dirname}/es5Config.js`, - ignorePattern: [...es6Path, ...esNextPath], +const npmOptions = { + configFile: `${__dirname}/eslintrc.npm.js`, + ignorePattern: [...nodePath, ...sourcePath], }; -const es6Options = { - configFile: `${__dirname}/es6Config.js`, - ignorePattern: [...es5Path, ...esNextPath], +const nodeOptions = { + configFile: `${__dirname}/eslintrc.node.js`, + ignorePattern: [...npmPath, ...sourcePath], }; -const esNextOptions = { - configFile: `${__dirname}/esNextConfig.js`, - ignorePattern: [...es5Path, ...es6Path], +const sourceOptions = { + configFile: `${__dirname}/eslintrc.source.js`, + ignorePattern: [...npmPath, ...nodePath], }; module.exports = function lintOnFiles({ecmaVersion, filePatterns}) { let options; switch (ecmaVersion) { case '5': - options = es5Options; + options = npmOptions; break; case '6': - options = es6Options; + options = nodeOptions; break; case 'next': - options = esNextOptions; + options = sourceOptions; break; default: console.error('ecmaVersion only accpet value: "5", "6", "next"'); diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index 2c40833ace6f0..863721c47c556 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -14,7 +14,7 @@ const glob = require('glob'); const prettier = require('prettier'); const fs = require('fs'); const listChangedFiles = require('../shared/listChangedFiles'); -const {es5Path, es6Path, esNextPath} = require('../shared/esPath'); +const {npmPath, nodePath, sourcePath} = require('../shared/esPath'); const mode = process.argv[2] || 'check'; const shouldWrite = mode === 'write' || mode === 'write-changed'; @@ -29,11 +29,11 @@ const defaultOptions = { }; const config = { default: { - patterns: esNextPath, + patterns: sourcePath, ignore: ['**/node_modules/**'], }, scripts: { - patterns: [...es5Path, ...es6Path], + patterns: [...npmPath, ...nodePath], ignore: [ '**/node_modules/**', // Built files and React repo clone diff --git a/scripts/shared/esPath.js b/scripts/shared/esPath.js index 7aed92fa55d82..8b4cadcef76fd 100644 --- a/scripts/shared/esPath.js +++ b/scripts/shared/esPath.js @@ -6,7 +6,7 @@ */ 'use strict'; -const esNextPath = [ +const sourcePath = [ // Internal forwarding modules 'packages/*/*.js', // Source files @@ -17,17 +17,15 @@ const esNextPath = [ 'scripts/rollup/shims/**/*.js', ]; -const es6Path = ['scripts/**/*.js']; +const nodePath = ['scripts/**/*.js', 'fixtures/**/*.js']; -const es5Path = [ +const npmPath = [ // Forwarding modules that get published to npm (must be ES5) 'packages/*/npm/**/*.js', - // Need to work on Node - 'fixtures/**/*.js', ]; module.exports = { - esNextPath, - es6Path, - es5Path, + sourcePath, + nodePath, + npmPath, }; diff --git a/scripts/tasks/eslint.js b/scripts/tasks/eslint.js index bd35c3d6d0b88..4d62de8f33167 100644 --- a/scripts/tasks/eslint.js +++ b/scripts/tasks/eslint.js @@ -8,14 +8,14 @@ 'use strict'; const lintOnFiles = require('../eslint'); -const {es6Path, es5Path, esNextPath} = require('../shared/esPath'); +const {nodePath, npmPath, sourcePath} = require('../shared/esPath'); const esNextReport = lintOnFiles({ ecmaVersion: 'next', - filePatterns: esNextPath, + filePatterns: sourcePath, }); -const es6Report = lintOnFiles({ecmaVersion: '6', filePatterns: es6Path}); -const es5Report = lintOnFiles({ecmaVersion: '5', filePatterns: es5Path}); +const es6Report = lintOnFiles({ecmaVersion: '6', filePatterns: nodePath}); +const es5Report = lintOnFiles({ecmaVersion: '5', filePatterns: npmPath}); if ( esNextReport.errorCount > 0 || From 7bacfc3d21d5762e125e58319fd3f7204b28044b Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Mon, 11 Dec 2017 13:43:17 +0000 Subject: [PATCH 06/11] Undo yarn.lock changes --- yarn.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index 2fee401803d70..df11eb2e0b92c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3358,7 +3358,7 @@ minimatch@^2.0.3: minimatch@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: brace-expansion "^1.1.7" From e4e4153d3f2cc4fc59fbcb1a066a3a94332ef613 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Mon, 11 Dec 2017 13:44:58 +0000 Subject: [PATCH 07/11] Rename a file --- scripts/eslint/index.js | 6 +++++- scripts/prettier/index.js | 6 +++++- scripts/shared/{esPath.js => pathsByLanguageVersion.js} | 0 scripts/tasks/eslint.js | 6 +++++- 4 files changed, 15 insertions(+), 3 deletions(-) rename scripts/shared/{esPath.js => pathsByLanguageVersion.js} (100%) diff --git a/scripts/eslint/index.js b/scripts/eslint/index.js index ad577bae541b9..34a90cd307615 100644 --- a/scripts/eslint/index.js +++ b/scripts/eslint/index.js @@ -8,7 +8,11 @@ 'use strict'; const CLIEngine = require('eslint').CLIEngine; -const {npmPath, nodePath, sourcePath} = require('../shared/esPath'); +const { + npmPath, + nodePath, + sourcePath, +} = require('../shared/pathsByLanguageVersion'); const npmOptions = { configFile: `${__dirname}/eslintrc.npm.js`, diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index 863721c47c556..ed94c3574a5cb 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -14,7 +14,11 @@ const glob = require('glob'); const prettier = require('prettier'); const fs = require('fs'); const listChangedFiles = require('../shared/listChangedFiles'); -const {npmPath, nodePath, sourcePath} = require('../shared/esPath'); +const { + npmPath, + nodePath, + sourcePath, +} = require('../shared/pathsByLanguageVersion'); const mode = process.argv[2] || 'check'; const shouldWrite = mode === 'write' || mode === 'write-changed'; diff --git a/scripts/shared/esPath.js b/scripts/shared/pathsByLanguageVersion.js similarity index 100% rename from scripts/shared/esPath.js rename to scripts/shared/pathsByLanguageVersion.js diff --git a/scripts/tasks/eslint.js b/scripts/tasks/eslint.js index 4d62de8f33167..59ca242479f2b 100644 --- a/scripts/tasks/eslint.js +++ b/scripts/tasks/eslint.js @@ -8,7 +8,11 @@ 'use strict'; const lintOnFiles = require('../eslint'); -const {nodePath, npmPath, sourcePath} = require('../shared/esPath'); +const { + nodePath, + npmPath, + sourcePath, +} = require('../shared/pathsByLanguageVersion'); const esNextReport = lintOnFiles({ ecmaVersion: 'next', From 1e1c5fbe33b4a3fb390076f6c424fc21ffbe4baf Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Mon, 11 Dec 2017 13:50:54 +0000 Subject: [PATCH 08/11] Remove unnecessary exceptions --- .../bench/benchmarks/hacker-news/benchmark.js | 382 +- scripts/bench/benchmarks/hacker-news/build.js | 6 +- .../bench/benchmarks/hacker-news/generate.js | 17 +- .../benchmarks/hacker-news/top-stories.js | 1322 ++++- .../pe-class-components/benchmark.js | 4374 ++++++++++------ .../benchmarks/pe-class-components/build.js | 6 +- .../pe-functional-components/benchmark.js | 4623 ++++++++++------- .../pe-functional-components/build.js | 6 +- .../benchmarks/pe-no-components/benchmark.js | 3480 ++++++++----- .../benchmarks/pe-no-components/build.js | 6 +- scripts/flow/react-native-host-hooks.js | 18 +- scripts/prettier/index.js | 9 +- 12 files changed, 9112 insertions(+), 5137 deletions(-) diff --git a/scripts/bench/benchmarks/hacker-news/benchmark.js b/scripts/bench/benchmarks/hacker-news/benchmark.js index c83f90b57d5cc..202da35d242f3 100644 --- a/scripts/bench/benchmarks/hacker-news/benchmark.js +++ b/scripts/bench/benchmarks/hacker-news/benchmark.js @@ -17,96 +17,129 @@ return (url + '') .replace('https://', '') .replace('http://', '') - .split('/')[0] + .split('/')[0]; } function HeaderBar() { - return e('tr', { - style: { - backgroundColor: '#222', - }, - }, e('table', { + return e( + 'tr', + { style: { - padding: 4, + backgroundColor: '#222', }, - width: '100%', - cellSpacing: 0, - cellPadding: 0, - }, e('tbody', null, - e('tr', null, - e('td', { + }, + e( + 'table', + { style: { - width: 18, - paddingRight: 4, - }, - }, - e('a', { - href: '#', - }, - e('img', { - src: 'logo.png', - width: 16, - height: 16, + padding: 4, + }, + width: '100%', + cellSpacing: 0, + cellPadding: 0, + }, + e( + 'tbody', + null, + e( + 'tr', + null, + e( + 'td', + { style: { - border: '1px solid #00d8ff', + width: 18, + paddingRight: 4, }, - }) - ) - ), - e('td', { - style: { - lineHeight: '12pt', - }, - height: 10, - }, - e('span', { - className: 'pagetop', - }, - e('b', { className: 'hnname' }, 'React HN Benchmark'), - e('a', { href: '#' }, 'new'), - ' | ', - e('a', { href: '#' }, 'comments'), - ' | ', - e('a', { href: '#' }, 'show'), - ' | ', - e('a', { href: '#' }, 'ask'), - ' | ', - e('a', { href: '#' }, 'jobs'), - ' | ', - e('a', { href: '#' }, 'submit') + }, + e( + 'a', + { + href: '#', + }, + e('img', { + src: 'logo.png', + width: 16, + height: 16, + style: { + border: '1px solid #00d8ff', + }, + }) + ) + ), + e( + 'td', + { + style: { + lineHeight: '12pt', + }, + height: 10, + }, + e( + 'span', + { + className: 'pagetop', + }, + e('b', {className: 'hnname'}, 'React HN Benchmark'), + e('a', {href: '#'}, 'new'), + ' | ', + e('a', {href: '#'}, 'comments'), + ' | ', + e('a', {href: '#'}, 'show'), + ' | ', + e('a', {href: '#'}, 'ask'), + ' | ', + e('a', {href: '#'}, 'jobs'), + ' | ', + e('a', {href: '#'}, 'submit') + ) ) ) ) ) - )); + ); } - function Story({ story, rank }) { + function Story({story, rank}) { return [ - e('tr', { - className: 'athing', - }, - e('td', { - style: { - verticalAlign: 'top', - textAlign: 'right', - }, - className: 'title', + e( + 'tr', + { + className: 'athing', }, - e('span', { - className: 'rank', - }, `${rank}.`) - ), - e('td', { - className: 'votelinks', - style: { - verticalAlign: 'top', + e( + 'td', + { + style: { + verticalAlign: 'top', + textAlign: 'right', + }, + className: 'title', }, - }, - e('center', null, - e('a', { - href: '#', + e( + 'span', + { + className: 'rank', + }, + `${rank}.` + ) + ), + e( + 'td', + { + className: 'votelinks', + style: { + verticalAlign: 'top', }, + }, + e( + 'center', + null, + e( + 'a', + { + href: '#', + }, e('div', { className: 'votearrow', title: 'upvote', @@ -114,61 +147,95 @@ ) ) ), - e('td', { - className: 'title', - }, - e('a', { - href: '#', - className: 'storylink', + e( + 'td', + { + className: 'title', }, + e( + 'a', + { + href: '#', + className: 'storylink', + }, story.title ), - story.url ? ( - e('span', { - className: 'sitebit comhead', - }, - ' (', - e('a', { - href: '#', - }, - getHostUrl(story.url) - ), - ')' - ) - ) : null + story.url + ? e( + 'span', + { + className: 'sitebit comhead', + }, + ' (', + e( + 'a', + { + href: '#', + }, + getHostUrl(story.url) + ), + ')' + ) + : null ) ), - e('tr', null, + e( + 'tr', + null, e('td', { colSpan: 2, }), - e('td', { - className: 'subtext', - }, - e('span', { - className: 'score', - }, `${story.score} points`), - ' by ', - e('a', { - href: '#', - className: 'hnuser', - }, story.by), - ' ', - e('span', { - className: 'age', + e( + 'td', + { + className: 'subtext', }, - e('a', { + e( + 'span', + { + className: 'score', + }, + `${story.score} points` + ), + ' by ', + e( + 'a', + { href: '#', - }, timeAge(story.time)) + className: 'hnuser', + }, + story.by + ), + ' ', + e( + 'span', + { + className: 'age', + }, + e( + 'a', + { + href: '#', + }, + timeAge(story.time) + ) ), ' | ', - e('a', { - href: '#', - }, 'hide'), + e( + 'a', + { + href: '#', + }, + 'hide' + ), ' | ', - e('a', { - href: '#', - }, `${ story.descendants || 0 } comments`) + e( + 'a', + { + href: '#', + }, + `${story.descendants || 0} comments` + ) ) ), e('tr', { @@ -176,21 +243,29 @@ height: 5, }, className: 'spacer', - }) + }), ]; } - function StoryList({ stories }) { - return e('tr', null, - e('td', null, - e('table', { - cellPadding: 0, - cellSpacing: 0, - classList: 'itemlist', - }, - e('tbody', null, - stories.map((story, i) => - e(Story, { story, rank: ++i, key: story.id }) + function StoryList({stories}) { + return e( + 'tr', + null, + e( + 'td', + null, + e( + 'table', + { + cellPadding: 0, + cellSpacing: 0, + classList: 'itemlist', + }, + e( + 'tbody', + null, + stories.map((story, i) => + e(Story, {story, rank: ++i, key: story.id}) ) ) ) @@ -198,32 +273,43 @@ ); } - function App({ stories }) { - return e('center', null, - e('table', { - id: 'hnmain', - border: 0, - cellPadding: 0, - cellSpacing: 0, - width: '85%', - style: { - 'background-color': '#f6f6ef', + function App({stories}) { + return e( + 'center', + null, + e( + 'table', + { + id: 'hnmain', + border: 0, + cellPadding: 0, + cellSpacing: 0, + width: '85%', + style: { + 'background-color': '#f6f6ef', + }, }, - }, e('tbody', null, - e(HeaderBar, null), - e('tr', { height: 10 }), - e(StoryList, { - stories, - }) - )) + e( + 'tbody', + null, + e(HeaderBar, null), + e('tr', {height: 10}), + e(StoryList, { + stories, + }) + ) + ) ); } const app = document.getElementById('app'); window.render = function render() { - ReactDOM.render(React.createElement(App, { - stories: window.stories - }), app); - } -})(); \ No newline at end of file + ReactDOM.render( + React.createElement(App, { + stories: window.stories, + }), + app + ); + }; +})(); diff --git a/scripts/bench/benchmarks/hacker-news/build.js b/scripts/bench/benchmarks/hacker-news/build.js index 1a8e253bef83a..6622176404f3e 100644 --- a/scripts/bench/benchmarks/hacker-news/build.js +++ b/scripts/bench/benchmarks/hacker-news/build.js @@ -1,11 +1,9 @@ 'use strict'; -const { - join, -} = require('path'); +const {join} = require('path'); async function build(reactPath, asyncCopyTo) { - // copy the UMD bundles + // copy the UMD bundles await asyncCopyTo( join(reactPath, 'build', 'dist', 'react.production.min.js'), join(__dirname, 'react.production.min.js') diff --git a/scripts/bench/benchmarks/hacker-news/generate.js b/scripts/bench/benchmarks/hacker-news/generate.js index b4f260ebaec4b..eb0cdb038744d 100644 --- a/scripts/bench/benchmarks/hacker-news/generate.js +++ b/scripts/bench/benchmarks/hacker-news/generate.js @@ -1,16 +1,20 @@ 'use strict'; const fetch = require('node-fetch'); -const { writeFileSync } = require('fs'); +const {writeFileSync} = require('fs'); const stories = 50; async function getStory(id) { - const storyRes = await fetch(`https://hacker-news.firebaseio.com/v0/item/${id}.json`); + const storyRes = await fetch( + `https://hacker-news.firebaseio.com/v0/item/${id}.json` + ); return await storyRes.json(); } async function getTopStories() { - const topStoriesRes = await fetch('https://hacker-news.firebaseio.com/v0/topstories.js'); + const topStoriesRes = await fetch( + 'https://hacker-news.firebaseio.com/v0/topstories.js' + ); const topStoriesIds = await topStoriesRes.json(); const topStories = []; @@ -20,7 +24,10 @@ async function getTopStories() { topStories.push(await getStory(topStoriesId)); } - writeFileSync('top-stories.json', `window.stories = ${JSON.stringify(topStories)}`); + writeFileSync( + 'top-stories.json', + `window.stories = ${JSON.stringify(topStories)}` + ); } -getTopStories(); \ No newline at end of file +getTopStories(); diff --git a/scripts/bench/benchmarks/hacker-news/top-stories.js b/scripts/bench/benchmarks/hacker-news/top-stories.js index 5682e5aff3ef6..5a36444eae500 100644 --- a/scripts/bench/benchmarks/hacker-news/top-stories.js +++ b/scripts/bench/benchmarks/hacker-news/top-stories.js @@ -1 +1,1321 @@ -window.stories = [{"by":"rendx","descendants":49,"id":14201562,"kids":[14201704,14202297,14202233,14201771,14201765,14201897,14201750,14201913,14201854,14201667,14201759,14202073],"score":186,"time":1493197629,"title":"Postal: Open source mail delivery platform, alternative to Mailgun or Sendgrid","type":"story","url":"https://github.com/atech/postal"},{"by":"rabyss","descendants":4,"id":14202124,"kids":[14202293,14202249],"score":16,"time":1493205989,"title":"Show HN: BreakLock – A hybrid of Mastermind and the Android pattern lock","type":"story","url":"https://maxwellito.github.io/breaklock/"},{"by":"morid1n","descendants":137,"id":14200563,"kids":[14201274,14200711,14201147,14201365,14201499,14200618,14201169,14200911,14200734,14201083,14200706,14200785,14201032],"score":178,"time":1493183234,"title":"My Hackintosh Hardware Spec – clean, based on a 2013 iMac","type":"story","url":"https://infinitediaries.net/my-exact-hackintosh-spec/"},{"by":"robertwiblin","descendants":203,"id":14196731,"kids":[14201298,14201838,14201381,14197574,14201398,14199764,14198491,14197000,14198224,14200614,14201983,14200697,14199252,14201214,14198923,14200224,14197509,14200859,14200064,14200114,14197256,14197220,14200653,14197186,14199258,14197155,14197344,14198361,14197969,14199813,14197259,14197503],"score":562,"time":1493145853,"title":"Evidence-based advice we've found on how to be successful in a job","type":"story","url":"https://80000hours.org/career-guide/how-to-be-successful/"},{"by":"ryan_j_naughton","descendants":565,"id":14196812,"kids":[14198306,14197339,14200899,14198165,14198750,14202199,14201432,14197619,14197471,14201113,14202214,14202043,14197313,14197751,14197332,14198050,14201616,14197404,14199730,14198007,14197358,14197283,14200959,14197891,14198203,14197312,14200796,14201528,14197249,14198271,14197989,14198842,14197205,14199148,14197458,14200457,14197330,14199993,14197855,14200102,14197378,14199315,14198240,14198397,14199326,14200159,14198798,14201296,14198173,14197323,14197383,14197459,14197275,14198305,14198005,14198015,14199380,14199079,14198413,14197334,14197327,14197234],"score":385,"time":1493146342,"title":"Is Every Speed Limit Too Low?","type":"story","url":"https://priceonomics.com/is-every-speed-limit-too-low/"},{"by":"monort","descendants":63,"id":14196322,"kids":[14197628,14200026,14197457,14197486,14202126,14201266,14197227,14199404,14199338,14196382,14200598,14197377,14199689,14198538,14196905,14200404,14198781,14197278,14197888,14197742,14197764],"score":316,"time":1493143464,"title":"Experimental Nighttime Photography with Nexus and Pixel","type":"story","url":"https://research.googleblog.com/2017/04/experimental-nighttime-photography-with.html"},{"by":"networked","descendants":9,"id":14199028,"kids":[14201588,14200361,14200314,14200338],"score":121,"time":1493161601,"title":"JPEG Huffman Coding Tutorial","type":"story","url":"http://www.impulseadventure.com/photo/jpeg-huffman-coding.html"},{"by":"jasontan","id":14202227,"score":1,"time":1493207865,"title":"Are you adept at understanding concurrency problems? Sift Science is hiring","type":"job","url":"https://boards.greenhouse.io/siftscience/jobs/550699#.WPUZhlMrLfY"},{"by":"pouwerkerk","descendants":80,"id":14196077,"kids":[14199434,14196279,14196604,14197440,14201734,14200922,14200452,14197115,14199837,14199894,14196596,14198243,14196565,14197400,14197049,14197686,14198545,14198475],"score":717,"time":1493142008,"title":"Painting with Code: Introducing our new open source library React Sketch.app","type":"story","url":"http://airbnb.design/painting-with-code/"},{"by":"mromnia","descendants":16,"id":14201670,"kids":[14201835,14202115,14202176,14201890,14202325,14201859,14202158,14201763,14201902],"score":62,"time":1493198949,"title":"How to mod a Porsche 911 to run Doom [video]","type":"story","url":"https://www.youtube.com/watch?v=NRMpNA86e8Q"},{"by":"rbanffy","descendants":16,"id":14192383,"kids":[14197494,14201805,14197484],"score":194,"time":1493118160,"title":"Go programming language secure coding practices guide","type":"story","url":"https://github.com/Checkmarx/Go-SCP"},{"by":"intous","descendants":0,"id":14200446,"score":39,"time":1493181245,"title":"Building Functional Chatbot for Messenger with Ruby on Rails","type":"story","url":"https://tutorials.botsfloor.com/chatbot-development-tutorial-how-to-build-a-fully-functional-weather-bot-on-facebook-messenger-c94ac7c59185"},{"by":"nanospeck","descendants":23,"id":14201207,"kids":[14202252,14201646,14201620,14202076,14201511,14201324,14201940,14201425,14201505,14201304,14201435,14201287,14201739,14202031,14202018],"score":57,"text":"This question was asked on both 2015 & 2016 in HN. I would like to ask it again today to know what are the newest options for this.

Q: What would you recommend as a reasonably priced (sub 150$) quad-copter/drone, that has a camera, the ability to be programmed (so that I can process video/write my own stability algorithms for it), good range, and reasonable flying time?\nIn the event nothing fits that price point, any pointers on what the state of the art is?

Thanks!","time":1493192641,"title":"Ask HN (again): What is the best affordable programmable drone?","type":"story"},{"by":"geuis","descendants":57,"id":14196708,"kids":[14197480,14198523,14198705,14200969,14200079,14197605,14198979,14202203,14197679,14198461,14200389,14198065,14197883,14197908],"score":123,"time":1493145655,"title":"Hackpad shutting down","type":"story","url":"https://hackpad.com/"},{"by":"jfoutz","descendants":55,"id":14195956,"kids":[14199594,14196972,14202101,14198197,14196771,14197326,14196956,14200842,14201529,14198581,14196777,14200177,14200422,14198571],"score":167,"time":1493141367,"title":"Linkerd 1.0","type":"story","url":"https://blog.buoyant.io/2017/04/25/announcing-linkerd-1.0/index.html"},{"by":"DavidBuchanan","descendants":19,"id":14199364,"kids":[14199735,14200889,14202245,14200205,14200104,14201697,14200061,14199996,14199867],"score":66,"time":1493164755,"title":"Show HN: TARDIS – Warp a process's perspective of time by hooking syscalls","type":"story","url":"https://github.com/DavidBuchanan314/TARDIS"},{"by":"rchen8","descendants":121,"id":14195664,"kids":[14196654,14196206,14196677,14197035,14196041,14196399,14196200,14196140,14196216,14196421,14196370,14196146,14197601,14197107,14196866,14196691,14197704,14196772,14200089,14198588,14196937,14198530,14197119,14197247,14198632,14196137,14200323,14196346],"score":486,"time":1493139957,"title":"How to Become Well-Connected","type":"story","url":"http://firstround.com/review/how-to-become-insanely-well-connected/"},{"by":"dbrgn","descendants":89,"id":14191186,"kids":[14200855,14200035,14200110,14201408,14202159,14197876,14200348,14198720,14198183,14199824,14198281,14201643,14201591,14199541,14198423,14201738,14200037,14201349,14200028,14201206,14197995,14197830,14199603],"score":135,"time":1493100791,"title":"How to Say (Almost) Everything in a Hundred-Word Language (2015)","type":"story","url":"https://www.theatlantic.com/technology/archive/2015/07/toki-pona-smallest-language/398363/?single_page=true"},{"by":"runesoerensen","descendants":62,"id":14198866,"kids":[14199494,14199495,14200288,14201118,14199599],"score":155,"time":1493160263,"title":"Nginx 1.13 released with TLS 1.3 support","type":"story","url":"http://mailman.nginx.org/pipermail/nginx-announce/2017/000195.html"},{"by":"bcherny","descendants":20,"id":14199299,"kids":[14200694,14201832,14200517,14201760,14200966,14200558,14201815,14201231,14201073,14201124],"score":54,"time":1493163960,"title":"Show HN: JSONSchema to TypeScript compiler","type":"story","url":"https://github.com/bcherny/json-schema-to-typescript"},{"by":"tormeh","descendants":37,"id":14198557,"kids":[14201027,14199082,14201023,14201160,14200367,14200647],"score":70,"time":1493158034,"title":"A practitioner’s guide to hedonism (2007)","type":"story","url":"https://www.1843magazine.com/story/a-practitioners-guide-to-hedonism"},{"by":"nickreiner","descendants":33,"id":14199125,"kids":[14202332,14201634,14201200,14201215,14201157,14201898,14201969,14201125],"score":52,"time":1493162517,"title":"Best Linux Distros for Gaming in 2017","type":"story","url":"https://thishosting.rocks/best-linux-distros-for-gaming/"},{"by":"BinaryIdiot","descendants":170,"id":14200486,"kids":[14200680,14200677,14201515,14200793,14200534,14200908,14200649,14200633,14200701,14202295,14200578,14200709,14200580,14201107,14201779,14200773,14200804,14200720,14202060,14200948,14200903,14200748,14200875,14200750,14200821,14200756,14201707,14201689,14200669,14200997,14200818,14201586,14200603,14201054,14201457,14200616,14201095,14200915,14200878,14200629,14201523,14200620,14202099],"score":316,"time":1493181945,"title":"Suicide of an Uber engineer: Widow blames job stress","type":"story","url":"http://www.sfchronicle.com/business/article/Suicide-of-an-Uber-engineer-widow-blames-job-11095807.php?t=7e40d1f554&cmpid=fb-premium&cmpid=twitter-premium"},{"by":"catc","descendants":34,"id":14195522,"kids":[14202316,14202278,14197167,14199152,14202077,14197239,14197721,14197632,14197219,14198296,14197245,14197201,14197403,14198051,14196747],"score":87,"time":1493139414,"title":"Show HN: React Timekeeper – Time picker based on the style of Google Keep","type":"story","url":"https://catc.github.io/react-timekeeper/"},{"by":"Integer","descendants":152,"id":14192353,"kids":[14197671,14197754,14199091,14198533,14201249,14198626,14198263,14198009,14195130,14199551,14197663,14198285,14199611,14199835,14197482,14198924,14198943],"score":273,"time":1493117771,"title":"Windows Is Bloated, Thanks to Adobe’s Extensible Metadata Platform","type":"story","url":"https://www.thurrott.com/windows/109962/windows-bloated-thanks-adobes-extensible-metadata-platform"},{"by":"craigcannon","descendants":23,"id":14197852,"kids":[14200024,14199986,14202106,14198011,14199228,14202138,14198917,14198607],"score":58,"time":1493153342,"title":"New England Lost Ski Areas Project","type":"story","url":"http://www.nelsap.org/"},{"by":"golfer","descendants":105,"id":14198229,"kids":[14200202,14198948,14199770,14198634,14200263,14198797,14198919,14200447,14198645,14199267,14199124,14198833,14199059],"score":282,"time":1493155745,"title":"Uber must turn over information about its acquisition of Otto to Waymo","type":"story","url":"https://techcrunch.com/2017/04/25/uber-must-turn-over-information-about-its-acquisition-of-otto-to-waymo-court-rules/"},{"by":"JoshTriplett","descendants":116,"id":14198403,"kids":[14199771,14199980,14198664,14198764,14201086,14200307,14199294,14198860,14198817],"score":139,"time":1493156882,"title":"Shutting down public FTP services","type":"story","url":"https://lists.debian.org/debian-announce/2017/msg00001.html"},{"by":"mabynogy","descendants":50,"id":14191577,"kids":[14194021,14195402,14193886,14193792,14194355,14197136,14200386,14194151,14193989,14193798,14194042,14197100,14198984,14193925,14194170],"score":365,"time":1493107104,"title":"A Primer on Bézier Curves","type":"story","url":"https://pomax.github.io/bezierinfo#preface"},{"by":"robertothais","descendants":29,"id":14192946,"kids":[14202311,14202299,14201900,14200029,14198260,14198605,14201850,14199858,14198223,14198610],"score":61,"time":1493124627,"title":"Consciousness as a State of Matter (2014)","type":"story","url":"https://arxiv.org/abs/1401.1219"},{"by":"leephillips","descendants":2,"id":14202078,"kids":[14202122],"score":5,"time":1493205152,"title":"The Republican Lawmaker Who Secretly Created Reddit’s Women-Hating ‘Red Pill’","type":"story","url":"http://www.thedailybeast.com/articles/2017/04/25/the-republican-lawmaker-who-secretly-created-reddit-s-women-hating-red-pill.html"},{"by":"anguswithgusto","descendants":55,"id":14196325,"kids":[14197131,14196789,14197299,14197466,14196737,14199929,14197550,14197511,14196888,14200109,14197101],"score":80,"time":1493143475,"title":"Gett in advanced talks to buy Juno for $250M as Uber rivals consolidate","type":"story","url":"https://techcrunch.com/2017/04/25/gett-in-advanced-talks-to-buy-juno-for-250m-as-uber-rivals-consolidate/"},{"by":"fabuzaid","descendants":2,"id":14196339,"kids":[14201557,14201170],"score":46,"time":1493143560,"title":"Implementing a Fast Research Compiler in Rust","type":"story","url":"http://dawn.cs.stanford.edu/blog/weld.html"},{"by":"bluesilver07","descendants":61,"id":14196154,"kids":[14197614,14196853,14197074,14197050,14200090,14197731,14196352,14197442],"score":72,"time":1493142448,"title":"Xenko Game Engine 2.0 released","type":"story","url":"http://xenko.com/blog/release-xenko-2-0-0/"},{"by":"molecule","descendants":254,"id":14189392,"kids":[14190198,14190800,14193591,14190274,14189796,14190118,14190405,14190006,14189430,14190244,14189877,14190064,14190211,14189918,14190071,14191312,14195969,14190542,14194775,14189900,14190032,14189847,14192128,14191737,14191047,14190992,14192759,14191405,14190815,14194136,14190737,14190552,14191385,14189816,14191316,14193780,14193979,14190768,14192973,14191217,14190879,14190780,14189914,14190925,14192906,14190528,14189893,14190007,14189929,14190049,14191859,14191304,14190177,14193355,14193352,14190324,14190846,14189803],"score":630,"time":1493076480,"title":"Robert M. Pirsig has died","type":"story","url":"http://www.npr.org/sections/thetwo-way/2017/04/24/525443040/-zen-and-the-art-of-motorcycle-maintenance-author-robert-m-pirsig-dies-at-88"},{"by":"artsandsci","descendants":67,"id":14194422,"kids":[14199418,14196266,14197226,14196647,14196324,14201761,14196265,14195599,14199054,14196057],"score":127,"time":1493134376,"title":"An extra-uterine system to physiologically support the extreme premature lamb","type":"story","url":"https://www.nature.com/articles/ncomms15112"},{"by":"miobrien","descendants":9,"id":14198261,"kids":[14199610,14199447,14199862,14201753,14199068],"score":30,"time":1493155969,"title":"Prior Indigenous Technological Species","type":"story","url":"https://arxiv.org/abs/1704.07263"},{"by":"zdw","descendants":2,"id":14199197,"kids":[14200610],"score":12,"time":1493163087,"title":"Should Curve25519 keys be validated?","type":"story","url":"https://research.kudelskisecurity.com/2017/04/25/should-ecdh-keys-be-validated/"},{"by":"spearo77","descendants":213,"id":14189688,"kids":[14191654,14192373,14190683,14192095,14191856,14190771,14190570,14190599,14190721,14192049,14189694,14191430,14193610,14190543,14190372,14191818,14192171,14192177,14192135,14191483,14190560,14190341,14190362,14190452,14192563,14190458,14195245,14190809,14192706,14192959,14190636,14190634,14190368,14191163,14191379,14190668,14191673,14190884,14192565,14190480,14190442],"score":447,"time":1493079289,"title":"WikiTribune – Evidence-based journalism","type":"story","url":"https://www.wikitribune.com"},{"by":"adbrebs","descendants":294,"id":14182262,"kids":[14183335,14183715,14182725,14183897,14185812,14184510,14182468,14183231,14182580,14183996,14182449,14185671,14182428,14182666,14186599,14182519,14185571,14185159,14182636,14185864,14188340,14183433,14183146,14184034,14184363,14183368,14183098,14182495,14182753,14184720,14188085,14187692,14183633,14188137,14182606,14186796,14196166,14185084,14185899,14188219,14186885,14183406,14185561,14183388,14191457,14183281,14183399,14183674,14183236,14183990,14183760,14183248,14184114,14183318,14183457,14186509,14186900,14186695,14188405,14184636,14184630,14188301,14184144,14183023,14184555,14185946,14184611,14184490,14183653,14183881,14182715,14184440,14182573,14183251,14184962,14187249,14182545,14192314],"score":1356,"time":1493014335,"title":"Lyrebird – An API to copy the voice of anyone","type":"story","url":"https://lyrebird.ai/demo"},{"by":"mathgenius","descendants":6,"id":14192442,"kids":[14197265,14195645],"score":43,"time":1493118936,"title":"Quantum – Open journal for quantum science","type":"story","url":"http://quantum-journal.org/papers/"},{"by":"tjalfi","descendants":5,"id":14190937,"kids":[14199744,14197114,14190946],"score":107,"time":1493097061,"title":"A Seven Dimensional Analysis of Hashing Methods [pdf]","type":"story","url":"http://www.vldb.org/pvldb/vol9/p96-richter.pdf"},{"by":"mxstbr","descendants":0,"id":14196935,"score":24,"time":1493147015,"title":"One GraphQL Client for JavaScript, iOS, and Android","type":"story","url":"https://dev-blog.apollodata.com/one-graphql-client-for-javascript-ios-and-android-64993c1b7991"},{"by":"uptown","descendants":166,"id":14192817,"kids":[14197690,14195597,14196750,14195237,14196320,14195150,14198816,14194916,14197746,14196332,14194695,14196726,14194947,14199715,14195059,14195778,14196204,14200435,14194780,14195030,14198452,14199023,14194852,14197577,14197778,14195361,14196368,14194948,14199024,14195060,14199498],"score":226,"time":1493123621,"title":"How Yahoo Killed Flickr (2012)","type":"story","url":"https://gizmodo.com/5910223/how-yahoo-killed-flickr-and-lost-the-internet"},{"by":"mattklein123","descendants":42,"id":14194026,"kids":[14194573,14195577,14194430,14195407,14194569,14195298,14200054,14194456,14198329,14199198],"score":167,"time":1493131921,"title":"Envoy: 7 months later","type":"story","url":"https://eng.lyft.com/envoy-7-months-later-41986c2fd443"},{"by":"misnamed","descendants":2,"id":14191333,"kids":[14197296],"score":29,"time":1493103250,"title":"Modern Hieroglyphs: Binary Logic Behind the Universal “Power Symbol”","type":"story","url":"http://99percentinvisible.org/article/modern-hieroglyphics-binary-logic-behind-universal-power-symbol/"},{"by":"LaFolle","descendants":92,"id":14191681,"kids":[14192477,14194490,14192316,14193364,14192065,14193499,14194324,14192622,14192020,14195866,14192496,14196391,14192138,14192714,14195151,14195094,14192110,14192155],"score":138,"time":1493108371,"title":"Feynman Algorithm (2014)","type":"story","url":"http://wiki.c2.com/?FeynmanAlgorithm"},{"by":"Thevet","descendants":18,"id":14190736,"kids":[14197744,14195753,14197880,14197735,14195874,14197023,14196660],"score":81,"time":1493093860,"title":"The legend of the Legion","type":"story","url":"https://aeon.co/essays/why-young-men-queue-up-to-die-in-the-french-foreign-legion"},{"by":"bufordsharkley","descendants":92,"id":14197013,"kids":[14197983,14197168,14197701,14198239,14197514,14198064,14197476,14198489,14197761,14197080,14198905,14198068,14198579],"score":69,"time":1493147532,"title":"Cracking the Mystery of Labor's Falling Share of GDP","type":"story","url":"https://www.bloomberg.com/view/articles/2017-04-24/cracking-the-mystery-of-labor-s-falling-share-of-gdp"},{"by":"rbanffy","descendants":27,"id":14198470,"kids":[14199443,14201987,14199461,14199729,14201519,14198762,14199524],"score":52,"time":1493157378,"title":"How the Internet Gave Mail-Order Brides the Power","type":"story","url":"https://backchannel.com/how-the-internet-gave-mail-order-brides-the-power-1af8c8a40562"}] \ No newline at end of file +window.stories = [ + { + by: 'rendx', + descendants: 49, + id: 14201562, + kids: [ + 14201704, + 14202297, + 14202233, + 14201771, + 14201765, + 14201897, + 14201750, + 14201913, + 14201854, + 14201667, + 14201759, + 14202073, + ], + score: 186, + time: 1493197629, + title: + 'Postal: Open source mail delivery platform, alternative to Mailgun or Sendgrid', + type: 'story', + url: 'https://github.com/atech/postal', + }, + { + by: 'rabyss', + descendants: 4, + id: 14202124, + kids: [14202293, 14202249], + score: 16, + time: 1493205989, + title: + 'Show HN: BreakLock – A hybrid of Mastermind and the Android pattern lock', + type: 'story', + url: 'https://maxwellito.github.io/breaklock/', + }, + { + by: 'morid1n', + descendants: 137, + id: 14200563, + kids: [ + 14201274, + 14200711, + 14201147, + 14201365, + 14201499, + 14200618, + 14201169, + 14200911, + 14200734, + 14201083, + 14200706, + 14200785, + 14201032, + ], + score: 178, + time: 1493183234, + title: 'My Hackintosh Hardware Spec – clean, based on a 2013 iMac', + type: 'story', + url: 'https://infinitediaries.net/my-exact-hackintosh-spec/', + }, + { + by: 'robertwiblin', + descendants: 203, + id: 14196731, + kids: [ + 14201298, + 14201838, + 14201381, + 14197574, + 14201398, + 14199764, + 14198491, + 14197000, + 14198224, + 14200614, + 14201983, + 14200697, + 14199252, + 14201214, + 14198923, + 14200224, + 14197509, + 14200859, + 14200064, + 14200114, + 14197256, + 14197220, + 14200653, + 14197186, + 14199258, + 14197155, + 14197344, + 14198361, + 14197969, + 14199813, + 14197259, + 14197503, + ], + score: 562, + time: 1493145853, + title: "Evidence-based advice we've found on how to be successful in a job", + type: 'story', + url: 'https://80000hours.org/career-guide/how-to-be-successful/', + }, + { + by: 'ryan_j_naughton', + descendants: 565, + id: 14196812, + kids: [ + 14198306, + 14197339, + 14200899, + 14198165, + 14198750, + 14202199, + 14201432, + 14197619, + 14197471, + 14201113, + 14202214, + 14202043, + 14197313, + 14197751, + 14197332, + 14198050, + 14201616, + 14197404, + 14199730, + 14198007, + 14197358, + 14197283, + 14200959, + 14197891, + 14198203, + 14197312, + 14200796, + 14201528, + 14197249, + 14198271, + 14197989, + 14198842, + 14197205, + 14199148, + 14197458, + 14200457, + 14197330, + 14199993, + 14197855, + 14200102, + 14197378, + 14199315, + 14198240, + 14198397, + 14199326, + 14200159, + 14198798, + 14201296, + 14198173, + 14197323, + 14197383, + 14197459, + 14197275, + 14198305, + 14198005, + 14198015, + 14199380, + 14199079, + 14198413, + 14197334, + 14197327, + 14197234, + ], + score: 385, + time: 1493146342, + title: 'Is Every Speed Limit Too Low?', + type: 'story', + url: 'https://priceonomics.com/is-every-speed-limit-too-low/', + }, + { + by: 'monort', + descendants: 63, + id: 14196322, + kids: [ + 14197628, + 14200026, + 14197457, + 14197486, + 14202126, + 14201266, + 14197227, + 14199404, + 14199338, + 14196382, + 14200598, + 14197377, + 14199689, + 14198538, + 14196905, + 14200404, + 14198781, + 14197278, + 14197888, + 14197742, + 14197764, + ], + score: 316, + time: 1493143464, + title: 'Experimental Nighttime Photography with Nexus and Pixel', + type: 'story', + url: + 'https://research.googleblog.com/2017/04/experimental-nighttime-photography-with.html', + }, + { + by: 'networked', + descendants: 9, + id: 14199028, + kids: [14201588, 14200361, 14200314, 14200338], + score: 121, + time: 1493161601, + title: 'JPEG Huffman Coding Tutorial', + type: 'story', + url: 'http://www.impulseadventure.com/photo/jpeg-huffman-coding.html', + }, + { + by: 'jasontan', + id: 14202227, + score: 1, + time: 1493207865, + title: + 'Are you adept at understanding concurrency problems? Sift Science is hiring', + type: 'job', + url: 'https://boards.greenhouse.io/siftscience/jobs/550699#.WPUZhlMrLfY', + }, + { + by: 'pouwerkerk', + descendants: 80, + id: 14196077, + kids: [ + 14199434, + 14196279, + 14196604, + 14197440, + 14201734, + 14200922, + 14200452, + 14197115, + 14199837, + 14199894, + 14196596, + 14198243, + 14196565, + 14197400, + 14197049, + 14197686, + 14198545, + 14198475, + ], + score: 717, + time: 1493142008, + title: + 'Painting with Code: Introducing our new open source library React Sketch.app', + type: 'story', + url: 'http://airbnb.design/painting-with-code/', + }, + { + by: 'mromnia', + descendants: 16, + id: 14201670, + kids: [ + 14201835, + 14202115, + 14202176, + 14201890, + 14202325, + 14201859, + 14202158, + 14201763, + 14201902, + ], + score: 62, + time: 1493198949, + title: 'How to mod a Porsche 911 to run Doom [video]', + type: 'story', + url: 'https://www.youtube.com/watch?v=NRMpNA86e8Q', + }, + { + by: 'rbanffy', + descendants: 16, + id: 14192383, + kids: [14197494, 14201805, 14197484], + score: 194, + time: 1493118160, + title: 'Go programming language secure coding practices guide', + type: 'story', + url: 'https://github.com/Checkmarx/Go-SCP', + }, + { + by: 'intous', + descendants: 0, + id: 14200446, + score: 39, + time: 1493181245, + title: 'Building Functional Chatbot for Messenger with Ruby on Rails', + type: 'story', + url: + 'https://tutorials.botsfloor.com/chatbot-development-tutorial-how-to-build-a-fully-functional-weather-bot-on-facebook-messenger-c94ac7c59185', + }, + { + by: 'nanospeck', + descendants: 23, + id: 14201207, + kids: [ + 14202252, + 14201646, + 14201620, + 14202076, + 14201511, + 14201324, + 14201940, + 14201425, + 14201505, + 14201304, + 14201435, + 14201287, + 14201739, + 14202031, + 14202018, + ], + score: 57, + text: + 'This question was asked on both 2015 & 2016 in HN. I would like to ask it again today to know what are the newest options for this.

Q: What would you recommend as a reasonably priced (sub 150$) quad-copter/drone, that has a camera, the ability to be programmed (so that I can process video/write my own stability algorithms for it), good range, and reasonable flying time?\nIn the event nothing fits that price point, any pointers on what the state of the art is?

Thanks!', + time: 1493192641, + title: 'Ask HN (again): What is the best affordable programmable drone?', + type: 'story', + }, + { + by: 'geuis', + descendants: 57, + id: 14196708, + kids: [ + 14197480, + 14198523, + 14198705, + 14200969, + 14200079, + 14197605, + 14198979, + 14202203, + 14197679, + 14198461, + 14200389, + 14198065, + 14197883, + 14197908, + ], + score: 123, + time: 1493145655, + title: 'Hackpad shutting down', + type: 'story', + url: 'https://hackpad.com/', + }, + { + by: 'jfoutz', + descendants: 55, + id: 14195956, + kids: [ + 14199594, + 14196972, + 14202101, + 14198197, + 14196771, + 14197326, + 14196956, + 14200842, + 14201529, + 14198581, + 14196777, + 14200177, + 14200422, + 14198571, + ], + score: 167, + time: 1493141367, + title: 'Linkerd 1.0', + type: 'story', + url: 'https://blog.buoyant.io/2017/04/25/announcing-linkerd-1.0/index.html', + }, + { + by: 'DavidBuchanan', + descendants: 19, + id: 14199364, + kids: [ + 14199735, + 14200889, + 14202245, + 14200205, + 14200104, + 14201697, + 14200061, + 14199996, + 14199867, + ], + score: 66, + time: 1493164755, + title: + "Show HN: TARDIS – Warp a process's perspective of time by hooking syscalls", + type: 'story', + url: 'https://github.com/DavidBuchanan314/TARDIS', + }, + { + by: 'rchen8', + descendants: 121, + id: 14195664, + kids: [ + 14196654, + 14196206, + 14196677, + 14197035, + 14196041, + 14196399, + 14196200, + 14196140, + 14196216, + 14196421, + 14196370, + 14196146, + 14197601, + 14197107, + 14196866, + 14196691, + 14197704, + 14196772, + 14200089, + 14198588, + 14196937, + 14198530, + 14197119, + 14197247, + 14198632, + 14196137, + 14200323, + 14196346, + ], + score: 486, + time: 1493139957, + title: 'How to Become Well-Connected', + type: 'story', + url: 'http://firstround.com/review/how-to-become-insanely-well-connected/', + }, + { + by: 'dbrgn', + descendants: 89, + id: 14191186, + kids: [ + 14200855, + 14200035, + 14200110, + 14201408, + 14202159, + 14197876, + 14200348, + 14198720, + 14198183, + 14199824, + 14198281, + 14201643, + 14201591, + 14199541, + 14198423, + 14201738, + 14200037, + 14201349, + 14200028, + 14201206, + 14197995, + 14197830, + 14199603, + ], + score: 135, + time: 1493100791, + title: 'How to Say (Almost) Everything in a Hundred-Word Language (2015)', + type: 'story', + url: + 'https://www.theatlantic.com/technology/archive/2015/07/toki-pona-smallest-language/398363/?single_page=true', + }, + { + by: 'runesoerensen', + descendants: 62, + id: 14198866, + kids: [14199494, 14199495, 14200288, 14201118, 14199599], + score: 155, + time: 1493160263, + title: 'Nginx 1.13 released with TLS 1.3 support', + type: 'story', + url: 'http://mailman.nginx.org/pipermail/nginx-announce/2017/000195.html', + }, + { + by: 'bcherny', + descendants: 20, + id: 14199299, + kids: [ + 14200694, + 14201832, + 14200517, + 14201760, + 14200966, + 14200558, + 14201815, + 14201231, + 14201073, + 14201124, + ], + score: 54, + time: 1493163960, + title: 'Show HN: JSONSchema to TypeScript compiler', + type: 'story', + url: 'https://github.com/bcherny/json-schema-to-typescript', + }, + { + by: 'tormeh', + descendants: 37, + id: 14198557, + kids: [14201027, 14199082, 14201023, 14201160, 14200367, 14200647], + score: 70, + time: 1493158034, + title: 'A practitioner’s guide to hedonism (2007)', + type: 'story', + url: 'https://www.1843magazine.com/story/a-practitioners-guide-to-hedonism', + }, + { + by: 'nickreiner', + descendants: 33, + id: 14199125, + kids: [ + 14202332, + 14201634, + 14201200, + 14201215, + 14201157, + 14201898, + 14201969, + 14201125, + ], + score: 52, + time: 1493162517, + title: 'Best Linux Distros for Gaming in 2017', + type: 'story', + url: 'https://thishosting.rocks/best-linux-distros-for-gaming/', + }, + { + by: 'BinaryIdiot', + descendants: 170, + id: 14200486, + kids: [ + 14200680, + 14200677, + 14201515, + 14200793, + 14200534, + 14200908, + 14200649, + 14200633, + 14200701, + 14202295, + 14200578, + 14200709, + 14200580, + 14201107, + 14201779, + 14200773, + 14200804, + 14200720, + 14202060, + 14200948, + 14200903, + 14200748, + 14200875, + 14200750, + 14200821, + 14200756, + 14201707, + 14201689, + 14200669, + 14200997, + 14200818, + 14201586, + 14200603, + 14201054, + 14201457, + 14200616, + 14201095, + 14200915, + 14200878, + 14200629, + 14201523, + 14200620, + 14202099, + ], + score: 316, + time: 1493181945, + title: 'Suicide of an Uber engineer: Widow blames job stress', + type: 'story', + url: + 'http://www.sfchronicle.com/business/article/Suicide-of-an-Uber-engineer-widow-blames-job-11095807.php?t=7e40d1f554&cmpid=fb-premium&cmpid=twitter-premium', + }, + { + by: 'catc', + descendants: 34, + id: 14195522, + kids: [ + 14202316, + 14202278, + 14197167, + 14199152, + 14202077, + 14197239, + 14197721, + 14197632, + 14197219, + 14198296, + 14197245, + 14197201, + 14197403, + 14198051, + 14196747, + ], + score: 87, + time: 1493139414, + title: + 'Show HN: React Timekeeper – Time picker based on the style of Google Keep', + type: 'story', + url: 'https://catc.github.io/react-timekeeper/', + }, + { + by: 'Integer', + descendants: 152, + id: 14192353, + kids: [ + 14197671, + 14197754, + 14199091, + 14198533, + 14201249, + 14198626, + 14198263, + 14198009, + 14195130, + 14199551, + 14197663, + 14198285, + 14199611, + 14199835, + 14197482, + 14198924, + 14198943, + ], + score: 273, + time: 1493117771, + title: 'Windows Is Bloated, Thanks to Adobe’s Extensible Metadata Platform', + type: 'story', + url: + 'https://www.thurrott.com/windows/109962/windows-bloated-thanks-adobes-extensible-metadata-platform', + }, + { + by: 'craigcannon', + descendants: 23, + id: 14197852, + kids: [ + 14200024, + 14199986, + 14202106, + 14198011, + 14199228, + 14202138, + 14198917, + 14198607, + ], + score: 58, + time: 1493153342, + title: 'New England Lost Ski Areas Project', + type: 'story', + url: 'http://www.nelsap.org/', + }, + { + by: 'golfer', + descendants: 105, + id: 14198229, + kids: [ + 14200202, + 14198948, + 14199770, + 14198634, + 14200263, + 14198797, + 14198919, + 14200447, + 14198645, + 14199267, + 14199124, + 14198833, + 14199059, + ], + score: 282, + time: 1493155745, + title: + 'Uber must turn over information about its acquisition of Otto to Waymo', + type: 'story', + url: + 'https://techcrunch.com/2017/04/25/uber-must-turn-over-information-about-its-acquisition-of-otto-to-waymo-court-rules/', + }, + { + by: 'JoshTriplett', + descendants: 116, + id: 14198403, + kids: [ + 14199771, + 14199980, + 14198664, + 14198764, + 14201086, + 14200307, + 14199294, + 14198860, + 14198817, + ], + score: 139, + time: 1493156882, + title: 'Shutting down public FTP services', + type: 'story', + url: 'https://lists.debian.org/debian-announce/2017/msg00001.html', + }, + { + by: 'mabynogy', + descendants: 50, + id: 14191577, + kids: [ + 14194021, + 14195402, + 14193886, + 14193792, + 14194355, + 14197136, + 14200386, + 14194151, + 14193989, + 14193798, + 14194042, + 14197100, + 14198984, + 14193925, + 14194170, + ], + score: 365, + time: 1493107104, + title: 'A Primer on Bézier Curves', + type: 'story', + url: 'https://pomax.github.io/bezierinfo#preface', + }, + { + by: 'robertothais', + descendants: 29, + id: 14192946, + kids: [ + 14202311, + 14202299, + 14201900, + 14200029, + 14198260, + 14198605, + 14201850, + 14199858, + 14198223, + 14198610, + ], + score: 61, + time: 1493124627, + title: 'Consciousness as a State of Matter (2014)', + type: 'story', + url: 'https://arxiv.org/abs/1401.1219', + }, + { + by: 'leephillips', + descendants: 2, + id: 14202078, + kids: [14202122], + score: 5, + time: 1493205152, + title: + 'The Republican Lawmaker Who Secretly Created Reddit’s Women-Hating ‘Red Pill’', + type: 'story', + url: + 'http://www.thedailybeast.com/articles/2017/04/25/the-republican-lawmaker-who-secretly-created-reddit-s-women-hating-red-pill.html', + }, + { + by: 'anguswithgusto', + descendants: 55, + id: 14196325, + kids: [ + 14197131, + 14196789, + 14197299, + 14197466, + 14196737, + 14199929, + 14197550, + 14197511, + 14196888, + 14200109, + 14197101, + ], + score: 80, + time: 1493143475, + title: + 'Gett in advanced talks to buy Juno for $250M as Uber rivals consolidate', + type: 'story', + url: + 'https://techcrunch.com/2017/04/25/gett-in-advanced-talks-to-buy-juno-for-250m-as-uber-rivals-consolidate/', + }, + { + by: 'fabuzaid', + descendants: 2, + id: 14196339, + kids: [14201557, 14201170], + score: 46, + time: 1493143560, + title: 'Implementing a Fast Research Compiler in Rust', + type: 'story', + url: 'http://dawn.cs.stanford.edu/blog/weld.html', + }, + { + by: 'bluesilver07', + descendants: 61, + id: 14196154, + kids: [ + 14197614, + 14196853, + 14197074, + 14197050, + 14200090, + 14197731, + 14196352, + 14197442, + ], + score: 72, + time: 1493142448, + title: 'Xenko Game Engine 2.0 released', + type: 'story', + url: 'http://xenko.com/blog/release-xenko-2-0-0/', + }, + { + by: 'molecule', + descendants: 254, + id: 14189392, + kids: [ + 14190198, + 14190800, + 14193591, + 14190274, + 14189796, + 14190118, + 14190405, + 14190006, + 14189430, + 14190244, + 14189877, + 14190064, + 14190211, + 14189918, + 14190071, + 14191312, + 14195969, + 14190542, + 14194775, + 14189900, + 14190032, + 14189847, + 14192128, + 14191737, + 14191047, + 14190992, + 14192759, + 14191405, + 14190815, + 14194136, + 14190737, + 14190552, + 14191385, + 14189816, + 14191316, + 14193780, + 14193979, + 14190768, + 14192973, + 14191217, + 14190879, + 14190780, + 14189914, + 14190925, + 14192906, + 14190528, + 14189893, + 14190007, + 14189929, + 14190049, + 14191859, + 14191304, + 14190177, + 14193355, + 14193352, + 14190324, + 14190846, + 14189803, + ], + score: 630, + time: 1493076480, + title: 'Robert M. Pirsig has died', + type: 'story', + url: + 'http://www.npr.org/sections/thetwo-way/2017/04/24/525443040/-zen-and-the-art-of-motorcycle-maintenance-author-robert-m-pirsig-dies-at-88', + }, + { + by: 'artsandsci', + descendants: 67, + id: 14194422, + kids: [ + 14199418, + 14196266, + 14197226, + 14196647, + 14196324, + 14201761, + 14196265, + 14195599, + 14199054, + 14196057, + ], + score: 127, + time: 1493134376, + title: + 'An extra-uterine system to physiologically support the extreme premature lamb', + type: 'story', + url: 'https://www.nature.com/articles/ncomms15112', + }, + { + by: 'miobrien', + descendants: 9, + id: 14198261, + kids: [14199610, 14199447, 14199862, 14201753, 14199068], + score: 30, + time: 1493155969, + title: 'Prior Indigenous Technological Species', + type: 'story', + url: 'https://arxiv.org/abs/1704.07263', + }, + { + by: 'zdw', + descendants: 2, + id: 14199197, + kids: [14200610], + score: 12, + time: 1493163087, + title: 'Should Curve25519 keys be validated?', + type: 'story', + url: + 'https://research.kudelskisecurity.com/2017/04/25/should-ecdh-keys-be-validated/', + }, + { + by: 'spearo77', + descendants: 213, + id: 14189688, + kids: [ + 14191654, + 14192373, + 14190683, + 14192095, + 14191856, + 14190771, + 14190570, + 14190599, + 14190721, + 14192049, + 14189694, + 14191430, + 14193610, + 14190543, + 14190372, + 14191818, + 14192171, + 14192177, + 14192135, + 14191483, + 14190560, + 14190341, + 14190362, + 14190452, + 14192563, + 14190458, + 14195245, + 14190809, + 14192706, + 14192959, + 14190636, + 14190634, + 14190368, + 14191163, + 14191379, + 14190668, + 14191673, + 14190884, + 14192565, + 14190480, + 14190442, + ], + score: 447, + time: 1493079289, + title: 'WikiTribune – Evidence-based journalism', + type: 'story', + url: 'https://www.wikitribune.com', + }, + { + by: 'adbrebs', + descendants: 294, + id: 14182262, + kids: [ + 14183335, + 14183715, + 14182725, + 14183897, + 14185812, + 14184510, + 14182468, + 14183231, + 14182580, + 14183996, + 14182449, + 14185671, + 14182428, + 14182666, + 14186599, + 14182519, + 14185571, + 14185159, + 14182636, + 14185864, + 14188340, + 14183433, + 14183146, + 14184034, + 14184363, + 14183368, + 14183098, + 14182495, + 14182753, + 14184720, + 14188085, + 14187692, + 14183633, + 14188137, + 14182606, + 14186796, + 14196166, + 14185084, + 14185899, + 14188219, + 14186885, + 14183406, + 14185561, + 14183388, + 14191457, + 14183281, + 14183399, + 14183674, + 14183236, + 14183990, + 14183760, + 14183248, + 14184114, + 14183318, + 14183457, + 14186509, + 14186900, + 14186695, + 14188405, + 14184636, + 14184630, + 14188301, + 14184144, + 14183023, + 14184555, + 14185946, + 14184611, + 14184490, + 14183653, + 14183881, + 14182715, + 14184440, + 14182573, + 14183251, + 14184962, + 14187249, + 14182545, + 14192314, + ], + score: 1356, + time: 1493014335, + title: 'Lyrebird – An API to copy the voice of anyone', + type: 'story', + url: 'https://lyrebird.ai/demo', + }, + { + by: 'mathgenius', + descendants: 6, + id: 14192442, + kids: [14197265, 14195645], + score: 43, + time: 1493118936, + title: 'Quantum – Open journal for quantum science', + type: 'story', + url: 'http://quantum-journal.org/papers/', + }, + { + by: 'tjalfi', + descendants: 5, + id: 14190937, + kids: [14199744, 14197114, 14190946], + score: 107, + time: 1493097061, + title: 'A Seven Dimensional Analysis of Hashing Methods [pdf]', + type: 'story', + url: 'http://www.vldb.org/pvldb/vol9/p96-richter.pdf', + }, + { + by: 'mxstbr', + descendants: 0, + id: 14196935, + score: 24, + time: 1493147015, + title: 'One GraphQL Client for JavaScript, iOS, and Android', + type: 'story', + url: + 'https://dev-blog.apollodata.com/one-graphql-client-for-javascript-ios-and-android-64993c1b7991', + }, + { + by: 'uptown', + descendants: 166, + id: 14192817, + kids: [ + 14197690, + 14195597, + 14196750, + 14195237, + 14196320, + 14195150, + 14198816, + 14194916, + 14197746, + 14196332, + 14194695, + 14196726, + 14194947, + 14199715, + 14195059, + 14195778, + 14196204, + 14200435, + 14194780, + 14195030, + 14198452, + 14199023, + 14194852, + 14197577, + 14197778, + 14195361, + 14196368, + 14194948, + 14199024, + 14195060, + 14199498, + ], + score: 226, + time: 1493123621, + title: 'How Yahoo Killed Flickr (2012)', + type: 'story', + url: + 'https://gizmodo.com/5910223/how-yahoo-killed-flickr-and-lost-the-internet', + }, + { + by: 'mattklein123', + descendants: 42, + id: 14194026, + kids: [ + 14194573, + 14195577, + 14194430, + 14195407, + 14194569, + 14195298, + 14200054, + 14194456, + 14198329, + 14199198, + ], + score: 167, + time: 1493131921, + title: 'Envoy: 7 months later', + type: 'story', + url: 'https://eng.lyft.com/envoy-7-months-later-41986c2fd443', + }, + { + by: 'misnamed', + descendants: 2, + id: 14191333, + kids: [14197296], + score: 29, + time: 1493103250, + title: + 'Modern Hieroglyphs: Binary Logic Behind the Universal “Power Symbol”', + type: 'story', + url: + 'http://99percentinvisible.org/article/modern-hieroglyphics-binary-logic-behind-universal-power-symbol/', + }, + { + by: 'LaFolle', + descendants: 92, + id: 14191681, + kids: [ + 14192477, + 14194490, + 14192316, + 14193364, + 14192065, + 14193499, + 14194324, + 14192622, + 14192020, + 14195866, + 14192496, + 14196391, + 14192138, + 14192714, + 14195151, + 14195094, + 14192110, + 14192155, + ], + score: 138, + time: 1493108371, + title: 'Feynman Algorithm (2014)', + type: 'story', + url: 'http://wiki.c2.com/?FeynmanAlgorithm', + }, + { + by: 'Thevet', + descendants: 18, + id: 14190736, + kids: [ + 14197744, + 14195753, + 14197880, + 14197735, + 14195874, + 14197023, + 14196660, + ], + score: 81, + time: 1493093860, + title: 'The legend of the Legion', + type: 'story', + url: + 'https://aeon.co/essays/why-young-men-queue-up-to-die-in-the-french-foreign-legion', + }, + { + by: 'bufordsharkley', + descendants: 92, + id: 14197013, + kids: [ + 14197983, + 14197168, + 14197701, + 14198239, + 14197514, + 14198064, + 14197476, + 14198489, + 14197761, + 14197080, + 14198905, + 14198068, + 14198579, + ], + score: 69, + time: 1493147532, + title: "Cracking the Mystery of Labor's Falling Share of GDP", + type: 'story', + url: + 'https://www.bloomberg.com/view/articles/2017-04-24/cracking-the-mystery-of-labor-s-falling-share-of-gdp', + }, + { + by: 'rbanffy', + descendants: 27, + id: 14198470, + kids: [ + 14199443, + 14201987, + 14199461, + 14199729, + 14201519, + 14198762, + 14199524, + ], + score: 52, + time: 1493157378, + title: 'How the Internet Gave Mail-Order Brides the Power', + type: 'story', + url: + 'https://backchannel.com/how-the-internet-gave-mail-order-brides-the-power-1af8c8a40562', + }, +]; diff --git a/scripts/bench/benchmarks/pe-class-components/benchmark.js b/scripts/bench/benchmarks/pe-class-components/benchmark.js index 26db466c59e2a..dce255f3d4b6d 100644 --- a/scripts/bench/benchmarks/pe-class-components/benchmark.js +++ b/scripts/bench/benchmarks/pe-class-components/benchmark.js @@ -1,111 +1,235 @@ -(function () { +(function() { 'use strict'; class ReactImage0 extends React.Component { render() { if (this.props.x === 0) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (this.props.x === 15) { - return React.createElement("i", { className: "_3ut_ img sp_i534r85sjIn sx_e8ac93", src: null, alt: "" }); + return React.createElement('i', { + className: '_3ut_ img sp_i534r85sjIn sx_e8ac93', + src: null, + alt: '', + }); } if (this.props.x === 22) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_7b15bc", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_7b15bc', + src: null, + }); } if (this.props.x === 29) { - return React.createElement("i", { className: "_1m1s _4540 _p img sp_i534r85sjIn sx_f40b1c", src: null, alt: "" }); + return React.createElement('i', { + className: '_1m1s _4540 _p img sp_i534r85sjIn sx_f40b1c', + src: null, + alt: '', + }); } if (this.props.x === 42) { return React.createElement( - "i", - { alt: "Warning", className: "_585p img sp_i534r85sjIn sx_20273d", src: null }, - React.createElement( - "u", - null, - "Warning" - ) + 'i', + { + alt: 'Warning', + className: '_585p img sp_i534r85sjIn sx_20273d', + src: null, + }, + React.createElement('u', null, 'Warning') ); } if (this.props.x === 67) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_b5d079", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_b5d079', + src: null, + }); } if (this.props.x === 70) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_29f8c9" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_29f8c9', + }); } if (this.props.x === 76) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_ef6a9c", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_ef6a9c', + src: null, + }); } if (this.props.x === 79) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_6f8c43" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_6f8c43', + }); } if (this.props.x === 88) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_e94a2d" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_e94a2d', + }); } if (this.props.x === 91) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_7ed7d4" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_7ed7d4', + }); } if (this.props.x === 94) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_930440" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_930440', + }); } if (this.props.x === 98) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_750c83" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_750c83', + }); } if (this.props.x === 108) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_73c1bb" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_73c1bb', + }); } if (this.props.x === 111) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_29f28d" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_29f28d', + }); } if (this.props.x === 126) { - return React.createElement("i", { src: null, alt: "", className: "_3-8_ img sp_i534r85sjIn sx_91c59e" }); + return React.createElement('i', { + src: null, + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_91c59e', + }); } if (this.props.x === 127) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (this.props.x === 134) { - return React.createElement("i", { src: null, alt: "", className: "_3-8_ img sp_i534r85sjIn sx_c8eb75" }); + return React.createElement('i', { + src: null, + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_c8eb75', + }); } if (this.props.x === 135) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (this.props.x === 148) { - return React.createElement("i", { className: "_3yz6 _5whs img sp_i534r85sjIn sx_896996", src: null, alt: "" }); + return React.createElement('i', { + className: '_3yz6 _5whs img sp_i534r85sjIn sx_896996', + src: null, + alt: '', + }); } if (this.props.x === 152) { - return React.createElement("i", { className: "_5b5p _4gem img sp_i534r85sjIn sx_896996", src: null, alt: "" }); + return React.createElement('i', { + className: '_5b5p _4gem img sp_i534r85sjIn sx_896996', + src: null, + alt: '', + }); } if (this.props.x === 153) { - return React.createElement("i", { className: "_541d img sp_i534r85sjIn sx_2f396a", src: null, alt: "" }); + return React.createElement('i', { + className: '_541d img sp_i534r85sjIn sx_2f396a', + src: null, + alt: '', + }); } if (this.props.x === 160) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_31d9b0" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_31d9b0', + }); } if (this.props.x === 177) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_2c18b7", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_2c18b7', + src: null, + }); } if (this.props.x === 186) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_0a681f" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_0a681f', + }); } if (this.props.x === 195) { - return React.createElement("i", { className: "_1-lx img sp_OkER5ktbEyg sx_b369b4", src: null, alt: "" }); + return React.createElement('i', { + className: '_1-lx img sp_OkER5ktbEyg sx_b369b4', + src: null, + alt: '', + }); } if (this.props.x === 198) { - return React.createElement("i", { className: "_1-lx img sp_i534r85sjIn sx_96948e", src: null, alt: "" }); + return React.createElement('i', { + className: '_1-lx img sp_i534r85sjIn sx_96948e', + src: null, + alt: '', + }); } if (this.props.x === 237) { - return React.createElement("i", { className: "_541d img sp_i534r85sjIn sx_2f396a", src: null, alt: "" }); + return React.createElement('i', { + className: '_541d img sp_i534r85sjIn sx_2f396a', + src: null, + alt: '', + }); } if (this.props.x === 266) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (this.props.x === 314) { - return React.createElement("i", { className: "_1cie _1cif img sp_i534r85sjIn sx_6e6820", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie _1cif img sp_i534r85sjIn sx_6e6820', + src: null, + alt: '', + }); } if (this.props.x === 345) { - return React.createElement("i", { className: "_1cie img sp_i534r85sjIn sx_e896cf", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie img sp_i534r85sjIn sx_e896cf', + src: null, + alt: '', + }); } if (this.props.x === 351) { - return React.createElement("i", { className: "_1cie img sp_i534r85sjIn sx_38fed8", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie img sp_i534r85sjIn sx_38fed8', + src: null, + alt: '', + }); } } } @@ -114,114 +238,169 @@ render() { if (this.props.x === 1) { return React.createElement( - "a", - { className: "_387r _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "width": 250, "maxWidth": "250px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () { } }, + 'a', + { + className: '_387r _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {width: 250, maxWidth: '250px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "236px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '236px'}}, null, React.createElement( - "span", + 'span', null, - React.createElement( - "span", - { className: "_48u-" }, - "Account:" - ), - " ", - "Dick Madanson (10149999073643408)" + React.createElement('span', {className: '_48u-'}, 'Account:'), + ' ', + 'Dick Madanson (10149999073643408)' ) ), - React.createElement(ReactImage0, { x: 0 }) + React.createElement(ReactImage0, {x: 0}) ); } if (this.props.x === 43) { return React.createElement( - "a", - { className: "_585q _50zy _50-0 _50z- _5upp _42ft", size: "medium", type: null, title: "Remove", "data-hover": undefined, "data-tooltip-alignh": undefined, "data-tooltip-content": undefined, disabled: null, label: null, href: "#", rel: undefined, onClick: function () { } }, + 'a', + { + className: '_585q _50zy _50-0 _50z- _5upp _42ft', + size: 'medium', + type: null, + title: 'Remove', + 'data-hover': undefined, + 'data-tooltip-alignh': undefined, + 'data-tooltip-content': undefined, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, undefined, - "Remove", + 'Remove', undefined ); } if (this.props.x === 49) { return React.createElement( - "a", - { target: "_blank", href: "/ads/manage/billing.php?act=10149999073643408", rel: undefined, onClick: function () { } }, - React.createElement(XUIText29, { x: 48 }) + 'a', + { + target: '_blank', + href: '/ads/manage/billing.php?act=10149999073643408', + rel: undefined, + onClick: function() {}, + }, + React.createElement(XUIText29, {x: 48}) ); } if (this.props.x === 128) { return React.createElement( - "a", - { className: " _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () { } }, + 'a', + { + className: ' _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, - React.createElement(ReactImage0, { x: 126 }), - "Search" + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, + React.createElement(ReactImage0, {x: 126}), + 'Search' ), - React.createElement(ReactImage0, { x: 127 }) + React.createElement(ReactImage0, {x: 127}) ); } if (this.props.x === 136) { return React.createElement( - "a", - { className: " _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () { } }, + 'a', + { + className: ' _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, - React.createElement(ReactImage0, { x: 134 }), - "Filters" + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, + React.createElement(ReactImage0, {x: 134}), + 'Filters' ), - React.createElement(ReactImage0, { x: 135 }) + React.createElement(ReactImage0, {x: 135}) ); } if (this.props.x === 178) { return React.createElement( - "a", - { className: "_1_-t _1_-v _42ft", disabled: null, height: "medium", role: "button", label: null, href: "#", rel: undefined, onClick: function () { } }, + 'a', + { + className: '_1_-t _1_-v _42ft', + disabled: null, + height: 'medium', + role: 'button', + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, undefined, - "Lifetime", - React.createElement(ReactImage0, { x: 177 }) + 'Lifetime', + React.createElement(ReactImage0, {x: 177}) ); } if (this.props.x === 207) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () { } }, - "Create Ad Set" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'Create Ad Set' ); } if (this.props.x === 209) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () { } }, - "View Ad Set" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'View Ad Set' ); } if (this.props.x === 241) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () { } }, - "Set a Limit" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'Set a Limit' ); } if (this.props.x === 267) { return React.createElement( - "a", - { className: "_p _55pi _2agf _4jy0 _4jy3 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () { } }, + 'a', + { + className: '_p _55pi _2agf _4jy0 _4jy3 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, null, - "Links" + 'Links' ), - React.createElement(ReactImage0, { x: 266 }) + React.createElement(ReactImage0, {x: 266}) ); } } @@ -230,34 +409,34 @@ class Link2 extends React.Component { render() { if (this.props.x === 2) { - return React.createElement(AbstractLink1, { x: 1 }); + return React.createElement(AbstractLink1, {x: 1}); } if (this.props.x === 44) { - return React.createElement(AbstractLink1, { x: 43 }); + return React.createElement(AbstractLink1, {x: 43}); } if (this.props.x === 50) { - return React.createElement(AbstractLink1, { x: 49 }); + return React.createElement(AbstractLink1, {x: 49}); } if (this.props.x === 129) { - return React.createElement(AbstractLink1, { x: 128 }); + return React.createElement(AbstractLink1, {x: 128}); } if (this.props.x === 137) { - return React.createElement(AbstractLink1, { x: 136 }); + return React.createElement(AbstractLink1, {x: 136}); } if (this.props.x === 179) { - return React.createElement(AbstractLink1, { x: 178 }); + return React.createElement(AbstractLink1, {x: 178}); } if (this.props.x === 208) { - return React.createElement(AbstractLink1, { x: 207 }); + return React.createElement(AbstractLink1, {x: 207}); } if (this.props.x === 210) { - return React.createElement(AbstractLink1, { x: 209 }); + return React.createElement(AbstractLink1, {x: 209}); } if (this.props.x === 242) { - return React.createElement(AbstractLink1, { x: 241 }); + return React.createElement(AbstractLink1, {x: 241}); } if (this.props.x === 268) { - return React.createElement(AbstractLink1, { x: 267 }); + return React.createElement(AbstractLink1, {x: 267}); } } } @@ -265,220 +444,368 @@ class AbstractButton3 extends React.Component { render() { if (this.props.x === 3) { - return React.createElement(Link2, { x: 2 }); + return React.createElement(Link2, {x: 2}); } if (this.props.x === 20) { return React.createElement( - "button", - { className: "_5n7z _4jy0 _4jy4 _517h _51sy _42ft", onClick: function () { }, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_5n7z _4jy0 _4jy4 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, - "Discard Changes", + 'Discard Changes', undefined ); } if (this.props.x === 23) { return React.createElement( - "button", - { className: "_5n7z _2yak _4lj- _4jy0 _4jy4 _517h _51sy _42ft _42fr", disabled: true, onClick: function () { }, "data-tooltip-content": "You have no changes to publish", "data-hover": "tooltip", label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 22 }), - "Review Changes", + 'button', + { + className: '_5n7z _2yak _4lj- _4jy0 _4jy4 _517h _51sy _42ft _42fr', + disabled: true, + onClick: function() {}, + 'data-tooltip-content': 'You have no changes to publish', + 'data-hover': 'tooltip', + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 22}), + 'Review Changes', undefined ); } if (this.props.x === 45) { - return React.createElement(Link2, { x: 44 }); + return React.createElement(Link2, {x: 44}); } if (this.props.x === 68) { return React.createElement( - "button", - { className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 67 }), - "Create Campaign", + 'button', + { + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 67}), + 'Create Campaign', undefined ); } if (this.props.x === 71) { return React.createElement( - "button", - { className: "_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft", label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 70 }), + 'button', + { + className: '_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft', + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 70}), undefined, undefined ); } if (this.props.x === 77) { return React.createElement( - "button", - { "aria-label": "Edit", "data-tooltip-content": "Edit Campaigns (Ctrl+U)", "data-hover": "tooltip", className: "_d2_ _u_k noMargin _4jy0 _4jy4 _517h _51sy _42ft", disabled: false, onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 76 }), - "Edit", + 'button', + { + 'aria-label': 'Edit', + 'data-tooltip-content': 'Edit Campaigns (Ctrl+U)', + 'data-hover': 'tooltip', + className: '_d2_ _u_k noMargin _4jy0 _4jy4 _517h _51sy _42ft', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 76}), + 'Edit', undefined ); } if (this.props.x === 80) { return React.createElement( - "button", - { className: "_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft", disabled: false, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 79 }), + 'button', + { + className: '_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft', + disabled: false, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 79}), undefined, undefined ); } if (this.props.x === 89) { return React.createElement( - "button", - { "aria-label": "Revert", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft _42fr", "data-hover": "tooltip", "data-tooltip-content": "Revert", disabled: true, onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 88 }), + 'button', + { + 'aria-label': 'Revert', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft _42fr', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Revert', + disabled: true, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 88}), undefined, undefined ); } if (this.props.x === 92) { return React.createElement( - "button", - { "aria-label": "Delete", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Delete", disabled: false, onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 91 }), + 'button', + { + 'aria-label': 'Delete', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Delete', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 91}), undefined, undefined ); } if (this.props.x === 95) { return React.createElement( - "button", - { "aria-label": "Duplicate", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Duplicate", disabled: false, onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 94 }), + 'button', + { + 'aria-label': 'Duplicate', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Duplicate', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 94}), undefined, undefined ); } if (this.props.x === 99) { return React.createElement( - "button", - { "aria-label": "Export & Import", className: "_u_k noMargin _p _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Export & Import", onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 98 }), + 'button', + { + 'aria-label': 'Export & Import', + className: '_u_k noMargin _p _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Export & Import', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 98}), undefined, undefined ); } if (this.props.x === 109) { return React.createElement( - "button", - { "aria-label": "Create Report", className: "_u_k _5n7z _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Create Report", disabled: false, style: { "boxSizing": "border-box", "height": "28px", "width": "48px" }, onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 108 }), + 'button', + { + 'aria-label': 'Create Report', + className: '_u_k _5n7z _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Create Report', + disabled: false, + style: {boxSizing: 'border-box', height: '28px', width: '48px'}, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 108}), undefined, undefined ); } if (this.props.x === 112) { return React.createElement( - "button", - { "aria-label": "Campaign Tags", className: " _5uy7 _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Campaign Tags", disabled: false, onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 111 }), + 'button', + { + 'aria-label': 'Campaign Tags', + className: ' _5uy7 _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Campaign Tags', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 111}), undefined, undefined ); } if (this.props.x === 130) { - return React.createElement(Link2, { x: 129 }); + return React.createElement(Link2, {x: 129}); } if (this.props.x === 138) { - return React.createElement(Link2, { x: 137 }); + return React.createElement(Link2, {x: 137}); } if (this.props.x === 149) { return React.createElement( - "button", - { className: "_3yz9 _1t-2 _50z- _50zy _50zz _50z- _5upp _42ft", size: "small", onClick: function () { }, type: "button", title: "Remove", "data-hover": undefined, "data-tooltip-alignh": undefined, "data-tooltip-content": undefined, label: null }, + 'button', + { + className: '_3yz9 _1t-2 _50z- _50zy _50zz _50z- _5upp _42ft', + size: 'small', + onClick: function() {}, + type: 'button', + title: 'Remove', + 'data-hover': undefined, + 'data-tooltip-alignh': undefined, + 'data-tooltip-content': undefined, + label: null, + }, undefined, - "Remove", + 'Remove', undefined ); } if (this.props.x === 156) { return React.createElement( - "button", - { className: "_5b5u _5b5v _4jy0 _4jy3 _517h _51sy _42ft", onClick: function () { }, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_5b5u _5b5v _4jy0 _4jy3 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, - "Apply", + 'Apply', undefined ); } if (this.props.x === 161) { return React.createElement( - "button", - { className: "_1wdf _4jy0 _517i _517h _51sy _42ft", onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 160 }), + 'button', + { + className: '_1wdf _4jy0 _517i _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 160}), undefined, undefined ); } if (this.props.x === 180) { - return React.createElement(Link2, { x: 179 }); + return React.createElement(Link2, {x: 179}); } if (this.props.x === 187) { return React.createElement( - "button", - { "aria-label": "List Settings", className: "_u_k _3c5o _1-r0 _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "List Settings", onClick: function () { }, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 186 }), + 'button', + { + 'aria-label': 'List Settings', + className: '_u_k _3c5o _1-r0 _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'List Settings', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 186}), undefined, undefined ); } if (this.props.x === 269) { - return React.createElement(Link2, { x: 268 }); + return React.createElement(Link2, {x: 268}); } if (this.props.x === 303) { return React.createElement( - "button", - { className: "_tm3 _tm6 _tm7 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Campaigns", "data-hover": "tooltip", onClick: function () { }, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm3 _tm6 _tm7 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Campaigns', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } if (this.props.x === 305) { return React.createElement( - "button", - { className: "_tm4 _tm6 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Ad Sets", "data-hover": "tooltip", onClick: function () { }, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm4 _tm6 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Ad Sets', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } if (this.props.x === 307) { return React.createElement( - "button", - { className: "_tm5 _tm6 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Ads", "data-hover": "tooltip", onClick: function () { }, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm5 _tm6 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Ads', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); @@ -489,70 +816,70 @@ class XUIButton4 extends React.Component { render() { if (this.props.x === 4) { - return React.createElement(AbstractButton3, { x: 3 }); + return React.createElement(AbstractButton3, {x: 3}); } if (this.props.x === 21) { - return React.createElement(AbstractButton3, { x: 20 }); + return React.createElement(AbstractButton3, {x: 20}); } if (this.props.x === 24) { - return React.createElement(AbstractButton3, { x: 23 }); + return React.createElement(AbstractButton3, {x: 23}); } if (this.props.x === 69) { - return React.createElement(AbstractButton3, { x: 68 }); + return React.createElement(AbstractButton3, {x: 68}); } if (this.props.x === 72) { - return React.createElement(AbstractButton3, { x: 71 }); + return React.createElement(AbstractButton3, {x: 71}); } if (this.props.x === 78) { - return React.createElement(AbstractButton3, { x: 77 }); + return React.createElement(AbstractButton3, {x: 77}); } if (this.props.x === 81) { - return React.createElement(AbstractButton3, { x: 80 }); + return React.createElement(AbstractButton3, {x: 80}); } if (this.props.x === 90) { - return React.createElement(AbstractButton3, { x: 89 }); + return React.createElement(AbstractButton3, {x: 89}); } if (this.props.x === 93) { - return React.createElement(AbstractButton3, { x: 92 }); + return React.createElement(AbstractButton3, {x: 92}); } if (this.props.x === 96) { - return React.createElement(AbstractButton3, { x: 95 }); + return React.createElement(AbstractButton3, {x: 95}); } if (this.props.x === 100) { - return React.createElement(AbstractButton3, { x: 99 }); + return React.createElement(AbstractButton3, {x: 99}); } if (this.props.x === 110) { - return React.createElement(AbstractButton3, { x: 109 }); + return React.createElement(AbstractButton3, {x: 109}); } if (this.props.x === 113) { - return React.createElement(AbstractButton3, { x: 112 }); + return React.createElement(AbstractButton3, {x: 112}); } if (this.props.x === 131) { - return React.createElement(AbstractButton3, { x: 130 }); + return React.createElement(AbstractButton3, {x: 130}); } if (this.props.x === 139) { - return React.createElement(AbstractButton3, { x: 138 }); + return React.createElement(AbstractButton3, {x: 138}); } if (this.props.x === 157) { - return React.createElement(AbstractButton3, { x: 156 }); + return React.createElement(AbstractButton3, {x: 156}); } if (this.props.x === 162) { - return React.createElement(AbstractButton3, { x: 161 }); + return React.createElement(AbstractButton3, {x: 161}); } if (this.props.x === 188) { - return React.createElement(AbstractButton3, { x: 187 }); + return React.createElement(AbstractButton3, {x: 187}); } if (this.props.x === 270) { - return React.createElement(AbstractButton3, { x: 269 }); + return React.createElement(AbstractButton3, {x: 269}); } if (this.props.x === 304) { - return React.createElement(AbstractButton3, { x: 303 }); + return React.createElement(AbstractButton3, {x: 303}); } if (this.props.x === 306) { - return React.createElement(AbstractButton3, { x: 305 }); + return React.createElement(AbstractButton3, {x: 305}); } if (this.props.x === 308) { - return React.createElement(AbstractButton3, { x: 307 }); + return React.createElement(AbstractButton3, {x: 307}); } } } @@ -560,16 +887,16 @@ class AbstractPopoverButton5 extends React.Component { render() { if (this.props.x === 5) { - return React.createElement(XUIButton4, { x: 4 }); + return React.createElement(XUIButton4, {x: 4}); } if (this.props.x === 132) { - return React.createElement(XUIButton4, { x: 131 }); + return React.createElement(XUIButton4, {x: 131}); } if (this.props.x === 140) { - return React.createElement(XUIButton4, { x: 139 }); + return React.createElement(XUIButton4, {x: 139}); } if (this.props.x === 271) { - return React.createElement(XUIButton4, { x: 270 }); + return React.createElement(XUIButton4, {x: 270}); } } } @@ -577,16 +904,16 @@ class ReactXUIPopoverButton6 extends React.Component { render() { if (this.props.x === 6) { - return React.createElement(AbstractPopoverButton5, { x: 5 }); + return React.createElement(AbstractPopoverButton5, {x: 5}); } if (this.props.x === 133) { - return React.createElement(AbstractPopoverButton5, { x: 132 }); + return React.createElement(AbstractPopoverButton5, {x: 132}); } if (this.props.x === 141) { - return React.createElement(AbstractPopoverButton5, { x: 140 }); + return React.createElement(AbstractPopoverButton5, {x: 140}); } if (this.props.x === 272) { - return React.createElement(AbstractPopoverButton5, { x: 271 }); + return React.createElement(AbstractPopoverButton5, {x: 271}); } } } @@ -595,9 +922,9 @@ render() { if (this.props.x === 7) { return React.createElement( - "div", + 'div', null, - React.createElement(ReactXUIPopoverButton6, { x: 6 }), + React.createElement(ReactXUIPopoverButton6, {x: 6}), null ); } @@ -607,7 +934,7 @@ class FluxContainer_AdsPEBIGAdAccountSelectorContainer_8 extends React.Component { render() { if (this.props.x === 8) { - return React.createElement(BIGAdAccountSelector7, { x: 7 }); + return React.createElement(BIGAdAccountSelector7, {x: 7}); } } } @@ -615,52 +942,75 @@ class ErrorBoundary9 extends React.Component { render() { if (this.props.x === 9) { - return React.createElement(FluxContainer_AdsPEBIGAdAccountSelectorContainer_8, { x: 8 }); + return React.createElement( + FluxContainer_AdsPEBIGAdAccountSelectorContainer_8, + {x: 8} + ); } if (this.props.x === 13) { - return React.createElement(FluxContainer_AdsPENavigationBarContainer_12, { x: 12 }); + return React.createElement( + FluxContainer_AdsPENavigationBarContainer_12, + {x: 12} + ); } if (this.props.x === 27) { - return React.createElement(FluxContainer_AdsPEPublishButtonContainer_18, { x: 26 }); + return React.createElement( + FluxContainer_AdsPEPublishButtonContainer_18, + {x: 26} + ); } if (this.props.x === 32) { - return React.createElement(ReactPopoverMenu20, { x: 31 }); + return React.createElement(ReactPopoverMenu20, {x: 31}); } if (this.props.x === 38) { - return React.createElement(AdsPEResetDialog24, { x: 37 }); + return React.createElement(AdsPEResetDialog24, {x: 37}); } if (this.props.x === 57) { - return React.createElement(FluxContainer_AdsPETopErrorContainer_35, { x: 56 }); + return React.createElement(FluxContainer_AdsPETopErrorContainer_35, { + x: 56, + }); } if (this.props.x === 60) { - return React.createElement(FluxContainer_AdsGuidanceChannel_36, { x: 59 }); + return React.createElement(FluxContainer_AdsGuidanceChannel_36, { + x: 59, + }); } if (this.props.x === 64) { - return React.createElement(FluxContainer_AdsBulkEditDialogContainer_38, { x: 63 }); + return React.createElement( + FluxContainer_AdsBulkEditDialogContainer_38, + {x: 63} + ); } if (this.props.x === 124) { - return React.createElement(AdsPECampaignGroupToolbarContainer57, { x: 123 }); + return React.createElement(AdsPECampaignGroupToolbarContainer57, { + x: 123, + }); } if (this.props.x === 170) { - return React.createElement(AdsPEFilterContainer72, { x: 169 }); + return React.createElement(AdsPEFilterContainer72, {x: 169}); } if (this.props.x === 175) { - return React.createElement(AdsPETablePagerContainer75, { x: 174 }); + return React.createElement(AdsPETablePagerContainer75, {x: 174}); } if (this.props.x === 193) { - return React.createElement(AdsPEStatRangeContainer81, { x: 192 }); + return React.createElement(AdsPEStatRangeContainer81, {x: 192}); } if (this.props.x === 301) { - return React.createElement(FluxContainer_AdsPEMultiTabDrawerContainer_137, { x: 300 }); + return React.createElement( + FluxContainer_AdsPEMultiTabDrawerContainer_137, + {x: 300} + ); } if (this.props.x === 311) { - return React.createElement(AdsPEOrganizerContainer139, { x: 310 }); + return React.createElement(AdsPEOrganizerContainer139, {x: 310}); } if (this.props.x === 471) { - return React.createElement(AdsPECampaignGroupTableContainer159, { x: 470 }); + return React.createElement(AdsPECampaignGroupTableContainer159, { + x: 470, + }); } if (this.props.x === 475) { - return React.createElement(AdsPEContentContainer161, { x: 474 }); + return React.createElement(AdsPEContentContainer161, {x: 474}); } } } @@ -668,52 +1018,52 @@ class AdsErrorBoundary10 extends React.Component { render() { if (this.props.x === 10) { - return React.createElement(ErrorBoundary9, { x: 9 }); + return React.createElement(ErrorBoundary9, {x: 9}); } if (this.props.x === 14) { - return React.createElement(ErrorBoundary9, { x: 13 }); + return React.createElement(ErrorBoundary9, {x: 13}); } if (this.props.x === 28) { - return React.createElement(ErrorBoundary9, { x: 27 }); + return React.createElement(ErrorBoundary9, {x: 27}); } if (this.props.x === 33) { - return React.createElement(ErrorBoundary9, { x: 32 }); + return React.createElement(ErrorBoundary9, {x: 32}); } if (this.props.x === 39) { - return React.createElement(ErrorBoundary9, { x: 38 }); + return React.createElement(ErrorBoundary9, {x: 38}); } if (this.props.x === 58) { - return React.createElement(ErrorBoundary9, { x: 57 }); + return React.createElement(ErrorBoundary9, {x: 57}); } if (this.props.x === 61) { - return React.createElement(ErrorBoundary9, { x: 60 }); + return React.createElement(ErrorBoundary9, {x: 60}); } if (this.props.x === 65) { - return React.createElement(ErrorBoundary9, { x: 64 }); + return React.createElement(ErrorBoundary9, {x: 64}); } if (this.props.x === 125) { - return React.createElement(ErrorBoundary9, { x: 124 }); + return React.createElement(ErrorBoundary9, {x: 124}); } if (this.props.x === 171) { - return React.createElement(ErrorBoundary9, { x: 170 }); + return React.createElement(ErrorBoundary9, {x: 170}); } if (this.props.x === 176) { - return React.createElement(ErrorBoundary9, { x: 175 }); + return React.createElement(ErrorBoundary9, {x: 175}); } if (this.props.x === 194) { - return React.createElement(ErrorBoundary9, { x: 193 }); + return React.createElement(ErrorBoundary9, {x: 193}); } if (this.props.x === 302) { - return React.createElement(ErrorBoundary9, { x: 301 }); + return React.createElement(ErrorBoundary9, {x: 301}); } if (this.props.x === 312) { - return React.createElement(ErrorBoundary9, { x: 311 }); + return React.createElement(ErrorBoundary9, {x: 311}); } if (this.props.x === 472) { - return React.createElement(ErrorBoundary9, { x: 471 }); + return React.createElement(ErrorBoundary9, {x: 471}); } if (this.props.x === 476) { - return React.createElement(ErrorBoundary9, { x: 475 }); + return React.createElement(ErrorBoundary9, {x: 475}); } } } @@ -721,7 +1071,7 @@ class AdsPENavigationBar11 extends React.Component { render() { if (this.props.x === 11) { - return React.createElement("div", { className: "_4t_9" }); + return React.createElement('div', {className: '_4t_9'}); } } } @@ -729,7 +1079,7 @@ class FluxContainer_AdsPENavigationBarContainer_12 extends React.Component { render() { if (this.props.x === 12) { - return React.createElement(AdsPENavigationBar11, { x: 11 }); + return React.createElement(AdsPENavigationBar11, {x: 11}); } } } @@ -738,12 +1088,12 @@ render() { if (this.props.x === 16) { return React.createElement( - "div", - { className: "_3ut-", onClick: function () { } }, + 'div', + {className: '_3ut-', onClick: function() {}}, React.createElement( - "span", - { className: "_3uu0" }, - React.createElement(ReactImage0, { x: 15 }) + 'span', + {className: '_3uu0'}, + React.createElement(ReactImage0, {x: 15}) ) ); } @@ -753,7 +1103,7 @@ class FluxContainer_AdsPEDraftSyncStatusContainer_14 extends React.Component { render() { if (this.props.x === 17) { - return React.createElement(AdsPEDraftSyncStatus13, { x: 16 }); + return React.createElement(AdsPEDraftSyncStatus13, {x: 16}); } } } @@ -769,7 +1119,7 @@ class FluxContainer_viewFn_16 extends React.Component { render() { if (this.props.x === 19) { - return React.createElement(AdsPEDraftErrorsStatus15, { x: 18 }); + return React.createElement(AdsPEDraftErrorsStatus15, {x: 18}); } } } @@ -778,13 +1128,15 @@ render() { if (this.props.x === 25) { return React.createElement( - "div", - { className: "_5533" }, - React.createElement(FluxContainer_AdsPEDraftSyncStatusContainer_14, { x: 17 }), - React.createElement(FluxContainer_viewFn_16, { x: 19 }), + 'div', + {className: '_5533'}, + React.createElement(FluxContainer_AdsPEDraftSyncStatusContainer_14, { + x: 17, + }), + React.createElement(FluxContainer_viewFn_16, {x: 19}), null, - React.createElement(XUIButton4, { x: 21, key: "discard" }), - React.createElement(XUIButton4, { x: 24 }) + React.createElement(XUIButton4, {x: 21, key: 'discard'}), + React.createElement(XUIButton4, {x: 24}) ); } } @@ -793,7 +1145,7 @@ class FluxContainer_AdsPEPublishButtonContainer_18 extends React.Component { render() { if (this.props.x === 26) { - return React.createElement(AdsPEPublishButton17, { x: 25 }); + return React.createElement(AdsPEPublishButton17, {x: 25}); } } } @@ -802,37 +1154,41 @@ render() { if (this.props.x === 30) { return React.createElement( - "div", - { className: "uiPopover _6a _6b", disabled: null }, - React.createElement(ReactImage0, { x: 29, key: ".0" }) + 'div', + {className: 'uiPopover _6a _6b', disabled: null}, + React.createElement(ReactImage0, {x: 29, key: '.0'}) ); } if (this.props.x === 73) { return React.createElement( - "div", - { className: "uiPopover _6a _6b", disabled: null }, - React.createElement(XUIButton4, { x: 72, key: ".0" }) + 'div', + {className: 'uiPopover _6a _6b', disabled: null}, + React.createElement(XUIButton4, {x: 72, key: '.0'}) ); } if (this.props.x === 82) { return React.createElement( - "div", - { className: "_1nwm uiPopover _6a _6b", disabled: null }, - React.createElement(XUIButton4, { x: 81, key: ".0" }) + 'div', + {className: '_1nwm uiPopover _6a _6b', disabled: null}, + React.createElement(XUIButton4, {x: 81, key: '.0'}) ); } if (this.props.x === 101) { return React.createElement( - "div", - { size: "large", className: "uiPopover _6a _6b", disabled: null }, - React.createElement(XUIButton4, { x: 100, key: ".0" }) + 'div', + {size: 'large', className: 'uiPopover _6a _6b', disabled: null}, + React.createElement(XUIButton4, {x: 100, key: '.0'}) ); } if (this.props.x === 273) { return React.createElement( - "div", - { className: "_3-90 uiPopover _6a _6b", style: { "marginTop": 2 }, disabled: null }, - React.createElement(ReactXUIPopoverButton6, { x: 272, key: ".0" }) + 'div', + { + className: '_3-90 uiPopover _6a _6b', + style: {marginTop: 2}, + disabled: null, + }, + React.createElement(ReactXUIPopoverButton6, {x: 272, key: '.0'}) ); } } @@ -841,19 +1197,19 @@ class ReactPopoverMenu20 extends React.Component { render() { if (this.props.x === 31) { - return React.createElement(InlineBlock19, { x: 30 }); + return React.createElement(InlineBlock19, {x: 30}); } if (this.props.x === 74) { - return React.createElement(InlineBlock19, { x: 73 }); + return React.createElement(InlineBlock19, {x: 73}); } if (this.props.x === 83) { - return React.createElement(InlineBlock19, { x: 82 }); + return React.createElement(InlineBlock19, {x: 82}); } if (this.props.x === 102) { - return React.createElement(InlineBlock19, { x: 101 }); + return React.createElement(InlineBlock19, {x: 101}); } if (this.props.x === 274) { - return React.createElement(InlineBlock19, { x: 273 }); + return React.createElement(InlineBlock19, {x: 273}); } } } @@ -862,41 +1218,41 @@ render() { if (this.props.x === 34) { return React.createElement( - "div", - { className: "clearfix" }, + 'div', + {className: 'clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, + 'div', + {key: 'left', className: '_ohe lfloat'}, React.createElement( - "div", - { className: "_34_j" }, + 'div', + {className: '_34_j'}, React.createElement( - "div", - { className: "_34_k" }, - React.createElement(AdsErrorBoundary10, { x: 10 }) + 'div', + {className: '_34_k'}, + React.createElement(AdsErrorBoundary10, {x: 10}) ), React.createElement( - "div", - { className: "_2u-6" }, - React.createElement(AdsErrorBoundary10, { x: 14 }) + 'div', + {className: '_2u-6'}, + React.createElement(AdsErrorBoundary10, {x: 14}) ) ) ), React.createElement( - "div", - { key: "right", className: "_ohf rfloat" }, + 'div', + {key: 'right', className: '_ohf rfloat'}, React.createElement( - "div", - { className: "_34_m" }, + 'div', + {className: '_34_m'}, React.createElement( - "div", - { key: "0", className: "_5ju2" }, - React.createElement(AdsErrorBoundary10, { x: 28 }) + 'div', + {key: '0', className: '_5ju2'}, + React.createElement(AdsErrorBoundary10, {x: 28}) ), React.createElement( - "div", - { key: "1", className: "_5ju2" }, - React.createElement(AdsErrorBoundary10, { x: 33 }) + 'div', + {key: '1', className: '_5ju2'}, + React.createElement(AdsErrorBoundary10, {x: 33}) ) ) ) @@ -904,23 +1260,23 @@ } if (this.props.x === 232) { return React.createElement( - "div", - { direction: "left", className: "clearfix" }, + 'div', + {direction: 'left', className: 'clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(AdsLabeledField104, { x: 231 }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(AdsLabeledField104, {x: 231}) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, + 'div', + {className: '_42ef'}, React.createElement( - "div", - { className: "_2oc7" }, - "Clicks to Website" + 'div', + {className: '_2oc7'}, + 'Clicks to Website' ) ) ) @@ -928,61 +1284,63 @@ } if (this.props.x === 235) { return React.createElement( - "div", - { className: "_3-8x clearfix", direction: "left" }, + 'div', + {className: '_3-8x clearfix', direction: 'left'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(AdsLabeledField104, { x: 234 }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(AdsLabeledField104, {x: 234}) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, - React.createElement( - "div", - { className: "_2oc7" }, - "Auction" - ) + 'div', + {className: '_42ef'}, + React.createElement('div', {className: '_2oc7'}, 'Auction') ) ) ); } if (this.props.x === 245) { return React.createElement( - "div", - { className: "_3-8y clearfix", direction: "left" }, + 'div', + {className: '_3-8y clearfix', direction: 'left'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(AdsLabeledField104, { x: 240 }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(AdsLabeledField104, {x: 240}) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, - React.createElement(FluxContainer_AdsCampaignGroupSpendCapContainer_107, { x: 244 }) + 'div', + {className: '_42ef'}, + React.createElement( + FluxContainer_AdsCampaignGroupSpendCapContainer_107, + {x: 244} + ) ) ) ); } if (this.props.x === 277) { return React.createElement( - "div", - { className: "_5dw9 _5dwa clearfix" }, + 'div', + {className: '_5dw9 _5dwa clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(XUICardHeaderTitle100, { x: 265, key: ".0" }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(XUICardHeaderTitle100, {x: 265, key: '.0'}) ), React.createElement( - "div", - { key: "right", className: "_ohf rfloat" }, - React.createElement(FluxContainer_AdsPluginizedLinksMenuContainer_121, { x: 276, key: ".1" }) + 'div', + {key: 'right', className: '_ohf rfloat'}, + React.createElement( + FluxContainer_AdsPluginizedLinksMenuContainer_121, + {x: 276, key: '.1'} + ) ) ); } @@ -993,9 +1351,9 @@ render() { if (this.props.x === 35) { return React.createElement( - "div", - { className: "_34_i" }, - React.createElement(LeftRight21, { x: 34 }) + 'div', + {className: '_34_i'}, + React.createElement(LeftRight21, {x: 34}) ); } } @@ -1013,9 +1371,9 @@ render() { if (this.props.x === 37) { return React.createElement( - "span", + 'span', null, - React.createElement(XUIDialog23, { x: 36, key: "dialog/.0" }) + React.createElement(XUIDialog23, {x: 36, key: 'dialog/.0'}) ); } } @@ -1025,10 +1383,10 @@ render() { if (this.props.x === 40) { return React.createElement( - "div", - { style: { "width": 1306 } }, - React.createElement(AdsUnifiedNavigationLocalNav22, { x: 35 }), - React.createElement(AdsErrorBoundary10, { x: 39 }) + 'div', + {style: {width: 1306}}, + React.createElement(AdsUnifiedNavigationLocalNav22, {x: 35}), + React.createElement(AdsErrorBoundary10, {x: 39}) ); } } @@ -1037,7 +1395,7 @@ class FluxContainer_AdsPETopNavContainer_26 extends React.Component { render() { if (this.props.x === 41) { - return React.createElement(AdsPETopNav25, { x: 40 }); + return React.createElement(AdsPETopNav25, {x: 40}); } } } @@ -1045,10 +1403,10 @@ class XUIAbstractGlyphButton27 extends React.Component { render() { if (this.props.x === 46) { - return React.createElement(AbstractButton3, { x: 45 }); + return React.createElement(AbstractButton3, {x: 45}); } if (this.props.x === 150) { - return React.createElement(AbstractButton3, { x: 149 }); + return React.createElement(AbstractButton3, {x: 149}); } } } @@ -1056,10 +1414,10 @@ class XUICloseButton28 extends React.Component { render() { if (this.props.x === 47) { - return React.createElement(XUIAbstractGlyphButton27, { x: 46 }); + return React.createElement(XUIAbstractGlyphButton27, {x: 46}); } if (this.props.x === 151) { - return React.createElement(XUIAbstractGlyphButton27, { x: 150 }); + return React.createElement(XUIAbstractGlyphButton27, {x: 150}); } } } @@ -1068,23 +1426,23 @@ render() { if (this.props.x === 48) { return React.createElement( - "span", - { display: "inline", className: " _50f7" }, - "Ads Manager" + 'span', + {display: 'inline', className: ' _50f7'}, + 'Ads Manager' ); } if (this.props.x === 205) { return React.createElement( - "span", - { className: "_2x9f _50f5 _50f7", display: "inline" }, - "Editing Campaign" + 'span', + {className: '_2x9f _50f5 _50f7', display: 'inline'}, + 'Editing Campaign' ); } if (this.props.x === 206) { return React.createElement( - "span", - { display: "inline", className: " _50f5 _50f7" }, - "Test Campaign" + 'span', + {display: 'inline', className: ' _50f5 _50f7'}, + 'Test Campaign' ); } } @@ -1094,16 +1452,16 @@ render() { if (this.props.x === 51) { return React.createElement( - "div", - { size: "medium", className: "_585n _585o _2wdd" }, - React.createElement(ReactImage0, { x: 42 }), - React.createElement(XUICloseButton28, { x: 47 }), + 'div', + {size: 'medium', className: '_585n _585o _2wdd'}, + React.createElement(ReactImage0, {x: 42}), + React.createElement(XUICloseButton28, {x: 47}), React.createElement( - "div", - { className: "_585r _2i-a _50f4" }, - "Please go to ", - React.createElement(Link2, { x: 50 }), - " to set up a payment method for this ad account." + 'div', + {className: '_585r _2i-a _50f4'}, + 'Please go to ', + React.createElement(Link2, {x: 50}), + ' to set up a payment method for this ad account.' ) ); } @@ -1113,7 +1471,7 @@ class ReactCSSTransitionGroupChild31 extends React.Component { render() { if (this.props.x === 52) { - return React.createElement(XUINotice30, { x: 51 }); + return React.createElement(XUINotice30, {x: 51}); } } } @@ -1122,9 +1480,12 @@ render() { if (this.props.x === 53) { return React.createElement( - "span", + 'span', null, - React.createElement(ReactCSSTransitionGroupChild31, { x: 52, key: ".0" }) + React.createElement(ReactCSSTransitionGroupChild31, { + x: 52, + key: '.0', + }) ); } } @@ -1133,7 +1494,7 @@ class ReactCSSTransitionGroup33 extends React.Component { render() { if (this.props.x === 54) { - return React.createElement(ReactTransitionGroup32, { x: 53 }); + return React.createElement(ReactTransitionGroup32, {x: 53}); } } } @@ -1142,9 +1503,9 @@ render() { if (this.props.x === 55) { return React.createElement( - "div", - { className: "_2wdc" }, - React.createElement(ReactCSSTransitionGroup33, { x: 54 }) + 'div', + {className: '_2wdc'}, + React.createElement(ReactCSSTransitionGroup33, {x: 54}) ); } } @@ -1153,7 +1514,7 @@ class FluxContainer_AdsPETopErrorContainer_35 extends React.Component { render() { if (this.props.x === 56) { - return React.createElement(AdsPETopError34, { x: 55 }); + return React.createElement(AdsPETopError34, {x: 55}); } } } @@ -1170,25 +1531,36 @@ render() { if (this.props.x === 62) { return React.createElement( - "div", - { className: "_4u-c" }, - [React.createElement(AdsErrorBoundary10, { x: 58, key: 1 }), React.createElement(AdsErrorBoundary10, { x: 61, key: 2 })], - React.createElement( - "div", - { key: "sensor", className: "_4u-f" }, - React.createElement("iframe", { "aria-hidden": "true", className: "_1_xb", tabIndex: "-1" }) + 'div', + {className: '_4u-c'}, + [ + React.createElement(AdsErrorBoundary10, {x: 58, key: 1}), + React.createElement(AdsErrorBoundary10, {x: 61, key: 2}), + ], + React.createElement( + 'div', + {key: 'sensor', className: '_4u-f'}, + React.createElement('iframe', { + 'aria-hidden': 'true', + className: '_1_xb', + tabIndex: '-1', + }) ) ); } if (this.props.x === 469) { return React.createElement( - "div", - { className: "_4u-c" }, - React.createElement(AdsPEDataTableContainer158, { x: 468 }), - React.createElement( - "div", - { key: "sensor", className: "_4u-f" }, - React.createElement("iframe", { "aria-hidden": "true", className: "_1_xb", tabIndex: "-1" }) + 'div', + {className: '_4u-c'}, + React.createElement(AdsPEDataTableContainer158, {x: 468}), + React.createElement( + 'div', + {key: 'sensor', className: '_4u-f'}, + React.createElement('iframe', { + 'aria-hidden': 'true', + className: '_1_xb', + tabIndex: '-1', + }) ) ); } @@ -1207,14 +1579,14 @@ render() { if (this.props.x === 66) { return React.createElement( - "div", - { className: "_4bl8 _4bl7" }, + 'div', + {className: '_4bl8 _4bl7'}, React.createElement( - "div", - { className: "_3c5f" }, + 'div', + {className: '_3c5f'}, null, null, - React.createElement("div", { className: "_3c5i" }), + React.createElement('div', {className: '_3c5i'}), null ) ); @@ -1226,36 +1598,39 @@ render() { if (this.props.x === 75) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(XUIButton4, { x: 69 }), - React.createElement(ReactPopoverMenu20, { x: 74 }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(XUIButton4, {x: 69}), + React.createElement(ReactPopoverMenu20, {x: 74}) ); } if (this.props.x === 84) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(XUIButton4, { x: 78, key: "edit" }), - React.createElement(ReactPopoverMenu20, { x: 83, key: "editMenu" }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(XUIButton4, {x: 78, key: 'edit'}), + React.createElement(ReactPopoverMenu20, {x: 83, key: 'editMenu'}) ); } if (this.props.x === 97) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(XUIButton4, { x: 90, key: "revert" }), - React.createElement(XUIButton4, { x: 93, key: "delete" }), - React.createElement(XUIButton4, { x: 96, key: "duplicate" }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(XUIButton4, {x: 90, key: 'revert'}), + React.createElement(XUIButton4, {x: 93, key: 'delete'}), + React.createElement(XUIButton4, {x: 96, key: 'duplicate'}) ); } if (this.props.x === 117) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(AdsPEExportImportMenuContainer48, { x: 107 }), - React.createElement(XUIButton4, { x: 110, key: "createReport" }), - React.createElement(AdsPECampaignGroupTagContainer51, { x: 116, key: "tags" }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(AdsPEExportImportMenuContainer48, {x: 107}), + React.createElement(XUIButton4, {x: 110, key: 'createReport'}), + React.createElement(AdsPECampaignGroupTagContainer51, { + x: 116, + key: 'tags', + }) ); } } @@ -1264,7 +1639,7 @@ class AdsPEEditToolbarButton41 extends React.Component { render() { if (this.props.x === 85) { - return React.createElement(XUIButtonGroup40, { x: 84 }); + return React.createElement(XUIButtonGroup40, {x: 84}); } } } @@ -1272,7 +1647,7 @@ class FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42 extends React.Component { render() { if (this.props.x === 86) { - return React.createElement(AdsPEEditToolbarButton41, { x: 85 }); + return React.createElement(AdsPEEditToolbarButton41, {x: 85}); } } } @@ -1280,7 +1655,10 @@ class FluxContainer_AdsPEEditToolbarButtonContainer_43 extends React.Component { render() { if (this.props.x === 87) { - return React.createElement(FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42, { x: 86 }); + return React.createElement( + FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42, + {x: 86} + ); } } } @@ -1288,7 +1666,7 @@ class AdsPEExportImportMenu44 extends React.Component { render() { if (this.props.x === 103) { - return React.createElement(ReactPopoverMenu20, { x: 102, key: "export" }); + return React.createElement(ReactPopoverMenu20, {x: 102, key: 'export'}); } } } @@ -1312,7 +1690,7 @@ class FluxContainer_AdsPEExportAsTextDialogContainer_47 extends React.Component { render() { if (this.props.x === 106) { - return React.createElement(AdsPEExportAsTextDialog46, { x: 105 }); + return React.createElement(AdsPEExportAsTextDialog46, {x: 105}); } } } @@ -1321,11 +1699,16 @@ render() { if (this.props.x === 107) { return React.createElement( - "span", + 'span', null, - React.createElement(AdsPEExportImportMenu44, { x: 103 }), - React.createElement(FluxContainer_AdsPECustomizeExportContainer_45, { x: 104 }), - React.createElement(FluxContainer_AdsPEExportAsTextDialogContainer_47, { x: 106 }), + React.createElement(AdsPEExportImportMenu44, {x: 103}), + React.createElement(FluxContainer_AdsPECustomizeExportContainer_45, { + x: 104, + }), + React.createElement( + FluxContainer_AdsPEExportAsTextDialogContainer_47, + {x: 106} + ), null, null ); @@ -1354,10 +1737,10 @@ render() { if (this.props.x === 115) { return React.createElement( - "span", - { className: " _3d6e" }, - React.createElement(XUIButton4, { x: 113 }), - React.createElement(Constructor49, { x: 114, key: "layer" }) + 'span', + {className: ' _3d6e'}, + React.createElement(XUIButton4, {x: 113}), + React.createElement(Constructor49, {x: 114, key: 'layer'}) ); } } @@ -1366,7 +1749,10 @@ class AdsPECampaignGroupTagContainer51 extends React.Component { render() { if (this.props.x === 116) { - return React.createElement(TagSelectorPopover50, { x: 115, key: "98010048849317" }); + return React.createElement(TagSelectorPopover50, { + x: 115, + key: '98010048849317', + }); } } } @@ -1382,7 +1768,7 @@ class FluxContainer_AdsPERuleToolbarMenuContainer_53 extends React.Component { render() { if (this.props.x === 119) { - return React.createElement(AdsRuleToolbarMenu52, { x: 118 }); + return React.createElement(AdsRuleToolbarMenu52, {x: 118}); } } } @@ -1391,21 +1777,27 @@ render() { if (this.props.x === 120) { return React.createElement( - "div", - { className: "_4bl9" }, + 'div', + {className: '_4bl9'}, React.createElement( - "span", - { className: "_3c5e" }, + 'span', + {className: '_3c5e'}, React.createElement( - "span", + 'span', null, - React.createElement(XUIButtonGroup40, { x: 75 }), - React.createElement(FluxContainer_AdsPEEditToolbarButtonContainer_43, { x: 87 }), + React.createElement(XUIButtonGroup40, {x: 75}), + React.createElement( + FluxContainer_AdsPEEditToolbarButtonContainer_43, + {x: 87} + ), null, - React.createElement(XUIButtonGroup40, { x: 97 }) + React.createElement(XUIButtonGroup40, {x: 97}) ), - React.createElement(XUIButtonGroup40, { x: 117 }), - React.createElement(FluxContainer_AdsPERuleToolbarMenuContainer_53, { x: 119 }) + React.createElement(XUIButtonGroup40, {x: 117}), + React.createElement( + FluxContainer_AdsPERuleToolbarMenuContainer_53, + {x: 119} + ) ) ); } @@ -1416,10 +1808,10 @@ render() { if (this.props.x === 121) { return React.createElement( - "div", - { className: "clearfix" }, - React.createElement(Column39, { x: 66, key: "1" }), - React.createElement(FillColumn54, { x: 120, key: "0" }) + 'div', + {className: 'clearfix'}, + React.createElement(Column39, {x: 66, key: '1'}), + React.createElement(FillColumn54, {x: 120, key: '0'}) ); } } @@ -1429,9 +1821,9 @@ render() { if (this.props.x === 122) { return React.createElement( - "div", - { className: "_3c5b clearfix" }, - React.createElement(Layout55, { x: 121 }) + 'div', + {className: '_3c5b clearfix'}, + React.createElement(Layout55, {x: 121}) ); } } @@ -1440,7 +1832,7 @@ class AdsPECampaignGroupToolbarContainer57 extends React.Component { render() { if (this.props.x === 123) { - return React.createElement(AdsPEMainPaneToolbar56, { x: 122 }); + return React.createElement(AdsPEMainPaneToolbar56, {x: 122}); } } } @@ -1449,11 +1841,14 @@ render() { if (this.props.x === 144) { return React.createElement( - "span", - { className: "_5b-l _5bbe" }, - React.createElement(ReactXUIPopoverButton6, { x: 133 }), - React.createElement(ReactXUIPopoverButton6, { x: 141 }), - [React.createElement(Constructor49, { x: 142, key: "filterMenu/.0" }), React.createElement(Constructor49, { x: 143, key: "searchMenu/.0" })] + 'span', + {className: '_5b-l _5bbe'}, + React.createElement(ReactXUIPopoverButton6, {x: 133}), + React.createElement(ReactXUIPopoverButton6, {x: 141}), + [ + React.createElement(Constructor49, {x: 142, key: 'filterMenu/.0'}), + React.createElement(Constructor49, {x: 143, key: 'searchMenu/.0'}), + ] ); } } @@ -1463,18 +1858,38 @@ render() { if (this.props.x === 145) { return React.createElement( - "label", - { className: "uiInputLabelInput _55sg _kv1" }, - React.createElement("input", { checked: true, disabled: true, name: "filterUnpublished", value: "on", onClick: function () { }, className: null, id: "js_input_label_21", type: "checkbox" }), - React.createElement("span", { "data-hover": null, "data-tooltip-content": undefined }) + 'label', + {className: 'uiInputLabelInput _55sg _kv1'}, + React.createElement('input', { + checked: true, + disabled: true, + name: 'filterUnpublished', + value: 'on', + onClick: function() {}, + className: null, + id: 'js_input_label_21', + type: 'checkbox', + }), + React.createElement('span', { + 'data-hover': null, + 'data-tooltip-content': undefined, + }) ); } if (this.props.x === 336) { return React.createElement( - "label", - { className: "_4h2r _55sg _kv1" }, - React.createElement("input", { checked: undefined, onChange: function () { }, className: null, type: "checkbox" }), - React.createElement("span", { "data-hover": null, "data-tooltip-content": undefined }) + 'label', + {className: '_4h2r _55sg _kv1'}, + React.createElement('input', { + checked: undefined, + onChange: function() {}, + className: null, + type: 'checkbox', + }), + React.createElement('span', { + 'data-hover': null, + 'data-tooltip-content': undefined, + }) ); } } @@ -1483,10 +1898,10 @@ class XUICheckboxInput60 extends React.Component { render() { if (this.props.x === 146) { - return React.createElement(AbstractCheckboxInput59, { x: 145 }); + return React.createElement(AbstractCheckboxInput59, {x: 145}); } if (this.props.x === 337) { - return React.createElement(AbstractCheckboxInput59, { x: 336 }); + return React.createElement(AbstractCheckboxInput59, {x: 336}); } } } @@ -1495,13 +1910,13 @@ render() { if (this.props.x === 147) { return React.createElement( - "div", - { display: "block", className: "uiInputLabel clearfix" }, - React.createElement(XUICheckboxInput60, { x: 146 }), + 'div', + {display: 'block', className: 'uiInputLabel clearfix'}, + React.createElement(XUICheckboxInput60, {x: 146}), React.createElement( - "label", - { className: "uiInputLabelLabel", htmlFor: "js_input_label_21" }, - "Always show new items" + 'label', + {className: 'uiInputLabelLabel', htmlFor: 'js_input_label_21'}, + 'Always show new items' ) ); } @@ -1512,26 +1927,34 @@ render() { if (this.props.x === 154) { return React.createElement( - "span", + 'span', null, React.createElement( - "span", - { onMouseEnter: function () { }, onMouseLeave: function () { }, onMouseUp: undefined }, - React.createElement("span", { className: "_3o_j" }), - React.createElement(ReactImage0, { x: 153 }) + 'span', + { + onMouseEnter: function() {}, + onMouseLeave: function() {}, + onMouseUp: undefined, + }, + React.createElement('span', {className: '_3o_j'}), + React.createElement(ReactImage0, {x: 153}) ), null ); } if (this.props.x === 238) { return React.createElement( - "span", + 'span', null, React.createElement( - "span", - { onMouseEnter: function () { }, onMouseLeave: function () { }, onMouseUp: undefined }, - React.createElement("span", { className: "_3o_j" }), - React.createElement(ReactImage0, { x: 237 }) + 'span', + { + onMouseEnter: function() {}, + onMouseLeave: function() {}, + onMouseUp: undefined, + }, + React.createElement('span', {className: '_3o_j'}), + React.createElement(ReactImage0, {x: 237}) ), null ); @@ -1542,10 +1965,10 @@ class AdsHelpLink63 extends React.Component { render() { if (this.props.x === 155) { - return React.createElement(AdsPopoverLink62, { x: 154 }); + return React.createElement(AdsPopoverLink62, {x: 154}); } if (this.props.x === 239) { - return React.createElement(AdsPopoverLink62, { x: 238 }); + return React.createElement(AdsPopoverLink62, {x: 238}); } } } @@ -1554,20 +1977,20 @@ render() { if (this.props.x === 158) { return React.createElement( - "div", - { className: "_5b5o _3yz3 _4cld" }, + 'div', + {className: '_5b5o _3yz3 _4cld'}, React.createElement( - "div", - { className: "_5b5t _2d2k" }, - React.createElement(ReactImage0, { x: 152 }), + 'div', + {className: '_5b5t _2d2k'}, + React.createElement(ReactImage0, {x: 152}), React.createElement( - "div", - { className: "_5b5r" }, - "Campaigns: (1)", - React.createElement(AdsHelpLink63, { x: 155 }) + 'div', + {className: '_5b5r'}, + 'Campaigns: (1)', + React.createElement(AdsHelpLink63, {x: 155}) ) ), - React.createElement(XUIButton4, { x: 157 }) + React.createElement(XUIButton4, {x: 157}) ); } } @@ -1577,30 +2000,30 @@ render() { if (this.props.x === 159) { return React.createElement( - "div", - { className: "_3yz1 _3yz2 _3dad" }, + 'div', + {className: '_3yz1 _3yz2 _3dad'}, React.createElement( - "div", - { className: "_3yz4", "aria-hidden": false }, + 'div', + {className: '_3yz4', 'aria-hidden': false}, React.createElement( - "div", - { onClick: function () { }, className: "_3yz5" }, - React.createElement(ReactImage0, { x: 148 }), - React.createElement( - "div", - { className: "_3yz7" }, - "Campaigns:" - ), + 'div', + {onClick: function() {}, className: '_3yz5'}, + React.createElement(ReactImage0, {x: 148}), + React.createElement('div', {className: '_3yz7'}, 'Campaigns:'), React.createElement( - "div", - { className: "ellipsis _3yz8", "data-hover": "tooltip", "data-tooltip-display": "overflow" }, - "(1)" + 'div', + { + className: 'ellipsis _3yz8', + 'data-hover': 'tooltip', + 'data-tooltip-display': 'overflow', + }, + '(1)' ) ), null, - React.createElement(XUICloseButton28, { x: 151 }) + React.createElement(XUICloseButton28, {x: 151}) ), - React.createElement(BUIFilterTokenInput64, { x: 158 }) + React.createElement(BUIFilterTokenInput64, {x: 158}) ); } } @@ -1610,9 +2033,9 @@ render() { if (this.props.x === 163) { return React.createElement( - "div", - { className: "_1tc" }, - React.createElement(XUIButton4, { x: 162 }) + 'div', + {className: '_1tc'}, + React.createElement(XUIButton4, {x: 162}) ); } } @@ -1622,14 +2045,14 @@ render() { if (this.props.x === 164) { return React.createElement( - "div", - { className: "_5b-m clearfix" }, + 'div', + {className: '_5b-m clearfix'}, undefined, [], - React.createElement(BUIFilterToken65, { x: 159, key: "token0" }), - React.createElement(BUIFilterTokenCreateButton66, { x: 163 }), + React.createElement(BUIFilterToken65, {x: 159, key: 'token0'}), + React.createElement(BUIFilterTokenCreateButton66, {x: 163}), null, - React.createElement("div", { className: "_49u3" }) + React.createElement('div', {className: '_49u3'}) ); } } @@ -1652,13 +2075,13 @@ class XUIAmbientNUX69 extends React.Component { render() { if (this.props.x === 166) { - return React.createElement(XUIAmbientNUX68, { x: 165 }); + return React.createElement(XUIAmbientNUX68, {x: 165}); } if (this.props.x === 190) { - return React.createElement(XUIAmbientNUX68, { x: 189 }); + return React.createElement(XUIAmbientNUX68, {x: 189}); } if (this.props.x === 201) { - return React.createElement(XUIAmbientNUX68, { x: 200 }); + return React.createElement(XUIAmbientNUX68, {x: 200}); } } } @@ -1667,10 +2090,10 @@ render() { if (this.props.x === 167) { return React.createElement( - "span", + 'span', null, - React.createElement("span", {}), - React.createElement(XUIAmbientNUX69, { x: 166, key: "nux" }) + React.createElement('span', {}), + React.createElement(XUIAmbientNUX69, {x: 166, key: 'nux'}) ); } } @@ -1680,17 +2103,17 @@ render() { if (this.props.x === 168) { return React.createElement( - "div", - { className: "_4rw_" }, - React.createElement(AdsPEFiltersPopover58, { x: 144 }), + 'div', + {className: '_4rw_'}, + React.createElement(AdsPEFiltersPopover58, {x: 144}), React.createElement( - "div", - { className: "_1eo" }, - React.createElement(InputLabel61, { x: 147 }) + 'div', + {className: '_1eo'}, + React.createElement(InputLabel61, {x: 147}) ), - React.createElement(BUIFilterTokenizer67, { x: 164 }), - "", - React.createElement(AdsPEAmbientNUXMegaphone70, { x: 167 }) + React.createElement(BUIFilterTokenizer67, {x: 164}), + '', + React.createElement(AdsPEAmbientNUXMegaphone70, {x: 167}) ); } } @@ -1699,7 +2122,7 @@ class AdsPEFilterContainer72 extends React.Component { render() { if (this.props.x === 169) { - return React.createElement(AdsPEFilters71, { x: 168 }); + return React.createElement(AdsPEFilters71, {x: 168}); } } } @@ -1715,7 +2138,7 @@ class AdsPECampaignGroupTablePagerContainer74 extends React.Component { render() { if (this.props.x === 173) { - return React.createElement(AdsPETablePager73, { x: 172 }); + return React.createElement(AdsPETablePager73, {x: 172}); } } } @@ -1723,7 +2146,9 @@ class AdsPETablePagerContainer75 extends React.Component { render() { if (this.props.x === 174) { - return React.createElement(AdsPECampaignGroupTablePagerContainer74, { x: 173 }); + return React.createElement(AdsPECampaignGroupTablePagerContainer74, { + x: 173, + }); } } } @@ -1731,41 +2156,55 @@ class ReactXUIError76 extends React.Component { render() { if (this.props.x === 181) { - return React.createElement(AbstractButton3, { x: 180 }); + return React.createElement(AbstractButton3, {x: 180}); } if (this.props.x === 216) { return React.createElement( - "div", - { className: "_40bf _2vl4 _1h18" }, + 'div', + {className: '_40bf _2vl4 _1h18'}, null, null, React.createElement( - "div", - { className: "_2vl9 _1h1f", style: { "backgroundColor": "#fff" } }, + 'div', + {className: '_2vl9 _1h1f', style: {backgroundColor: '#fff'}}, React.createElement( - "div", - { className: "_2vla _1h1g" }, + 'div', + {className: '_2vla _1h1g'}, React.createElement( - "div", + 'div', null, null, - React.createElement("textarea", { className: "_2vli _2vlj _1h26 _1h27", dir: "auto", disabled: undefined, id: undefined, maxLength: null, value: "Test Campaign", onBlur: function () { }, onChange: function () { }, onFocus: function () { }, onKeyDown: function () { } }), + React.createElement('textarea', { + className: '_2vli _2vlj _1h26 _1h27', + dir: 'auto', + disabled: undefined, + id: undefined, + maxLength: null, + value: 'Test Campaign', + onBlur: function() {}, + onChange: function() {}, + onFocus: function() {}, + onKeyDown: function() {}, + }), null ), - React.createElement("div", { "aria-hidden": "true", className: "_2vlk" }) + React.createElement('div', { + 'aria-hidden': 'true', + className: '_2vlk', + }) ) ), null ); } if (this.props.x === 221) { - return React.createElement(XUICard94, { x: 220 }); + return React.createElement(XUICard94, {x: 220}); } if (this.props.x === 250) { - return React.createElement(XUICard94, { x: 249 }); + return React.createElement(XUICard94, {x: 249}); } if (this.props.x === 280) { - return React.createElement(XUICard94, { x: 279 }); + return React.createElement(XUICard94, {x: 279}); } } } @@ -1773,7 +2212,7 @@ class BUIPopoverButton77 extends React.Component { render() { if (this.props.x === 182) { - return React.createElement(ReactXUIError76, { x: 181 }); + return React.createElement(ReactXUIError76, {x: 181}); } } } @@ -1782,10 +2221,10 @@ render() { if (this.props.x === 184) { return React.createElement( - "span", + 'span', null, - React.createElement(BUIPopoverButton77, { x: 182 }), - [React.createElement(Constructor49, { x: 183, key: "layer/.0" })] + React.createElement(BUIPopoverButton77, {x: 182}), + [React.createElement(Constructor49, {x: 183, key: 'layer/.0'})] ); } } @@ -1794,7 +2233,7 @@ class AdsPEStatsRangePicker79 extends React.Component { render() { if (this.props.x === 185) { - return React.createElement(BUIDateRangePicker78, { x: 184 }); + return React.createElement(BUIDateRangePicker78, {x: 184}); } } } @@ -1803,20 +2242,16 @@ render() { if (this.props.x === 191) { return React.createElement( - "div", - { className: "_3c5k" }, + 'div', + {className: '_3c5k'}, + React.createElement('span', {className: '_3c5j'}, 'Stats:'), React.createElement( - "span", - { className: "_3c5j" }, - "Stats:" + 'span', + {className: '_3c5l'}, + React.createElement(AdsPEStatsRangePicker79, {x: 185}), + React.createElement(XUIButton4, {x: 188, key: 'settings'}) ), - React.createElement( - "span", - { className: "_3c5l" }, - React.createElement(AdsPEStatsRangePicker79, { x: 185 }), - React.createElement(XUIButton4, { x: 188, key: "settings" }) - ), - [React.createElement(XUIAmbientNUX69, { x: 190, key: "roasNUX/.0" })] + [React.createElement(XUIAmbientNUX69, {x: 190, key: 'roasNUX/.0'})] ); } } @@ -1825,7 +2260,7 @@ class AdsPEStatRangeContainer81 extends React.Component { render() { if (this.props.x === 192) { - return React.createElement(AdsPEStatRange80, { x: 191 }); + return React.createElement(AdsPEStatRange80, {x: 191}); } } } @@ -1834,20 +2269,20 @@ render() { if (this.props.x === 196) { return React.createElement( - "div", - { className: "_1-ly _59j9 _d9a", onClick: function () { } }, - React.createElement(ReactImage0, { x: 195 }), - React.createElement("div", { className: "_vf7" }), - React.createElement("div", { className: "_vf8" }) + 'div', + {className: '_1-ly _59j9 _d9a', onClick: function() {}}, + React.createElement(ReactImage0, {x: 195}), + React.createElement('div', {className: '_vf7'}), + React.createElement('div', {className: '_vf8'}) ); } if (this.props.x === 199) { return React.createElement( - "div", - { className: " _1-lz _d9a", onClick: function () { } }, - React.createElement(ReactImage0, { x: 198 }), - React.createElement("div", { className: "_vf7" }), - React.createElement("div", { className: "_vf8" }) + 'div', + {className: ' _1-lz _d9a', onClick: function() {}}, + React.createElement(ReactImage0, {x: 198}), + React.createElement('div', {className: '_vf7'}), + React.createElement('div', {className: '_vf8'}) ); } if (this.props.x === 203) { @@ -1859,7 +2294,7 @@ class AdsPEEditorTrayTabButton83 extends React.Component { render() { if (this.props.x === 197) { - return React.createElement(AdsPESideTrayTabButton82, { x: 196 }); + return React.createElement(AdsPESideTrayTabButton82, {x: 196}); } } } @@ -1868,10 +2303,10 @@ render() { if (this.props.x === 202) { return React.createElement( - "span", + 'span', null, - React.createElement(AdsPESideTrayTabButton82, { x: 199 }), - React.createElement(XUIAmbientNUX69, { x: 201, key: "roasNUX" }) + React.createElement(AdsPESideTrayTabButton82, {x: 199}), + React.createElement(XUIAmbientNUX69, {x: 201, key: 'roasNUX'}) ); } } @@ -1880,7 +2315,7 @@ class AdsPENekoDebuggerTrayTabButton85 extends React.Component { render() { if (this.props.x === 204) { - return React.createElement(AdsPESideTrayTabButton82, { x: 203 }); + return React.createElement(AdsPESideTrayTabButton82, {x: 203}); } } } @@ -1889,15 +2324,11 @@ render() { if (this.props.x === 211) { return React.createElement( - "div", - { className: "_3ywr" }, - React.createElement(Link2, { x: 208 }), - React.createElement( - "span", - { className: "_3ywq" }, - "|" - ), - React.createElement(Link2, { x: 210 }) + 'div', + {className: '_3ywr'}, + React.createElement(Link2, {x: 208}), + React.createElement('span', {className: '_3ywq'}, '|'), + React.createElement(Link2, {x: 210}) ); } } @@ -1906,7 +2337,7 @@ class AdsPEEditorChildLinkContainer87 extends React.Component { render() { if (this.props.x === 212) { - return React.createElement(AdsPEEditorChildLink86, { x: 211 }); + return React.createElement(AdsPEEditorChildLink86, {x: 211}); } } } @@ -1915,20 +2346,20 @@ render() { if (this.props.x === 213) { return React.createElement( - "div", - { className: "_yke" }, - React.createElement("div", { className: "_2x9d _pr-" }), - React.createElement(XUIText29, { x: 205 }), + 'div', + {className: '_yke'}, + React.createElement('div', {className: '_2x9d _pr-'}), + React.createElement(XUIText29, {x: 205}), React.createElement( - "div", - { className: "_3a-a" }, + 'div', + {className: '_3a-a'}, React.createElement( - "div", - { className: "_3a-b" }, - React.createElement(XUIText29, { x: 206 }) + 'div', + {className: '_3a-b'}, + React.createElement(XUIText29, {x: 206}) ) ), - React.createElement(AdsPEEditorChildLinkContainer87, { x: 212 }) + React.createElement(AdsPEEditorChildLinkContainer87, {x: 212}) ); } } @@ -1937,7 +2368,7 @@ class AdsPECampaignGroupHeaderSectionContainer89 extends React.Component { render() { if (this.props.x === 214) { - return React.createElement(AdsPEHeaderSection88, { x: 213 }); + return React.createElement(AdsPEHeaderSection88, {x: 213}); } } } @@ -1953,7 +2384,7 @@ class AdsTextInput91 extends React.Component { render() { if (this.props.x === 217) { - return React.createElement(ReactXUIError76, { x: 216 }); + return React.createElement(ReactXUIError76, {x: 216}); } } } @@ -1962,28 +2393,35 @@ render() { if (this.props.x === 218) { return React.createElement( - "div", - { className: "_5521 clearfix" }, + 'div', + {className: '_5521 clearfix'}, React.createElement( - "div", - { className: "_5522 _3w5q" }, + 'div', + {className: '_5522 _3w5q'}, React.createElement( - "label", - { onClick: undefined, htmlFor: "1467872040612:1961945894", className: "_5523 _3w5r" }, - "Campaign Name", + 'label', + { + onClick: undefined, + htmlFor: '1467872040612:1961945894', + className: '_5523 _3w5r', + }, + 'Campaign Name', null ) ), React.createElement( - "div", - { className: "_5527" }, + 'div', + {className: '_5527'}, React.createElement( - "div", - { className: "_5528" }, + 'div', + {className: '_5528'}, React.createElement( - "span", - { key: ".0", className: "_40bg", id: "1467872040612:1961945894" }, - React.createElement(AdsTextInput91, { x: 217, key: "nameEditor98010048849317" }), + 'span', + {key: '.0', className: '_40bg', id: '1467872040612:1961945894'}, + React.createElement(AdsTextInput91, { + x: 217, + key: 'nameEditor98010048849317', + }), null ) ), @@ -1998,9 +2436,9 @@ render() { if (this.props.x === 219) { return React.createElement( - "div", - { className: "_5ks1 _550r _550t _550y _3w5n" }, - React.createElement(BUIFormElement92, { x: 218, key: ".0" }) + 'div', + {className: '_5ks1 _550r _550t _550y _3w5n'}, + React.createElement(BUIFormElement92, {x: 218, key: '.0'}) ); } } @@ -2010,24 +2448,24 @@ render() { if (this.props.x === 220) { return React.createElement( - "div", - { className: "_40bc _12k2 _4-u2 _4-u8" }, - React.createElement(BUIForm93, { x: 219 }) + 'div', + {className: '_40bc _12k2 _4-u2 _4-u8'}, + React.createElement(BUIForm93, {x: 219}) ); } if (this.props.x === 249) { return React.createElement( - "div", - { className: "_12k2 _4-u2 _4-u8" }, - React.createElement(AdsCardHeader103, { x: 230 }), - React.createElement(AdsCardSection108, { x: 248 }) + 'div', + {className: '_12k2 _4-u2 _4-u8'}, + React.createElement(AdsCardHeader103, {x: 230}), + React.createElement(AdsCardSection108, {x: 248}) ); } if (this.props.x === 279) { return React.createElement( - "div", - { className: "_12k2 _4-u2 _4-u8" }, - React.createElement(AdsCardLeftRightHeader122, { x: 278 }) + 'div', + {className: '_12k2 _4-u2 _4-u8'}, + React.createElement(AdsCardLeftRightHeader122, {x: 278}) ); } } @@ -2036,13 +2474,13 @@ class AdsCard95 extends React.Component { render() { if (this.props.x === 222) { - return React.createElement(ReactXUIError76, { x: 221 }); + return React.createElement(ReactXUIError76, {x: 221}); } if (this.props.x === 251) { - return React.createElement(ReactXUIError76, { x: 250 }); + return React.createElement(ReactXUIError76, {x: 250}); } if (this.props.x === 281) { - return React.createElement(ReactXUIError76, { x: 280 }); + return React.createElement(ReactXUIError76, {x: 280}); } } } @@ -2050,7 +2488,7 @@ class AdsEditorNameSection96 extends React.Component { render() { if (this.props.x === 223) { - return React.createElement(AdsCard95, { x: 222 }); + return React.createElement(AdsCard95, {x: 222}); } } } @@ -2058,7 +2496,10 @@ class AdsCampaignGroupNameSectionContainer97 extends React.Component { render() { if (this.props.x === 224) { - return React.createElement(AdsEditorNameSection96, { x: 223, key: "nameSection98010048849317" }); + return React.createElement(AdsEditorNameSection96, { + x: 223, + key: 'nameSection98010048849317', + }); } } } @@ -2066,7 +2507,9 @@ class _render98 extends React.Component { render() { if (this.props.x === 225) { - return React.createElement(AdsCampaignGroupNameSectionContainer97, { x: 224 }); + return React.createElement(AdsCampaignGroupNameSectionContainer97, { + x: 224, + }); } } } @@ -2074,19 +2517,19 @@ class AdsPluginWrapper99 extends React.Component { render() { if (this.props.x === 226) { - return React.createElement(_render98, { x: 225 }); + return React.createElement(_render98, {x: 225}); } if (this.props.x === 255) { - return React.createElement(_render111, { x: 254 }); + return React.createElement(_render111, {x: 254}); } if (this.props.x === 258) { - return React.createElement(_render113, { x: 257 }); + return React.createElement(_render113, {x: 257}); } if (this.props.x === 287) { - return React.createElement(_render127, { x: 286 }); + return React.createElement(_render127, {x: 286}); } if (this.props.x === 291) { - return React.createElement(_render130, { x: 290 }); + return React.createElement(_render130, {x: 290}); } } } @@ -2095,30 +2538,36 @@ render() { if (this.props.x === 227) { return React.createElement( - "span", - { className: "_38my" }, - "Campaign Details", + 'span', + {className: '_38my'}, + 'Campaign Details', null, - React.createElement("span", { className: "_c1c" }) + React.createElement('span', {className: '_c1c'}) ); } if (this.props.x === 265) { return React.createElement( - "span", - { className: "_38my" }, - [React.createElement( - "span", - { key: 1 }, - "Campaign ID", - ": ", - "98010048849317" - ), React.createElement( - "div", - { className: "_5lh9", key: 2 }, - React.createElement(FluxContainer_AdsCampaignGroupStatusSwitchContainer_119, { x: 264 }) - )], + 'span', + {className: '_38my'}, + [ + React.createElement( + 'span', + {key: 1}, + 'Campaign ID', + ': ', + '98010048849317' + ), + React.createElement( + 'div', + {className: '_5lh9', key: 2}, + React.createElement( + FluxContainer_AdsCampaignGroupStatusSwitchContainer_119, + {x: 264} + ) + ), + ], null, - React.createElement("span", { className: "_c1c" }) + React.createElement('span', {className: '_c1c'}) ); } } @@ -2128,24 +2577,24 @@ render() { if (this.props.x === 228) { return React.createElement( - "div", - { className: "_5dw9 _5dwa _4-u3" }, - [React.createElement(XUICardHeaderTitle100, { x: 227, key: ".0" })], + 'div', + {className: '_5dw9 _5dwa _4-u3'}, + [React.createElement(XUICardHeaderTitle100, {x: 227, key: '.0'})], undefined, undefined, - React.createElement("div", { className: "_3s3-" }) + React.createElement('div', {className: '_3s3-'}) ); } if (this.props.x === 247) { return React.createElement( - "div", - { className: "_12jy _4-u3" }, + 'div', + {className: '_12jy _4-u3'}, React.createElement( - "div", - { className: "_3-8j" }, - React.createElement(FlexibleBlock105, { x: 233 }), - React.createElement(FlexibleBlock105, { x: 236 }), - React.createElement(FlexibleBlock105, { x: 246 }), + 'div', + {className: '_3-8j'}, + React.createElement(FlexibleBlock105, {x: 233}), + React.createElement(FlexibleBlock105, {x: 236}), + React.createElement(FlexibleBlock105, {x: 246}), null, null ) @@ -2157,7 +2606,7 @@ class XUICardHeader102 extends React.Component { render() { if (this.props.x === 229) { - return React.createElement(XUICardSection101, { x: 228 }); + return React.createElement(XUICardSection101, {x: 228}); } } } @@ -2165,7 +2614,7 @@ class AdsCardHeader103 extends React.Component { render() { if (this.props.x === 230) { - return React.createElement(XUICardHeader102, { x: 229 }); + return React.createElement(XUICardHeader102, {x: 229}); } } } @@ -2174,41 +2623,41 @@ render() { if (this.props.x === 231) { return React.createElement( - "div", - { className: "_2oc6 _3bvz", label: "Objective" }, + 'div', + {className: '_2oc6 _3bvz', label: 'Objective'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Objective " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Objective ' ), null, - React.createElement("div", { className: "_3bv-" }) + React.createElement('div', {className: '_3bv-'}) ); } if (this.props.x === 234) { return React.createElement( - "div", - { className: "_2oc6 _3bvz", label: "Buying Type" }, + 'div', + {className: '_2oc6 _3bvz', label: 'Buying Type'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Buying Type " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Buying Type ' ), null, - React.createElement("div", { className: "_3bv-" }) + React.createElement('div', {className: '_3bv-'}) ); } if (this.props.x === 240) { return React.createElement( - "div", - { className: "_2oc6 _3bvz" }, + 'div', + {className: '_2oc6 _3bvz'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Campaign Spending Limit " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Campaign Spending Limit ' ), - React.createElement(AdsHelpLink63, { x: 239 }), - React.createElement("div", { className: "_3bv-" }) + React.createElement(AdsHelpLink63, {x: 239}), + React.createElement('div', {className: '_3bv-'}) ); } } @@ -2217,13 +2666,13 @@ class FlexibleBlock105 extends React.Component { render() { if (this.props.x === 233) { - return React.createElement(LeftRight21, { x: 232 }); + return React.createElement(LeftRight21, {x: 232}); } if (this.props.x === 236) { - return React.createElement(LeftRight21, { x: 235 }); + return React.createElement(LeftRight21, {x: 235}); } if (this.props.x === 246) { - return React.createElement(LeftRight21, { x: 245 }); + return React.createElement(LeftRight21, {x: 245}); } } } @@ -2232,11 +2681,11 @@ render() { if (this.props.x === 243) { return React.createElement( - "div", - { className: "_33dv" }, - "", - React.createElement(Link2, { x: 242 }), - " (optional)" + 'div', + {className: '_33dv'}, + '', + React.createElement(Link2, {x: 242}), + ' (optional)' ); } } @@ -2245,7 +2694,7 @@ class FluxContainer_AdsCampaignGroupSpendCapContainer_107 extends React.Component { render() { if (this.props.x === 244) { - return React.createElement(AdsBulkCampaignSpendCapField106, { x: 243 }); + return React.createElement(AdsBulkCampaignSpendCapField106, {x: 243}); } } } @@ -2253,7 +2702,7 @@ class AdsCardSection108 extends React.Component { render() { if (this.props.x === 248) { - return React.createElement(XUICardSection101, { x: 247 }); + return React.createElement(XUICardSection101, {x: 247}); } } } @@ -2261,7 +2710,7 @@ class AdsEditorCampaignGroupDetailsSection109 extends React.Component { render() { if (this.props.x === 252) { - return React.createElement(AdsCard95, { x: 251 }); + return React.createElement(AdsCard95, {x: 251}); } } } @@ -2269,7 +2718,10 @@ class AdsEditorCampaignGroupDetailsSectionContainer110 extends React.Component { render() { if (this.props.x === 253) { - return React.createElement(AdsEditorCampaignGroupDetailsSection109, { x: 252, key: "campaignGroupDetailsSection98010048849317" }); + return React.createElement(AdsEditorCampaignGroupDetailsSection109, { + x: 252, + key: 'campaignGroupDetailsSection98010048849317', + }); } } } @@ -2277,7 +2729,10 @@ class _render111 extends React.Component { render() { if (this.props.x === 254) { - return React.createElement(AdsEditorCampaignGroupDetailsSectionContainer110, { x: 253 }); + return React.createElement( + AdsEditorCampaignGroupDetailsSectionContainer110, + {x: 253} + ); } } } @@ -2293,7 +2748,10 @@ class _render113 extends React.Component { render() { if (this.props.x === 257) { - return React.createElement(FluxContainer_AdsEditorToplineDetailsSectionContainer_112, { x: 256 }); + return React.createElement( + FluxContainer_AdsEditorToplineDetailsSectionContainer_112, + {x: 256} + ); } } } @@ -2302,24 +2760,22 @@ render() { if (this.props.x === 259) { return React.createElement( - "div", + 'div', {}, - React.createElement("div", { onWheel: function () { } }) + React.createElement('div', {onWheel: function() {}}) ); } if (this.props.x === 292) { return React.createElement( - "div", + 'div', {}, - React.createElement( - "div", - { onWheel: function () { } }, - [React.createElement( - "div", - { key: "campaign_group_errors_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 291 }) - )] - ) + React.createElement('div', {onWheel: function() {}}, [ + React.createElement( + 'div', + {key: 'campaign_group_errors_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 291}) + ), + ]) ); } } @@ -2329,34 +2785,40 @@ render() { if (this.props.x === 260) { return React.createElement( - "div", + 'div', null, - [React.createElement( - "div", - { key: "campaign_group_name_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 226 }) - ), React.createElement( - "div", - { key: "campaign_group_basic_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 255 }) - ), React.createElement( - "div", - { key: "campaign_group_topline_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 258 }) - )], - React.createElement(AdsStickyArea114, { x: 259 }) + [ + React.createElement( + 'div', + {key: 'campaign_group_name_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 226}) + ), + React.createElement( + 'div', + {key: 'campaign_group_basic_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 255}) + ), + React.createElement( + 'div', + {key: 'campaign_group_topline_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 258}) + ), + ], + React.createElement(AdsStickyArea114, {x: 259}) ); } if (this.props.x === 293) { return React.createElement( - "div", + 'div', null, - [React.createElement( - "div", - { key: "campaign_group_navigation_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 287 }) - )], - React.createElement(AdsStickyArea114, { x: 292 }) + [ + React.createElement( + 'div', + {key: 'campaign_group_navigation_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 287}) + ), + ], + React.createElement(AdsStickyArea114, {x: 292}) ); } } @@ -2366,12 +2828,29 @@ render() { if (this.props.x === 261) { return React.createElement( - "div", - { "data-hover": "tooltip", "data-tooltip-content": "Currently active. Click this switch to deactivate it.", "data-tooltip-position": "below", disabled: false, value: true, onToggle: function () { }, className: "_128j _128k _128n", role: "checkbox", "aria-checked": "true" }, - React.createElement( - "div", - { className: "_128o", onClick: function () { }, onKeyDown: function () { }, onMouseDown: function () { }, tabIndex: "0" }, - React.createElement("div", { className: "_128p" }) + 'div', + { + 'data-hover': 'tooltip', + 'data-tooltip-content': + 'Currently active. Click this switch to deactivate it.', + 'data-tooltip-position': 'below', + disabled: false, + value: true, + onToggle: function() {}, + className: '_128j _128k _128n', + role: 'checkbox', + 'aria-checked': 'true', + }, + React.createElement( + 'div', + { + className: '_128o', + onClick: function() {}, + onKeyDown: function() {}, + onMouseDown: function() {}, + tabIndex: '0', + }, + React.createElement('div', {className: '_128p'}) ), null ); @@ -2382,7 +2861,7 @@ class AdsStatusSwitchInternal117 extends React.Component { render() { if (this.props.x === 262) { - return React.createElement(BUISwitch116, { x: 261 }); + return React.createElement(BUISwitch116, {x: 261}); } } } @@ -2390,7 +2869,7 @@ class AdsStatusSwitch118 extends React.Component { render() { if (this.props.x === 263) { - return React.createElement(AdsStatusSwitchInternal117, { x: 262 }); + return React.createElement(AdsStatusSwitchInternal117, {x: 262}); } } } @@ -2398,7 +2877,10 @@ class FluxContainer_AdsCampaignGroupStatusSwitchContainer_119 extends React.Component { render() { if (this.props.x === 264) { - return React.createElement(AdsStatusSwitch118, { x: 263, key: "status98010048849317" }); + return React.createElement(AdsStatusSwitch118, { + x: 263, + key: 'status98010048849317', + }); } } } @@ -2406,7 +2888,7 @@ class AdsLinksMenu120 extends React.Component { render() { if (this.props.x === 275) { - return React.createElement(ReactPopoverMenu20, { x: 274 }); + return React.createElement(ReactPopoverMenu20, {x: 274}); } } } @@ -2415,10 +2897,10 @@ render() { if (this.props.x === 276) { return React.createElement( - "div", + 'div', null, null, - React.createElement(AdsLinksMenu120, { x: 275 }) + React.createElement(AdsLinksMenu120, {x: 275}) ); } } @@ -2427,7 +2909,7 @@ class AdsCardLeftRightHeader122 extends React.Component { render() { if (this.props.x === 278) { - return React.createElement(LeftRight21, { x: 277 }); + return React.createElement(LeftRight21, {x: 277}); } } } @@ -2435,7 +2917,7 @@ class AdsPEIDSection123 extends React.Component { render() { if (this.props.x === 282) { - return React.createElement(AdsCard95, { x: 281 }); + return React.createElement(AdsCard95, {x: 281}); } } } @@ -2443,7 +2925,7 @@ class FluxContainer_AdsPECampaignGroupIDSectionContainer_124 extends React.Component { render() { if (this.props.x === 283) { - return React.createElement(AdsPEIDSection123, { x: 282 }); + return React.createElement(AdsPEIDSection123, {x: 282}); } } } @@ -2451,7 +2933,10 @@ class DeferredComponent125 extends React.Component { render() { if (this.props.x === 284) { - return React.createElement(FluxContainer_AdsPECampaignGroupIDSectionContainer_124, { x: 283 }); + return React.createElement( + FluxContainer_AdsPECampaignGroupIDSectionContainer_124, + {x: 283} + ); } } } @@ -2459,7 +2944,7 @@ class BootloadedComponent126 extends React.Component { render() { if (this.props.x === 285) { - return React.createElement(DeferredComponent125, { x: 284 }); + return React.createElement(DeferredComponent125, {x: 284}); } } } @@ -2467,7 +2952,7 @@ class _render127 extends React.Component { render() { if (this.props.x === 286) { - return React.createElement(BootloadedComponent126, { x: 285 }); + return React.createElement(BootloadedComponent126, {x: 285}); } } } @@ -2483,7 +2968,7 @@ class FluxContainer_FunctionalContainer_129 extends React.Component { render() { if (this.props.x === 289) { - return React.createElement(AdsEditorErrorsCard128, { x: 288 }); + return React.createElement(AdsEditorErrorsCard128, {x: 288}); } } } @@ -2491,7 +2976,9 @@ class _render130 extends React.Component { render() { if (this.props.x === 290) { - return React.createElement(FluxContainer_FunctionalContainer_129, { x: 289 }); + return React.createElement(FluxContainer_FunctionalContainer_129, { + x: 289, + }); } } } @@ -2500,27 +2987,36 @@ render() { if (this.props.x === 294) { return React.createElement( - "div", - { className: "_psh" }, + 'div', + {className: '_psh'}, React.createElement( - "div", - { className: "_3cc0" }, + 'div', + {className: '_3cc0'}, React.createElement( - "div", + 'div', null, - React.createElement(AdsEditorLoadingErrors90, { x: 215, key: ".0" }), + React.createElement(AdsEditorLoadingErrors90, { + x: 215, + key: '.0', + }), React.createElement( - "div", - { className: "_3ms3" }, + 'div', + {className: '_3ms3'}, React.createElement( - "div", - { className: "_3ms4" }, - React.createElement(FluxContainer_AdsEditorColumnContainer_115, { x: 260, key: ".1" }) + 'div', + {className: '_3ms4'}, + React.createElement( + FluxContainer_AdsEditorColumnContainer_115, + {x: 260, key: '.1'} + ) ), React.createElement( - "div", - { className: "_3pvg" }, - React.createElement(FluxContainer_AdsEditorColumnContainer_115, { x: 293, key: ".2" }) + 'div', + {className: '_3pvg'}, + React.createElement( + FluxContainer_AdsEditorColumnContainer_115, + {x: 293, key: '.2'} + ) ) ) ) @@ -2534,10 +3030,12 @@ render() { if (this.props.x === 295) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsPECampaignGroupHeaderSectionContainer89, { x: 214 }), - React.createElement(AdsEditorMultiColumnLayout131, { x: 294 }) + React.createElement(AdsPECampaignGroupHeaderSectionContainer89, { + x: 214, + }), + React.createElement(AdsEditorMultiColumnLayout131, {x: 294}) ); } } @@ -2546,7 +3044,7 @@ class AdsPECampaignGroupEditorContainer133 extends React.Component { render() { if (this.props.x === 296) { - return React.createElement(AdsPECampaignGroupEditor132, { x: 295 }); + return React.createElement(AdsPECampaignGroupEditor132, {x: 295}); } } } @@ -2555,9 +3053,9 @@ render() { if (this.props.x === 297) { return React.createElement( - "div", - { className: "_1o_8 _44ra _5cyn" }, - React.createElement(AdsPECampaignGroupEditorContainer133, { x: 296 }) + 'div', + {className: '_1o_8 _44ra _5cyn'}, + React.createElement(AdsPECampaignGroupEditorContainer133, {x: 296}) ); } } @@ -2566,7 +3064,7 @@ class AdsPEEditorTrayTabContentContainer135 extends React.Component { render() { if (this.props.x === 298) { - return React.createElement(AdsPESideTrayTabContent134, { x: 297 }); + return React.createElement(AdsPESideTrayTabContent134, {x: 297}); } } } @@ -2575,19 +3073,31 @@ render() { if (this.props.x === 299) { return React.createElement( - "div", - { className: "_2kev _2kex" }, - React.createElement( - "div", - { className: "_5yno" }, - React.createElement(AdsPEEditorTrayTabButton83, { x: 197, key: "editor_tray_button" }), - React.createElement(AdsPEInsightsTrayTabButton84, { x: 202, key: "insights_tray_button" }), - React.createElement(AdsPENekoDebuggerTrayTabButton85, { x: 204, key: "neko_debugger_tray_button" }) + 'div', + {className: '_2kev _2kex'}, + React.createElement( + 'div', + {className: '_5yno'}, + React.createElement(AdsPEEditorTrayTabButton83, { + x: 197, + key: 'editor_tray_button', + }), + React.createElement(AdsPEInsightsTrayTabButton84, { + x: 202, + key: 'insights_tray_button', + }), + React.createElement(AdsPENekoDebuggerTrayTabButton85, { + x: 204, + key: 'neko_debugger_tray_button', + }) ), React.createElement( - "div", - { className: "_5ynn" }, - React.createElement(AdsPEEditorTrayTabContentContainer135, { x: 298, key: "EDITOR_DRAWER" }), + 'div', + {className: '_5ynn'}, + React.createElement(AdsPEEditorTrayTabContentContainer135, { + x: 298, + key: 'EDITOR_DRAWER', + }), null ) ); @@ -2598,7 +3108,7 @@ class FluxContainer_AdsPEMultiTabDrawerContainer_137 extends React.Component { render() { if (this.props.x === 300) { - return React.createElement(AdsPEMultiTabDrawer136, { x: 299 }); + return React.createElement(AdsPEMultiTabDrawer136, {x: 299}); } } } @@ -2607,11 +3117,11 @@ render() { if (this.props.x === 309) { return React.createElement( - "div", - { className: "_tm2" }, - React.createElement(XUIButton4, { x: 304 }), - React.createElement(XUIButton4, { x: 306 }), - React.createElement(XUIButton4, { x: 308 }) + 'div', + {className: '_tm2'}, + React.createElement(XUIButton4, {x: 304}), + React.createElement(XUIButton4, {x: 306}), + React.createElement(XUIButton4, {x: 308}) ); } } @@ -2621,9 +3131,9 @@ render() { if (this.props.x === 310) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsPESimpleOrganizer138, { x: 309 }) + React.createElement(AdsPESimpleOrganizer138, {x: 309}) ); } } @@ -2633,9 +3143,12 @@ render() { if (this.props.x === 313) { return React.createElement( - "div", - { className: "_3487 _3488 _3489", style: { "width": 0, "height": 25, "left": 0 } }, - React.createElement("div", { className: "_348a", style: { "height": 25 } }) + 'div', + { + className: '_3487 _3488 _3489', + style: {width: 0, height: 25, left: 0}, + }, + React.createElement('div', {className: '_348a', style: {height: 25}}) ); } } @@ -2645,313 +3158,233 @@ render() { if (this.props.x === 315) { return React.createElement( - "div", - { className: "_1cig _1ksv _1vd7 _4h2r", id: undefined }, - React.createElement(ReactImage0, { x: 314 }), - React.createElement( - "span", - { className: "_1cid" }, - "Campaigns" - ) + 'div', + {className: '_1cig _1ksv _1vd7 _4h2r', id: undefined}, + React.createElement(ReactImage0, {x: 314}), + React.createElement('span', {className: '_1cid'}, 'Campaigns') ); } if (this.props.x === 320) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Performance" - ) + React.createElement('span', {className: '_1cid'}, 'Performance') ); } if (this.props.x === 323) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Overview" - ) + React.createElement('span', {className: '_1cid'}, 'Overview') ); } if (this.props.x === 326) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Toplines" - ) + React.createElement('span', {className: '_1cid'}, 'Toplines') ); } if (this.props.x === 329) { - return React.createElement("div", { className: "_1cig _1vd7 _4h2r", id: undefined }); + return React.createElement('div', { + className: '_1cig _1vd7 _4h2r', + id: undefined, + }); } if (this.props.x === 340) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Campaign Name" - ) + React.createElement('span', {className: '_1cid'}, 'Campaign Name') ); } if (this.props.x === 346) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined, "data-tooltip-content": "Changed", "data-hover": "tooltip" }, - React.createElement(ReactImage0, { x: 345 }), + 'div', + { + className: '_1cig _25fg', + id: undefined, + 'data-tooltip-content': 'Changed', + 'data-hover': 'tooltip', + }, + React.createElement(ReactImage0, {x: 345}), null ); } if (this.props.x === 352) { return React.createElement( - "div", - { className: "_1cig _25fg", id: "ads_pe_table_error_header", "data-tooltip-content": "Errors", "data-hover": "tooltip" }, - React.createElement(ReactImage0, { x: 351 }), + 'div', + { + className: '_1cig _25fg', + id: 'ads_pe_table_error_header', + 'data-tooltip-content': 'Errors', + 'data-hover': 'tooltip', + }, + React.createElement(ReactImage0, {x: 351}), null ); } if (this.props.x === 357) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Status" - ) + React.createElement('span', {className: '_1cid'}, 'Status') ); } if (this.props.x === 362) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Delivery" - ) + React.createElement('span', {className: '_1cid'}, 'Delivery') ); } if (this.props.x === 369) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Results" - ) + React.createElement('span', {className: '_1cid'}, 'Results') ); } if (this.props.x === 374) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Cost" - ) + React.createElement('span', {className: '_1cid'}, 'Cost') ); } if (this.props.x === 379) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Reach" - ) + React.createElement('span', {className: '_1cid'}, 'Reach') ); } if (this.props.x === 384) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Impressions" - ) + React.createElement('span', {className: '_1cid'}, 'Impressions') ); } if (this.props.x === 389) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Clicks" - ) + React.createElement('span', {className: '_1cid'}, 'Clicks') ); } if (this.props.x === 394) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Avg. CPM" - ) + React.createElement('span', {className: '_1cid'}, 'Avg. CPM') ); } if (this.props.x === 399) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Avg. CPC" - ) + React.createElement('span', {className: '_1cid'}, 'Avg. CPC') ); } if (this.props.x === 404) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "CTR %" - ) + React.createElement('span', {className: '_1cid'}, 'CTR %') ); } if (this.props.x === 409) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Spent" - ) + React.createElement('span', {className: '_1cid'}, 'Spent') ); } if (this.props.x === 414) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Objective" - ) + React.createElement('span', {className: '_1cid'}, 'Objective') ); } if (this.props.x === 419) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Buying Type" - ) + React.createElement('span', {className: '_1cid'}, 'Buying Type') ); } if (this.props.x === 424) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Campaign ID" - ) + React.createElement('span', {className: '_1cid'}, 'Campaign ID') ); } if (this.props.x === 429) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Start" - ) + React.createElement('span', {className: '_1cid'}, 'Start') ); } if (this.props.x === 434) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "End" - ) + React.createElement('span', {className: '_1cid'}, 'End') ); } if (this.props.x === 439) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Date created" - ) + React.createElement('span', {className: '_1cid'}, 'Date created') ); } if (this.props.x === 444) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Date last edited" - ) + React.createElement('span', {className: '_1cid'}, 'Date last edited') ); } if (this.props.x === 449) { return React.createElement( - "div", - { className: "_1cig _25fg _4h2r", id: undefined }, + 'div', + {className: '_1cig _25fg _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Tags" - ) + React.createElement('span', {className: '_1cid'}, 'Tags') ); } if (this.props.x === 452) { - return React.createElement("div", { className: "_1cig _25fg _4h2r", id: undefined }); + return React.createElement('div', { + className: '_1cig _25fg _4h2r', + id: undefined, + }); } } } @@ -2960,435 +3393,609 @@ render() { if (this.props.x === 316) { return React.createElement( - "div", - { label: "Campaigns", height: 40, width: 721, className: "_4lgc _4h2u", style: { "height": 40, "width": 721 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaigns', + height: 40, + width: 721, + className: '_4lgc _4h2u', + style: {height: 40, width: 721}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 315 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 315}) ) ) ); } if (this.props.x === 321) { return React.createElement( - "div", - { label: "Performance", height: 40, width: 798, className: "_4lgc _4h2u", style: { "height": 40, "width": 798 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Performance', + height: 40, + width: 798, + className: '_4lgc _4h2u', + style: {height: 40, width: 798}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 320 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 320}) ) ) ); } if (this.props.x === 324) { return React.createElement( - "div", - { label: "Overview", height: 40, width: 1022, className: "_4lgc _4h2u", style: { "height": 40, "width": 1022 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Overview', + height: 40, + width: 1022, + className: '_4lgc _4h2u', + style: {height: 40, width: 1022}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 323 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 323}) ) ) ); } if (this.props.x === 327) { return React.createElement( - "div", - { label: "Toplines", height: 40, width: 0, className: "_4lgc _4h2u", style: { "height": 40, "width": 0 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Toplines', + height: 40, + width: 0, + className: '_4lgc _4h2u', + style: {height: 40, width: 0}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 326 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 326}) ) ) ); } if (this.props.x === 330) { return React.createElement( - "div", - { label: "", height: 40, width: 25, className: "_4lgc _4h2u", style: { "height": 40, "width": 25 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: '', + height: 40, + width: 25, + className: '_4lgc _4h2u', + style: {height: 40, width: 25}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 329 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 329}) ) ) ); } if (this.props.x === 338) { return React.createElement( - "div", - { label: undefined, width: 42, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 42 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 42, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 42}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(XUICheckboxInput60, { x: 337 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(XUICheckboxInput60, {x: 337}) ) ) ); } if (this.props.x === 343) { return React.createElement( - "div", - { label: "Campaign Name", width: 400, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 400 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaign Name', + width: 400, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 400}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 342 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 342}) ) ) ); } if (this.props.x === 349) { return React.createElement( - "div", - { label: undefined, width: 33, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 33 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 33, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 33}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 348 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 348}) ) ) ); } if (this.props.x === 355) { return React.createElement( - "div", - { label: undefined, width: 36, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 36 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 36, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 36}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 354 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 354}) ) ) ); } if (this.props.x === 360) { return React.createElement( - "div", - { label: "Status", width: 60, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 60 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Status', + width: 60, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 60}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 359 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 359}) ) ) ); } if (this.props.x === 365) { return React.createElement( - "div", - { label: "Delivery", width: 150, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 150 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Delivery', + width: 150, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 150}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 364 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 364}) ) ) ); } if (this.props.x === 372) { return React.createElement( - "div", - { label: "Results", width: 140, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 140 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Results', + width: 140, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 140}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 371 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 371}) ) ) ); } if (this.props.x === 377) { return React.createElement( - "div", - { label: "Cost", width: 140, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 140 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Cost', + width: 140, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 140}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 376 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 376}) ) ) ); } if (this.props.x === 382) { return React.createElement( - "div", - { label: "Reach", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Reach', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 381 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 381}) ) ) ); } if (this.props.x === 387) { return React.createElement( - "div", - { label: "Impressions", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Impressions', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 386 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 386}) ) ) ); } if (this.props.x === 392) { return React.createElement( - "div", - { label: "Clicks", width: 60, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 60 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Clicks', + width: 60, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 60}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 391 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 391}) ) ) ); } if (this.props.x === 397) { return React.createElement( - "div", - { label: "Avg. CPM", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Avg. CPM', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 396 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 396}) ) ) ); } if (this.props.x === 402) { return React.createElement( - "div", - { label: "Avg. CPC", width: 78, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 78 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Avg. CPC', + width: 78, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 78}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 401 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 401}) ) ) ); } if (this.props.x === 407) { return React.createElement( - "div", - { label: "CTR %", width: 70, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 70 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'CTR %', + width: 70, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 70}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 406 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 406}) ) ) ); } if (this.props.x === 412) { return React.createElement( - "div", - { label: "Spent", width: 70, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 70 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Spent', + width: 70, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 70}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 411 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 411}) ) ) ); } if (this.props.x === 417) { return React.createElement( - "div", - { label: "Objective", width: 200, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 200 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Objective', + width: 200, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 200}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 416 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 416}) ) ) ); } if (this.props.x === 422) { return React.createElement( - "div", - { label: "Buying Type", width: 100, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 100 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Buying Type', + width: 100, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 100}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 421 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 421}) ) ) ); } if (this.props.x === 427) { return React.createElement( - "div", - { label: "Campaign ID", width: 120, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 120 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaign ID', + width: 120, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 120}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 426 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 426}) ) ) ); } if (this.props.x === 432) { return React.createElement( - "div", - { label: "Start", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Start', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 431 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 431}) ) ) ); } if (this.props.x === 437) { return React.createElement( - "div", - { label: "End", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'End', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 436 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 436}) ) ) ); } if (this.props.x === 442) { return React.createElement( - "div", - { label: "Date created", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Date created', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 441 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 441}) ) ) ); } if (this.props.x === 447) { return React.createElement( - "div", - { label: "Date last edited", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Date last edited', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 446 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 446}) ) ) ); } if (this.props.x === 450) { return React.createElement( - "div", - { label: "Tags", width: 150, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 150 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Tags', + width: 150, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 150}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 449 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 449}) ) ) ); } if (this.props.x === 453) { return React.createElement( - "div", - { label: "", width: 25, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 25 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: '', + width: 25, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 25}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 452 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 452}) ) ) ); @@ -3400,310 +4007,509 @@ render() { if (this.props.x === 317) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 721, "left": 0 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 721, left: 0}}, undefined, - React.createElement(TransitionCell142, { x: 316 }) + React.createElement(TransitionCell142, {x: 316}) ); } if (this.props.x === 322) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 798, "left": 0 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 798, left: 0}}, undefined, - React.createElement(TransitionCell142, { x: 321 }) + React.createElement(TransitionCell142, {x: 321}) ); } if (this.props.x === 325) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 1022, "left": 798 } }, + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 40, width: 1022, left: 798}, + }, undefined, - React.createElement(TransitionCell142, { x: 324 }) + React.createElement(TransitionCell142, {x: 324}) ); } if (this.props.x === 328) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 0, "left": 1820 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 0, left: 1820}}, undefined, - React.createElement(TransitionCell142, { x: 327 }) + React.createElement(TransitionCell142, {x: 327}) ); } if (this.props.x === 331) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 25, "left": 1820 } }, + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 40, width: 25, left: 1820}, + }, undefined, - React.createElement(TransitionCell142, { x: 330 }) + React.createElement(TransitionCell142, {x: 330}) ); } if (this.props.x === 339) { return React.createElement( - "div", - { className: "_4lg0 _4lg6 _4h2m", style: { "height": 25, "width": 42, "left": 0 } }, + 'div', + { + className: '_4lg0 _4lg6 _4h2m', + style: {height: 25, width: 42, left: 0}, + }, undefined, - React.createElement(TransitionCell142, { x: 338 }) + React.createElement(TransitionCell142, {x: 338}) ); } if (this.props.x === 344) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 400, "left": 42 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 400, left: 42}}, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 343 }) + React.createElement(TransitionCell142, {x: 343}) ); } if (this.props.x === 350) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 33, "left": 442 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 33, left: 442}}, undefined, - React.createElement(TransitionCell142, { x: 349 }) + React.createElement(TransitionCell142, {x: 349}) ); } if (this.props.x === 356) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 36, "left": 475 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 36, left: 475}}, undefined, - React.createElement(TransitionCell142, { x: 355 }) + React.createElement(TransitionCell142, {x: 355}) ); } if (this.props.x === 361) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 60, "left": 511 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 60, left: 511}}, undefined, - React.createElement(TransitionCell142, { x: 360 }) + React.createElement(TransitionCell142, {x: 360}) ); } if (this.props.x === 366) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 150, "left": 571 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 150, left: 571}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 365 }) + React.createElement(TransitionCell142, {x: 365}) ); } if (this.props.x === 373) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 140, "left": 0 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 140, left: 0}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 372 }) + React.createElement(TransitionCell142, {x: 372}) ); } if (this.props.x === 378) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 140, "left": 140 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 140, left: 140}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 377 }) + React.createElement(TransitionCell142, {x: 377}) ); } if (this.props.x === 383) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 280 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 280}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 382 }) + React.createElement(TransitionCell142, {x: 382}) ); } if (this.props.x === 388) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 360 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 360}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 387 }) + React.createElement(TransitionCell142, {x: 387}) ); } if (this.props.x === 393) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 60, "left": 440 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 60, left: 440}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 392 }) + React.createElement(TransitionCell142, {x: 392}) ); } if (this.props.x === 398) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 500 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 500}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 397 }) + React.createElement(TransitionCell142, {x: 397}) ); } if (this.props.x === 403) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 78, "left": 580 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 78, left: 580}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 402 }) + React.createElement(TransitionCell142, {x: 402}) ); } if (this.props.x === 408) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 70, "left": 658 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 70, left: 658}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 407 }) + React.createElement(TransitionCell142, {x: 407}) ); } if (this.props.x === 413) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 70, "left": 728 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 70, left: 728}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 412 }) + React.createElement(TransitionCell142, {x: 412}) ); } if (this.props.x === 418) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 200, "left": 798 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 200, left: 798}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 417 }) + React.createElement(TransitionCell142, {x: 417}) ); } if (this.props.x === 423) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 100, "left": 998 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 100, left: 998}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 422 }) + React.createElement(TransitionCell142, {x: 422}) ); } if (this.props.x === 428) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 120, "left": 1098 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 120, left: 1098}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 427 }) + React.createElement(TransitionCell142, {x: 427}) ); } if (this.props.x === 433) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1218 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 113, left: 1218}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 432 }) + React.createElement(TransitionCell142, {x: 432}) ); } if (this.props.x === 438) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1331 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 113, left: 1331}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 437 }) + React.createElement(TransitionCell142, {x: 437}) ); } if (this.props.x === 443) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1444 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 113, left: 1444}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 442 }) + React.createElement(TransitionCell142, {x: 442}) ); } if (this.props.x === 448) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1557 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 113, left: 1557}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 447 }) + React.createElement(TransitionCell142, {x: 447}) ); } if (this.props.x === 451) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 150, "left": 1670 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () { } }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 150, left: 1670}, + }, + React.createElement( + 'div', + { + className: '_4lg9', + style: {height: 25}, + onMouseDown: function() {}, + }, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 450 }) + React.createElement(TransitionCell142, {x: 450}) ); } if (this.props.x === 454) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 25, "left": 1820 } }, + 'div', + { + className: '_4lg0 _4h2m', + style: {height: 25, width: 25, left: 1820}, + }, undefined, - React.createElement(TransitionCell142, { x: 453 }) + React.createElement(TransitionCell142, {x: 453}) ); } } @@ -3713,55 +4519,95 @@ render() { if (this.props.x === 318) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 40, "position": "absolute", "width": 721, "zIndex": 2, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 317, key: "cell_0" }) + 'div', + { + className: '_3pzj', + style: { + height: 40, + position: 'absolute', + width: 721, + zIndex: 2, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 317, key: 'cell_0'}) ); } if (this.props.x === 332) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 40, "position": "absolute", "width": 1845, "zIndex": 0, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 322, key: "cell_0" }), - React.createElement(FixedDataTableCell143, { x: 325, key: "cell_1" }), - React.createElement(FixedDataTableCell143, { x: 328, key: "cell_2" }), - React.createElement(FixedDataTableCell143, { x: 331, key: "cell_3" }) + 'div', + { + className: '_3pzj', + style: { + height: 40, + position: 'absolute', + width: 1845, + zIndex: 0, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 322, key: 'cell_0'}), + React.createElement(FixedDataTableCell143, {x: 325, key: 'cell_1'}), + React.createElement(FixedDataTableCell143, {x: 328, key: 'cell_2'}), + React.createElement(FixedDataTableCell143, {x: 331, key: 'cell_3'}) ); } if (this.props.x === 367) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 25, "position": "absolute", "width": 721, "zIndex": 2, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 339, key: "cell_0" }), - React.createElement(FixedDataTableCell143, { x: 344, key: "cell_1" }), - React.createElement(FixedDataTableCell143, { x: 350, key: "cell_2" }), - React.createElement(FixedDataTableCell143, { x: 356, key: "cell_3" }), - React.createElement(FixedDataTableCell143, { x: 361, key: "cell_4" }), - React.createElement(FixedDataTableCell143, { x: 366, key: "cell_5" }) + 'div', + { + className: '_3pzj', + style: { + height: 25, + position: 'absolute', + width: 721, + zIndex: 2, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 339, key: 'cell_0'}), + React.createElement(FixedDataTableCell143, {x: 344, key: 'cell_1'}), + React.createElement(FixedDataTableCell143, {x: 350, key: 'cell_2'}), + React.createElement(FixedDataTableCell143, {x: 356, key: 'cell_3'}), + React.createElement(FixedDataTableCell143, {x: 361, key: 'cell_4'}), + React.createElement(FixedDataTableCell143, {x: 366, key: 'cell_5'}) ); } if (this.props.x === 455) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 25, "position": "absolute", "width": 1845, "zIndex": 0, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 373, key: "cell_0" }), - React.createElement(FixedDataTableCell143, { x: 378, key: "cell_1" }), - React.createElement(FixedDataTableCell143, { x: 383, key: "cell_2" }), - React.createElement(FixedDataTableCell143, { x: 388, key: "cell_3" }), - React.createElement(FixedDataTableCell143, { x: 393, key: "cell_4" }), - React.createElement(FixedDataTableCell143, { x: 398, key: "cell_5" }), - React.createElement(FixedDataTableCell143, { x: 403, key: "cell_6" }), - React.createElement(FixedDataTableCell143, { x: 408, key: "cell_7" }), - React.createElement(FixedDataTableCell143, { x: 413, key: "cell_8" }), - React.createElement(FixedDataTableCell143, { x: 418, key: "cell_9" }), - React.createElement(FixedDataTableCell143, { x: 423, key: "cell_10" }), - React.createElement(FixedDataTableCell143, { x: 428, key: "cell_11" }), - React.createElement(FixedDataTableCell143, { x: 433, key: "cell_12" }), - React.createElement(FixedDataTableCell143, { x: 438, key: "cell_13" }), - React.createElement(FixedDataTableCell143, { x: 443, key: "cell_14" }), - React.createElement(FixedDataTableCell143, { x: 448, key: "cell_15" }), - React.createElement(FixedDataTableCell143, { x: 451, key: "cell_16" }), - React.createElement(FixedDataTableCell143, { x: 454, key: "cell_17" }) + 'div', + { + className: '_3pzj', + style: { + height: 25, + position: 'absolute', + width: 1845, + zIndex: 0, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 373, key: 'cell_0'}), + React.createElement(FixedDataTableCell143, {x: 378, key: 'cell_1'}), + React.createElement(FixedDataTableCell143, {x: 383, key: 'cell_2'}), + React.createElement(FixedDataTableCell143, {x: 388, key: 'cell_3'}), + React.createElement(FixedDataTableCell143, {x: 393, key: 'cell_4'}), + React.createElement(FixedDataTableCell143, {x: 398, key: 'cell_5'}), + React.createElement(FixedDataTableCell143, {x: 403, key: 'cell_6'}), + React.createElement(FixedDataTableCell143, {x: 408, key: 'cell_7'}), + React.createElement(FixedDataTableCell143, {x: 413, key: 'cell_8'}), + React.createElement(FixedDataTableCell143, {x: 418, key: 'cell_9'}), + React.createElement(FixedDataTableCell143, {x: 423, key: 'cell_10'}), + React.createElement(FixedDataTableCell143, {x: 428, key: 'cell_11'}), + React.createElement(FixedDataTableCell143, {x: 433, key: 'cell_12'}), + React.createElement(FixedDataTableCell143, {x: 438, key: 'cell_13'}), + React.createElement(FixedDataTableCell143, {x: 443, key: 'cell_14'}), + React.createElement(FixedDataTableCell143, {x: 448, key: 'cell_15'}), + React.createElement(FixedDataTableCell143, {x: 451, key: 'cell_16'}), + React.createElement(FixedDataTableCell143, {x: 454, key: 'cell_17'}) ); } } @@ -3771,30 +4617,30 @@ render() { if (this.props.x === 319) { return React.createElement( - "div", - { style: { "height": 40, "left": 0 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 318 }) + 'div', + {style: {height: 40, left: 0}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 318}) ); } if (this.props.x === 333) { return React.createElement( - "div", - { style: { "height": 40, "left": 721 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 332 }) + 'div', + {style: {height: 40, left: 721}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 332}) ); } if (this.props.x === 368) { return React.createElement( - "div", - { style: { "height": 25, "left": 0 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 367 }) + 'div', + {style: {height: 25, left: 0}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 367}) ); } if (this.props.x === 456) { return React.createElement( - "div", - { style: { "height": 25, "left": 721 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 455 }) + 'div', + {style: {height: 25, left: 721}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 455}) ); } } @@ -3804,27 +4650,61 @@ render() { if (this.props.x === 334) { return React.createElement( - "div", - { className: "_1gd4 _4li _52no _3h1a _1mib", onClick: null, onDoubleClick: null, onMouseDown: null, onMouseEnter: null, onMouseLeave: null, style: { "width": 1209, "height": 40 } }, - React.createElement( - "div", - { className: "_1gd5" }, - React.createElement(FixedDataTableCellGroup145, { x: 319, key: "fixed_cells" }), - React.createElement(FixedDataTableCellGroup145, { x: 333, key: "scrollable_cells" }), - React.createElement("div", { className: "_1gd6 _1gd8", style: { "left": 721, "height": 40 } }) + 'div', + { + className: '_1gd4 _4li _52no _3h1a _1mib', + onClick: null, + onDoubleClick: null, + onMouseDown: null, + onMouseEnter: null, + onMouseLeave: null, + style: {width: 1209, height: 40}, + }, + React.createElement( + 'div', + {className: '_1gd5'}, + React.createElement(FixedDataTableCellGroup145, { + x: 319, + key: 'fixed_cells', + }), + React.createElement(FixedDataTableCellGroup145, { + x: 333, + key: 'scrollable_cells', + }), + React.createElement('div', { + className: '_1gd6 _1gd8', + style: {left: 721, height: 40}, + }) ) ); } if (this.props.x === 457) { return React.createElement( - "div", - { className: "_1gd4 _4li _3h1a _1mib", onClick: null, onDoubleClick: null, onMouseDown: null, onMouseEnter: null, onMouseLeave: null, style: { "width": 1209, "height": 25 } }, - React.createElement( - "div", - { className: "_1gd5" }, - React.createElement(FixedDataTableCellGroup145, { x: 368, key: "fixed_cells" }), - React.createElement(FixedDataTableCellGroup145, { x: 456, key: "scrollable_cells" }), - React.createElement("div", { className: "_1gd6 _1gd8", style: { "left": 721, "height": 25 } }) + 'div', + { + className: '_1gd4 _4li _3h1a _1mib', + onClick: null, + onDoubleClick: null, + onMouseDown: null, + onMouseEnter: null, + onMouseLeave: null, + style: {width: 1209, height: 25}, + }, + React.createElement( + 'div', + {className: '_1gd5'}, + React.createElement(FixedDataTableCellGroup145, { + x: 368, + key: 'fixed_cells', + }), + React.createElement(FixedDataTableCellGroup145, { + x: 456, + key: 'scrollable_cells', + }), + React.createElement('div', { + className: '_1gd6 _1gd8', + style: {left: 721, height: 25}, + }) ) ); } @@ -3835,16 +4715,34 @@ render() { if (this.props.x === 335) { return React.createElement( - "div", - { style: { "width": 1209, "height": 40, "zIndex": 1, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" }, className: "_1gda" }, - React.createElement(FixedDataTableRowImpl146, { x: 334 }) + 'div', + { + style: { + width: 1209, + height: 40, + zIndex: 1, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + className: '_1gda', + }, + React.createElement(FixedDataTableRowImpl146, {x: 334}) ); } if (this.props.x === 458) { return React.createElement( - "div", - { style: { "width": 1209, "height": 25, "zIndex": 1, "transform": "translate3d(0px,40px,0)", "backfaceVisibility": "hidden" }, className: "_1gda" }, - React.createElement(FixedDataTableRowImpl146, { x: 457 }) + 'div', + { + style: { + width: 1209, + height: 25, + zIndex: 1, + transform: 'translate3d(0px,40px,0)', + backfaceVisibility: 'hidden', + }, + className: '_1gda', + }, + React.createElement(FixedDataTableRowImpl146, {x: 457}) ); } } @@ -3854,253 +4752,253 @@ render() { if (this.props.x === 341) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 340 }) + React.createElement(AdsPETableHeader141, {x: 340}) ) ); } if (this.props.x === 347) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _1kst _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _1kst _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 346 }) + React.createElement(AdsPETableHeader141, {x: 346}) ) ); } if (this.props.x === 353) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _1kst _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _1kst _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 352 }) + React.createElement(AdsPETableHeader141, {x: 352}) ) ); } if (this.props.x === 358) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 357 }) + React.createElement(AdsPETableHeader141, {x: 357}) ) ); } if (this.props.x === 363) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _54_9 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _54_9 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 362 }) + React.createElement(AdsPETableHeader141, {x: 362}) ) ); } if (this.props.x === 370) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 369 }) + React.createElement(AdsPETableHeader141, {x: 369}) ) ); } if (this.props.x === 375) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 374 }) + React.createElement(AdsPETableHeader141, {x: 374}) ) ); } if (this.props.x === 380) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 379 }) + React.createElement(AdsPETableHeader141, {x: 379}) ) ); } if (this.props.x === 385) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 384 }) + React.createElement(AdsPETableHeader141, {x: 384}) ) ); } if (this.props.x === 390) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 389 }) + React.createElement(AdsPETableHeader141, {x: 389}) ) ); } if (this.props.x === 395) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 394 }) + React.createElement(AdsPETableHeader141, {x: 394}) ) ); } if (this.props.x === 400) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 399 }) + React.createElement(AdsPETableHeader141, {x: 399}) ) ); } if (this.props.x === 405) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 404 }) + React.createElement(AdsPETableHeader141, {x: 404}) ) ); } if (this.props.x === 410) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 409 }) + React.createElement(AdsPETableHeader141, {x: 409}) ) ); } if (this.props.x === 415) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 414 }) + React.createElement(AdsPETableHeader141, {x: 414}) ) ); } if (this.props.x === 420) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 419 }) + React.createElement(AdsPETableHeader141, {x: 419}) ) ); } if (this.props.x === 425) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 424 }) + React.createElement(AdsPETableHeader141, {x: 424}) ) ); } if (this.props.x === 430) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 429 }) + React.createElement(AdsPETableHeader141, {x: 429}) ) ); } if (this.props.x === 435) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 434 }) + React.createElement(AdsPETableHeader141, {x: 434}) ) ); } if (this.props.x === 440) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 439 }) + React.createElement(AdsPETableHeader141, {x: 439}) ) ); } if (this.props.x === 445) { return React.createElement( - "div", - { onClick: function () { }, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 444 }) + React.createElement(AdsPETableHeader141, {x: 444}) ) ); } @@ -4110,67 +5008,109 @@ class FixedDataTableSortableHeader149 extends React.Component { render() { if (this.props.x === 342) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 341 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 341, + }); } if (this.props.x === 348) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 347 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 347, + }); } if (this.props.x === 354) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 353 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 353, + }); } if (this.props.x === 359) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 358 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 358, + }); } if (this.props.x === 364) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 363 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 363, + }); } if (this.props.x === 371) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 370 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 370, + }); } if (this.props.x === 376) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 375 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 375, + }); } if (this.props.x === 381) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 380 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 380, + }); } if (this.props.x === 386) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 385 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 385, + }); } if (this.props.x === 391) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 390 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 390, + }); } if (this.props.x === 396) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 395 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 395, + }); } if (this.props.x === 401) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 400 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 400, + }); } if (this.props.x === 406) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 405 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 405, + }); } if (this.props.x === 411) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 410 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 410, + }); } if (this.props.x === 416) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 415 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 415, + }); } if (this.props.x === 421) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 420 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 420, + }); } if (this.props.x === 426) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 425 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 425, + }); } if (this.props.x === 431) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 430 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 430, + }); } if (this.props.x === 436) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 435 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 435, + }); } if (this.props.x === 441) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 440 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 440, + }); } if (this.props.x === 446) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 445 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 445, + }); } } } @@ -4178,7 +5118,14 @@ class FixedDataTableBufferedRows150 extends React.Component { render() { if (this.props.x === 459) { - return React.createElement("div", { style: { "position": "absolute", "pointerEvents": "auto", "transform": "translate3d(0px,65px,0)", "backfaceVisibility": "hidden" } }); + return React.createElement('div', { + style: { + position: 'absolute', + pointerEvents: 'auto', + transform: 'translate3d(0px,65px,0)', + backfaceVisibility: 'hidden', + }, + }); } } } @@ -4190,9 +5137,25 @@ } if (this.props.x === 461) { return React.createElement( - "div", - { onFocus: function () { }, onBlur: function () { }, onKeyDown: function () { }, onMouseDown: function () { }, onWheel: function () { }, className: "_1t0r _1t0t _4jdr _1t0u", style: { "width": 1209, "zIndex": 99 }, tabIndex: 0 }, - React.createElement("div", { className: "_1t0w _1t0y _1t0_", style: { "width": 561.6340607950117, "transform": "translate3d(4px,0px,0)", "backfaceVisibility": "hidden" } }) + 'div', + { + onFocus: function() {}, + onBlur: function() {}, + onKeyDown: function() {}, + onMouseDown: function() {}, + onWheel: function() {}, + className: '_1t0r _1t0t _4jdr _1t0u', + style: {width: 1209, zIndex: 99}, + tabIndex: 0, + }, + React.createElement('div', { + className: '_1t0w _1t0y _1t0_', + style: { + width: 561.6340607950117, + transform: 'translate3d(4px,0px,0)', + backfaceVisibility: 'hidden', + }, + }) ); } } @@ -4202,12 +5165,21 @@ render() { if (this.props.x === 462) { return React.createElement( - "div", - { className: "_3h1k _3h1m", style: { "height": 15, "width": 1209 } }, - React.createElement( - "div", - { style: { "height": 15, "position": "absolute", "overflow": "hidden", "width": 1209, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(Scrollbar151, { x: 461 }) + 'div', + {className: '_3h1k _3h1m', style: {height: 15, width: 1209}}, + React.createElement( + 'div', + { + style: { + height: 15, + position: 'absolute', + overflow: 'hidden', + width: 1209, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(Scrollbar151, {x: 461}) ) ); } @@ -4218,21 +5190,31 @@ render() { if (this.props.x === 463) { return React.createElement( - "div", - { className: "_3h1i _1mie", onWheel: function () { }, style: { "height": 25, "width": 1209 } }, - React.createElement( - "div", - { className: "_3h1j", style: { "height": 8, "width": 1209 } }, - React.createElement(FixedDataTableColumnResizeHandle140, { x: 313 }), - React.createElement(FixedDataTableRow147, { x: 335, key: "group_header" }), - React.createElement(FixedDataTableRow147, { x: 458, key: "header" }), - React.createElement(FixedDataTableBufferedRows150, { x: 459 }), + 'div', + { + className: '_3h1i _1mie', + onWheel: function() {}, + style: {height: 25, width: 1209}, + }, + React.createElement( + 'div', + {className: '_3h1j', style: {height: 8, width: 1209}}, + React.createElement(FixedDataTableColumnResizeHandle140, {x: 313}), + React.createElement(FixedDataTableRow147, { + x: 335, + key: 'group_header', + }), + React.createElement(FixedDataTableRow147, {x: 458, key: 'header'}), + React.createElement(FixedDataTableBufferedRows150, {x: 459}), null, undefined, - React.createElement("div", { className: "_3h1e _3h1h", style: { "top": 8 } }) + React.createElement('div', { + className: '_3h1e _3h1h', + style: {top: 8}, + }) ), - React.createElement(Scrollbar151, { x: 460 }), - React.createElement(HorizontalScrollbar152, { x: 462 }) + React.createElement(Scrollbar151, {x: 460}), + React.createElement(HorizontalScrollbar152, {x: 462}) ); } } @@ -4241,7 +5223,7 @@ class TransitionTable154 extends React.Component { render() { if (this.props.x === 464) { - return React.createElement(FixedDataTable153, { x: 463 }); + return React.createElement(FixedDataTable153, {x: 463}); } } } @@ -4250,9 +5232,9 @@ render() { if (this.props.x === 465) { return React.createElement( - "div", - { className: "_5hht" }, - React.createElement(TransitionTable154, { x: 464 }) + 'div', + {className: '_5hht'}, + React.createElement(TransitionTable154, {x: 464}) ); } } @@ -4262,9 +5244,9 @@ render() { if (this.props.x === 466) { return React.createElement( - "div", - { className: "_5d6f", tabIndex: "0", onKeyDown: function () { } }, - React.createElement(AdsSelectableFixedDataTable155, { x: 465 }) + 'div', + {className: '_5d6f', tabIndex: '0', onKeyDown: function() {}}, + React.createElement(AdsSelectableFixedDataTable155, {x: 465}) ); } } @@ -4274,9 +5256,9 @@ render() { if (this.props.x === 467) { return React.createElement( - "div", - { onCopy: function () { } }, - React.createElement(AdsDataTableKeyboardSupportDecorator156, { x: 466 }) + 'div', + {onCopy: function() {}}, + React.createElement(AdsDataTableKeyboardSupportDecorator156, {x: 466}) ); } } @@ -4286,12 +5268,12 @@ render() { if (this.props.x === 468) { return React.createElement( - "div", - { className: "_35l_ _1hr clearfix" }, + 'div', + {className: '_35l_ _1hr clearfix'}, null, null, null, - React.createElement(AdsEditableDataTableDecorator157, { x: 467 }) + React.createElement(AdsEditableDataTableDecorator157, {x: 467}) ); } } @@ -4300,7 +5282,7 @@ class AdsPECampaignGroupTableContainer159 extends React.Component { render() { if (this.props.x === 470) { - return React.createElement(ResponsiveBlock37, { x: 469 }); + return React.createElement(ResponsiveBlock37, {x: 469}); } } } @@ -4309,38 +5291,38 @@ render() { if (this.props.x === 473) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsErrorBoundary10, { x: 65 }), + React.createElement(AdsErrorBoundary10, {x: 65}), React.createElement( - "div", - { className: "_2uty" }, - React.createElement(AdsErrorBoundary10, { x: 125 }) + 'div', + {className: '_2uty'}, + React.createElement(AdsErrorBoundary10, {x: 125}) ), React.createElement( - "div", - { className: "_2utx _21oc" }, - React.createElement(AdsErrorBoundary10, { x: 171 }), + 'div', + {className: '_2utx _21oc'}, + React.createElement(AdsErrorBoundary10, {x: 171}), React.createElement( - "div", - { className: "_41tu" }, - React.createElement(AdsErrorBoundary10, { x: 176 }), - React.createElement(AdsErrorBoundary10, { x: 194 }) + 'div', + {className: '_41tu'}, + React.createElement(AdsErrorBoundary10, {x: 176}), + React.createElement(AdsErrorBoundary10, {x: 194}) ) ), React.createElement( - "div", - { className: "_2utz", style: { "height": 25 } }, - React.createElement(AdsErrorBoundary10, { x: 302 }), + 'div', + {className: '_2utz', style: {height: 25}}, + React.createElement(AdsErrorBoundary10, {x: 302}), React.createElement( - "div", - { className: "_2ut-" }, - React.createElement(AdsErrorBoundary10, { x: 312 }) + 'div', + {className: '_2ut-'}, + React.createElement(AdsErrorBoundary10, {x: 312}) ), React.createElement( - "div", - { className: "_2ut_" }, - React.createElement(AdsErrorBoundary10, { x: 472 }) + 'div', + {className: '_2ut_'}, + React.createElement(AdsErrorBoundary10, {x: 472}) ) ) ); @@ -4351,7 +5333,7 @@ class AdsPEContentContainer161 extends React.Component { render() { if (this.props.x === 474) { - return React.createElement(AdsPEManageAdsPaneContainer160, { x: 473 }); + return React.createElement(AdsPEManageAdsPaneContainer160, {x: 473}); } } } @@ -4360,10 +5342,10 @@ render() { if (this.props.x === 477) { return React.createElement( - "div", - { className: "_49wu", style: { "height": 177, "top": 43, "width": 1306 } }, - React.createElement(ResponsiveBlock37, { x: 62, key: '0' }), - React.createElement(AdsErrorBoundary10, { x: 476, key: '1' }), + 'div', + {className: '_49wu', style: {height: 177, top: 43, width: 1306}}, + React.createElement(ResponsiveBlock37, {x: 62, key: '0'}), + React.createElement(AdsErrorBoundary10, {x: 476, key: '1'}), null ); } @@ -4397,7 +5379,7 @@ class AdsBugReportContainer166 extends React.Component { render() { if (this.props.x === 481) { - return React.createElement("span", null); + return React.createElement('span', null); } } } @@ -4414,9 +5396,9 @@ render() { if (this.props.x === 483) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsPEAudienceSplittingDialog167, { x: 482 }) + React.createElement(AdsPEAudienceSplittingDialog167, {x: 482}) ); } } @@ -4473,7 +5455,7 @@ class AdsPECreateDialogContainer175 extends React.Component { render() { if (this.props.x === 490) { - return React.createElement("span", null); + return React.createElement('span', null); } } } @@ -4513,7 +5495,7 @@ class FluxContainer_AdsPELeadDownloadDialogContainerClass_180 extends React.Component { render() { if (this.props.x === 495) { - return React.createElement(LeadDownloadDialogSelector179, { x: 494 }); + return React.createElement(LeadDownloadDialogSelector179, {x: 494}); } } } @@ -4522,32 +5504,66 @@ render() { if (this.props.x === 496) { return React.createElement( - "div", - { id: "ads_pe_container" }, - React.createElement(FluxContainer_AdsPETopNavContainer_26, { x: 41 }), + 'div', + {id: 'ads_pe_container'}, + React.createElement(FluxContainer_AdsPETopNavContainer_26, {x: 41}), null, - React.createElement(FluxContainer_AdsPEWorkspaceContainer_162, { x: 477 }), - React.createElement(FluxContainer_AdsSessionExpiredDialogContainer_163, { x: 478 }), - React.createElement(FluxContainer_AdsPEUploadDialogLazyContainer_164, { x: 479 }), - React.createElement(FluxContainer_DialogContainer_165, { x: 480 }), - React.createElement(AdsBugReportContainer166, { x: 481 }), - React.createElement(AdsPEAudienceSplittingDialogContainer168, { x: 483 }), - React.createElement(FluxContainer_AdsRuleDialogBootloadContainer_169, { x: 484 }), - React.createElement(FluxContainer_AdsPECFTrayContainer_170, { x: 485 }), + React.createElement(FluxContainer_AdsPEWorkspaceContainer_162, { + x: 477, + }), + React.createElement( + FluxContainer_AdsSessionExpiredDialogContainer_163, + {x: 478} + ), + React.createElement( + FluxContainer_AdsPEUploadDialogLazyContainer_164, + {x: 479} + ), + React.createElement(FluxContainer_DialogContainer_165, {x: 480}), + React.createElement(AdsBugReportContainer166, {x: 481}), + React.createElement(AdsPEAudienceSplittingDialogContainer168, { + x: 483, + }), + React.createElement( + FluxContainer_AdsRuleDialogBootloadContainer_169, + {x: 484} + ), + React.createElement(FluxContainer_AdsPECFTrayContainer_170, {x: 485}), React.createElement( - "span", + 'span', null, - React.createElement(FluxContainer_AdsPEDeleteDraftContainer_171, { x: 486 }), - React.createElement(FluxContainer_AdsPEInitialDraftPublishDialogContainer_172, { x: 487 }), - React.createElement(FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173, { x: 488 }) + React.createElement(FluxContainer_AdsPEDeleteDraftContainer_171, { + x: 486, + }), + React.createElement( + FluxContainer_AdsPEInitialDraftPublishDialogContainer_172, + {x: 487} + ), + React.createElement( + FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173, + {x: 488} + ) + ), + React.createElement( + FluxContainer_AdsPEPurgeArchiveDialogContainer_174, + {x: 489} ), - React.createElement(FluxContainer_AdsPEPurgeArchiveDialogContainer_174, { x: 489 }), - React.createElement(AdsPECreateDialogContainer175, { x: 490 }), - React.createElement(FluxContainer_AdsPEModalStatusContainer_176, { x: 491 }), - React.createElement(FluxContainer_AdsBrowserExtensionErrorDialogContainer_177, { x: 492 }), - React.createElement(FluxContainer_AdsPESortByErrorTipContainer_178, { x: 493 }), - React.createElement(FluxContainer_AdsPELeadDownloadDialogContainerClass_180, { x: 495 }), - React.createElement("div", { id: "web_ads_guidance_tips" }) + React.createElement(AdsPECreateDialogContainer175, {x: 490}), + React.createElement(FluxContainer_AdsPEModalStatusContainer_176, { + x: 491, + }), + React.createElement( + FluxContainer_AdsBrowserExtensionErrorDialogContainer_177, + {x: 492} + ), + React.createElement(FluxContainer_AdsPESortByErrorTipContainer_178, { + x: 493, + }), + React.createElement( + FluxContainer_AdsPELeadDownloadDialogContainerClass_180, + {x: 495} + ), + React.createElement('div', {id: 'web_ads_guidance_tips'}) ); } } @@ -4556,7 +5572,7 @@ class Benchmark extends React.Component { render() { if (this.props.x === undefined) { - return React.createElement(AdsPEContainer181, { x: 496 }); + return React.createElement(AdsPEContainer181, {x: 496}); } } } @@ -4565,5 +5581,5 @@ window.render = function render() { ReactDOM.render(React.createElement(Benchmark, null), app); - } + }; })(); diff --git a/scripts/bench/benchmarks/pe-class-components/build.js b/scripts/bench/benchmarks/pe-class-components/build.js index 1a8e253bef83a..6622176404f3e 100644 --- a/scripts/bench/benchmarks/pe-class-components/build.js +++ b/scripts/bench/benchmarks/pe-class-components/build.js @@ -1,11 +1,9 @@ 'use strict'; -const { - join, -} = require('path'); +const {join} = require('path'); async function build(reactPath, asyncCopyTo) { - // copy the UMD bundles + // copy the UMD bundles await asyncCopyTo( join(reactPath, 'build', 'dist', 'react.production.min.js'), join(__dirname, 'react.production.min.js') diff --git a/scripts/bench/benchmarks/pe-functional-components/benchmark.js b/scripts/bench/benchmarks/pe-functional-components/benchmark.js index c0b7e2d22c47c..304a3d67e35e9 100644 --- a/scripts/bench/benchmarks/pe-functional-components/benchmark.js +++ b/scripts/bench/benchmarks/pe-functional-components/benchmark.js @@ -1,859 +1,1208 @@ -(function () { +(function() { 'use strict'; - var ReactImage0 = function (props) { + var ReactImage0 = function(props) { if (props.x === 0) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (props.x === 15) { - return React.createElement("i", { className: "_3ut_ img sp_i534r85sjIn sx_e8ac93", src: null, alt: "" }); + return React.createElement('i', { + className: '_3ut_ img sp_i534r85sjIn sx_e8ac93', + src: null, + alt: '', + }); } if (props.x === 22) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_7b15bc", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_7b15bc', + src: null, + }); } if (props.x === 29) { - return React.createElement("i", { className: "_1m1s _4540 _p img sp_i534r85sjIn sx_f40b1c", src: null, alt: "" }); + return React.createElement('i', { + className: '_1m1s _4540 _p img sp_i534r85sjIn sx_f40b1c', + src: null, + alt: '', + }); } if (props.x === 42) { return React.createElement( - "i", - { alt: "Warning", className: "_585p img sp_i534r85sjIn sx_20273d", src: null }, - React.createElement( - "u", - null, - "Warning" - ) + 'i', + { + alt: 'Warning', + className: '_585p img sp_i534r85sjIn sx_20273d', + src: null, + }, + React.createElement('u', null, 'Warning') ); } if (props.x === 67) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_b5d079", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_b5d079', + src: null, + }); } if (props.x === 70) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_29f8c9" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_29f8c9', + }); } if (props.x === 76) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_ef6a9c", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_ef6a9c', + src: null, + }); } if (props.x === 79) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_6f8c43" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_6f8c43', + }); } if (props.x === 88) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_e94a2d" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_e94a2d', + }); } if (props.x === 91) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_7ed7d4" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_7ed7d4', + }); } if (props.x === 94) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_930440" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_930440', + }); } if (props.x === 98) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_750c83" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_750c83', + }); } if (props.x === 108) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_73c1bb" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_73c1bb', + }); } if (props.x === 111) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_29f28d" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_29f28d', + }); } if (props.x === 126) { - return React.createElement("i", { src: null, alt: "", className: "_3-8_ img sp_i534r85sjIn sx_91c59e" }); + return React.createElement('i', { + src: null, + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_91c59e', + }); } if (props.x === 127) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (props.x === 134) { - return React.createElement("i", { src: null, alt: "", className: "_3-8_ img sp_i534r85sjIn sx_c8eb75" }); + return React.createElement('i', { + src: null, + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_c8eb75', + }); } if (props.x === 135) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (props.x === 148) { - return React.createElement("i", { className: "_3yz6 _5whs img sp_i534r85sjIn sx_896996", src: null, alt: "" }); + return React.createElement('i', { + className: '_3yz6 _5whs img sp_i534r85sjIn sx_896996', + src: null, + alt: '', + }); } if (props.x === 152) { - return React.createElement("i", { className: "_5b5p _4gem img sp_i534r85sjIn sx_896996", src: null, alt: "" }); + return React.createElement('i', { + className: '_5b5p _4gem img sp_i534r85sjIn sx_896996', + src: null, + alt: '', + }); } if (props.x === 153) { - return React.createElement("i", { className: "_541d img sp_i534r85sjIn sx_2f396a", src: null, alt: "" }); + return React.createElement('i', { + className: '_541d img sp_i534r85sjIn sx_2f396a', + src: null, + alt: '', + }); } if (props.x === 160) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_31d9b0" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_31d9b0', + }); } if (props.x === 177) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_2c18b7", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_2c18b7', + src: null, + }); } if (props.x === 186) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_0a681f" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_0a681f', + }); } if (props.x === 195) { - return React.createElement("i", { className: "_1-lx img sp_OkER5ktbEyg sx_b369b4", src: null, alt: "" }); + return React.createElement('i', { + className: '_1-lx img sp_OkER5ktbEyg sx_b369b4', + src: null, + alt: '', + }); } if (props.x === 198) { - return React.createElement("i", { className: "_1-lx img sp_i534r85sjIn sx_96948e", src: null, alt: "" }); + return React.createElement('i', { + className: '_1-lx img sp_i534r85sjIn sx_96948e', + src: null, + alt: '', + }); } if (props.x === 237) { - return React.createElement("i", { className: "_541d img sp_i534r85sjIn sx_2f396a", src: null, alt: "" }); + return React.createElement('i', { + className: '_541d img sp_i534r85sjIn sx_2f396a', + src: null, + alt: '', + }); } if (props.x === 266) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (props.x === 314) { - return React.createElement("i", { className: "_1cie _1cif img sp_i534r85sjIn sx_6e6820", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie _1cif img sp_i534r85sjIn sx_6e6820', + src: null, + alt: '', + }); } if (props.x === 345) { - return React.createElement("i", { className: "_1cie img sp_i534r85sjIn sx_e896cf", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie img sp_i534r85sjIn sx_e896cf', + src: null, + alt: '', + }); } if (props.x === 351) { - return React.createElement("i", { className: "_1cie img sp_i534r85sjIn sx_38fed8", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie img sp_i534r85sjIn sx_38fed8', + src: null, + alt: '', + }); } }; - var AbstractLink1 = function (props) { + var AbstractLink1 = function(props) { if (props.x === 1) { return React.createElement( - "a", - { className: "_387r _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "width": 250, "maxWidth": "250px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_387r _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {width: 250, maxWidth: '250px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "236px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '236px'}}, null, React.createElement( - "span", + 'span', null, - React.createElement( - "span", - { className: "_48u-" }, - "Account:" - ), - " ", - "Dick Madanson (10149999073643408)" + React.createElement('span', {className: '_48u-'}, 'Account:'), + ' ', + 'Dick Madanson (10149999073643408)' ) ), - React.createElement(ReactImage0, { x: 0 }) + React.createElement(ReactImage0, {x: 0}) ); } if (props.x === 43) { return React.createElement( - "a", - { className: "_585q _50zy _50-0 _50z- _5upp _42ft", size: "medium", type: null, title: "Remove", "data-hover": undefined, "data-tooltip-alignh": undefined, "data-tooltip-content": undefined, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_585q _50zy _50-0 _50z- _5upp _42ft', + size: 'medium', + type: null, + title: 'Remove', + 'data-hover': undefined, + 'data-tooltip-alignh': undefined, + 'data-tooltip-content': undefined, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, undefined, - "Remove", + 'Remove', undefined ); } if (props.x === 49) { return React.createElement( - "a", - { target: "_blank", href: "/ads/manage/billing.php?act=10149999073643408", rel: undefined, onClick: function () {} }, - React.createElement(XUIText29, { x: 48 }) + 'a', + { + target: '_blank', + href: '/ads/manage/billing.php?act=10149999073643408', + rel: undefined, + onClick: function() {}, + }, + React.createElement(XUIText29, {x: 48}) ); } if (props.x === 128) { return React.createElement( - "a", - { className: " _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: ' _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, - React.createElement(ReactImage0, { x: 126 }), - "Search" + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, + React.createElement(ReactImage0, {x: 126}), + 'Search' ), - React.createElement(ReactImage0, { x: 127 }) + React.createElement(ReactImage0, {x: 127}) ); } if (props.x === 136) { return React.createElement( - "a", - { className: " _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: ' _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, - React.createElement(ReactImage0, { x: 134 }), - "Filters" + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, + React.createElement(ReactImage0, {x: 134}), + 'Filters' ), - React.createElement(ReactImage0, { x: 135 }) + React.createElement(ReactImage0, {x: 135}) ); } if (props.x === 178) { return React.createElement( - "a", - { className: "_1_-t _1_-v _42ft", disabled: null, height: "medium", role: "button", label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_1_-t _1_-v _42ft', + disabled: null, + height: 'medium', + role: 'button', + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, undefined, - "Lifetime", - React.createElement(ReactImage0, { x: 177 }) + 'Lifetime', + React.createElement(ReactImage0, {x: 177}) ); } if (props.x === 207) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () {} }, - "Create Ad Set" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'Create Ad Set' ); } if (props.x === 209) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () {} }, - "View Ad Set" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'View Ad Set' ); } if (props.x === 241) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () {} }, - "Set a Limit" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'Set a Limit' ); } if (props.x === 267) { return React.createElement( - "a", - { className: "_p _55pi _2agf _4jy0 _4jy3 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_p _55pi _2agf _4jy0 _4jy3 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, null, - "Links" + 'Links' ), - React.createElement(ReactImage0, { x: 266 }) + React.createElement(ReactImage0, {x: 266}) ); } }; - var Link2 = function (props) { + var Link2 = function(props) { if (props.x === 2) { - return React.createElement(AbstractLink1, { x: 1 }); + return React.createElement(AbstractLink1, {x: 1}); } if (props.x === 44) { - return React.createElement(AbstractLink1, { x: 43 }); + return React.createElement(AbstractLink1, {x: 43}); } if (props.x === 50) { - return React.createElement(AbstractLink1, { x: 49 }); + return React.createElement(AbstractLink1, {x: 49}); } if (props.x === 129) { - return React.createElement(AbstractLink1, { x: 128 }); + return React.createElement(AbstractLink1, {x: 128}); } if (props.x === 137) { - return React.createElement(AbstractLink1, { x: 136 }); + return React.createElement(AbstractLink1, {x: 136}); } if (props.x === 179) { - return React.createElement(AbstractLink1, { x: 178 }); + return React.createElement(AbstractLink1, {x: 178}); } if (props.x === 208) { - return React.createElement(AbstractLink1, { x: 207 }); + return React.createElement(AbstractLink1, {x: 207}); } if (props.x === 210) { - return React.createElement(AbstractLink1, { x: 209 }); + return React.createElement(AbstractLink1, {x: 209}); } if (props.x === 242) { - return React.createElement(AbstractLink1, { x: 241 }); + return React.createElement(AbstractLink1, {x: 241}); } if (props.x === 268) { - return React.createElement(AbstractLink1, { x: 267 }); + return React.createElement(AbstractLink1, {x: 267}); } }; - var AbstractButton3 = function (props) { + var AbstractButton3 = function(props) { if (props.x === 3) { - return React.createElement(Link2, { x: 2 }); + return React.createElement(Link2, {x: 2}); } if (props.x === 20) { return React.createElement( - "button", - { className: "_5n7z _4jy0 _4jy4 _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_5n7z _4jy0 _4jy4 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, - "Discard Changes", + 'Discard Changes', undefined ); } if (props.x === 23) { return React.createElement( - "button", - { className: "_5n7z _2yak _4lj- _4jy0 _4jy4 _517h _51sy _42ft _42fr", disabled: true, onClick: function () {}, "data-tooltip-content": "You have no changes to publish", "data-hover": "tooltip", label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 22 }), - "Review Changes", + 'button', + { + className: '_5n7z _2yak _4lj- _4jy0 _4jy4 _517h _51sy _42ft _42fr', + disabled: true, + onClick: function() {}, + 'data-tooltip-content': 'You have no changes to publish', + 'data-hover': 'tooltip', + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 22}), + 'Review Changes', undefined ); } if (props.x === 45) { - return React.createElement(Link2, { x: 44 }); + return React.createElement(Link2, {x: 44}); } if (props.x === 68) { return React.createElement( - "button", - { className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 67 }), - "Create Campaign", + 'button', + { + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 67}), + 'Create Campaign', undefined ); } if (props.x === 71) { return React.createElement( - "button", - { className: "_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft", label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 70 }), + 'button', + { + className: '_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft', + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 70}), undefined, undefined ); } if (props.x === 77) { return React.createElement( - "button", - { "aria-label": "Edit", "data-tooltip-content": "Edit Campaigns (Ctrl+U)", "data-hover": "tooltip", className: "_d2_ _u_k noMargin _4jy0 _4jy4 _517h _51sy _42ft", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 76 }), - "Edit", + 'button', + { + 'aria-label': 'Edit', + 'data-tooltip-content': 'Edit Campaigns (Ctrl+U)', + 'data-hover': 'tooltip', + className: '_d2_ _u_k noMargin _4jy0 _4jy4 _517h _51sy _42ft', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 76}), + 'Edit', undefined ); } if (props.x === 80) { return React.createElement( - "button", - { className: "_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft", disabled: false, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 79 }), + 'button', + { + className: '_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft', + disabled: false, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 79}), undefined, undefined ); } if (props.x === 89) { return React.createElement( - "button", - { "aria-label": "Revert", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft _42fr", "data-hover": "tooltip", "data-tooltip-content": "Revert", disabled: true, onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 88 }), + 'button', + { + 'aria-label': 'Revert', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft _42fr', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Revert', + disabled: true, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 88}), undefined, undefined ); } if (props.x === 92) { return React.createElement( - "button", - { "aria-label": "Delete", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Delete", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 91 }), + 'button', + { + 'aria-label': 'Delete', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Delete', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 91}), undefined, undefined ); } if (props.x === 95) { return React.createElement( - "button", - { "aria-label": "Duplicate", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Duplicate", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 94 }), + 'button', + { + 'aria-label': 'Duplicate', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Duplicate', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 94}), undefined, undefined ); } if (props.x === 99) { return React.createElement( - "button", - { "aria-label": "Export & Import", className: "_u_k noMargin _p _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Export & Import", onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 98 }), + 'button', + { + 'aria-label': 'Export & Import', + className: '_u_k noMargin _p _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Export & Import', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 98}), undefined, undefined ); } if (props.x === 109) { return React.createElement( - "button", - { "aria-label": "Create Report", className: "_u_k _5n7z _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Create Report", disabled: false, style: { "boxSizing": "border-box", "height": "28px", "width": "48px" }, onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 108 }), + 'button', + { + 'aria-label': 'Create Report', + className: '_u_k _5n7z _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Create Report', + disabled: false, + style: {boxSizing: 'border-box', height: '28px', width: '48px'}, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 108}), undefined, undefined ); } if (props.x === 112) { return React.createElement( - "button", - { "aria-label": "Campaign Tags", className: " _5uy7 _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Campaign Tags", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 111 }), + 'button', + { + 'aria-label': 'Campaign Tags', + className: ' _5uy7 _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Campaign Tags', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 111}), undefined, undefined ); } if (props.x === 130) { - return React.createElement(Link2, { x: 129 }); + return React.createElement(Link2, {x: 129}); } if (props.x === 138) { - return React.createElement(Link2, { x: 137 }); + return React.createElement(Link2, {x: 137}); } if (props.x === 149) { return React.createElement( - "button", - { className: "_3yz9 _1t-2 _50z- _50zy _50zz _50z- _5upp _42ft", size: "small", onClick: function () {}, type: "button", title: "Remove", "data-hover": undefined, "data-tooltip-alignh": undefined, "data-tooltip-content": undefined, label: null }, + 'button', + { + className: '_3yz9 _1t-2 _50z- _50zy _50zz _50z- _5upp _42ft', + size: 'small', + onClick: function() {}, + type: 'button', + title: 'Remove', + 'data-hover': undefined, + 'data-tooltip-alignh': undefined, + 'data-tooltip-content': undefined, + label: null, + }, undefined, - "Remove", + 'Remove', undefined ); } if (props.x === 156) { return React.createElement( - "button", - { className: "_5b5u _5b5v _4jy0 _4jy3 _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_5b5u _5b5v _4jy0 _4jy3 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, - "Apply", + 'Apply', undefined ); } if (props.x === 161) { return React.createElement( - "button", - { className: "_1wdf _4jy0 _517i _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 160 }), + 'button', + { + className: '_1wdf _4jy0 _517i _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 160}), undefined, undefined ); } if (props.x === 180) { - return React.createElement(Link2, { x: 179 }); + return React.createElement(Link2, {x: 179}); } if (props.x === 187) { return React.createElement( - "button", - { "aria-label": "List Settings", className: "_u_k _3c5o _1-r0 _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "List Settings", onClick: function () {}, label: null, type: "submit", value: "1" }, - React.createElement(ReactImage0, { x: 186 }), + 'button', + { + 'aria-label': 'List Settings', + className: '_u_k _3c5o _1-r0 _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'List Settings', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, + React.createElement(ReactImage0, {x: 186}), undefined, undefined ); } if (props.x === 269) { - return React.createElement(Link2, { x: 268 }); + return React.createElement(Link2, {x: 268}); } if (props.x === 303) { return React.createElement( - "button", - { className: "_tm3 _tm6 _tm7 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Campaigns", "data-hover": "tooltip", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm3 _tm6 _tm7 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Campaigns', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } if (props.x === 305) { return React.createElement( - "button", - { className: "_tm4 _tm6 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Ad Sets", "data-hover": "tooltip", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm4 _tm6 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Ad Sets', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } if (props.x === 307) { return React.createElement( - "button", - { className: "_tm5 _tm6 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Ads", "data-hover": "tooltip", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm5 _tm6 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Ads', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } }; - var XUIButton4 = function (props) { + var XUIButton4 = function(props) { if (props.x === 4) { - return React.createElement(AbstractButton3, { x: 3 }); + return React.createElement(AbstractButton3, {x: 3}); } if (props.x === 21) { - return React.createElement(AbstractButton3, { x: 20 }); + return React.createElement(AbstractButton3, {x: 20}); } if (props.x === 24) { - return React.createElement(AbstractButton3, { x: 23 }); + return React.createElement(AbstractButton3, {x: 23}); } if (props.x === 69) { - return React.createElement(AbstractButton3, { x: 68 }); + return React.createElement(AbstractButton3, {x: 68}); } if (props.x === 72) { - return React.createElement(AbstractButton3, { x: 71 }); + return React.createElement(AbstractButton3, {x: 71}); } if (props.x === 78) { - return React.createElement(AbstractButton3, { x: 77 }); + return React.createElement(AbstractButton3, {x: 77}); } if (props.x === 81) { - return React.createElement(AbstractButton3, { x: 80 }); + return React.createElement(AbstractButton3, {x: 80}); } if (props.x === 90) { - return React.createElement(AbstractButton3, { x: 89 }); + return React.createElement(AbstractButton3, {x: 89}); } if (props.x === 93) { - return React.createElement(AbstractButton3, { x: 92 }); + return React.createElement(AbstractButton3, {x: 92}); } if (props.x === 96) { - return React.createElement(AbstractButton3, { x: 95 }); + return React.createElement(AbstractButton3, {x: 95}); } if (props.x === 100) { - return React.createElement(AbstractButton3, { x: 99 }); + return React.createElement(AbstractButton3, {x: 99}); } if (props.x === 110) { - return React.createElement(AbstractButton3, { x: 109 }); + return React.createElement(AbstractButton3, {x: 109}); } if (props.x === 113) { - return React.createElement(AbstractButton3, { x: 112 }); + return React.createElement(AbstractButton3, {x: 112}); } if (props.x === 131) { - return React.createElement(AbstractButton3, { x: 130 }); + return React.createElement(AbstractButton3, {x: 130}); } if (props.x === 139) { - return React.createElement(AbstractButton3, { x: 138 }); + return React.createElement(AbstractButton3, {x: 138}); } if (props.x === 157) { - return React.createElement(AbstractButton3, { x: 156 }); + return React.createElement(AbstractButton3, {x: 156}); } if (props.x === 162) { - return React.createElement(AbstractButton3, { x: 161 }); + return React.createElement(AbstractButton3, {x: 161}); } if (props.x === 188) { - return React.createElement(AbstractButton3, { x: 187 }); + return React.createElement(AbstractButton3, {x: 187}); } if (props.x === 270) { - return React.createElement(AbstractButton3, { x: 269 }); + return React.createElement(AbstractButton3, {x: 269}); } if (props.x === 304) { - return React.createElement(AbstractButton3, { x: 303 }); + return React.createElement(AbstractButton3, {x: 303}); } if (props.x === 306) { - return React.createElement(AbstractButton3, { x: 305 }); + return React.createElement(AbstractButton3, {x: 305}); } if (props.x === 308) { - return React.createElement(AbstractButton3, { x: 307 }); + return React.createElement(AbstractButton3, {x: 307}); } }; - var AbstractPopoverButton5 = function (props) { + var AbstractPopoverButton5 = function(props) { if (props.x === 5) { - return React.createElement(XUIButton4, { x: 4 }); + return React.createElement(XUIButton4, {x: 4}); } if (props.x === 132) { - return React.createElement(XUIButton4, { x: 131 }); + return React.createElement(XUIButton4, {x: 131}); } if (props.x === 140) { - return React.createElement(XUIButton4, { x: 139 }); + return React.createElement(XUIButton4, {x: 139}); } if (props.x === 271) { - return React.createElement(XUIButton4, { x: 270 }); + return React.createElement(XUIButton4, {x: 270}); } }; - var ReactXUIPopoverButton6 = function (props) { + var ReactXUIPopoverButton6 = function(props) { if (props.x === 6) { - return React.createElement(AbstractPopoverButton5, { x: 5 }); + return React.createElement(AbstractPopoverButton5, {x: 5}); } if (props.x === 133) { - return React.createElement(AbstractPopoverButton5, { x: 132 }); + return React.createElement(AbstractPopoverButton5, {x: 132}); } if (props.x === 141) { - return React.createElement(AbstractPopoverButton5, { x: 140 }); + return React.createElement(AbstractPopoverButton5, {x: 140}); } if (props.x === 272) { - return React.createElement(AbstractPopoverButton5, { x: 271 }); + return React.createElement(AbstractPopoverButton5, {x: 271}); } }; - var BIGAdAccountSelector7 = function (props) { + var BIGAdAccountSelector7 = function(props) { if (props.x === 7) { return React.createElement( - "div", + 'div', null, - React.createElement(ReactXUIPopoverButton6, { x: 6 }), + React.createElement(ReactXUIPopoverButton6, {x: 6}), null ); } }; - var FluxContainer_AdsPEBIGAdAccountSelectorContainer_8 = function (props) { + var FluxContainer_AdsPEBIGAdAccountSelectorContainer_8 = function(props) { if (props.x === 8) { - return React.createElement(BIGAdAccountSelector7, { x: 7 }); + return React.createElement(BIGAdAccountSelector7, {x: 7}); } }; - var ErrorBoundary9 = function (props) { + var ErrorBoundary9 = function(props) { if (props.x === 9) { - return React.createElement(FluxContainer_AdsPEBIGAdAccountSelectorContainer_8, { x: 8 }); + return React.createElement( + FluxContainer_AdsPEBIGAdAccountSelectorContainer_8, + {x: 8} + ); } if (props.x === 13) { - return React.createElement(FluxContainer_AdsPENavigationBarContainer_12, { x: 12 }); + return React.createElement(FluxContainer_AdsPENavigationBarContainer_12, { + x: 12, + }); } if (props.x === 27) { - return React.createElement(FluxContainer_AdsPEPublishButtonContainer_18, { x: 26 }); + return React.createElement(FluxContainer_AdsPEPublishButtonContainer_18, { + x: 26, + }); } if (props.x === 32) { - return React.createElement(ReactPopoverMenu20, { x: 31 }); + return React.createElement(ReactPopoverMenu20, {x: 31}); } if (props.x === 38) { - return React.createElement(AdsPEResetDialog24, { x: 37 }); + return React.createElement(AdsPEResetDialog24, {x: 37}); } if (props.x === 57) { - return React.createElement(FluxContainer_AdsPETopErrorContainer_35, { x: 56 }); + return React.createElement(FluxContainer_AdsPETopErrorContainer_35, { + x: 56, + }); } if (props.x === 60) { - return React.createElement(FluxContainer_AdsGuidanceChannel_36, { x: 59 }); + return React.createElement(FluxContainer_AdsGuidanceChannel_36, {x: 59}); } if (props.x === 64) { - return React.createElement(FluxContainer_AdsBulkEditDialogContainer_38, { x: 63 }); + return React.createElement(FluxContainer_AdsBulkEditDialogContainer_38, { + x: 63, + }); } if (props.x === 124) { - return React.createElement(AdsPECampaignGroupToolbarContainer57, { x: 123 }); + return React.createElement(AdsPECampaignGroupToolbarContainer57, { + x: 123, + }); } if (props.x === 170) { - return React.createElement(AdsPEFilterContainer72, { x: 169 }); + return React.createElement(AdsPEFilterContainer72, {x: 169}); } if (props.x === 175) { - return React.createElement(AdsPETablePagerContainer75, { x: 174 }); + return React.createElement(AdsPETablePagerContainer75, {x: 174}); } if (props.x === 193) { - return React.createElement(AdsPEStatRangeContainer81, { x: 192 }); + return React.createElement(AdsPEStatRangeContainer81, {x: 192}); } if (props.x === 301) { - return React.createElement(FluxContainer_AdsPEMultiTabDrawerContainer_137, { x: 300 }); + return React.createElement( + FluxContainer_AdsPEMultiTabDrawerContainer_137, + {x: 300} + ); } if (props.x === 311) { - return React.createElement(AdsPEOrganizerContainer139, { x: 310 }); + return React.createElement(AdsPEOrganizerContainer139, {x: 310}); } if (props.x === 471) { - return React.createElement(AdsPECampaignGroupTableContainer159, { x: 470 }); + return React.createElement(AdsPECampaignGroupTableContainer159, {x: 470}); } if (props.x === 475) { - return React.createElement(AdsPEContentContainer161, { x: 474 }); + return React.createElement(AdsPEContentContainer161, {x: 474}); } }; - var AdsErrorBoundary10 = function (props) { + var AdsErrorBoundary10 = function(props) { if (props.x === 10) { - return React.createElement(ErrorBoundary9, { x: 9 }); + return React.createElement(ErrorBoundary9, {x: 9}); } if (props.x === 14) { - return React.createElement(ErrorBoundary9, { x: 13 }); + return React.createElement(ErrorBoundary9, {x: 13}); } if (props.x === 28) { - return React.createElement(ErrorBoundary9, { x: 27 }); + return React.createElement(ErrorBoundary9, {x: 27}); } if (props.x === 33) { - return React.createElement(ErrorBoundary9, { x: 32 }); + return React.createElement(ErrorBoundary9, {x: 32}); } if (props.x === 39) { - return React.createElement(ErrorBoundary9, { x: 38 }); + return React.createElement(ErrorBoundary9, {x: 38}); } if (props.x === 58) { - return React.createElement(ErrorBoundary9, { x: 57 }); + return React.createElement(ErrorBoundary9, {x: 57}); } if (props.x === 61) { - return React.createElement(ErrorBoundary9, { x: 60 }); + return React.createElement(ErrorBoundary9, {x: 60}); } if (props.x === 65) { - return React.createElement(ErrorBoundary9, { x: 64 }); + return React.createElement(ErrorBoundary9, {x: 64}); } if (props.x === 125) { - return React.createElement(ErrorBoundary9, { x: 124 }); + return React.createElement(ErrorBoundary9, {x: 124}); } if (props.x === 171) { - return React.createElement(ErrorBoundary9, { x: 170 }); + return React.createElement(ErrorBoundary9, {x: 170}); } if (props.x === 176) { - return React.createElement(ErrorBoundary9, { x: 175 }); + return React.createElement(ErrorBoundary9, {x: 175}); } if (props.x === 194) { - return React.createElement(ErrorBoundary9, { x: 193 }); + return React.createElement(ErrorBoundary9, {x: 193}); } if (props.x === 302) { - return React.createElement(ErrorBoundary9, { x: 301 }); + return React.createElement(ErrorBoundary9, {x: 301}); } if (props.x === 312) { - return React.createElement(ErrorBoundary9, { x: 311 }); + return React.createElement(ErrorBoundary9, {x: 311}); } if (props.x === 472) { - return React.createElement(ErrorBoundary9, { x: 471 }); + return React.createElement(ErrorBoundary9, {x: 471}); } if (props.x === 476) { - return React.createElement(ErrorBoundary9, { x: 475 }); + return React.createElement(ErrorBoundary9, {x: 475}); } }; - var AdsPENavigationBar11 = function (props) { + var AdsPENavigationBar11 = function(props) { if (props.x === 11) { - return React.createElement("div", { className: "_4t_9" }); + return React.createElement('div', {className: '_4t_9'}); } }; - var FluxContainer_AdsPENavigationBarContainer_12 = function (props) { + var FluxContainer_AdsPENavigationBarContainer_12 = function(props) { if (props.x === 12) { - return React.createElement(AdsPENavigationBar11, { x: 11 }); + return React.createElement(AdsPENavigationBar11, {x: 11}); } }; - var AdsPEDraftSyncStatus13 = function (props) { + var AdsPEDraftSyncStatus13 = function(props) { if (props.x === 16) { return React.createElement( - "div", - { className: "_3ut-", onClick: function () {} }, + 'div', + {className: '_3ut-', onClick: function() {}}, React.createElement( - "span", - { className: "_3uu0" }, - React.createElement(ReactImage0, { x: 15 }) + 'span', + {className: '_3uu0'}, + React.createElement(ReactImage0, {x: 15}) ) ); } }; - var FluxContainer_AdsPEDraftSyncStatusContainer_14 = function (props) { + var FluxContainer_AdsPEDraftSyncStatusContainer_14 = function(props) { if (props.x === 17) { - return React.createElement(AdsPEDraftSyncStatus13, { x: 16 }); + return React.createElement(AdsPEDraftSyncStatus13, {x: 16}); } }; - var AdsPEDraftErrorsStatus15 = function (props) { + var AdsPEDraftErrorsStatus15 = function(props) { if (props.x === 18) { return null; } }; - var FluxContainer_viewFn_16 = function (props) { + var FluxContainer_viewFn_16 = function(props) { if (props.x === 19) { - return React.createElement(AdsPEDraftErrorsStatus15, { x: 18 }); + return React.createElement(AdsPEDraftErrorsStatus15, {x: 18}); } }; - var AdsPEPublishButton17 = function (props) { + var AdsPEPublishButton17 = function(props) { if (props.x === 25) { return React.createElement( - "div", - { className: "_5533" }, - React.createElement(FluxContainer_AdsPEDraftSyncStatusContainer_14, { x: 17 }), - React.createElement(FluxContainer_viewFn_16, { x: 19 }), + 'div', + {className: '_5533'}, + React.createElement(FluxContainer_AdsPEDraftSyncStatusContainer_14, { + x: 17, + }), + React.createElement(FluxContainer_viewFn_16, {x: 19}), null, - React.createElement(XUIButton4, { x: 21, key: "discard" }), - React.createElement(XUIButton4, { x: 24 }) + React.createElement(XUIButton4, {x: 21, key: 'discard'}), + React.createElement(XUIButton4, {x: 24}) ); } }; - var FluxContainer_AdsPEPublishButtonContainer_18 = function (props) { + var FluxContainer_AdsPEPublishButtonContainer_18 = function(props) { if (props.x === 26) { - return React.createElement(AdsPEPublishButton17, { x: 25 }); + return React.createElement(AdsPEPublishButton17, {x: 25}); } }; - var InlineBlock19 = function (props) { + var InlineBlock19 = function(props) { if (props.x === 30) { return React.createElement( - "div", - { className: "uiPopover _6a _6b", disabled: null }, - React.createElement(ReactImage0, { x: 29, key: ".0" }) + 'div', + {className: 'uiPopover _6a _6b', disabled: null}, + React.createElement(ReactImage0, {x: 29, key: '.0'}) ); } if (props.x === 73) { return React.createElement( - "div", - { className: "uiPopover _6a _6b", disabled: null }, - React.createElement(XUIButton4, { x: 72, key: ".0" }) + 'div', + {className: 'uiPopover _6a _6b', disabled: null}, + React.createElement(XUIButton4, {x: 72, key: '.0'}) ); } if (props.x === 82) { return React.createElement( - "div", - { className: "_1nwm uiPopover _6a _6b", disabled: null }, - React.createElement(XUIButton4, { x: 81, key: ".0" }) + 'div', + {className: '_1nwm uiPopover _6a _6b', disabled: null}, + React.createElement(XUIButton4, {x: 81, key: '.0'}) ); } if (props.x === 101) { return React.createElement( - "div", - { size: "large", className: "uiPopover _6a _6b", disabled: null }, - React.createElement(XUIButton4, { x: 100, key: ".0" }) + 'div', + {size: 'large', className: 'uiPopover _6a _6b', disabled: null}, + React.createElement(XUIButton4, {x: 100, key: '.0'}) ); } if (props.x === 273) { return React.createElement( - "div", - { className: "_3-90 uiPopover _6a _6b", style: { "marginTop": 2 }, disabled: null }, - React.createElement(ReactXUIPopoverButton6, { x: 272, key: ".0" }) + 'div', + { + className: '_3-90 uiPopover _6a _6b', + style: {marginTop: 2}, + disabled: null, + }, + React.createElement(ReactXUIPopoverButton6, {x: 272, key: '.0'}) ); } }; - var ReactPopoverMenu20 = function (props) { + var ReactPopoverMenu20 = function(props) { if (props.x === 31) { - return React.createElement(InlineBlock19, { x: 30 }); + return React.createElement(InlineBlock19, {x: 30}); } if (props.x === 74) { - return React.createElement(InlineBlock19, { x: 73 }); + return React.createElement(InlineBlock19, {x: 73}); } if (props.x === 83) { - return React.createElement(InlineBlock19, { x: 82 }); + return React.createElement(InlineBlock19, {x: 82}); } if (props.x === 102) { - return React.createElement(InlineBlock19, { x: 101 }); + return React.createElement(InlineBlock19, {x: 101}); } if (props.x === 274) { - return React.createElement(InlineBlock19, { x: 273 }); + return React.createElement(InlineBlock19, {x: 273}); } }; - var LeftRight21 = function (props) { + var LeftRight21 = function(props) { if (props.x === 34) { return React.createElement( - "div", - { className: "clearfix" }, + 'div', + {className: 'clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, + 'div', + {key: 'left', className: '_ohe lfloat'}, React.createElement( - "div", - { className: "_34_j" }, + 'div', + {className: '_34_j'}, React.createElement( - "div", - { className: "_34_k" }, - React.createElement(AdsErrorBoundary10, { x: 10 }) + 'div', + {className: '_34_k'}, + React.createElement(AdsErrorBoundary10, {x: 10}) ), React.createElement( - "div", - { className: "_2u-6" }, - React.createElement(AdsErrorBoundary10, { x: 14 }) + 'div', + {className: '_2u-6'}, + React.createElement(AdsErrorBoundary10, {x: 14}) ) ) ), React.createElement( - "div", - { key: "right", className: "_ohf rfloat" }, + 'div', + {key: 'right', className: '_ohf rfloat'}, React.createElement( - "div", - { className: "_34_m" }, + 'div', + {className: '_34_m'}, React.createElement( - "div", - { key: "0", className: "_5ju2" }, - React.createElement(AdsErrorBoundary10, { x: 28 }) + 'div', + {key: '0', className: '_5ju2'}, + React.createElement(AdsErrorBoundary10, {x: 28}) ), React.createElement( - "div", - { key: "1", className: "_5ju2" }, - React.createElement(AdsErrorBoundary10, { x: 33 }) + 'div', + {key: '1', className: '_5ju2'}, + React.createElement(AdsErrorBoundary10, {x: 33}) ) ) ) @@ -861,23 +1210,23 @@ } if (props.x === 232) { return React.createElement( - "div", - { direction: "left", className: "clearfix" }, + 'div', + {direction: 'left', className: 'clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(AdsLabeledField104, { x: 231 }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(AdsLabeledField104, {x: 231}) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, + 'div', + {className: '_42ef'}, React.createElement( - "div", - { className: "_2oc7" }, - "Clicks to Website" + 'div', + {className: '_2oc7'}, + 'Clicks to Website' ) ) ) @@ -885,357 +1234,382 @@ } if (props.x === 235) { return React.createElement( - "div", - { className: "_3-8x clearfix", direction: "left" }, + 'div', + {className: '_3-8x clearfix', direction: 'left'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(AdsLabeledField104, { x: 234 }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(AdsLabeledField104, {x: 234}) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, - React.createElement( - "div", - { className: "_2oc7" }, - "Auction" - ) + 'div', + {className: '_42ef'}, + React.createElement('div', {className: '_2oc7'}, 'Auction') ) ) ); } if (props.x === 245) { return React.createElement( - "div", - { className: "_3-8y clearfix", direction: "left" }, + 'div', + {className: '_3-8y clearfix', direction: 'left'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(AdsLabeledField104, { x: 240 }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(AdsLabeledField104, {x: 240}) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, - React.createElement(FluxContainer_AdsCampaignGroupSpendCapContainer_107, { x: 244 }) + 'div', + {className: '_42ef'}, + React.createElement( + FluxContainer_AdsCampaignGroupSpendCapContainer_107, + {x: 244} + ) ) ) ); } if (props.x === 277) { return React.createElement( - "div", - { className: "_5dw9 _5dwa clearfix" }, + 'div', + {className: '_5dw9 _5dwa clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, - React.createElement(XUICardHeaderTitle100, { x: 265, key: ".0" }) + 'div', + {key: 'left', className: '_ohe lfloat'}, + React.createElement(XUICardHeaderTitle100, {x: 265, key: '.0'}) ), React.createElement( - "div", - { key: "right", className: "_ohf rfloat" }, - React.createElement(FluxContainer_AdsPluginizedLinksMenuContainer_121, { x: 276, key: ".1" }) + 'div', + {key: 'right', className: '_ohf rfloat'}, + React.createElement( + FluxContainer_AdsPluginizedLinksMenuContainer_121, + {x: 276, key: '.1'} + ) ) ); } }; - var AdsUnifiedNavigationLocalNav22 = function (props) { + var AdsUnifiedNavigationLocalNav22 = function(props) { if (props.x === 35) { return React.createElement( - "div", - { className: "_34_i" }, - React.createElement(LeftRight21, { x: 34 }) + 'div', + {className: '_34_i'}, + React.createElement(LeftRight21, {x: 34}) ); } }; - var XUIDialog23 = function (props) { + var XUIDialog23 = function(props) { if (props.x === 36) { return null; } }; - var AdsPEResetDialog24 = function (props) { + var AdsPEResetDialog24 = function(props) { if (props.x === 37) { return React.createElement( - "span", + 'span', null, - React.createElement(XUIDialog23, { x: 36, key: "dialog/.0" }) + React.createElement(XUIDialog23, {x: 36, key: 'dialog/.0'}) ); } }; - var AdsPETopNav25 = function (props) { + var AdsPETopNav25 = function(props) { if (props.x === 40) { return React.createElement( - "div", - { style: { "width": 1306 } }, - React.createElement(AdsUnifiedNavigationLocalNav22, { x: 35 }), - React.createElement(AdsErrorBoundary10, { x: 39 }) + 'div', + {style: {width: 1306}}, + React.createElement(AdsUnifiedNavigationLocalNav22, {x: 35}), + React.createElement(AdsErrorBoundary10, {x: 39}) ); } }; - var FluxContainer_AdsPETopNavContainer_26 = function (props) { + var FluxContainer_AdsPETopNavContainer_26 = function(props) { if (props.x === 41) { - return React.createElement(AdsPETopNav25, { x: 40 }); + return React.createElement(AdsPETopNav25, {x: 40}); } }; - var XUIAbstractGlyphButton27 = function (props) { + var XUIAbstractGlyphButton27 = function(props) { if (props.x === 46) { - return React.createElement(AbstractButton3, { x: 45 }); + return React.createElement(AbstractButton3, {x: 45}); } if (props.x === 150) { - return React.createElement(AbstractButton3, { x: 149 }); + return React.createElement(AbstractButton3, {x: 149}); } }; - var XUICloseButton28 = function (props) { + var XUICloseButton28 = function(props) { if (props.x === 47) { - return React.createElement(XUIAbstractGlyphButton27, { x: 46 }); + return React.createElement(XUIAbstractGlyphButton27, {x: 46}); } if (props.x === 151) { - return React.createElement(XUIAbstractGlyphButton27, { x: 150 }); + return React.createElement(XUIAbstractGlyphButton27, {x: 150}); } }; - var XUIText29 = function (props) { + var XUIText29 = function(props) { if (props.x === 48) { return React.createElement( - "span", - { display: "inline", className: " _50f7" }, - "Ads Manager" + 'span', + {display: 'inline', className: ' _50f7'}, + 'Ads Manager' ); } if (props.x === 205) { return React.createElement( - "span", - { className: "_2x9f _50f5 _50f7", display: "inline" }, - "Editing Campaign" + 'span', + {className: '_2x9f _50f5 _50f7', display: 'inline'}, + 'Editing Campaign' ); } if (props.x === 206) { return React.createElement( - "span", - { display: "inline", className: " _50f5 _50f7" }, - "Test Campaign" + 'span', + {display: 'inline', className: ' _50f5 _50f7'}, + 'Test Campaign' ); } }; - var XUINotice30 = function (props) { + var XUINotice30 = function(props) { if (props.x === 51) { return React.createElement( - "div", - { size: "medium", className: "_585n _585o _2wdd" }, - React.createElement(ReactImage0, { x: 42 }), - React.createElement(XUICloseButton28, { x: 47 }), + 'div', + {size: 'medium', className: '_585n _585o _2wdd'}, + React.createElement(ReactImage0, {x: 42}), + React.createElement(XUICloseButton28, {x: 47}), React.createElement( - "div", - { className: "_585r _2i-a _50f4" }, - "Please go to ", - React.createElement(Link2, { x: 50 }), - " to set up a payment method for this ad account." + 'div', + {className: '_585r _2i-a _50f4'}, + 'Please go to ', + React.createElement(Link2, {x: 50}), + ' to set up a payment method for this ad account.' ) ); } }; - var ReactCSSTransitionGroupChild31 = function (props) { + var ReactCSSTransitionGroupChild31 = function(props) { if (props.x === 52) { - return React.createElement(XUINotice30, { x: 51 }); + return React.createElement(XUINotice30, {x: 51}); } }; - var ReactTransitionGroup32 = function (props) { + var ReactTransitionGroup32 = function(props) { if (props.x === 53) { return React.createElement( - "span", + 'span', null, - React.createElement(ReactCSSTransitionGroupChild31, { x: 52, key: ".0" }) + React.createElement(ReactCSSTransitionGroupChild31, {x: 52, key: '.0'}) ); } }; - var ReactCSSTransitionGroup33 = function (props) { + var ReactCSSTransitionGroup33 = function(props) { if (props.x === 54) { - return React.createElement(ReactTransitionGroup32, { x: 53 }); + return React.createElement(ReactTransitionGroup32, {x: 53}); } }; - var AdsPETopError34 = function (props) { + var AdsPETopError34 = function(props) { if (props.x === 55) { return React.createElement( - "div", - { className: "_2wdc" }, - React.createElement(ReactCSSTransitionGroup33, { x: 54 }) + 'div', + {className: '_2wdc'}, + React.createElement(ReactCSSTransitionGroup33, {x: 54}) ); } }; - var FluxContainer_AdsPETopErrorContainer_35 = function (props) { + var FluxContainer_AdsPETopErrorContainer_35 = function(props) { if (props.x === 56) { - return React.createElement(AdsPETopError34, { x: 55 }); + return React.createElement(AdsPETopError34, {x: 55}); } }; - var FluxContainer_AdsGuidanceChannel_36 = function (props) { + var FluxContainer_AdsGuidanceChannel_36 = function(props) { if (props.x === 59) { return null; } }; - var ResponsiveBlock37 = function (props) { + var ResponsiveBlock37 = function(props) { if (props.x === 62) { return React.createElement( - "div", - { className: "_4u-c" }, - [React.createElement(AdsErrorBoundary10, { x: 58, key: 1 }), React.createElement(AdsErrorBoundary10, { x: 61, key: 2 })], - React.createElement( - "div", - { key: "sensor", className: "_4u-f" }, - React.createElement("iframe", { "aria-hidden": "true", className: "_1_xb", tabIndex: "-1" }) + 'div', + {className: '_4u-c'}, + [ + React.createElement(AdsErrorBoundary10, {x: 58, key: 1}), + React.createElement(AdsErrorBoundary10, {x: 61, key: 2}), + ], + React.createElement( + 'div', + {key: 'sensor', className: '_4u-f'}, + React.createElement('iframe', { + 'aria-hidden': 'true', + className: '_1_xb', + tabIndex: '-1', + }) ) ); } if (props.x === 469) { return React.createElement( - "div", - { className: "_4u-c" }, - React.createElement(AdsPEDataTableContainer158, { x: 468 }), - React.createElement( - "div", - { key: "sensor", className: "_4u-f" }, - React.createElement("iframe", { "aria-hidden": "true", className: "_1_xb", tabIndex: "-1" }) + 'div', + {className: '_4u-c'}, + React.createElement(AdsPEDataTableContainer158, {x: 468}), + React.createElement( + 'div', + {key: 'sensor', className: '_4u-f'}, + React.createElement('iframe', { + 'aria-hidden': 'true', + className: '_1_xb', + tabIndex: '-1', + }) ) ); } }; - var FluxContainer_AdsBulkEditDialogContainer_38 = function (props) { + var FluxContainer_AdsBulkEditDialogContainer_38 = function(props) { if (props.x === 63) { return null; } }; - var Column39 = function (props) { + var Column39 = function(props) { if (props.x === 66) { return React.createElement( - "div", - { className: "_4bl8 _4bl7" }, + 'div', + {className: '_4bl8 _4bl7'}, React.createElement( - "div", - { className: "_3c5f" }, + 'div', + {className: '_3c5f'}, null, null, - React.createElement("div", { className: "_3c5i" }), + React.createElement('div', {className: '_3c5i'}), null ) ); } }; - var XUIButtonGroup40 = function (props) { + var XUIButtonGroup40 = function(props) { if (props.x === 75) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(XUIButton4, { x: 69 }), - React.createElement(ReactPopoverMenu20, { x: 74 }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(XUIButton4, {x: 69}), + React.createElement(ReactPopoverMenu20, {x: 74}) ); } if (props.x === 84) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(XUIButton4, { x: 78, key: "edit" }), - React.createElement(ReactPopoverMenu20, { x: 83, key: "editMenu" }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(XUIButton4, {x: 78, key: 'edit'}), + React.createElement(ReactPopoverMenu20, {x: 83, key: 'editMenu'}) ); } if (props.x === 97) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(XUIButton4, { x: 90, key: "revert" }), - React.createElement(XUIButton4, { x: 93, key: "delete" }), - React.createElement(XUIButton4, { x: 96, key: "duplicate" }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(XUIButton4, {x: 90, key: 'revert'}), + React.createElement(XUIButton4, {x: 93, key: 'delete'}), + React.createElement(XUIButton4, {x: 96, key: 'duplicate'}) ); } if (props.x === 117) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, - React.createElement(AdsPEExportImportMenuContainer48, { x: 107 }), - React.createElement(XUIButton4, { x: 110, key: "createReport" }), - React.createElement(AdsPECampaignGroupTagContainer51, { x: 116, key: "tags" }) + 'div', + {className: '_5n7z _51xa'}, + React.createElement(AdsPEExportImportMenuContainer48, {x: 107}), + React.createElement(XUIButton4, {x: 110, key: 'createReport'}), + React.createElement(AdsPECampaignGroupTagContainer51, { + x: 116, + key: 'tags', + }) ); } }; - var AdsPEEditToolbarButton41 = function (props) { + var AdsPEEditToolbarButton41 = function(props) { if (props.x === 85) { - return React.createElement(XUIButtonGroup40, { x: 84 }); + return React.createElement(XUIButtonGroup40, {x: 84}); } }; - var FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42 = function (props) { + var FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42 = function( + props + ) { if (props.x === 86) { - return React.createElement(AdsPEEditToolbarButton41, { x: 85 }); + return React.createElement(AdsPEEditToolbarButton41, {x: 85}); } }; - var FluxContainer_AdsPEEditToolbarButtonContainer_43 = function (props) { + var FluxContainer_AdsPEEditToolbarButtonContainer_43 = function(props) { if (props.x === 87) { - return React.createElement(FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42, { x: 86 }); + return React.createElement( + FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42, + {x: 86} + ); } }; - var AdsPEExportImportMenu44 = function (props) { + var AdsPEExportImportMenu44 = function(props) { if (props.x === 103) { - return React.createElement(ReactPopoverMenu20, { x: 102, key: "export" }); + return React.createElement(ReactPopoverMenu20, {x: 102, key: 'export'}); } }; - var FluxContainer_AdsPECustomizeExportContainer_45 = function (props) { + var FluxContainer_AdsPECustomizeExportContainer_45 = function(props) { if (props.x === 104) { return null; } }; - var AdsPEExportAsTextDialog46 = function (props) { + var AdsPEExportAsTextDialog46 = function(props) { if (props.x === 105) { return null; } }; - var FluxContainer_AdsPEExportAsTextDialogContainer_47 = function (props) { + var FluxContainer_AdsPEExportAsTextDialogContainer_47 = function(props) { if (props.x === 106) { - return React.createElement(AdsPEExportAsTextDialog46, { x: 105 }); + return React.createElement(AdsPEExportAsTextDialog46, {x: 105}); } }; - var AdsPEExportImportMenuContainer48 = function (props) { + var AdsPEExportImportMenuContainer48 = function(props) { if (props.x === 107) { return React.createElement( - "span", + 'span', null, - React.createElement(AdsPEExportImportMenu44, { x: 103 }), - React.createElement(FluxContainer_AdsPECustomizeExportContainer_45, { x: 104 }), - React.createElement(FluxContainer_AdsPEExportAsTextDialogContainer_47, { x: 106 }), + React.createElement(AdsPEExportImportMenu44, {x: 103}), + React.createElement(FluxContainer_AdsPECustomizeExportContainer_45, { + x: 104, + }), + React.createElement(FluxContainer_AdsPEExportAsTextDialogContainer_47, { + x: 106, + }), null, null ); } }; - var Constructor49 = function (props) { + var Constructor49 = function(props) { if (props.x === 114) { return null; } @@ -1250,256 +1624,295 @@ } }; - var TagSelectorPopover50 = function (props) { + var TagSelectorPopover50 = function(props) { if (props.x === 115) { return React.createElement( - "span", - { className: " _3d6e" }, - React.createElement(XUIButton4, { x: 113 }), - React.createElement(Constructor49, { x: 114, key: "layer" }) + 'span', + {className: ' _3d6e'}, + React.createElement(XUIButton4, {x: 113}), + React.createElement(Constructor49, {x: 114, key: 'layer'}) ); } }; - var AdsPECampaignGroupTagContainer51 = function (props) { + var AdsPECampaignGroupTagContainer51 = function(props) { if (props.x === 116) { - return React.createElement(TagSelectorPopover50, { x: 115, key: "98010048849317" }); + return React.createElement(TagSelectorPopover50, { + x: 115, + key: '98010048849317', + }); } }; - var AdsRuleToolbarMenu52 = function (props) { + var AdsRuleToolbarMenu52 = function(props) { if (props.x === 118) { return null; } }; - var FluxContainer_AdsPERuleToolbarMenuContainer_53 = function (props) { + var FluxContainer_AdsPERuleToolbarMenuContainer_53 = function(props) { if (props.x === 119) { - return React.createElement(AdsRuleToolbarMenu52, { x: 118 }); + return React.createElement(AdsRuleToolbarMenu52, {x: 118}); } }; - var FillColumn54 = function (props) { + var FillColumn54 = function(props) { if (props.x === 120) { return React.createElement( - "div", - { className: "_4bl9" }, + 'div', + {className: '_4bl9'}, React.createElement( - "span", - { className: "_3c5e" }, + 'span', + {className: '_3c5e'}, React.createElement( - "span", + 'span', null, - React.createElement(XUIButtonGroup40, { x: 75 }), - React.createElement(FluxContainer_AdsPEEditToolbarButtonContainer_43, { x: 87 }), + React.createElement(XUIButtonGroup40, {x: 75}), + React.createElement( + FluxContainer_AdsPEEditToolbarButtonContainer_43, + {x: 87} + ), null, - React.createElement(XUIButtonGroup40, { x: 97 }) + React.createElement(XUIButtonGroup40, {x: 97}) ), - React.createElement(XUIButtonGroup40, { x: 117 }), - React.createElement(FluxContainer_AdsPERuleToolbarMenuContainer_53, { x: 119 }) + React.createElement(XUIButtonGroup40, {x: 117}), + React.createElement(FluxContainer_AdsPERuleToolbarMenuContainer_53, { + x: 119, + }) ) ); } }; - var Layout55 = function (props) { + var Layout55 = function(props) { if (props.x === 121) { return React.createElement( - "div", - { className: "clearfix" }, - React.createElement(Column39, { x: 66, key: "1" }), - React.createElement(FillColumn54, { x: 120, key: "0" }) + 'div', + {className: 'clearfix'}, + React.createElement(Column39, {x: 66, key: '1'}), + React.createElement(FillColumn54, {x: 120, key: '0'}) ); } }; - var AdsPEMainPaneToolbar56 = function (props) { + var AdsPEMainPaneToolbar56 = function(props) { if (props.x === 122) { return React.createElement( - "div", - { className: "_3c5b clearfix" }, - React.createElement(Layout55, { x: 121 }) + 'div', + {className: '_3c5b clearfix'}, + React.createElement(Layout55, {x: 121}) ); } }; - var AdsPECampaignGroupToolbarContainer57 = function (props) { + var AdsPECampaignGroupToolbarContainer57 = function(props) { if (props.x === 123) { - return React.createElement(AdsPEMainPaneToolbar56, { x: 122 }); + return React.createElement(AdsPEMainPaneToolbar56, {x: 122}); } }; - var AdsPEFiltersPopover58 = function (props) { + var AdsPEFiltersPopover58 = function(props) { if (props.x === 144) { return React.createElement( - "span", - { className: "_5b-l _5bbe" }, - React.createElement(ReactXUIPopoverButton6, { x: 133 }), - React.createElement(ReactXUIPopoverButton6, { x: 141 }), - [React.createElement(Constructor49, { x: 142, key: "filterMenu/.0" }), React.createElement(Constructor49, { x: 143, key: "searchMenu/.0" })] + 'span', + {className: '_5b-l _5bbe'}, + React.createElement(ReactXUIPopoverButton6, {x: 133}), + React.createElement(ReactXUIPopoverButton6, {x: 141}), + [ + React.createElement(Constructor49, {x: 142, key: 'filterMenu/.0'}), + React.createElement(Constructor49, {x: 143, key: 'searchMenu/.0'}), + ] ); } }; - var AbstractCheckboxInput59 = function (props) { + var AbstractCheckboxInput59 = function(props) { if (props.x === 145) { return React.createElement( - "label", - { className: "uiInputLabelInput _55sg _kv1" }, - React.createElement("input", { checked: true, disabled: true, name: "filterUnpublished", value: "on", onClick: function () {}, className: null, id: "js_input_label_21", type: "checkbox" }), - React.createElement("span", { "data-hover": null, "data-tooltip-content": undefined }) + 'label', + {className: 'uiInputLabelInput _55sg _kv1'}, + React.createElement('input', { + checked: true, + disabled: true, + name: 'filterUnpublished', + value: 'on', + onClick: function() {}, + className: null, + id: 'js_input_label_21', + type: 'checkbox', + }), + React.createElement('span', { + 'data-hover': null, + 'data-tooltip-content': undefined, + }) ); } if (props.x === 336) { return React.createElement( - "label", - { className: "_4h2r _55sg _kv1" }, - React.createElement("input", { checked: undefined, onChange: function () {}, className: null, type: "checkbox" }), - React.createElement("span", { "data-hover": null, "data-tooltip-content": undefined }) + 'label', + {className: '_4h2r _55sg _kv1'}, + React.createElement('input', { + checked: undefined, + onChange: function() {}, + className: null, + type: 'checkbox', + }), + React.createElement('span', { + 'data-hover': null, + 'data-tooltip-content': undefined, + }) ); } }; - var XUICheckboxInput60 = function (props) { + var XUICheckboxInput60 = function(props) { if (props.x === 146) { - return React.createElement(AbstractCheckboxInput59, { x: 145 }); + return React.createElement(AbstractCheckboxInput59, {x: 145}); } if (props.x === 337) { - return React.createElement(AbstractCheckboxInput59, { x: 336 }); + return React.createElement(AbstractCheckboxInput59, {x: 336}); } }; - var InputLabel61 = function (props) { + var InputLabel61 = function(props) { if (props.x === 147) { return React.createElement( - "div", - { display: "block", className: "uiInputLabel clearfix" }, - React.createElement(XUICheckboxInput60, { x: 146 }), + 'div', + {display: 'block', className: 'uiInputLabel clearfix'}, + React.createElement(XUICheckboxInput60, {x: 146}), React.createElement( - "label", - { className: "uiInputLabelLabel", htmlFor: "js_input_label_21" }, - "Always show new items" + 'label', + {className: 'uiInputLabelLabel', htmlFor: 'js_input_label_21'}, + 'Always show new items' ) ); } }; - var AdsPopoverLink62 = function (props) { + var AdsPopoverLink62 = function(props) { if (props.x === 154) { return React.createElement( - "span", + 'span', null, React.createElement( - "span", - { onMouseEnter: function () {}, onMouseLeave: function () {}, onMouseUp: undefined }, - React.createElement("span", { className: "_3o_j" }), - React.createElement(ReactImage0, { x: 153 }) + 'span', + { + onMouseEnter: function() {}, + onMouseLeave: function() {}, + onMouseUp: undefined, + }, + React.createElement('span', {className: '_3o_j'}), + React.createElement(ReactImage0, {x: 153}) ), null ); } if (props.x === 238) { return React.createElement( - "span", + 'span', null, React.createElement( - "span", - { onMouseEnter: function () {}, onMouseLeave: function () {}, onMouseUp: undefined }, - React.createElement("span", { className: "_3o_j" }), - React.createElement(ReactImage0, { x: 237 }) + 'span', + { + onMouseEnter: function() {}, + onMouseLeave: function() {}, + onMouseUp: undefined, + }, + React.createElement('span', {className: '_3o_j'}), + React.createElement(ReactImage0, {x: 237}) ), null ); } }; - var AdsHelpLink63 = function (props) { + var AdsHelpLink63 = function(props) { if (props.x === 155) { - return React.createElement(AdsPopoverLink62, { x: 154 }); + return React.createElement(AdsPopoverLink62, {x: 154}); } if (props.x === 239) { - return React.createElement(AdsPopoverLink62, { x: 238 }); + return React.createElement(AdsPopoverLink62, {x: 238}); } }; - var BUIFilterTokenInput64 = function (props) { + var BUIFilterTokenInput64 = function(props) { if (props.x === 158) { return React.createElement( - "div", - { className: "_5b5o _3yz3 _4cld" }, + 'div', + {className: '_5b5o _3yz3 _4cld'}, React.createElement( - "div", - { className: "_5b5t _2d2k" }, - React.createElement(ReactImage0, { x: 152 }), + 'div', + {className: '_5b5t _2d2k'}, + React.createElement(ReactImage0, {x: 152}), React.createElement( - "div", - { className: "_5b5r" }, - "Campaigns: (1)", - React.createElement(AdsHelpLink63, { x: 155 }) + 'div', + {className: '_5b5r'}, + 'Campaigns: (1)', + React.createElement(AdsHelpLink63, {x: 155}) ) ), - React.createElement(XUIButton4, { x: 157 }) + React.createElement(XUIButton4, {x: 157}) ); } }; - var BUIFilterToken65 = function (props) { + var BUIFilterToken65 = function(props) { if (props.x === 159) { return React.createElement( - "div", - { className: "_3yz1 _3yz2 _3dad" }, + 'div', + {className: '_3yz1 _3yz2 _3dad'}, React.createElement( - "div", - { className: "_3yz4", "aria-hidden": false }, + 'div', + {className: '_3yz4', 'aria-hidden': false}, React.createElement( - "div", - { onClick: function () {}, className: "_3yz5" }, - React.createElement(ReactImage0, { x: 148 }), + 'div', + {onClick: function() {}, className: '_3yz5'}, + React.createElement(ReactImage0, {x: 148}), + React.createElement('div', {className: '_3yz7'}, 'Campaigns:'), React.createElement( - "div", - { className: "_3yz7" }, - "Campaigns:" - ), - React.createElement( - "div", - { className: "ellipsis _3yz8", "data-hover": "tooltip", "data-tooltip-display": "overflow" }, - "(1)" + 'div', + { + className: 'ellipsis _3yz8', + 'data-hover': 'tooltip', + 'data-tooltip-display': 'overflow', + }, + '(1)' ) ), null, - React.createElement(XUICloseButton28, { x: 151 }) + React.createElement(XUICloseButton28, {x: 151}) ), - React.createElement(BUIFilterTokenInput64, { x: 158 }) + React.createElement(BUIFilterTokenInput64, {x: 158}) ); } }; - var BUIFilterTokenCreateButton66 = function (props) { + var BUIFilterTokenCreateButton66 = function(props) { if (props.x === 163) { return React.createElement( - "div", - { className: "_1tc" }, - React.createElement(XUIButton4, { x: 162 }) + 'div', + {className: '_1tc'}, + React.createElement(XUIButton4, {x: 162}) ); } }; - var BUIFilterTokenizer67 = function (props) { + var BUIFilterTokenizer67 = function(props) { if (props.x === 164) { return React.createElement( - "div", - { className: "_5b-m clearfix" }, + 'div', + {className: '_5b-m clearfix'}, undefined, [], - React.createElement(BUIFilterToken65, { x: 159, key: "token0" }), - React.createElement(BUIFilterTokenCreateButton66, { x: 163 }), + React.createElement(BUIFilterToken65, {x: 159, key: 'token0'}), + React.createElement(BUIFilterTokenCreateButton66, {x: 163}), null, - React.createElement("div", { className: "_49u3" }) + React.createElement('div', {className: '_49u3'}) ); } }; - var XUIAmbientNUX68 = function (props) { + var XUIAmbientNUX68 = function(props) { if (props.x === 165) { return null; } @@ -1511,178 +1924,190 @@ } }; - var XUIAmbientNUX69 = function (props) { + var XUIAmbientNUX69 = function(props) { if (props.x === 166) { - return React.createElement(XUIAmbientNUX68, { x: 165 }); + return React.createElement(XUIAmbientNUX68, {x: 165}); } if (props.x === 190) { - return React.createElement(XUIAmbientNUX68, { x: 189 }); + return React.createElement(XUIAmbientNUX68, {x: 189}); } if (props.x === 201) { - return React.createElement(XUIAmbientNUX68, { x: 200 }); + return React.createElement(XUIAmbientNUX68, {x: 200}); } }; - var AdsPEAmbientNUXMegaphone70 = function (props) { + var AdsPEAmbientNUXMegaphone70 = function(props) { if (props.x === 167) { return React.createElement( - "span", + 'span', null, - React.createElement("span", { }), - React.createElement(XUIAmbientNUX69, { x: 166, key: "nux" }) + React.createElement('span', {}), + React.createElement(XUIAmbientNUX69, {x: 166, key: 'nux'}) ); } }; - var AdsPEFilters71 = function (props) { + var AdsPEFilters71 = function(props) { if (props.x === 168) { return React.createElement( - "div", - { className: "_4rw_" }, - React.createElement(AdsPEFiltersPopover58, { x: 144 }), + 'div', + {className: '_4rw_'}, + React.createElement(AdsPEFiltersPopover58, {x: 144}), React.createElement( - "div", - { className: "_1eo" }, - React.createElement(InputLabel61, { x: 147 }) + 'div', + {className: '_1eo'}, + React.createElement(InputLabel61, {x: 147}) ), - React.createElement(BUIFilterTokenizer67, { x: 164 }), - "", - React.createElement(AdsPEAmbientNUXMegaphone70, { x: 167 }) + React.createElement(BUIFilterTokenizer67, {x: 164}), + '', + React.createElement(AdsPEAmbientNUXMegaphone70, {x: 167}) ); } }; - var AdsPEFilterContainer72 = function (props) { + var AdsPEFilterContainer72 = function(props) { if (props.x === 169) { - return React.createElement(AdsPEFilters71, { x: 168 }); + return React.createElement(AdsPEFilters71, {x: 168}); } }; - var AdsPETablePager73 = function (props) { + var AdsPETablePager73 = function(props) { if (props.x === 172) { return null; } }; - var AdsPECampaignGroupTablePagerContainer74 = function (props) { + var AdsPECampaignGroupTablePagerContainer74 = function(props) { if (props.x === 173) { - return React.createElement(AdsPETablePager73, { x: 172 }); + return React.createElement(AdsPETablePager73, {x: 172}); } }; - var AdsPETablePagerContainer75 = function (props) { + var AdsPETablePagerContainer75 = function(props) { if (props.x === 174) { - return React.createElement(AdsPECampaignGroupTablePagerContainer74, { x: 173 }); + return React.createElement(AdsPECampaignGroupTablePagerContainer74, { + x: 173, + }); } }; - var ReactXUIError76 = function (props) { + var ReactXUIError76 = function(props) { if (props.x === 181) { - return React.createElement(AbstractButton3, { x: 180 }); + return React.createElement(AbstractButton3, {x: 180}); } if (props.x === 216) { return React.createElement( - "div", - { className: "_40bf _2vl4 _1h18" }, + 'div', + {className: '_40bf _2vl4 _1h18'}, null, null, React.createElement( - "div", - { className: "_2vl9 _1h1f", style: { "backgroundColor": "#fff" } }, + 'div', + {className: '_2vl9 _1h1f', style: {backgroundColor: '#fff'}}, React.createElement( - "div", - { className: "_2vla _1h1g" }, + 'div', + {className: '_2vla _1h1g'}, React.createElement( - "div", + 'div', null, null, - React.createElement("textarea", { className: "_2vli _2vlj _1h26 _1h27", dir: "auto", disabled: undefined, id: undefined, maxLength: null, value: "Test Campaign", onBlur: function () {}, onChange: function () {}, onFocus: function () {}, onKeyDown: function () {} }), + React.createElement('textarea', { + className: '_2vli _2vlj _1h26 _1h27', + dir: 'auto', + disabled: undefined, + id: undefined, + maxLength: null, + value: 'Test Campaign', + onBlur: function() {}, + onChange: function() {}, + onFocus: function() {}, + onKeyDown: function() {}, + }), null ), - React.createElement("div", { "aria-hidden": "true", className: "_2vlk" }) + React.createElement('div', { + 'aria-hidden': 'true', + className: '_2vlk', + }) ) ), null ); } if (props.x === 221) { - return React.createElement(XUICard94, { x: 220 }); + return React.createElement(XUICard94, {x: 220}); } if (props.x === 250) { - return React.createElement(XUICard94, { x: 249 }); + return React.createElement(XUICard94, {x: 249}); } if (props.x === 280) { - return React.createElement(XUICard94, { x: 279 }); + return React.createElement(XUICard94, {x: 279}); } }; - var BUIPopoverButton77 = function (props) { + var BUIPopoverButton77 = function(props) { if (props.x === 182) { - return React.createElement(ReactXUIError76, { x: 181 }); + return React.createElement(ReactXUIError76, {x: 181}); } }; - var BUIDateRangePicker78 = function (props) { + var BUIDateRangePicker78 = function(props) { if (props.x === 184) { return React.createElement( - "span", + 'span', null, - React.createElement(BUIPopoverButton77, { x: 182 }), - [React.createElement(Constructor49, { x: 183, key: "layer/.0" })] + React.createElement(BUIPopoverButton77, {x: 182}), + [React.createElement(Constructor49, {x: 183, key: 'layer/.0'})] ); } }; - var AdsPEStatsRangePicker79 = function (props) { + var AdsPEStatsRangePicker79 = function(props) { if (props.x === 185) { - return React.createElement(BUIDateRangePicker78, { x: 184 }); + return React.createElement(BUIDateRangePicker78, {x: 184}); } }; - var AdsPEStatRange80 = function (props) { + var AdsPEStatRange80 = function(props) { if (props.x === 191) { return React.createElement( - "div", - { className: "_3c5k" }, + 'div', + {className: '_3c5k'}, + React.createElement('span', {className: '_3c5j'}, 'Stats:'), React.createElement( - "span", - { className: "_3c5j" }, - "Stats:" + 'span', + {className: '_3c5l'}, + React.createElement(AdsPEStatsRangePicker79, {x: 185}), + React.createElement(XUIButton4, {x: 188, key: 'settings'}) ), - React.createElement( - "span", - { className: "_3c5l" }, - React.createElement(AdsPEStatsRangePicker79, { x: 185 }), - React.createElement(XUIButton4, { x: 188, key: "settings" }) - ), - [React.createElement(XUIAmbientNUX69, { x: 190, key: "roasNUX/.0" })] + [React.createElement(XUIAmbientNUX69, {x: 190, key: 'roasNUX/.0'})] ); } }; - var AdsPEStatRangeContainer81 = function (props) { + var AdsPEStatRangeContainer81 = function(props) { if (props.x === 192) { - return React.createElement(AdsPEStatRange80, { x: 191 }); + return React.createElement(AdsPEStatRange80, {x: 191}); } }; - var AdsPESideTrayTabButton82 = function (props) { + var AdsPESideTrayTabButton82 = function(props) { if (props.x === 196) { return React.createElement( - "div", - { className: "_1-ly _59j9 _d9a", onClick: function () {} }, - React.createElement(ReactImage0, { x: 195 }), - React.createElement("div", { className: "_vf7" }), - React.createElement("div", { className: "_vf8" }) + 'div', + {className: '_1-ly _59j9 _d9a', onClick: function() {}}, + React.createElement(ReactImage0, {x: 195}), + React.createElement('div', {className: '_vf7'}), + React.createElement('div', {className: '_vf8'}) ); } if (props.x === 199) { return React.createElement( - "div", - { className: " _1-lz _d9a", onClick: function () {} }, - React.createElement(ReactImage0, { x: 198 }), - React.createElement("div", { className: "_vf7" }), - React.createElement("div", { className: "_vf8" }) + 'div', + {className: ' _1-lz _d9a', onClick: function() {}}, + React.createElement(ReactImage0, {x: 198}), + React.createElement('div', {className: '_vf7'}), + React.createElement('div', {className: '_vf8'}) ); } if (props.x === 203) { @@ -1690,115 +2115,118 @@ } }; - var AdsPEEditorTrayTabButton83 = function (props) { + var AdsPEEditorTrayTabButton83 = function(props) { if (props.x === 197) { - return React.createElement(AdsPESideTrayTabButton82, { x: 196 }); + return React.createElement(AdsPESideTrayTabButton82, {x: 196}); } }; - var AdsPEInsightsTrayTabButton84 = function (props) { + var AdsPEInsightsTrayTabButton84 = function(props) { if (props.x === 202) { return React.createElement( - "span", + 'span', null, - React.createElement(AdsPESideTrayTabButton82, { x: 199 }), - React.createElement(XUIAmbientNUX69, { x: 201, key: "roasNUX" }) + React.createElement(AdsPESideTrayTabButton82, {x: 199}), + React.createElement(XUIAmbientNUX69, {x: 201, key: 'roasNUX'}) ); } }; - var AdsPENekoDebuggerTrayTabButton85 = function (props) { + var AdsPENekoDebuggerTrayTabButton85 = function(props) { if (props.x === 204) { - return React.createElement(AdsPESideTrayTabButton82, { x: 203 }); + return React.createElement(AdsPESideTrayTabButton82, {x: 203}); } }; - var AdsPEEditorChildLink86 = function (props) { + var AdsPEEditorChildLink86 = function(props) { if (props.x === 211) { return React.createElement( - "div", - { className: "_3ywr" }, - React.createElement(Link2, { x: 208 }), - React.createElement( - "span", - { className: "_3ywq" }, - "|" - ), - React.createElement(Link2, { x: 210 }) + 'div', + {className: '_3ywr'}, + React.createElement(Link2, {x: 208}), + React.createElement('span', {className: '_3ywq'}, '|'), + React.createElement(Link2, {x: 210}) ); } }; - var AdsPEEditorChildLinkContainer87 = function (props) { + var AdsPEEditorChildLinkContainer87 = function(props) { if (props.x === 212) { - return React.createElement(AdsPEEditorChildLink86, { x: 211 }); + return React.createElement(AdsPEEditorChildLink86, {x: 211}); } }; - var AdsPEHeaderSection88 = function (props) { + var AdsPEHeaderSection88 = function(props) { if (props.x === 213) { return React.createElement( - "div", - { className: "_yke" }, - React.createElement("div", { className: "_2x9d _pr-" }), - React.createElement(XUIText29, { x: 205 }), + 'div', + {className: '_yke'}, + React.createElement('div', {className: '_2x9d _pr-'}), + React.createElement(XUIText29, {x: 205}), React.createElement( - "div", - { className: "_3a-a" }, + 'div', + {className: '_3a-a'}, React.createElement( - "div", - { className: "_3a-b" }, - React.createElement(XUIText29, { x: 206 }) + 'div', + {className: '_3a-b'}, + React.createElement(XUIText29, {x: 206}) ) ), - React.createElement(AdsPEEditorChildLinkContainer87, { x: 212 }) + React.createElement(AdsPEEditorChildLinkContainer87, {x: 212}) ); } }; - var AdsPECampaignGroupHeaderSectionContainer89 = function (props) { + var AdsPECampaignGroupHeaderSectionContainer89 = function(props) { if (props.x === 214) { - return React.createElement(AdsPEHeaderSection88, { x: 213 }); + return React.createElement(AdsPEHeaderSection88, {x: 213}); } }; - var AdsEditorLoadingErrors90 = function (props) { + var AdsEditorLoadingErrors90 = function(props) { if (props.x === 215) { return null; } }; - var AdsTextInput91 = function (props) { + var AdsTextInput91 = function(props) { if (props.x === 217) { - return React.createElement(ReactXUIError76, { x: 216 }); + return React.createElement(ReactXUIError76, {x: 216}); } }; - var BUIFormElement92 = function (props) { + var BUIFormElement92 = function(props) { if (props.x === 218) { return React.createElement( - "div", - { className: "_5521 clearfix" }, + 'div', + {className: '_5521 clearfix'}, React.createElement( - "div", - { className: "_5522 _3w5q" }, + 'div', + {className: '_5522 _3w5q'}, React.createElement( - "label", - { onClick: undefined, htmlFor: "1467872040612:1961945894", className: "_5523 _3w5r" }, - "Campaign Name", + 'label', + { + onClick: undefined, + htmlFor: '1467872040612:1961945894', + className: '_5523 _3w5r', + }, + 'Campaign Name', null ) ), React.createElement( - "div", - { className: "_5527" }, + 'div', + {className: '_5527'}, React.createElement( - "div", - { className: "_5528" }, + 'div', + {className: '_5528'}, React.createElement( - "span", - { key: ".0", className: "_40bg", id: "1467872040612:1961945894" }, - React.createElement(AdsTextInput91, { x: 217, key: "nameEditor98010048849317" }), + 'span', + {key: '.0', className: '_40bg', id: '1467872040612:1961945894'}, + React.createElement(AdsTextInput91, { + x: 217, + key: 'nameEditor98010048849317', + }), null ) ), @@ -1808,141 +2236,152 @@ } }; - var BUIForm93 = function (props) { + var BUIForm93 = function(props) { if (props.x === 219) { return React.createElement( - "div", - { className: "_5ks1 _550r _550t _550y _3w5n" }, - React.createElement(BUIFormElement92, { x: 218, key: ".0" }) + 'div', + {className: '_5ks1 _550r _550t _550y _3w5n'}, + React.createElement(BUIFormElement92, {x: 218, key: '.0'}) ); } }; - var XUICard94 = function (props) { + var XUICard94 = function(props) { if (props.x === 220) { return React.createElement( - "div", - { className: "_40bc _12k2 _4-u2 _4-u8" }, - React.createElement(BUIForm93, { x: 219 }) + 'div', + {className: '_40bc _12k2 _4-u2 _4-u8'}, + React.createElement(BUIForm93, {x: 219}) ); } if (props.x === 249) { return React.createElement( - "div", - { className: "_12k2 _4-u2 _4-u8" }, - React.createElement(AdsCardHeader103, { x: 230 }), - React.createElement(AdsCardSection108, { x: 248 }) + 'div', + {className: '_12k2 _4-u2 _4-u8'}, + React.createElement(AdsCardHeader103, {x: 230}), + React.createElement(AdsCardSection108, {x: 248}) ); } if (props.x === 279) { return React.createElement( - "div", - { className: "_12k2 _4-u2 _4-u8" }, - React.createElement(AdsCardLeftRightHeader122, { x: 278 }) + 'div', + {className: '_12k2 _4-u2 _4-u8'}, + React.createElement(AdsCardLeftRightHeader122, {x: 278}) ); } }; - var AdsCard95 = function (props) { + var AdsCard95 = function(props) { if (props.x === 222) { - return React.createElement(ReactXUIError76, { x: 221 }); + return React.createElement(ReactXUIError76, {x: 221}); } if (props.x === 251) { - return React.createElement(ReactXUIError76, { x: 250 }); + return React.createElement(ReactXUIError76, {x: 250}); } if (props.x === 281) { - return React.createElement(ReactXUIError76, { x: 280 }); + return React.createElement(ReactXUIError76, {x: 280}); } }; - var AdsEditorNameSection96 = function (props) { + var AdsEditorNameSection96 = function(props) { if (props.x === 223) { - return React.createElement(AdsCard95, { x: 222 }); + return React.createElement(AdsCard95, {x: 222}); } }; - var AdsCampaignGroupNameSectionContainer97 = function (props) { + var AdsCampaignGroupNameSectionContainer97 = function(props) { if (props.x === 224) { - return React.createElement(AdsEditorNameSection96, { x: 223, key: "nameSection98010048849317" }); + return React.createElement(AdsEditorNameSection96, { + x: 223, + key: 'nameSection98010048849317', + }); } }; - var _render98 = function (props) { + var _render98 = function(props) { if (props.x === 225) { - return React.createElement(AdsCampaignGroupNameSectionContainer97, { x: 224 }); + return React.createElement(AdsCampaignGroupNameSectionContainer97, { + x: 224, + }); } }; - var AdsPluginWrapper99 = function (props) { + var AdsPluginWrapper99 = function(props) { if (props.x === 226) { - return React.createElement(_render98, { x: 225 }); + return React.createElement(_render98, {x: 225}); } if (props.x === 255) { - return React.createElement(_render111, { x: 254 }); + return React.createElement(_render111, {x: 254}); } if (props.x === 258) { - return React.createElement(_render113, { x: 257 }); + return React.createElement(_render113, {x: 257}); } if (props.x === 287) { - return React.createElement(_render127, { x: 286 }); + return React.createElement(_render127, {x: 286}); } if (props.x === 291) { - return React.createElement(_render130, { x: 290 }); + return React.createElement(_render130, {x: 290}); } }; - var XUICardHeaderTitle100 = function (props) { + var XUICardHeaderTitle100 = function(props) { if (props.x === 227) { return React.createElement( - "span", - { className: "_38my" }, - "Campaign Details", + 'span', + {className: '_38my'}, + 'Campaign Details', null, - React.createElement("span", { className: "_c1c" }) + React.createElement('span', {className: '_c1c'}) ); } if (props.x === 265) { return React.createElement( - "span", - { className: "_38my" }, - [React.createElement( - "span", - { key: 1 }, - "Campaign ID", - ": ", - "98010048849317" - ), React.createElement( - "div", - { className: "_5lh9", key: 2 }, - React.createElement(FluxContainer_AdsCampaignGroupStatusSwitchContainer_119, { x: 264 }) - )], + 'span', + {className: '_38my'}, + [ + React.createElement( + 'span', + {key: 1}, + 'Campaign ID', + ': ', + '98010048849317' + ), + React.createElement( + 'div', + {className: '_5lh9', key: 2}, + React.createElement( + FluxContainer_AdsCampaignGroupStatusSwitchContainer_119, + {x: 264} + ) + ), + ], null, - React.createElement("span", { className: "_c1c" }) + React.createElement('span', {className: '_c1c'}) ); } }; - var XUICardSection101 = function (props) { + var XUICardSection101 = function(props) { if (props.x === 228) { return React.createElement( - "div", - { className: "_5dw9 _5dwa _4-u3" }, - [React.createElement(XUICardHeaderTitle100, { x: 227, key: ".0" })], + 'div', + {className: '_5dw9 _5dwa _4-u3'}, + [React.createElement(XUICardHeaderTitle100, {x: 227, key: '.0'})], undefined, undefined, - React.createElement("div", { className: "_3s3-" }) + React.createElement('div', {className: '_3s3-'}) ); } if (props.x === 247) { return React.createElement( - "div", - { className: "_12jy _4-u3" }, + 'div', + {className: '_12jy _4-u3'}, React.createElement( - "div", - { className: "_3-8j" }, - React.createElement(FlexibleBlock105, { x: 233 }), - React.createElement(FlexibleBlock105, { x: 236 }), - React.createElement(FlexibleBlock105, { x: 246 }), + 'div', + {className: '_3-8j'}, + React.createElement(FlexibleBlock105, {x: 233}), + React.createElement(FlexibleBlock105, {x: 236}), + React.createElement(FlexibleBlock105, {x: 246}), null, null ) @@ -1950,314 +2389,362 @@ } }; - var XUICardHeader102 = function (props) { + var XUICardHeader102 = function(props) { if (props.x === 229) { - return React.createElement(XUICardSection101, { x: 228 }); + return React.createElement(XUICardSection101, {x: 228}); } }; - var AdsCardHeader103 = function (props) { + var AdsCardHeader103 = function(props) { if (props.x === 230) { - return React.createElement(XUICardHeader102, { x: 229 }); + return React.createElement(XUICardHeader102, {x: 229}); } }; - var AdsLabeledField104 = function (props) { + var AdsLabeledField104 = function(props) { if (props.x === 231) { return React.createElement( - "div", - { className: "_2oc6 _3bvz", label: "Objective" }, + 'div', + {className: '_2oc6 _3bvz', label: 'Objective'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Objective " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Objective ' ), null, - React.createElement("div", { className: "_3bv-" }) + React.createElement('div', {className: '_3bv-'}) ); } if (props.x === 234) { return React.createElement( - "div", - { className: "_2oc6 _3bvz", label: "Buying Type" }, + 'div', + {className: '_2oc6 _3bvz', label: 'Buying Type'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Buying Type " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Buying Type ' ), null, - React.createElement("div", { className: "_3bv-" }) + React.createElement('div', {className: '_3bv-'}) ); } if (props.x === 240) { return React.createElement( - "div", - { className: "_2oc6 _3bvz" }, + 'div', + {className: '_2oc6 _3bvz'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Campaign Spending Limit " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Campaign Spending Limit ' ), - React.createElement(AdsHelpLink63, { x: 239 }), - React.createElement("div", { className: "_3bv-" }) + React.createElement(AdsHelpLink63, {x: 239}), + React.createElement('div', {className: '_3bv-'}) ); } }; - var FlexibleBlock105 = function (props) { + var FlexibleBlock105 = function(props) { if (props.x === 233) { - return React.createElement(LeftRight21, { x: 232 }); + return React.createElement(LeftRight21, {x: 232}); } if (props.x === 236) { - return React.createElement(LeftRight21, { x: 235 }); + return React.createElement(LeftRight21, {x: 235}); } if (props.x === 246) { - return React.createElement(LeftRight21, { x: 245 }); + return React.createElement(LeftRight21, {x: 245}); } }; - var AdsBulkCampaignSpendCapField106 = function (props) { + var AdsBulkCampaignSpendCapField106 = function(props) { if (props.x === 243) { return React.createElement( - "div", - { className: "_33dv" }, - "", - React.createElement(Link2, { x: 242 }), - " (optional)" + 'div', + {className: '_33dv'}, + '', + React.createElement(Link2, {x: 242}), + ' (optional)' ); } }; - var FluxContainer_AdsCampaignGroupSpendCapContainer_107 = function (props) { + var FluxContainer_AdsCampaignGroupSpendCapContainer_107 = function(props) { if (props.x === 244) { - return React.createElement(AdsBulkCampaignSpendCapField106, { x: 243 }); + return React.createElement(AdsBulkCampaignSpendCapField106, {x: 243}); } }; - var AdsCardSection108 = function (props) { + var AdsCardSection108 = function(props) { if (props.x === 248) { - return React.createElement(XUICardSection101, { x: 247 }); + return React.createElement(XUICardSection101, {x: 247}); } }; - var AdsEditorCampaignGroupDetailsSection109 = function (props) { + var AdsEditorCampaignGroupDetailsSection109 = function(props) { if (props.x === 252) { - return React.createElement(AdsCard95, { x: 251 }); + return React.createElement(AdsCard95, {x: 251}); } }; - var AdsEditorCampaignGroupDetailsSectionContainer110 = function (props) { + var AdsEditorCampaignGroupDetailsSectionContainer110 = function(props) { if (props.x === 253) { - return React.createElement(AdsEditorCampaignGroupDetailsSection109, { x: 252, key: "campaignGroupDetailsSection98010048849317" }); + return React.createElement(AdsEditorCampaignGroupDetailsSection109, { + x: 252, + key: 'campaignGroupDetailsSection98010048849317', + }); } }; - var _render111 = function (props) { + var _render111 = function(props) { if (props.x === 254) { - return React.createElement(AdsEditorCampaignGroupDetailsSectionContainer110, { x: 253 }); + return React.createElement( + AdsEditorCampaignGroupDetailsSectionContainer110, + {x: 253} + ); } }; - var FluxContainer_AdsEditorToplineDetailsSectionContainer_112 = function (props) { + var FluxContainer_AdsEditorToplineDetailsSectionContainer_112 = function( + props + ) { if (props.x === 256) { return null; } }; - var _render113 = function (props) { + var _render113 = function(props) { if (props.x === 257) { - return React.createElement(FluxContainer_AdsEditorToplineDetailsSectionContainer_112, { x: 256 }); + return React.createElement( + FluxContainer_AdsEditorToplineDetailsSectionContainer_112, + {x: 256} + ); } }; - var AdsStickyArea114 = function (props) { + var AdsStickyArea114 = function(props) { if (props.x === 259) { return React.createElement( - "div", - { }, - React.createElement("div", { onWheel: function () {} }) + 'div', + {}, + React.createElement('div', {onWheel: function() {}}) ); } if (props.x === 292) { return React.createElement( - "div", - { }, - React.createElement( - "div", - { onWheel: function () {} }, - [React.createElement( - "div", - { key: "campaign_group_errors_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 291 }) - )] - ) + 'div', + {}, + React.createElement('div', {onWheel: function() {}}, [ + React.createElement( + 'div', + {key: 'campaign_group_errors_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 291}) + ), + ]) ); } }; - var FluxContainer_AdsEditorColumnContainer_115 = function (props) { + var FluxContainer_AdsEditorColumnContainer_115 = function(props) { if (props.x === 260) { return React.createElement( - "div", + 'div', null, - [React.createElement( - "div", - { key: "campaign_group_name_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 226 }) - ), React.createElement( - "div", - { key: "campaign_group_basic_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 255 }) - ), React.createElement( - "div", - { key: "campaign_group_topline_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 258 }) - )], - React.createElement(AdsStickyArea114, { x: 259 }) + [ + React.createElement( + 'div', + {key: 'campaign_group_name_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 226}) + ), + React.createElement( + 'div', + {key: 'campaign_group_basic_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 255}) + ), + React.createElement( + 'div', + {key: 'campaign_group_topline_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 258}) + ), + ], + React.createElement(AdsStickyArea114, {x: 259}) ); } if (props.x === 293) { return React.createElement( - "div", + 'div', null, - [React.createElement( - "div", - { key: "campaign_group_navigation_section98010048849317" }, - React.createElement(AdsPluginWrapper99, { x: 287 }) - )], - React.createElement(AdsStickyArea114, { x: 292 }) + [ + React.createElement( + 'div', + {key: 'campaign_group_navigation_section98010048849317'}, + React.createElement(AdsPluginWrapper99, {x: 287}) + ), + ], + React.createElement(AdsStickyArea114, {x: 292}) ); } }; - var BUISwitch116 = function (props) { + var BUISwitch116 = function(props) { if (props.x === 261) { return React.createElement( - "div", - { "data-hover": "tooltip", "data-tooltip-content": "Currently active. Click this switch to deactivate it.", "data-tooltip-position": "below", disabled: false, value: true, onToggle: function () {}, className: "_128j _128k _128n", role: "checkbox", "aria-checked": "true" }, - React.createElement( - "div", - { className: "_128o", onClick: function () {}, onKeyDown: function () {}, onMouseDown: function () {}, tabIndex: "0" }, - React.createElement("div", { className: "_128p" }) + 'div', + { + 'data-hover': 'tooltip', + 'data-tooltip-content': + 'Currently active. Click this switch to deactivate it.', + 'data-tooltip-position': 'below', + disabled: false, + value: true, + onToggle: function() {}, + className: '_128j _128k _128n', + role: 'checkbox', + 'aria-checked': 'true', + }, + React.createElement( + 'div', + { + className: '_128o', + onClick: function() {}, + onKeyDown: function() {}, + onMouseDown: function() {}, + tabIndex: '0', + }, + React.createElement('div', {className: '_128p'}) ), null ); } }; - var AdsStatusSwitchInternal117 = function (props) { + var AdsStatusSwitchInternal117 = function(props) { if (props.x === 262) { - return React.createElement(BUISwitch116, { x: 261 }); + return React.createElement(BUISwitch116, {x: 261}); } }; - var AdsStatusSwitch118 = function (props) { + var AdsStatusSwitch118 = function(props) { if (props.x === 263) { - return React.createElement(AdsStatusSwitchInternal117, { x: 262 }); + return React.createElement(AdsStatusSwitchInternal117, {x: 262}); } }; - var FluxContainer_AdsCampaignGroupStatusSwitchContainer_119 = function (props) { + var FluxContainer_AdsCampaignGroupStatusSwitchContainer_119 = function( + props + ) { if (props.x === 264) { - return React.createElement(AdsStatusSwitch118, { x: 263, key: "status98010048849317" }); + return React.createElement(AdsStatusSwitch118, { + x: 263, + key: 'status98010048849317', + }); } }; - var AdsLinksMenu120 = function (props) { + var AdsLinksMenu120 = function(props) { if (props.x === 275) { - return React.createElement(ReactPopoverMenu20, { x: 274 }); + return React.createElement(ReactPopoverMenu20, {x: 274}); } }; - var FluxContainer_AdsPluginizedLinksMenuContainer_121 = function (props) { + var FluxContainer_AdsPluginizedLinksMenuContainer_121 = function(props) { if (props.x === 276) { return React.createElement( - "div", + 'div', null, null, - React.createElement(AdsLinksMenu120, { x: 275 }) + React.createElement(AdsLinksMenu120, {x: 275}) ); } }; - var AdsCardLeftRightHeader122 = function (props) { + var AdsCardLeftRightHeader122 = function(props) { if (props.x === 278) { - return React.createElement(LeftRight21, { x: 277 }); + return React.createElement(LeftRight21, {x: 277}); } }; - var AdsPEIDSection123 = function (props) { + var AdsPEIDSection123 = function(props) { if (props.x === 282) { - return React.createElement(AdsCard95, { x: 281 }); + return React.createElement(AdsCard95, {x: 281}); } }; - var FluxContainer_AdsPECampaignGroupIDSectionContainer_124 = function (props) { + var FluxContainer_AdsPECampaignGroupIDSectionContainer_124 = function(props) { if (props.x === 283) { - return React.createElement(AdsPEIDSection123, { x: 282 }); + return React.createElement(AdsPEIDSection123, {x: 282}); } }; - var DeferredComponent125 = function (props) { + var DeferredComponent125 = function(props) { if (props.x === 284) { - return React.createElement(FluxContainer_AdsPECampaignGroupIDSectionContainer_124, { x: 283 }); + return React.createElement( + FluxContainer_AdsPECampaignGroupIDSectionContainer_124, + {x: 283} + ); } }; - var BootloadedComponent126 = function (props) { + var BootloadedComponent126 = function(props) { if (props.x === 285) { - return React.createElement(DeferredComponent125, { x: 284 }); + return React.createElement(DeferredComponent125, {x: 284}); } }; - var _render127 = function (props) { + var _render127 = function(props) { if (props.x === 286) { - return React.createElement(BootloadedComponent126, { x: 285 }); + return React.createElement(BootloadedComponent126, {x: 285}); } }; - var AdsEditorErrorsCard128 = function (props) { + var AdsEditorErrorsCard128 = function(props) { if (props.x === 288) { return null; } }; - var FluxContainer_FunctionalContainer_129 = function (props) { + var FluxContainer_FunctionalContainer_129 = function(props) { if (props.x === 289) { - return React.createElement(AdsEditorErrorsCard128, { x: 288 }); + return React.createElement(AdsEditorErrorsCard128, {x: 288}); } }; - var _render130 = function (props) { + var _render130 = function(props) { if (props.x === 290) { - return React.createElement(FluxContainer_FunctionalContainer_129, { x: 289 }); + return React.createElement(FluxContainer_FunctionalContainer_129, { + x: 289, + }); } }; - var AdsEditorMultiColumnLayout131 = function (props) { + var AdsEditorMultiColumnLayout131 = function(props) { if (props.x === 294) { return React.createElement( - "div", - { className: "_psh" }, + 'div', + {className: '_psh'}, React.createElement( - "div", - { className: "_3cc0" }, + 'div', + {className: '_3cc0'}, React.createElement( - "div", + 'div', null, - React.createElement(AdsEditorLoadingErrors90, { x: 215, key: ".0" }), + React.createElement(AdsEditorLoadingErrors90, {x: 215, key: '.0'}), React.createElement( - "div", - { className: "_3ms3" }, + 'div', + {className: '_3ms3'}, React.createElement( - "div", - { className: "_3ms4" }, - React.createElement(FluxContainer_AdsEditorColumnContainer_115, { x: 260, key: ".1" }) + 'div', + {className: '_3ms4'}, + React.createElement( + FluxContainer_AdsEditorColumnContainer_115, + {x: 260, key: '.1'} + ) ), React.createElement( - "div", - { className: "_3pvg" }, - React.createElement(FluxContainer_AdsEditorColumnContainer_115, { x: 293, key: ".2" }) + 'div', + {className: '_3pvg'}, + React.createElement( + FluxContainer_AdsEditorColumnContainer_115, + {x: 293, key: '.2'} + ) ) ) ) @@ -2266,1932 +2753,2344 @@ } }; - var AdsPECampaignGroupEditor132 = function (props) { + var AdsPECampaignGroupEditor132 = function(props) { if (props.x === 295) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsPECampaignGroupHeaderSectionContainer89, { x: 214 }), - React.createElement(AdsEditorMultiColumnLayout131, { x: 294 }) + React.createElement(AdsPECampaignGroupHeaderSectionContainer89, { + x: 214, + }), + React.createElement(AdsEditorMultiColumnLayout131, {x: 294}) ); } }; - var AdsPECampaignGroupEditorContainer133 = function (props) { + var AdsPECampaignGroupEditorContainer133 = function(props) { if (props.x === 296) { - return React.createElement(AdsPECampaignGroupEditor132, { x: 295 }); + return React.createElement(AdsPECampaignGroupEditor132, {x: 295}); } }; - var AdsPESideTrayTabContent134 = function (props) { + var AdsPESideTrayTabContent134 = function(props) { if (props.x === 297) { return React.createElement( - "div", - { className: "_1o_8 _44ra _5cyn" }, - React.createElement(AdsPECampaignGroupEditorContainer133, { x: 296 }) + 'div', + {className: '_1o_8 _44ra _5cyn'}, + React.createElement(AdsPECampaignGroupEditorContainer133, {x: 296}) ); } }; - var AdsPEEditorTrayTabContentContainer135 = function (props) { + var AdsPEEditorTrayTabContentContainer135 = function(props) { if (props.x === 298) { - return React.createElement(AdsPESideTrayTabContent134, { x: 297 }); + return React.createElement(AdsPESideTrayTabContent134, {x: 297}); } }; - var AdsPEMultiTabDrawer136 = function (props) { + var AdsPEMultiTabDrawer136 = function(props) { if (props.x === 299) { return React.createElement( - "div", - { className: "_2kev _2kex" }, - React.createElement( - "div", - { className: "_5yno" }, - React.createElement(AdsPEEditorTrayTabButton83, { x: 197, key: "editor_tray_button" }), - React.createElement(AdsPEInsightsTrayTabButton84, { x: 202, key: "insights_tray_button" }), - React.createElement(AdsPENekoDebuggerTrayTabButton85, { x: 204, key: "neko_debugger_tray_button" }) + 'div', + {className: '_2kev _2kex'}, + React.createElement( + 'div', + {className: '_5yno'}, + React.createElement(AdsPEEditorTrayTabButton83, { + x: 197, + key: 'editor_tray_button', + }), + React.createElement(AdsPEInsightsTrayTabButton84, { + x: 202, + key: 'insights_tray_button', + }), + React.createElement(AdsPENekoDebuggerTrayTabButton85, { + x: 204, + key: 'neko_debugger_tray_button', + }) ), React.createElement( - "div", - { className: "_5ynn" }, - React.createElement(AdsPEEditorTrayTabContentContainer135, { x: 298, key: "EDITOR_DRAWER" }), + 'div', + {className: '_5ynn'}, + React.createElement(AdsPEEditorTrayTabContentContainer135, { + x: 298, + key: 'EDITOR_DRAWER', + }), null ) ); } }; - var FluxContainer_AdsPEMultiTabDrawerContainer_137 = function (props) { + var FluxContainer_AdsPEMultiTabDrawerContainer_137 = function(props) { if (props.x === 300) { - return React.createElement(AdsPEMultiTabDrawer136, { x: 299 }); + return React.createElement(AdsPEMultiTabDrawer136, {x: 299}); } }; - var AdsPESimpleOrganizer138 = function (props) { + var AdsPESimpleOrganizer138 = function(props) { if (props.x === 309) { return React.createElement( - "div", - { className: "_tm2" }, - React.createElement(XUIButton4, { x: 304 }), - React.createElement(XUIButton4, { x: 306 }), - React.createElement(XUIButton4, { x: 308 }) + 'div', + {className: '_tm2'}, + React.createElement(XUIButton4, {x: 304}), + React.createElement(XUIButton4, {x: 306}), + React.createElement(XUIButton4, {x: 308}) ); } }; - var AdsPEOrganizerContainer139 = function (props) { + var AdsPEOrganizerContainer139 = function(props) { if (props.x === 310) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsPESimpleOrganizer138, { x: 309 }) + React.createElement(AdsPESimpleOrganizer138, {x: 309}) ); } }; - var FixedDataTableColumnResizeHandle140 = function (props) { + var FixedDataTableColumnResizeHandle140 = function(props) { if (props.x === 313) { return React.createElement( - "div", - { className: "_3487 _3488 _3489", style: { "width": 0, "height": 25, "left": 0 } }, - React.createElement("div", { className: "_348a", style: { "height": 25 } }) + 'div', + { + className: '_3487 _3488 _3489', + style: {width: 0, height: 25, left: 0}, + }, + React.createElement('div', {className: '_348a', style: {height: 25}}) ); } }; - var AdsPETableHeader141 = function (props) { + var AdsPETableHeader141 = function(props) { if (props.x === 315) { return React.createElement( - "div", - { className: "_1cig _1ksv _1vd7 _4h2r", id: undefined }, - React.createElement(ReactImage0, { x: 314 }), - React.createElement( - "span", - { className: "_1cid" }, - "Campaigns" - ) + 'div', + {className: '_1cig _1ksv _1vd7 _4h2r', id: undefined}, + React.createElement(ReactImage0, {x: 314}), + React.createElement('span', {className: '_1cid'}, 'Campaigns') ); } if (props.x === 320) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Performance" - ) + React.createElement('span', {className: '_1cid'}, 'Performance') ); } if (props.x === 323) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Overview" - ) + React.createElement('span', {className: '_1cid'}, 'Overview') ); } if (props.x === 326) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Toplines" - ) + React.createElement('span', {className: '_1cid'}, 'Toplines') ); } if (props.x === 329) { - return React.createElement("div", { className: "_1cig _1vd7 _4h2r", id: undefined }); + return React.createElement('div', { + className: '_1cig _1vd7 _4h2r', + id: undefined, + }); } if (props.x === 340) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Campaign Name" - ) + React.createElement('span', {className: '_1cid'}, 'Campaign Name') ); } if (props.x === 346) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined, "data-tooltip-content": "Changed", "data-hover": "tooltip" }, - React.createElement(ReactImage0, { x: 345 }), + 'div', + { + className: '_1cig _25fg', + id: undefined, + 'data-tooltip-content': 'Changed', + 'data-hover': 'tooltip', + }, + React.createElement(ReactImage0, {x: 345}), null ); } if (props.x === 352) { return React.createElement( - "div", - { className: "_1cig _25fg", id: "ads_pe_table_error_header", "data-tooltip-content": "Errors", "data-hover": "tooltip" }, - React.createElement(ReactImage0, { x: 351 }), + 'div', + { + className: '_1cig _25fg', + id: 'ads_pe_table_error_header', + 'data-tooltip-content': 'Errors', + 'data-hover': 'tooltip', + }, + React.createElement(ReactImage0, {x: 351}), null ); } if (props.x === 357) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Status" - ) + React.createElement('span', {className: '_1cid'}, 'Status') ); } if (props.x === 362) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Delivery" - ) + React.createElement('span', {className: '_1cid'}, 'Delivery') ); } if (props.x === 369) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Results" - ) + React.createElement('span', {className: '_1cid'}, 'Results') ); } if (props.x === 374) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Cost" - ) + React.createElement('span', {className: '_1cid'}, 'Cost') ); } if (props.x === 379) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Reach" - ) + React.createElement('span', {className: '_1cid'}, 'Reach') ); } if (props.x === 384) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Impressions" - ) + React.createElement('span', {className: '_1cid'}, 'Impressions') ); } if (props.x === 389) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Clicks" - ) + React.createElement('span', {className: '_1cid'}, 'Clicks') ); } if (props.x === 394) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Avg. CPM" - ) + React.createElement('span', {className: '_1cid'}, 'Avg. CPM') ); } if (props.x === 399) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Avg. CPC" - ) + React.createElement('span', {className: '_1cid'}, 'Avg. CPC') ); } if (props.x === 404) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "CTR %" - ) + React.createElement('span', {className: '_1cid'}, 'CTR %') ); } if (props.x === 409) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Spent" - ) + React.createElement('span', {className: '_1cid'}, 'Spent') ); } if (props.x === 414) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Objective" - ) + React.createElement('span', {className: '_1cid'}, 'Objective') ); } if (props.x === 419) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Buying Type" - ) + React.createElement('span', {className: '_1cid'}, 'Buying Type') ); } if (props.x === 424) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Campaign ID" - ) + React.createElement('span', {className: '_1cid'}, 'Campaign ID') ); } if (props.x === 429) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Start" - ) + React.createElement('span', {className: '_1cid'}, 'Start') ); } if (props.x === 434) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "End" - ) + React.createElement('span', {className: '_1cid'}, 'End') ); } if (props.x === 439) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Date created" - ) + React.createElement('span', {className: '_1cid'}, 'Date created') ); } if (props.x === 444) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Date last edited" - ) + React.createElement('span', {className: '_1cid'}, 'Date last edited') ); } if (props.x === 449) { return React.createElement( - "div", - { className: "_1cig _25fg _4h2r", id: undefined }, + 'div', + {className: '_1cig _25fg _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Tags" - ) + React.createElement('span', {className: '_1cid'}, 'Tags') ); } if (props.x === 452) { - return React.createElement("div", { className: "_1cig _25fg _4h2r", id: undefined }); + return React.createElement('div', { + className: '_1cig _25fg _4h2r', + id: undefined, + }); } }; - var TransitionCell142 = function (props) { + var TransitionCell142 = function(props) { if (props.x === 316) { return React.createElement( - "div", - { label: "Campaigns", height: 40, width: 721, className: "_4lgc _4h2u", style: { "height": 40, "width": 721 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaigns', + height: 40, + width: 721, + className: '_4lgc _4h2u', + style: {height: 40, width: 721}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 315 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 315}) ) ) ); } if (props.x === 321) { return React.createElement( - "div", - { label: "Performance", height: 40, width: 798, className: "_4lgc _4h2u", style: { "height": 40, "width": 798 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Performance', + height: 40, + width: 798, + className: '_4lgc _4h2u', + style: {height: 40, width: 798}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 320 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 320}) ) ) ); } if (props.x === 324) { return React.createElement( - "div", - { label: "Overview", height: 40, width: 1022, className: "_4lgc _4h2u", style: { "height": 40, "width": 1022 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Overview', + height: 40, + width: 1022, + className: '_4lgc _4h2u', + style: {height: 40, width: 1022}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 323 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 323}) ) ) ); } if (props.x === 327) { return React.createElement( - "div", - { label: "Toplines", height: 40, width: 0, className: "_4lgc _4h2u", style: { "height": 40, "width": 0 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Toplines', + height: 40, + width: 0, + className: '_4lgc _4h2u', + style: {height: 40, width: 0}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 326 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 326}) ) ) ); } if (props.x === 330) { return React.createElement( - "div", - { label: "", height: 40, width: 25, className: "_4lgc _4h2u", style: { "height": 40, "width": 25 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: '', + height: 40, + width: 25, + className: '_4lgc _4h2u', + style: {height: 40, width: 25}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 329 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 329}) ) ) ); } if (props.x === 338) { return React.createElement( - "div", - { label: undefined, width: 42, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 42 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 42, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 42}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(XUICheckboxInput60, { x: 337 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(XUICheckboxInput60, {x: 337}) ) ) ); } if (props.x === 343) { return React.createElement( - "div", - { label: "Campaign Name", width: 400, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 400 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaign Name', + width: 400, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 400}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 342 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 342}) ) ) ); } if (props.x === 349) { return React.createElement( - "div", - { label: undefined, width: 33, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 33 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 33, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 33}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 348 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 348}) ) ) ); } if (props.x === 355) { return React.createElement( - "div", - { label: undefined, width: 36, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 36 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 36, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 36}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 354 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 354}) ) ) ); } if (props.x === 360) { return React.createElement( - "div", - { label: "Status", width: 60, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 60 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Status', + width: 60, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 60}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 359 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 359}) ) ) ); } if (props.x === 365) { return React.createElement( - "div", - { label: "Delivery", width: 150, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 150 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Delivery', + width: 150, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 150}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 364 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 364}) ) ) ); } if (props.x === 372) { return React.createElement( - "div", - { label: "Results", width: 140, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 140 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Results', + width: 140, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 140}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 371 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 371}) ) ) ); } if (props.x === 377) { return React.createElement( - "div", - { label: "Cost", width: 140, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 140 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Cost', + width: 140, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 140}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 376 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 376}) ) ) ); } if (props.x === 382) { return React.createElement( - "div", - { label: "Reach", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Reach', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 381 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 381}) ) ) ); } if (props.x === 387) { return React.createElement( - "div", - { label: "Impressions", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Impressions', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 386 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 386}) ) ) ); } if (props.x === 392) { return React.createElement( - "div", - { label: "Clicks", width: 60, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 60 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Clicks', + width: 60, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 60}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 391 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 391}) ) ) ); } if (props.x === 397) { return React.createElement( - "div", - { label: "Avg. CPM", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Avg. CPM', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 396 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 396}) ) ) ); } if (props.x === 402) { return React.createElement( - "div", - { label: "Avg. CPC", width: 78, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 78 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Avg. CPC', + width: 78, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 78}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 401 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 401}) ) ) ); } if (props.x === 407) { return React.createElement( - "div", - { label: "CTR %", width: 70, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 70 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'CTR %', + width: 70, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 70}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 406 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 406}) ) ) ); } if (props.x === 412) { return React.createElement( - "div", - { label: "Spent", width: 70, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 70 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Spent', + width: 70, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 70}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 411 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 411}) ) ) ); } if (props.x === 417) { return React.createElement( - "div", - { label: "Objective", width: 200, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 200 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Objective', + width: 200, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 200}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 416 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 416}) ) ) ); } if (props.x === 422) { return React.createElement( - "div", - { label: "Buying Type", width: 100, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 100 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Buying Type', + width: 100, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 100}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 421 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 421}) ) ) ); } if (props.x === 427) { return React.createElement( - "div", - { label: "Campaign ID", width: 120, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 120 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaign ID', + width: 120, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 120}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 426 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 426}) ) ) ); } if (props.x === 432) { return React.createElement( - "div", - { label: "Start", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Start', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 431 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 431}) ) ) ); } if (props.x === 437) { return React.createElement( - "div", - { label: "End", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'End', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 436 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 436}) ) ) ); } if (props.x === 442) { return React.createElement( - "div", - { label: "Date created", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Date created', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 441 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 441}) ) ) ); } if (props.x === 447) { return React.createElement( - "div", - { label: "Date last edited", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Date last edited', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(FixedDataTableSortableHeader149, { x: 446 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(FixedDataTableSortableHeader149, {x: 446}) ) ) ); } if (props.x === 450) { return React.createElement( - "div", - { label: "Tags", width: 150, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 150 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Tags', + width: 150, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 150}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 449 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 449}) ) ) ); } if (props.x === 453) { return React.createElement( - "div", - { label: "", width: 25, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 25 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: '', + width: 25, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 25}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, - React.createElement(AdsPETableHeader141, { x: 452 }) + 'div', + {className: '_4lge _4h2x'}, + React.createElement(AdsPETableHeader141, {x: 452}) ) ) ); } }; - var FixedDataTableCell143 = function (props) { + var FixedDataTableCell143 = function(props) { if (props.x === 317) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 721, "left": 0 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 721, left: 0}}, undefined, - React.createElement(TransitionCell142, { x: 316 }) + React.createElement(TransitionCell142, {x: 316}) ); } if (props.x === 322) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 798, "left": 0 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 798, left: 0}}, undefined, - React.createElement(TransitionCell142, { x: 321 }) + React.createElement(TransitionCell142, {x: 321}) ); } if (props.x === 325) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 1022, "left": 798 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 1022, left: 798}}, undefined, - React.createElement(TransitionCell142, { x: 324 }) + React.createElement(TransitionCell142, {x: 324}) ); } if (props.x === 328) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 0, "left": 1820 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 0, left: 1820}}, undefined, - React.createElement(TransitionCell142, { x: 327 }) + React.createElement(TransitionCell142, {x: 327}) ); } if (props.x === 331) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 25, "left": 1820 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 25, left: 1820}}, undefined, - React.createElement(TransitionCell142, { x: 330 }) + React.createElement(TransitionCell142, {x: 330}) ); } if (props.x === 339) { return React.createElement( - "div", - { className: "_4lg0 _4lg6 _4h2m", style: { "height": 25, "width": 42, "left": 0 } }, + 'div', + { + className: '_4lg0 _4lg6 _4h2m', + style: {height: 25, width: 42, left: 0}, + }, undefined, - React.createElement(TransitionCell142, { x: 338 }) + React.createElement(TransitionCell142, {x: 338}) ); } if (props.x === 344) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 400, "left": 42 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 400, left: 42}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 343 }) + React.createElement(TransitionCell142, {x: 343}) ); } if (props.x === 350) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 33, "left": 442 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 33, left: 442}}, undefined, - React.createElement(TransitionCell142, { x: 349 }) + React.createElement(TransitionCell142, {x: 349}) ); } if (props.x === 356) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 36, "left": 475 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 36, left: 475}}, undefined, - React.createElement(TransitionCell142, { x: 355 }) + React.createElement(TransitionCell142, {x: 355}) ); } if (props.x === 361) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 60, "left": 511 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 60, left: 511}}, undefined, - React.createElement(TransitionCell142, { x: 360 }) + React.createElement(TransitionCell142, {x: 360}) ); } if (props.x === 366) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 150, "left": 571 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 150, left: 571}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 365 }) + React.createElement(TransitionCell142, {x: 365}) ); } if (props.x === 373) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 140, "left": 0 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 140, left: 0}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 372 }) + React.createElement(TransitionCell142, {x: 372}) ); } if (props.x === 378) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 140, "left": 140 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 140, left: 140}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 377 }) + React.createElement(TransitionCell142, {x: 377}) ); } if (props.x === 383) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 280 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 280}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 382 }) + React.createElement(TransitionCell142, {x: 382}) ); } if (props.x === 388) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 360 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 360}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 387 }) + React.createElement(TransitionCell142, {x: 387}) ); } if (props.x === 393) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 60, "left": 440 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 60, left: 440}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 392 }) + React.createElement(TransitionCell142, {x: 392}) ); } if (props.x === 398) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 500 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 500}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 397 }) + React.createElement(TransitionCell142, {x: 397}) ); } if (props.x === 403) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 78, "left": 580 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 78, left: 580}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 402 }) + React.createElement(TransitionCell142, {x: 402}) ); } if (props.x === 408) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 70, "left": 658 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 70, left: 658}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 407 }) + React.createElement(TransitionCell142, {x: 407}) ); } if (props.x === 413) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 70, "left": 728 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 70, left: 728}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 412 }) + React.createElement(TransitionCell142, {x: 412}) ); } if (props.x === 418) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 200, "left": 798 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 200, left: 798}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 417 }) + React.createElement(TransitionCell142, {x: 417}) ); } if (props.x === 423) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 100, "left": 998 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 100, left: 998}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 422 }) + React.createElement(TransitionCell142, {x: 422}) ); } if (props.x === 428) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 120, "left": 1098 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 120, left: 1098}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 427 }) + React.createElement(TransitionCell142, {x: 427}) ); } if (props.x === 433) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1218 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1218}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 432 }) + React.createElement(TransitionCell142, {x: 432}) ); } if (props.x === 438) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1331 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1331}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 437 }) + React.createElement(TransitionCell142, {x: 437}) ); } if (props.x === 443) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1444 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1444}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 442 }) + React.createElement(TransitionCell142, {x: 442}) ); } if (props.x === 448) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1557 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1557}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 447 }) + React.createElement(TransitionCell142, {x: 447}) ); } if (props.x === 451) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 150, "left": 1670 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 150, left: 1670}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), - React.createElement(TransitionCell142, { x: 450 }) + React.createElement(TransitionCell142, {x: 450}) ); } if (props.x === 454) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 25, "left": 1820 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 25, left: 1820}}, undefined, - React.createElement(TransitionCell142, { x: 453 }) + React.createElement(TransitionCell142, {x: 453}) ); } }; - var FixedDataTableCellGroupImpl144 = function (props) { + var FixedDataTableCellGroupImpl144 = function(props) { if (props.x === 318) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 40, "position": "absolute", "width": 721, "zIndex": 2, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 317, key: "cell_0" }) + 'div', + { + className: '_3pzj', + style: { + height: 40, + position: 'absolute', + width: 721, + zIndex: 2, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 317, key: 'cell_0'}) ); } if (props.x === 332) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 40, "position": "absolute", "width": 1845, "zIndex": 0, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 322, key: "cell_0" }), - React.createElement(FixedDataTableCell143, { x: 325, key: "cell_1" }), - React.createElement(FixedDataTableCell143, { x: 328, key: "cell_2" }), - React.createElement(FixedDataTableCell143, { x: 331, key: "cell_3" }) + 'div', + { + className: '_3pzj', + style: { + height: 40, + position: 'absolute', + width: 1845, + zIndex: 0, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 322, key: 'cell_0'}), + React.createElement(FixedDataTableCell143, {x: 325, key: 'cell_1'}), + React.createElement(FixedDataTableCell143, {x: 328, key: 'cell_2'}), + React.createElement(FixedDataTableCell143, {x: 331, key: 'cell_3'}) ); } if (props.x === 367) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 25, "position": "absolute", "width": 721, "zIndex": 2, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 339, key: "cell_0" }), - React.createElement(FixedDataTableCell143, { x: 344, key: "cell_1" }), - React.createElement(FixedDataTableCell143, { x: 350, key: "cell_2" }), - React.createElement(FixedDataTableCell143, { x: 356, key: "cell_3" }), - React.createElement(FixedDataTableCell143, { x: 361, key: "cell_4" }), - React.createElement(FixedDataTableCell143, { x: 366, key: "cell_5" }) + 'div', + { + className: '_3pzj', + style: { + height: 25, + position: 'absolute', + width: 721, + zIndex: 2, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 339, key: 'cell_0'}), + React.createElement(FixedDataTableCell143, {x: 344, key: 'cell_1'}), + React.createElement(FixedDataTableCell143, {x: 350, key: 'cell_2'}), + React.createElement(FixedDataTableCell143, {x: 356, key: 'cell_3'}), + React.createElement(FixedDataTableCell143, {x: 361, key: 'cell_4'}), + React.createElement(FixedDataTableCell143, {x: 366, key: 'cell_5'}) ); } if (props.x === 455) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 25, "position": "absolute", "width": 1845, "zIndex": 0, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(FixedDataTableCell143, { x: 373, key: "cell_0" }), - React.createElement(FixedDataTableCell143, { x: 378, key: "cell_1" }), - React.createElement(FixedDataTableCell143, { x: 383, key: "cell_2" }), - React.createElement(FixedDataTableCell143, { x: 388, key: "cell_3" }), - React.createElement(FixedDataTableCell143, { x: 393, key: "cell_4" }), - React.createElement(FixedDataTableCell143, { x: 398, key: "cell_5" }), - React.createElement(FixedDataTableCell143, { x: 403, key: "cell_6" }), - React.createElement(FixedDataTableCell143, { x: 408, key: "cell_7" }), - React.createElement(FixedDataTableCell143, { x: 413, key: "cell_8" }), - React.createElement(FixedDataTableCell143, { x: 418, key: "cell_9" }), - React.createElement(FixedDataTableCell143, { x: 423, key: "cell_10" }), - React.createElement(FixedDataTableCell143, { x: 428, key: "cell_11" }), - React.createElement(FixedDataTableCell143, { x: 433, key: "cell_12" }), - React.createElement(FixedDataTableCell143, { x: 438, key: "cell_13" }), - React.createElement(FixedDataTableCell143, { x: 443, key: "cell_14" }), - React.createElement(FixedDataTableCell143, { x: 448, key: "cell_15" }), - React.createElement(FixedDataTableCell143, { x: 451, key: "cell_16" }), - React.createElement(FixedDataTableCell143, { x: 454, key: "cell_17" }) - ); - } - }; - - var FixedDataTableCellGroup145 = function (props) { + 'div', + { + className: '_3pzj', + style: { + height: 25, + position: 'absolute', + width: 1845, + zIndex: 0, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(FixedDataTableCell143, {x: 373, key: 'cell_0'}), + React.createElement(FixedDataTableCell143, {x: 378, key: 'cell_1'}), + React.createElement(FixedDataTableCell143, {x: 383, key: 'cell_2'}), + React.createElement(FixedDataTableCell143, {x: 388, key: 'cell_3'}), + React.createElement(FixedDataTableCell143, {x: 393, key: 'cell_4'}), + React.createElement(FixedDataTableCell143, {x: 398, key: 'cell_5'}), + React.createElement(FixedDataTableCell143, {x: 403, key: 'cell_6'}), + React.createElement(FixedDataTableCell143, {x: 408, key: 'cell_7'}), + React.createElement(FixedDataTableCell143, {x: 413, key: 'cell_8'}), + React.createElement(FixedDataTableCell143, {x: 418, key: 'cell_9'}), + React.createElement(FixedDataTableCell143, {x: 423, key: 'cell_10'}), + React.createElement(FixedDataTableCell143, {x: 428, key: 'cell_11'}), + React.createElement(FixedDataTableCell143, {x: 433, key: 'cell_12'}), + React.createElement(FixedDataTableCell143, {x: 438, key: 'cell_13'}), + React.createElement(FixedDataTableCell143, {x: 443, key: 'cell_14'}), + React.createElement(FixedDataTableCell143, {x: 448, key: 'cell_15'}), + React.createElement(FixedDataTableCell143, {x: 451, key: 'cell_16'}), + React.createElement(FixedDataTableCell143, {x: 454, key: 'cell_17'}) + ); + } + }; + + var FixedDataTableCellGroup145 = function(props) { if (props.x === 319) { return React.createElement( - "div", - { style: { "height": 40, "left": 0 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 318 }) + 'div', + {style: {height: 40, left: 0}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 318}) ); } if (props.x === 333) { return React.createElement( - "div", - { style: { "height": 40, "left": 721 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 332 }) + 'div', + {style: {height: 40, left: 721}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 332}) ); } if (props.x === 368) { return React.createElement( - "div", - { style: { "height": 25, "left": 0 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 367 }) + 'div', + {style: {height: 25, left: 0}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 367}) ); } if (props.x === 456) { return React.createElement( - "div", - { style: { "height": 25, "left": 721 }, className: "_3pzk" }, - React.createElement(FixedDataTableCellGroupImpl144, { x: 455 }) + 'div', + {style: {height: 25, left: 721}, className: '_3pzk'}, + React.createElement(FixedDataTableCellGroupImpl144, {x: 455}) ); } }; - var FixedDataTableRowImpl146 = function (props) { + var FixedDataTableRowImpl146 = function(props) { if (props.x === 334) { return React.createElement( - "div", - { className: "_1gd4 _4li _52no _3h1a _1mib", onClick: null, onDoubleClick: null, onMouseDown: null, onMouseEnter: null, onMouseLeave: null, style: { "width": 1209, "height": 40 } }, - React.createElement( - "div", - { className: "_1gd5" }, - React.createElement(FixedDataTableCellGroup145, { x: 319, key: "fixed_cells" }), - React.createElement(FixedDataTableCellGroup145, { x: 333, key: "scrollable_cells" }), - React.createElement("div", { className: "_1gd6 _1gd8", style: { "left": 721, "height": 40 } }) + 'div', + { + className: '_1gd4 _4li _52no _3h1a _1mib', + onClick: null, + onDoubleClick: null, + onMouseDown: null, + onMouseEnter: null, + onMouseLeave: null, + style: {width: 1209, height: 40}, + }, + React.createElement( + 'div', + {className: '_1gd5'}, + React.createElement(FixedDataTableCellGroup145, { + x: 319, + key: 'fixed_cells', + }), + React.createElement(FixedDataTableCellGroup145, { + x: 333, + key: 'scrollable_cells', + }), + React.createElement('div', { + className: '_1gd6 _1gd8', + style: {left: 721, height: 40}, + }) ) ); } if (props.x === 457) { return React.createElement( - "div", - { className: "_1gd4 _4li _3h1a _1mib", onClick: null, onDoubleClick: null, onMouseDown: null, onMouseEnter: null, onMouseLeave: null, style: { "width": 1209, "height": 25 } }, - React.createElement( - "div", - { className: "_1gd5" }, - React.createElement(FixedDataTableCellGroup145, { x: 368, key: "fixed_cells" }), - React.createElement(FixedDataTableCellGroup145, { x: 456, key: "scrollable_cells" }), - React.createElement("div", { className: "_1gd6 _1gd8", style: { "left": 721, "height": 25 } }) + 'div', + { + className: '_1gd4 _4li _3h1a _1mib', + onClick: null, + onDoubleClick: null, + onMouseDown: null, + onMouseEnter: null, + onMouseLeave: null, + style: {width: 1209, height: 25}, + }, + React.createElement( + 'div', + {className: '_1gd5'}, + React.createElement(FixedDataTableCellGroup145, { + x: 368, + key: 'fixed_cells', + }), + React.createElement(FixedDataTableCellGroup145, { + x: 456, + key: 'scrollable_cells', + }), + React.createElement('div', { + className: '_1gd6 _1gd8', + style: {left: 721, height: 25}, + }) ) ); } }; - var FixedDataTableRow147 = function (props) { + var FixedDataTableRow147 = function(props) { if (props.x === 335) { return React.createElement( - "div", - { style: { "width": 1209, "height": 40, "zIndex": 1, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" }, className: "_1gda" }, - React.createElement(FixedDataTableRowImpl146, { x: 334 }) + 'div', + { + style: { + width: 1209, + height: 40, + zIndex: 1, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + className: '_1gda', + }, + React.createElement(FixedDataTableRowImpl146, {x: 334}) ); } if (props.x === 458) { return React.createElement( - "div", - { style: { "width": 1209, "height": 25, "zIndex": 1, "transform": "translate3d(0px,40px,0)", "backfaceVisibility": "hidden" }, className: "_1gda" }, - React.createElement(FixedDataTableRowImpl146, { x: 457 }) + 'div', + { + style: { + width: 1209, + height: 25, + zIndex: 1, + transform: 'translate3d(0px,40px,0)', + backfaceVisibility: 'hidden', + }, + className: '_1gda', + }, + React.createElement(FixedDataTableRowImpl146, {x: 457}) ); } }; - var FixedDataTableAbstractSortableHeader148 = function (props) { + var FixedDataTableAbstractSortableHeader148 = function(props) { if (props.x === 341) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 340 }) + React.createElement(AdsPETableHeader141, {x: 340}) ) ); } if (props.x === 347) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _1kst _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _1kst _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 346 }) + React.createElement(AdsPETableHeader141, {x: 346}) ) ); } if (props.x === 353) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _1kst _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _1kst _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 352 }) + React.createElement(AdsPETableHeader141, {x: 352}) ) ); } if (props.x === 358) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 357 }) + React.createElement(AdsPETableHeader141, {x: 357}) ) ); } if (props.x === 363) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _54_9 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _54_9 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 362 }) + React.createElement(AdsPETableHeader141, {x: 362}) ) ); } if (props.x === 370) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 369 }) + React.createElement(AdsPETableHeader141, {x: 369}) ) ); } if (props.x === 375) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 374 }) + React.createElement(AdsPETableHeader141, {x: 374}) ) ); } if (props.x === 380) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 379 }) + React.createElement(AdsPETableHeader141, {x: 379}) ) ); } if (props.x === 385) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 384 }) + React.createElement(AdsPETableHeader141, {x: 384}) ) ); } if (props.x === 390) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 389 }) + React.createElement(AdsPETableHeader141, {x: 389}) ) ); } if (props.x === 395) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 394 }) + React.createElement(AdsPETableHeader141, {x: 394}) ) ); } if (props.x === 400) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 399 }) + React.createElement(AdsPETableHeader141, {x: 399}) ) ); } if (props.x === 405) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 404 }) + React.createElement(AdsPETableHeader141, {x: 404}) ) ); } if (props.x === 410) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 409 }) + React.createElement(AdsPETableHeader141, {x: 409}) ) ); } if (props.x === 415) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 414 }) + React.createElement(AdsPETableHeader141, {x: 414}) ) ); } if (props.x === 420) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 419 }) + React.createElement(AdsPETableHeader141, {x: 419}) ) ); } if (props.x === 425) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 424 }) + React.createElement(AdsPETableHeader141, {x: 424}) ) ); } if (props.x === 430) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 429 }) + React.createElement(AdsPETableHeader141, {x: 429}) ) ); } if (props.x === 435) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 434 }) + React.createElement(AdsPETableHeader141, {x: 434}) ) ); } if (props.x === 440) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 439 }) + React.createElement(AdsPETableHeader141, {x: 439}) ) ); } if (props.x === 445) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, - React.createElement(AdsPETableHeader141, { x: 444 }) + React.createElement(AdsPETableHeader141, {x: 444}) ) ); } }; - var FixedDataTableSortableHeader149 = function (props) { + var FixedDataTableSortableHeader149 = function(props) { if (props.x === 342) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 341 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 341, + }); } if (props.x === 348) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 347 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 347, + }); } if (props.x === 354) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 353 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 353, + }); } if (props.x === 359) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 358 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 358, + }); } if (props.x === 364) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 363 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 363, + }); } if (props.x === 371) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 370 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 370, + }); } if (props.x === 376) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 375 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 375, + }); } if (props.x === 381) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 380 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 380, + }); } if (props.x === 386) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 385 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 385, + }); } if (props.x === 391) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 390 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 390, + }); } if (props.x === 396) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 395 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 395, + }); } if (props.x === 401) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 400 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 400, + }); } if (props.x === 406) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 405 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 405, + }); } if (props.x === 411) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 410 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 410, + }); } if (props.x === 416) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 415 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 415, + }); } if (props.x === 421) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 420 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 420, + }); } if (props.x === 426) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 425 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 425, + }); } if (props.x === 431) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 430 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 430, + }); } if (props.x === 436) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 435 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 435, + }); } if (props.x === 441) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 440 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 440, + }); } if (props.x === 446) { - return React.createElement(FixedDataTableAbstractSortableHeader148, { x: 445 }); + return React.createElement(FixedDataTableAbstractSortableHeader148, { + x: 445, + }); } }; - var FixedDataTableBufferedRows150 = function (props) { + var FixedDataTableBufferedRows150 = function(props) { if (props.x === 459) { - return React.createElement("div", { style: { "position": "absolute", "pointerEvents": "auto", "transform": "translate3d(0px,65px,0)", "backfaceVisibility": "hidden" } }); + return React.createElement('div', { + style: { + position: 'absolute', + pointerEvents: 'auto', + transform: 'translate3d(0px,65px,0)', + backfaceVisibility: 'hidden', + }, + }); } }; - var Scrollbar151 = function (props) { + var Scrollbar151 = function(props) { if (props.x === 460) { return null; } if (props.x === 461) { return React.createElement( - "div", - { onFocus: function () {}, onBlur: function () {}, onKeyDown: function () {}, onMouseDown: function () {}, onWheel: function () {}, className: "_1t0r _1t0t _4jdr _1t0u", style: { "width": 1209, "zIndex": 99 }, tabIndex: 0 }, - React.createElement("div", { className: "_1t0w _1t0y _1t0_", style: { "width": 561.6340607950117, "transform": "translate3d(4px,0px,0)", "backfaceVisibility": "hidden" } }) - ); - } - }; - - var HorizontalScrollbar152 = function (props) { + 'div', + { + onFocus: function() {}, + onBlur: function() {}, + onKeyDown: function() {}, + onMouseDown: function() {}, + onWheel: function() {}, + className: '_1t0r _1t0t _4jdr _1t0u', + style: {width: 1209, zIndex: 99}, + tabIndex: 0, + }, + React.createElement('div', { + className: '_1t0w _1t0y _1t0_', + style: { + width: 561.6340607950117, + transform: 'translate3d(4px,0px,0)', + backfaceVisibility: 'hidden', + }, + }) + ); + } + }; + + var HorizontalScrollbar152 = function(props) { if (props.x === 462) { return React.createElement( - "div", - { className: "_3h1k _3h1m", style: { "height": 15, "width": 1209 } }, - React.createElement( - "div", - { style: { "height": 15, "position": "absolute", "overflow": "hidden", "width": 1209, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, - React.createElement(Scrollbar151, { x: 461 }) + 'div', + {className: '_3h1k _3h1m', style: {height: 15, width: 1209}}, + React.createElement( + 'div', + { + style: { + height: 15, + position: 'absolute', + overflow: 'hidden', + width: 1209, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, + React.createElement(Scrollbar151, {x: 461}) ) ); } }; - var FixedDataTable153 = function (props) { + var FixedDataTable153 = function(props) { if (props.x === 463) { return React.createElement( - "div", - { className: "_3h1i _1mie", onWheel: function () {}, style: { "height": 25, "width": 1209 } }, - React.createElement( - "div", - { className: "_3h1j", style: { "height": 8, "width": 1209 } }, - React.createElement(FixedDataTableColumnResizeHandle140, { x: 313 }), - React.createElement(FixedDataTableRow147, { x: 335, key: "group_header" }), - React.createElement(FixedDataTableRow147, { x: 458, key: "header" }), - React.createElement(FixedDataTableBufferedRows150, { x: 459 }), + 'div', + { + className: '_3h1i _1mie', + onWheel: function() {}, + style: {height: 25, width: 1209}, + }, + React.createElement( + 'div', + {className: '_3h1j', style: {height: 8, width: 1209}}, + React.createElement(FixedDataTableColumnResizeHandle140, {x: 313}), + React.createElement(FixedDataTableRow147, { + x: 335, + key: 'group_header', + }), + React.createElement(FixedDataTableRow147, {x: 458, key: 'header'}), + React.createElement(FixedDataTableBufferedRows150, {x: 459}), null, undefined, - React.createElement("div", { className: "_3h1e _3h1h", style: { "top": 8 } }) + React.createElement('div', { + className: '_3h1e _3h1h', + style: {top: 8}, + }) ), - React.createElement(Scrollbar151, { x: 460 }), - React.createElement(HorizontalScrollbar152, { x: 462 }) + React.createElement(Scrollbar151, {x: 460}), + React.createElement(HorizontalScrollbar152, {x: 462}) ); } }; - var TransitionTable154 = function (props) { + var TransitionTable154 = function(props) { if (props.x === 464) { - return React.createElement(FixedDataTable153, { x: 463 }); + return React.createElement(FixedDataTable153, {x: 463}); } }; - var AdsSelectableFixedDataTable155 = function (props) { + var AdsSelectableFixedDataTable155 = function(props) { if (props.x === 465) { return React.createElement( - "div", - { className: "_5hht" }, - React.createElement(TransitionTable154, { x: 464 }) + 'div', + {className: '_5hht'}, + React.createElement(TransitionTable154, {x: 464}) ); } }; - var AdsDataTableKeyboardSupportDecorator156 = function (props) { + var AdsDataTableKeyboardSupportDecorator156 = function(props) { if (props.x === 466) { return React.createElement( - "div", - { className: "_5d6f", tabIndex: "0", onKeyDown: function () {} }, - React.createElement(AdsSelectableFixedDataTable155, { x: 465 }) + 'div', + {className: '_5d6f', tabIndex: '0', onKeyDown: function() {}}, + React.createElement(AdsSelectableFixedDataTable155, {x: 465}) ); } }; - var AdsEditableDataTableDecorator157 = function (props) { + var AdsEditableDataTableDecorator157 = function(props) { if (props.x === 467) { return React.createElement( - "div", - { onCopy: function () {} }, - React.createElement(AdsDataTableKeyboardSupportDecorator156, { x: 466 }) + 'div', + {onCopy: function() {}}, + React.createElement(AdsDataTableKeyboardSupportDecorator156, {x: 466}) ); } }; - var AdsPEDataTableContainer158 = function (props) { + var AdsPEDataTableContainer158 = function(props) { if (props.x === 468) { return React.createElement( - "div", - { className: "_35l_ _1hr clearfix" }, + 'div', + {className: '_35l_ _1hr clearfix'}, null, null, null, - React.createElement(AdsEditableDataTableDecorator157, { x: 467 }) + React.createElement(AdsEditableDataTableDecorator157, {x: 467}) ); } }; - var AdsPECampaignGroupTableContainer159 = function (props) { + var AdsPECampaignGroupTableContainer159 = function(props) { if (props.x === 470) { - return React.createElement(ResponsiveBlock37, { x: 469 }); + return React.createElement(ResponsiveBlock37, {x: 469}); } }; - var AdsPEManageAdsPaneContainer160 = function (props) { + var AdsPEManageAdsPaneContainer160 = function(props) { if (props.x === 473) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsErrorBoundary10, { x: 65 }), + React.createElement(AdsErrorBoundary10, {x: 65}), React.createElement( - "div", - { className: "_2uty" }, - React.createElement(AdsErrorBoundary10, { x: 125 }) + 'div', + {className: '_2uty'}, + React.createElement(AdsErrorBoundary10, {x: 125}) ), React.createElement( - "div", - { className: "_2utx _21oc" }, - React.createElement(AdsErrorBoundary10, { x: 171 }), + 'div', + {className: '_2utx _21oc'}, + React.createElement(AdsErrorBoundary10, {x: 171}), React.createElement( - "div", - { className: "_41tu" }, - React.createElement(AdsErrorBoundary10, { x: 176 }), - React.createElement(AdsErrorBoundary10, { x: 194 }) + 'div', + {className: '_41tu'}, + React.createElement(AdsErrorBoundary10, {x: 176}), + React.createElement(AdsErrorBoundary10, {x: 194}) ) ), React.createElement( - "div", - { className: "_2utz", style: { "height": 25 } }, - React.createElement(AdsErrorBoundary10, { x: 302 }), + 'div', + {className: '_2utz', style: {height: 25}}, + React.createElement(AdsErrorBoundary10, {x: 302}), React.createElement( - "div", - { className: "_2ut-" }, - React.createElement(AdsErrorBoundary10, { x: 312 }) + 'div', + {className: '_2ut-'}, + React.createElement(AdsErrorBoundary10, {x: 312}) ), React.createElement( - "div", - { className: "_2ut_" }, - React.createElement(AdsErrorBoundary10, { x: 472 }) + 'div', + {className: '_2ut_'}, + React.createElement(AdsErrorBoundary10, {x: 472}) ) ) ); } }; - var AdsPEContentContainer161 = function (props) { + var AdsPEContentContainer161 = function(props) { if (props.x === 474) { - return React.createElement(AdsPEManageAdsPaneContainer160, { x: 473 }); + return React.createElement(AdsPEManageAdsPaneContainer160, {x: 473}); } }; - var FluxContainer_AdsPEWorkspaceContainer_162 = function (props) { + var FluxContainer_AdsPEWorkspaceContainer_162 = function(props) { if (props.x === 477) { return React.createElement( - "div", - { className: "_49wu", style: { "height": 177, "top": 43, "width": 1306 } }, - React.createElement(ResponsiveBlock37, { x: 62, key: '0' }), - React.createElement(AdsErrorBoundary10, { x: 476, key: '1' }), + 'div', + {className: '_49wu', style: {height: 177, top: 43, width: 1306}}, + React.createElement(ResponsiveBlock37, {x: 62, key: '0'}), + React.createElement(AdsErrorBoundary10, {x: 476, key: '1'}), null ); } }; - var FluxContainer_AdsSessionExpiredDialogContainer_163 = function (props) { + var FluxContainer_AdsSessionExpiredDialogContainer_163 = function(props) { if (props.x === 478) { return null; } }; - var FluxContainer_AdsPEUploadDialogLazyContainer_164 = function (props) { + var FluxContainer_AdsPEUploadDialogLazyContainer_164 = function(props) { if (props.x === 479) { return null; } }; - var FluxContainer_DialogContainer_165 = function (props) { + var FluxContainer_DialogContainer_165 = function(props) { if (props.x === 480) { return null; } }; - var AdsBugReportContainer166 = function (props) { + var AdsBugReportContainer166 = function(props) { if (props.x === 481) { - return React.createElement("span", null); + return React.createElement('span', null); } }; - var AdsPEAudienceSplittingDialog167 = function (props) { + var AdsPEAudienceSplittingDialog167 = function(props) { if (props.x === 482) { return null; } }; - var AdsPEAudienceSplittingDialogContainer168 = function (props) { + var AdsPEAudienceSplittingDialogContainer168 = function(props) { if (props.x === 483) { return React.createElement( - "div", + 'div', null, - React.createElement(AdsPEAudienceSplittingDialog167, { x: 482 }) + React.createElement(AdsPEAudienceSplittingDialog167, {x: 482}) ); } }; - var FluxContainer_AdsRuleDialogBootloadContainer_169 = function (props) { + var FluxContainer_AdsRuleDialogBootloadContainer_169 = function(props) { if (props.x === 484) { return null; } }; - var FluxContainer_AdsPECFTrayContainer_170 = function (props) { + var FluxContainer_AdsPECFTrayContainer_170 = function(props) { if (props.x === 485) { return null; } }; - var FluxContainer_AdsPEDeleteDraftContainer_171 = function (props) { + var FluxContainer_AdsPEDeleteDraftContainer_171 = function(props) { if (props.x === 486) { return null; } }; - var FluxContainer_AdsPEInitialDraftPublishDialogContainer_172 = function (props) { + var FluxContainer_AdsPEInitialDraftPublishDialogContainer_172 = function( + props + ) { if (props.x === 487) { return null; } }; - var FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173 = function (props) { + var FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173 = function( + props + ) { if (props.x === 488) { return null; } }; - var FluxContainer_AdsPEPurgeArchiveDialogContainer_174 = function (props) { + var FluxContainer_AdsPEPurgeArchiveDialogContainer_174 = function(props) { if (props.x === 489) { return null; } }; - var AdsPECreateDialogContainer175 = function (props) { + var AdsPECreateDialogContainer175 = function(props) { if (props.x === 490) { - return React.createElement("span", null); + return React.createElement('span', null); } }; - var FluxContainer_AdsPEModalStatusContainer_176 = function (props) { + var FluxContainer_AdsPEModalStatusContainer_176 = function(props) { if (props.x === 491) { return null; } }; - var FluxContainer_AdsBrowserExtensionErrorDialogContainer_177 = function (props) { + var FluxContainer_AdsBrowserExtensionErrorDialogContainer_177 = function( + props + ) { if (props.x === 492) { return null; } }; - var FluxContainer_AdsPESortByErrorTipContainer_178 = function (props) { + var FluxContainer_AdsPESortByErrorTipContainer_178 = function(props) { if (props.x === 493) { return null; } }; - var LeadDownloadDialogSelector179 = function (props) { + var LeadDownloadDialogSelector179 = function(props) { if (props.x === 494) { return null; } }; - var FluxContainer_AdsPELeadDownloadDialogContainerClass_180 = function (props) { + var FluxContainer_AdsPELeadDownloadDialogContainerClass_180 = function( + props + ) { if (props.x === 495) { - return React.createElement(LeadDownloadDialogSelector179, { x: 494 }); + return React.createElement(LeadDownloadDialogSelector179, {x: 494}); } }; - var AdsPEContainer181 = function (props) { + var AdsPEContainer181 = function(props) { if (props.x === 496) { return React.createElement( - "div", - { id: "ads_pe_container" }, - React.createElement(FluxContainer_AdsPETopNavContainer_26, { x: 41 }), + 'div', + {id: 'ads_pe_container'}, + React.createElement(FluxContainer_AdsPETopNavContainer_26, {x: 41}), null, - React.createElement(FluxContainer_AdsPEWorkspaceContainer_162, { x: 477 }), - React.createElement(FluxContainer_AdsSessionExpiredDialogContainer_163, { x: 478 }), - React.createElement(FluxContainer_AdsPEUploadDialogLazyContainer_164, { x: 479 }), - React.createElement(FluxContainer_DialogContainer_165, { x: 480 }), - React.createElement(AdsBugReportContainer166, { x: 481 }), - React.createElement(AdsPEAudienceSplittingDialogContainer168, { x: 483 }), - React.createElement(FluxContainer_AdsRuleDialogBootloadContainer_169, { x: 484 }), - React.createElement(FluxContainer_AdsPECFTrayContainer_170, { x: 485 }), + React.createElement(FluxContainer_AdsPEWorkspaceContainer_162, { + x: 477, + }), React.createElement( - "span", + FluxContainer_AdsSessionExpiredDialogContainer_163, + {x: 478} + ), + React.createElement(FluxContainer_AdsPEUploadDialogLazyContainer_164, { + x: 479, + }), + React.createElement(FluxContainer_DialogContainer_165, {x: 480}), + React.createElement(AdsBugReportContainer166, {x: 481}), + React.createElement(AdsPEAudienceSplittingDialogContainer168, {x: 483}), + React.createElement(FluxContainer_AdsRuleDialogBootloadContainer_169, { + x: 484, + }), + React.createElement(FluxContainer_AdsPECFTrayContainer_170, {x: 485}), + React.createElement( + 'span', null, - React.createElement(FluxContainer_AdsPEDeleteDraftContainer_171, { x: 486 }), - React.createElement(FluxContainer_AdsPEInitialDraftPublishDialogContainer_172, { x: 487 }), - React.createElement(FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173, { x: 488 }) + React.createElement(FluxContainer_AdsPEDeleteDraftContainer_171, { + x: 486, + }), + React.createElement( + FluxContainer_AdsPEInitialDraftPublishDialogContainer_172, + {x: 487} + ), + React.createElement( + FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173, + {x: 488} + ) + ), + React.createElement( + FluxContainer_AdsPEPurgeArchiveDialogContainer_174, + {x: 489} ), - React.createElement(FluxContainer_AdsPEPurgeArchiveDialogContainer_174, { x: 489 }), - React.createElement(AdsPECreateDialogContainer175, { x: 490 }), - React.createElement(FluxContainer_AdsPEModalStatusContainer_176, { x: 491 }), - React.createElement(FluxContainer_AdsBrowserExtensionErrorDialogContainer_177, { x: 492 }), - React.createElement(FluxContainer_AdsPESortByErrorTipContainer_178, { x: 493 }), - React.createElement(FluxContainer_AdsPELeadDownloadDialogContainerClass_180, { x: 495 }), - React.createElement("div", { id: "web_ads_guidance_tips" }) + React.createElement(AdsPECreateDialogContainer175, {x: 490}), + React.createElement(FluxContainer_AdsPEModalStatusContainer_176, { + x: 491, + }), + React.createElement( + FluxContainer_AdsBrowserExtensionErrorDialogContainer_177, + {x: 492} + ), + React.createElement(FluxContainer_AdsPESortByErrorTipContainer_178, { + x: 493, + }), + React.createElement( + FluxContainer_AdsPELeadDownloadDialogContainerClass_180, + {x: 495} + ), + React.createElement('div', {id: 'web_ads_guidance_tips'}) ); } }; - var Benchmark = function (props) { + var Benchmark = function(props) { if (props.x === undefined) { - return React.createElement(AdsPEContainer181, { x: 496 }); + return React.createElement(AdsPEContainer181, {x: 496}); } }; @@ -4199,5 +5098,5 @@ window.render = function render() { ReactDOM.render(React.createElement(Benchmark, null), app); - } + }; })(); diff --git a/scripts/bench/benchmarks/pe-functional-components/build.js b/scripts/bench/benchmarks/pe-functional-components/build.js index 1a8e253bef83a..6622176404f3e 100644 --- a/scripts/bench/benchmarks/pe-functional-components/build.js +++ b/scripts/bench/benchmarks/pe-functional-components/build.js @@ -1,11 +1,9 @@ 'use strict'; -const { - join, -} = require('path'); +const {join} = require('path'); async function build(reactPath, asyncCopyTo) { - // copy the UMD bundles + // copy the UMD bundles await asyncCopyTo( join(reactPath, 'build', 'dist', 'react.production.min.js'), join(__dirname, 'react.production.min.js') diff --git a/scripts/bench/benchmarks/pe-no-components/benchmark.js b/scripts/bench/benchmarks/pe-no-components/benchmark.js index 12fda1f4f82af..f7851b98d1b7f 100644 --- a/scripts/bench/benchmarks/pe-no-components/benchmark.js +++ b/scripts/bench/benchmarks/pe-no-components/benchmark.js @@ -1,133 +1,261 @@ -(function () { +(function() { 'use strict'; - var ReactImage0 = function (x) { + var ReactImage0 = function(x) { if (x === 0) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (x === 15) { - return React.createElement("i", { className: "_3ut_ img sp_i534r85sjIn sx_e8ac93", src: null, alt: "" }); + return React.createElement('i', { + className: '_3ut_ img sp_i534r85sjIn sx_e8ac93', + src: null, + alt: '', + }); } if (x === 22) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_7b15bc", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_7b15bc', + src: null, + }); } if (x === 29) { - return React.createElement("i", { className: "_1m1s _4540 _p img sp_i534r85sjIn sx_f40b1c", src: null, alt: "" }); + return React.createElement('i', { + className: '_1m1s _4540 _p img sp_i534r85sjIn sx_f40b1c', + src: null, + alt: '', + }); } if (x === 42) { return React.createElement( - "i", - { alt: "Warning", className: "_585p img sp_i534r85sjIn sx_20273d", src: null }, - React.createElement( - "u", - null, - "Warning" - ) + 'i', + { + alt: 'Warning', + className: '_585p img sp_i534r85sjIn sx_20273d', + src: null, + }, + React.createElement('u', null, 'Warning') ); } if (x === 67) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_b5d079", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_b5d079', + src: null, + }); } if (x === 70) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_29f8c9" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_29f8c9', + }); } if (x === 76) { - return React.createElement("i", { alt: "", className: "_3-8_ img sp_i534r85sjIn sx_ef6a9c", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_ef6a9c', + src: null, + }); } if (x === 79) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_6f8c43" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_6f8c43', + }); } if (x === 88) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_e94a2d" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_e94a2d', + }); } if (x === 91) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_7ed7d4" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_7ed7d4', + }); } if (x === 94) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_930440" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_930440', + }); } if (x === 98) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_750c83" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_750c83', + }); } if (x === 108) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_73c1bb" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_73c1bb', + }); } if (x === 111) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_29f28d" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_29f28d', + }); } if (x === 126) { - return React.createElement("i", { src: null, alt: "", className: "_3-8_ img sp_i534r85sjIn sx_91c59e" }); + return React.createElement('i', { + src: null, + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_91c59e', + }); } if (x === 127) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (x === 134) { - return React.createElement("i", { src: null, alt: "", className: "_3-8_ img sp_i534r85sjIn sx_c8eb75" }); + return React.createElement('i', { + src: null, + alt: '', + className: '_3-8_ img sp_i534r85sjIn sx_c8eb75', + }); } if (x === 135) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (x === 148) { - return React.createElement("i", { className: "_3yz6 _5whs img sp_i534r85sjIn sx_896996", src: null, alt: "" }); + return React.createElement('i', { + className: '_3yz6 _5whs img sp_i534r85sjIn sx_896996', + src: null, + alt: '', + }); } if (x === 152) { - return React.createElement("i", { className: "_5b5p _4gem img sp_i534r85sjIn sx_896996", src: null, alt: "" }); + return React.createElement('i', { + className: '_5b5p _4gem img sp_i534r85sjIn sx_896996', + src: null, + alt: '', + }); } if (x === 153) { - return React.createElement("i", { className: "_541d img sp_i534r85sjIn sx_2f396a", src: null, alt: "" }); + return React.createElement('i', { + className: '_541d img sp_i534r85sjIn sx_2f396a', + src: null, + alt: '', + }); } if (x === 160) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_31d9b0" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_31d9b0', + }); } if (x === 177) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_2c18b7", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_2c18b7', + src: null, + }); } if (x === 186) { - return React.createElement("i", { src: null, alt: "", className: "img sp_i534r85sjIn sx_0a681f" }); + return React.createElement('i', { + src: null, + alt: '', + className: 'img sp_i534r85sjIn sx_0a681f', + }); } if (x === 195) { - return React.createElement("i", { className: "_1-lx img sp_OkER5ktbEyg sx_b369b4", src: null, alt: "" }); + return React.createElement('i', { + className: '_1-lx img sp_OkER5ktbEyg sx_b369b4', + src: null, + alt: '', + }); } if (x === 198) { - return React.createElement("i", { className: "_1-lx img sp_i534r85sjIn sx_96948e", src: null, alt: "" }); + return React.createElement('i', { + className: '_1-lx img sp_i534r85sjIn sx_96948e', + src: null, + alt: '', + }); } if (x === 237) { - return React.createElement("i", { className: "_541d img sp_i534r85sjIn sx_2f396a", src: null, alt: "" }); + return React.createElement('i', { + className: '_541d img sp_i534r85sjIn sx_2f396a', + src: null, + alt: '', + }); } if (x === 266) { - return React.createElement("i", { alt: "", className: "_3-99 img sp_i534r85sjIn sx_538591", src: null }); + return React.createElement('i', { + alt: '', + className: '_3-99 img sp_i534r85sjIn sx_538591', + src: null, + }); } if (x === 314) { - return React.createElement("i", { className: "_1cie _1cif img sp_i534r85sjIn sx_6e6820", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie _1cif img sp_i534r85sjIn sx_6e6820', + src: null, + alt: '', + }); } if (x === 345) { - return React.createElement("i", { className: "_1cie img sp_i534r85sjIn sx_e896cf", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie img sp_i534r85sjIn sx_e896cf', + src: null, + alt: '', + }); } if (x === 351) { - return React.createElement("i", { className: "_1cie img sp_i534r85sjIn sx_38fed8", src: null, alt: "" }); + return React.createElement('i', { + className: '_1cie img sp_i534r85sjIn sx_38fed8', + src: null, + alt: '', + }); } }; - var AbstractLink1 = function (x) { + var AbstractLink1 = function(x) { if (x === 1) { return React.createElement( - "a", - { className: "_387r _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "width": 250, "maxWidth": "250px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_387r _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {width: 250, maxWidth: '250px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "236px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '236px'}}, null, React.createElement( - "span", + 'span', null, - React.createElement( - "span", - { className: "_48u-" }, - "Account:" - ), - " ", - "Dick Madanson (10149999073643408)" + React.createElement('span', {className: '_48u-'}, 'Account:'), + ' ', + 'Dick Madanson (10149999073643408)' ) ), ReactImage0(0) @@ -135,95 +263,146 @@ } if (x === 43) { return React.createElement( - "a", - { className: "_585q _50zy _50-0 _50z- _5upp _42ft", size: "medium", type: null, title: "Remove", "data-hover": undefined, "data-tooltip-alignh": undefined, "data-tooltip-content": undefined, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_585q _50zy _50-0 _50z- _5upp _42ft', + size: 'medium', + type: null, + title: 'Remove', + 'data-hover': undefined, + 'data-tooltip-alignh': undefined, + 'data-tooltip-content': undefined, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, undefined, - "Remove", + 'Remove', undefined ); } if (x === 49) { return React.createElement( - "a", - { target: "_blank", href: "/ads/manage/billing.php?act=10149999073643408", rel: undefined, onClick: function () {} }, + 'a', + { + target: '_blank', + href: '/ads/manage/billing.php?act=10149999073643408', + rel: undefined, + onClick: function() {}, + }, XUIText29(48) ); } if (x === 128) { return React.createElement( - "a", - { className: " _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: ' _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, ReactImage0(126), - "Search" + 'Search' ), ReactImage0(127) ); } if (x === 136) { return React.createElement( - "a", - { className: " _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: ' _5bbf _55pi _2agf _4jy0 _4jy4 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, ReactImage0(134), - "Filters" + 'Filters' ), ReactImage0(135) ); } if (x === 178) { return React.createElement( - "a", - { className: "_1_-t _1_-v _42ft", disabled: null, height: "medium", role: "button", label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_1_-t _1_-v _42ft', + disabled: null, + height: 'medium', + role: 'button', + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, undefined, - "Lifetime", + 'Lifetime', ReactImage0(177) ); } if (x === 207) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () {} }, - "Create Ad Set" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'Create Ad Set' ); } if (x === 209) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () {} }, - "View Ad Set" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'View Ad Set' ); } if (x === 241) { return React.createElement( - "a", - { href: "#", rel: undefined, onClick: function () {} }, - "Set a Limit" + 'a', + {href: '#', rel: undefined, onClick: function() {}}, + 'Set a Limit' ); } if (x === 267) { return React.createElement( - "a", - { className: "_p _55pi _2agf _4jy0 _4jy3 _517h _51sy _42ft", style: { "maxWidth": "200px" }, disabled: null, label: null, href: "#", rel: undefined, onClick: function () {} }, + 'a', + { + className: '_p _55pi _2agf _4jy0 _4jy3 _517h _51sy _42ft', + style: {maxWidth: '200px'}, + disabled: null, + label: null, + href: '#', + rel: undefined, + onClick: function() {}, + }, null, React.createElement( - "span", - { className: "_55pe", style: { "maxWidth": "186px" } }, + 'span', + {className: '_55pe', style: {maxWidth: '186px'}}, null, - "Links" + 'Links' ), ReactImage0(266) ); } }; - var Link2 = function (x) { + var Link2 = function(x) { if (x === 2) { return AbstractLink1(1); } @@ -256,25 +435,40 @@ } }; - var AbstractButton3 = function (x) { + var AbstractButton3 = function(x) { if (x === 3) { return Link2(2); } if (x === 20) { return React.createElement( - "button", - { className: "_5n7z _4jy0 _4jy4 _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_5n7z _4jy0 _4jy4 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, - "Discard Changes", + 'Discard Changes', undefined ); } if (x === 23) { return React.createElement( - "button", - { className: "_5n7z _2yak _4lj- _4jy0 _4jy4 _517h _51sy _42ft _42fr", disabled: true, onClick: function () {}, "data-tooltip-content": "You have no changes to publish", "data-hover": "tooltip", label: null, type: "submit", value: "1" }, + 'button', + { + className: '_5n7z _2yak _4lj- _4jy0 _4jy4 _517h _51sy _42ft _42fr', + disabled: true, + onClick: function() {}, + 'data-tooltip-content': 'You have no changes to publish', + 'data-hover': 'tooltip', + label: null, + type: 'submit', + value: '1', + }, ReactImage0(22), - "Review Changes", + 'Review Changes', undefined ); } @@ -283,17 +477,28 @@ } if (x === 68) { return React.createElement( - "button", - { className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(67), - "Create Campaign", + 'Create Campaign', undefined ); } if (x === 71) { return React.createElement( - "button", - { className: "_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft", label: null, type: "submit", value: "1" }, + 'button', + { + className: '_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft', + label: null, + type: 'submit', + value: '1', + }, ReactImage0(70), undefined, undefined @@ -301,17 +506,33 @@ } if (x === 77) { return React.createElement( - "button", - { "aria-label": "Edit", "data-tooltip-content": "Edit Campaigns (Ctrl+U)", "data-hover": "tooltip", className: "_d2_ _u_k noMargin _4jy0 _4jy4 _517h _51sy _42ft", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'Edit', + 'data-tooltip-content': 'Edit Campaigns (Ctrl+U)', + 'data-hover': 'tooltip', + className: '_d2_ _u_k noMargin _4jy0 _4jy4 _517h _51sy _42ft', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(76), - "Edit", + 'Edit', undefined ); } if (x === 80) { return React.createElement( - "button", - { className: "_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft", disabled: false, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_u_k _3qx6 _p _4jy0 _4jy4 _517h _51sy _42ft', + disabled: false, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(79), undefined, undefined @@ -319,8 +540,18 @@ } if (x === 89) { return React.createElement( - "button", - { "aria-label": "Revert", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft _42fr", "data-hover": "tooltip", "data-tooltip-content": "Revert", disabled: true, onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'Revert', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft _42fr', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Revert', + disabled: true, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(88), undefined, undefined @@ -328,8 +559,18 @@ } if (x === 92) { return React.createElement( - "button", - { "aria-label": "Delete", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Delete", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'Delete', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Delete', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(91), undefined, undefined @@ -337,8 +578,18 @@ } if (x === 95) { return React.createElement( - "button", - { "aria-label": "Duplicate", className: "_u_k _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Duplicate", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'Duplicate', + className: '_u_k _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Duplicate', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(94), undefined, undefined @@ -346,8 +597,17 @@ } if (x === 99) { return React.createElement( - "button", - { "aria-label": "Export & Import", className: "_u_k noMargin _p _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Export & Import", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'Export & Import', + className: '_u_k noMargin _p _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Export & Import', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(98), undefined, undefined @@ -355,8 +615,19 @@ } if (x === 109) { return React.createElement( - "button", - { "aria-label": "Create Report", className: "_u_k _5n7z _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Create Report", disabled: false, style: { "boxSizing": "border-box", "height": "28px", "width": "48px" }, onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'Create Report', + className: '_u_k _5n7z _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Create Report', + disabled: false, + style: {boxSizing: 'border-box', height: '28px', width: '48px'}, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(108), undefined, undefined @@ -364,8 +635,18 @@ } if (x === 112) { return React.createElement( - "button", - { "aria-label": "Campaign Tags", className: " _5uy7 _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "Campaign Tags", disabled: false, onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'Campaign Tags', + className: ' _5uy7 _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'Campaign Tags', + disabled: false, + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(111), undefined, undefined @@ -379,26 +660,48 @@ } if (x === 149) { return React.createElement( - "button", - { className: "_3yz9 _1t-2 _50z- _50zy _50zz _50z- _5upp _42ft", size: "small", onClick: function () {}, type: "button", title: "Remove", "data-hover": undefined, "data-tooltip-alignh": undefined, "data-tooltip-content": undefined, label: null }, + 'button', + { + className: '_3yz9 _1t-2 _50z- _50zy _50zz _50z- _5upp _42ft', + size: 'small', + onClick: function() {}, + type: 'button', + title: 'Remove', + 'data-hover': undefined, + 'data-tooltip-alignh': undefined, + 'data-tooltip-content': undefined, + label: null, + }, undefined, - "Remove", + 'Remove', undefined ); } if (x === 156) { return React.createElement( - "button", - { className: "_5b5u _5b5v _4jy0 _4jy3 _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_5b5u _5b5v _4jy0 _4jy3 _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, - "Apply", + 'Apply', undefined ); } if (x === 161) { return React.createElement( - "button", - { className: "_1wdf _4jy0 _517i _517h _51sy _42ft", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_1wdf _4jy0 _517i _517h _51sy _42ft', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(160), undefined, undefined @@ -409,8 +712,17 @@ } if (x === 187) { return React.createElement( - "button", - { "aria-label": "List Settings", className: "_u_k _3c5o _1-r0 _4jy0 _4jy4 _517h _51sy _42ft", "data-hover": "tooltip", "data-tooltip-content": "List Settings", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + 'aria-label': 'List Settings', + className: '_u_k _3c5o _1-r0 _4jy0 _4jy4 _517h _51sy _42ft', + 'data-hover': 'tooltip', + 'data-tooltip-content': 'List Settings', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, ReactImage0(186), undefined, undefined @@ -421,64 +733,79 @@ } if (x === 303) { return React.createElement( - "button", - { className: "_tm3 _tm6 _tm7 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Campaigns", "data-hover": "tooltip", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm3 _tm6 _tm7 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Campaigns', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } if (x === 305) { return React.createElement( - "button", - { className: "_tm4 _tm6 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Ad Sets", "data-hover": "tooltip", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm4 _tm6 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Ad Sets', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } if (x === 307) { return React.createElement( - "button", - { className: "_tm5 _tm6 _4jy0 _4jy6 _517h _51sy _42ft", "data-tooltip-position": "right", "data-tooltip-content": "Ads", "data-hover": "tooltip", onClick: function () {}, label: null, type: "submit", value: "1" }, + 'button', + { + className: '_tm5 _tm6 _4jy0 _4jy6 _517h _51sy _42ft', + 'data-tooltip-position': 'right', + 'data-tooltip-content': 'Ads', + 'data-hover': 'tooltip', + onClick: function() {}, + label: null, + type: 'submit', + value: '1', + }, undefined, React.createElement( - "div", + 'div', null, - React.createElement("div", { className: "_tma" }), - React.createElement("div", { className: "_tm8" }), - React.createElement( - "div", - { className: "_tm9" }, - 1 - ) + React.createElement('div', {className: '_tma'}), + React.createElement('div', {className: '_tm8'}), + React.createElement('div', {className: '_tm9'}, 1) ), undefined ); } }; - var XUIButton4 = function (x) { + var XUIButton4 = function(x) { if (x === 4) { return AbstractButton3(3); } @@ -547,7 +874,7 @@ } }; - var AbstractPopoverButton5 = function (x) { + var AbstractPopoverButton5 = function(x) { if (x === 5) { return XUIButton4(4); } @@ -562,7 +889,7 @@ } }; - var ReactXUIPopoverButton6 = function (x) { + var ReactXUIPopoverButton6 = function(x) { if (x === 6) { return AbstractPopoverButton5(5); } @@ -577,24 +904,19 @@ } }; - var BIGAdAccountSelector7 = function (x) { + var BIGAdAccountSelector7 = function(x) { if (x === 7) { - return React.createElement( - "div", - null, - ReactXUIPopoverButton6(6), - null - ); + return React.createElement('div', null, ReactXUIPopoverButton6(6), null); } }; - var FluxContainer_AdsPEBIGAdAccountSelectorContainer_8 = function (x) { + var FluxContainer_AdsPEBIGAdAccountSelectorContainer_8 = function(x) { if (x === 8) { return BIGAdAccountSelector7(7); } }; - var ErrorBoundary9 = function (x) { + var ErrorBoundary9 = function(x) { if (x === 9) { return FluxContainer_AdsPEBIGAdAccountSelectorContainer_8(8); } @@ -645,7 +967,7 @@ } }; - var AdsErrorBoundary10 = function (x) { + var AdsErrorBoundary10 = function(x) { if (x === 10) { return ErrorBoundary9(9); } @@ -696,109 +1018,109 @@ } }; - var AdsPENavigationBar11 = function (x) { + var AdsPENavigationBar11 = function(x) { if (x === 11) { - return React.createElement("div", { className: "_4t_9" }); + return React.createElement('div', {className: '_4t_9'}); } }; - var FluxContainer_AdsPENavigationBarContainer_12 = function (x) { + var FluxContainer_AdsPENavigationBarContainer_12 = function(x) { if (x === 12) { return AdsPENavigationBar11(11); } }; - var AdsPEDraftSyncStatus13 = function (x) { + var AdsPEDraftSyncStatus13 = function(x) { if (x === 16) { return React.createElement( - "div", - { className: "_3ut-", onClick: function () {} }, - React.createElement( - "span", - { className: "_3uu0" }, - ReactImage0(15) - ) + 'div', + {className: '_3ut-', onClick: function() {}}, + React.createElement('span', {className: '_3uu0'}, ReactImage0(15)) ); } }; - var FluxContainer_AdsPEDraftSyncStatusContainer_14 = function (x) { + var FluxContainer_AdsPEDraftSyncStatusContainer_14 = function(x) { if (x === 17) { return AdsPEDraftSyncStatus13(16); } }; - var AdsPEDraftErrorsStatus15 = function (x) { + var AdsPEDraftErrorsStatus15 = function(x) { if (x === 18) { return null; } }; - var FluxContainer_viewFn_16 = function (x) { + var FluxContainer_viewFn_16 = function(x) { if (x === 19) { return AdsPEDraftErrorsStatus15(18); } }; - var AdsPEPublishButton17 = function (x) { + var AdsPEPublishButton17 = function(x) { if (x === 25) { return React.createElement( - "div", - { className: "_5533" }, + 'div', + {className: '_5533'}, FluxContainer_AdsPEDraftSyncStatusContainer_14(17), FluxContainer_viewFn_16(19), null, - XUIButton4(21, "discard"), + XUIButton4(21, 'discard'), XUIButton4(24) ); } }; - var FluxContainer_AdsPEPublishButtonContainer_18 = function (x) { + var FluxContainer_AdsPEPublishButtonContainer_18 = function(x) { if (x === 26) { return AdsPEPublishButton17(25); } }; - var InlineBlock19 = function (x) { + var InlineBlock19 = function(x) { if (x === 30) { return React.createElement( - "div", - { className: "uiPopover _6a _6b", disabled: null }, + 'div', + {className: 'uiPopover _6a _6b', disabled: null}, ReactImage0(29) ); } if (x === 73) { return React.createElement( - "div", - { className: "uiPopover _6a _6b", disabled: null }, + 'div', + {className: 'uiPopover _6a _6b', disabled: null}, XUIButton4(72) ); } if (x === 82) { return React.createElement( - "div", - { className: "_1nwm uiPopover _6a _6b", disabled: null }, + 'div', + {className: '_1nwm uiPopover _6a _6b', disabled: null}, XUIButton4(81) ); } if (x === 101) { return React.createElement( - "div", - { size: "large", className: "uiPopover _6a _6b", disabled: null }, + 'div', + {size: 'large', className: 'uiPopover _6a _6b', disabled: null}, XUIButton4(100) ); } if (x === 273) { return React.createElement( - "div", - { className: "_3-90 uiPopover _6a _6b", style: { "marginTop": 2 }, disabled: null }, + 'div', + { + className: '_3-90 uiPopover _6a _6b', + style: {marginTop: 2}, + disabled: null, + }, ReactXUIPopoverButton6(272) ); } }; - var ReactPopoverMenu20 = function (x) { + var ReactPopoverMenu20 = function(x) { if (x === 31) { return InlineBlock19(30); } @@ -816,43 +1138,43 @@ } }; - var LeftRight21 = function (x) { + var LeftRight21 = function(x) { if (x === 34) { return React.createElement( - "div", - { className: "clearfix" }, + 'div', + {className: 'clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, + 'div', + {key: 'left', className: '_ohe lfloat'}, React.createElement( - "div", - { className: "_34_j" }, + 'div', + {className: '_34_j'}, React.createElement( - "div", - { className: "_34_k" }, + 'div', + {className: '_34_k'}, AdsErrorBoundary10(10) ), React.createElement( - "div", - { className: "_2u-6" }, + 'div', + {className: '_2u-6'}, AdsErrorBoundary10(14) ) ) ), React.createElement( - "div", - { key: "right", className: "_ohf rfloat" }, + 'div', + {key: 'right', className: '_ohf rfloat'}, React.createElement( - "div", - { className: "_34_m" }, + 'div', + {className: '_34_m'}, React.createElement( - "div", - { key: "0", className: "_5ju2" }, + 'div', + {key: '0', className: '_5ju2'}, AdsErrorBoundary10(28) ), React.createElement( - "div", - { key: "1", className: "_5ju2" }, + 'div', + {key: '1', className: '_5ju2'}, AdsErrorBoundary10(33) ) ) @@ -861,23 +1183,23 @@ } if (x === 232) { return React.createElement( - "div", - { direction: "left", className: "clearfix" }, + 'div', + {direction: 'left', className: 'clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, + 'div', + {key: 'left', className: '_ohe lfloat'}, AdsLabeledField104(231) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, + 'div', + {className: '_42ef'}, React.createElement( - "div", - { className: "_2oc7" }, - "Clicks to Website" + 'div', + {className: '_2oc7'}, + 'Clicks to Website' ) ) ) @@ -885,43 +1207,39 @@ } if (x === 235) { return React.createElement( - "div", - { className: "_3-8x clearfix", direction: "left" }, + 'div', + {className: '_3-8x clearfix', direction: 'left'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, + 'div', + {key: 'left', className: '_ohe lfloat'}, AdsLabeledField104(234) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, - React.createElement( - "div", - { className: "_2oc7" }, - "Auction" - ) + 'div', + {className: '_42ef'}, + React.createElement('div', {className: '_2oc7'}, 'Auction') ) ) ); } if (x === 245) { return React.createElement( - "div", - { className: "_3-8y clearfix", direction: "left" }, + 'div', + {className: '_3-8y clearfix', direction: 'left'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, + 'div', + {key: 'left', className: '_ohe lfloat'}, AdsLabeledField104(240) ), React.createElement( - "div", - { key: "right", className: "" }, + 'div', + {key: 'right', className: ''}, React.createElement( - "div", - { className: "_42ef" }, + 'div', + {className: '_42ef'}, FluxContainer_AdsCampaignGroupSpendCapContainer_107(244) ) ) @@ -929,66 +1247,58 @@ } if (x === 277) { return React.createElement( - "div", - { className: "_5dw9 _5dwa clearfix" }, + 'div', + {className: '_5dw9 _5dwa clearfix'}, React.createElement( - "div", - { key: "left", className: "_ohe lfloat" }, + 'div', + {key: 'left', className: '_ohe lfloat'}, XUICardHeaderTitle100(265) ), React.createElement( - "div", - { key: "right", className: "_ohf rfloat" }, + 'div', + {key: 'right', className: '_ohf rfloat'}, FluxContainer_AdsPluginizedLinksMenuContainer_121(276) ) ); } }; - var AdsUnifiedNavigationLocalNav22 = function (x) { + var AdsUnifiedNavigationLocalNav22 = function(x) { if (x === 35) { - return React.createElement( - "div", - { className: "_34_i" }, - LeftRight21(34) - ); + return React.createElement('div', {className: '_34_i'}, LeftRight21(34)); } }; - var XUIDialog23 = function (x) { + var XUIDialog23 = function(x) { if (x === 36) { return null; } }; - var AdsPEResetDialog24 = function (x) { + var AdsPEResetDialog24 = function(x) { if (x === 37) { - return React.createElement( - "span", - null, - XUIDialog23(36) - ); + return React.createElement('span', null, XUIDialog23(36)); } }; - var AdsPETopNav25 = function (x) { + var AdsPETopNav25 = function(x) { if (x === 40) { return React.createElement( - "div", - { style: { "width": 1306 } }, + 'div', + {style: {width: 1306}}, AdsUnifiedNavigationLocalNav22(35), AdsErrorBoundary10(39) ); } }; - var FluxContainer_AdsPETopNavContainer_26 = function (x) { + var FluxContainer_AdsPETopNavContainer_26 = function(x) { if (x === 41) { return AdsPETopNav25(40); } }; - var XUIAbstractGlyphButton27 = function (x) { + var XUIAbstractGlyphButton27 = function(x) { if (x === 46) { return AbstractButton3(45); } @@ -997,7 +1307,7 @@ } }; - var XUICloseButton28 = function (x) { + var XUICloseButton28 = function(x) { if (x === 47) { return XUIAbstractGlyphButton27(46); } @@ -1006,166 +1316,171 @@ } }; - var XUIText29 = function (x) { + var XUIText29 = function(x) { if (x === 48) { return React.createElement( - "span", - { display: "inline", className: " _50f7" }, - "Ads Manager" + 'span', + {display: 'inline', className: ' _50f7'}, + 'Ads Manager' ); } if (x === 205) { return React.createElement( - "span", - { className: "_2x9f _50f5 _50f7", display: "inline" }, - "Editing Campaign" + 'span', + {className: '_2x9f _50f5 _50f7', display: 'inline'}, + 'Editing Campaign' ); } if (x === 206) { return React.createElement( - "span", - { display: "inline", className: " _50f5 _50f7" }, - "Test Campaign" + 'span', + {display: 'inline', className: ' _50f5 _50f7'}, + 'Test Campaign' ); } }; - var XUINotice30 = function (x) { + var XUINotice30 = function(x) { if (x === 51) { return React.createElement( - "div", - { size: "medium", className: "_585n _585o _2wdd" }, + 'div', + {size: 'medium', className: '_585n _585o _2wdd'}, ReactImage0(42), XUICloseButton28(47), React.createElement( - "div", - { className: "_585r _2i-a _50f4" }, - "Please go to ", + 'div', + {className: '_585r _2i-a _50f4'}, + 'Please go to ', Link2(50), - " to set up a payment method for this ad account." + ' to set up a payment method for this ad account.' ) ); } }; - var ReactCSSTransitionGroupChild31 = function (x) { + var ReactCSSTransitionGroupChild31 = function(x) { if (x === 52) { return XUINotice30(51); } }; - var ReactTransitionGroup32 = function (x) { + var ReactTransitionGroup32 = function(x) { if (x === 53) { return React.createElement( - "span", + 'span', null, ReactCSSTransitionGroupChild31(52) ); } }; - var ReactCSSTransitionGroup33 = function (x) { + var ReactCSSTransitionGroup33 = function(x) { if (x === 54) { return ReactTransitionGroup32(53); } }; - var AdsPETopError34 = function (x) { + var AdsPETopError34 = function(x) { if (x === 55) { return React.createElement( - "div", - { className: "_2wdc" }, + 'div', + {className: '_2wdc'}, ReactCSSTransitionGroup33(54) ); } }; - var FluxContainer_AdsPETopErrorContainer_35 = function (x) { + var FluxContainer_AdsPETopErrorContainer_35 = function(x) { if (x === 56) { return AdsPETopError34(55); } }; - var FluxContainer_AdsGuidanceChannel_36 = function (x) { + var FluxContainer_AdsGuidanceChannel_36 = function(x) { if (x === 59) { return null; } }; - var ResponsiveBlock37 = function (x) { + var ResponsiveBlock37 = function(x) { if (x === 62) { return React.createElement( - "div", - { className: "_4u-c" }, - [ - AdsErrorBoundary10(58), - AdsErrorBoundary10(61) - ], - React.createElement( - "div", - { key: "sensor", className: "_4u-f" }, - React.createElement("iframe", { "aria-hidden": "true", className: "_1_xb", tabIndex: "-1" }) + 'div', + {className: '_4u-c'}, + [AdsErrorBoundary10(58), AdsErrorBoundary10(61)], + React.createElement( + 'div', + {key: 'sensor', className: '_4u-f'}, + React.createElement('iframe', { + 'aria-hidden': 'true', + className: '_1_xb', + tabIndex: '-1', + }) ) ); } if (x === 469) { return React.createElement( - "div", - { className: "_4u-c" }, + 'div', + {className: '_4u-c'}, AdsPEDataTableContainer158(468), React.createElement( - "div", - { key: "sensor", className: "_4u-f" }, - React.createElement("iframe", { "aria-hidden": "true", className: "_1_xb", tabIndex: "-1" }) + 'div', + {key: 'sensor', className: '_4u-f'}, + React.createElement('iframe', { + 'aria-hidden': 'true', + className: '_1_xb', + tabIndex: '-1', + }) ) ); } }; - var FluxContainer_AdsBulkEditDialogContainer_38 = function (x) { + var FluxContainer_AdsBulkEditDialogContainer_38 = function(x) { if (x === 63) { return null; } }; - var Column39 = function (x) { + var Column39 = function(x) { if (x === 66) { return React.createElement( - "div", - { className: "_4bl8 _4bl7" }, + 'div', + {className: '_4bl8 _4bl7'}, React.createElement( - "div", - { className: "_3c5f" }, + 'div', + {className: '_3c5f'}, null, null, - React.createElement("div", { className: "_3c5i" }), + React.createElement('div', {className: '_3c5i'}), null ) ); } }; - var XUIButtonGroup40 = function (x) { + var XUIButtonGroup40 = function(x) { if (x === 75) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, + 'div', + {className: '_5n7z _51xa'}, XUIButton4(69), ReactPopoverMenu20(74) ); } if (x === 84) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, + 'div', + {className: '_5n7z _51xa'}, XUIButton4(78), ReactPopoverMenu20(83) ); } if (x === 97) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, + 'div', + {className: '_5n7z _51xa'}, XUIButton4(90), XUIButton4(93), XUIButton4(96) @@ -1173,8 +1488,8 @@ } if (x === 117) { return React.createElement( - "div", - { className: "_5n7z _51xa" }, + 'div', + {className: '_5n7z _51xa'}, AdsPEExportImportMenuContainer48(107), XUIButton4(110), AdsPECampaignGroupTagContainer51(116) @@ -1182,52 +1497,54 @@ } }; - var AdsPEEditToolbarButton41 = function (x) { + var AdsPEEditToolbarButton41 = function(x) { if (x === 85) { return XUIButtonGroup40(84); } }; - var FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42 = function (x) { + var FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42 = function( + x + ) { if (x === 86) { return AdsPEEditToolbarButton41(85); } }; - var FluxContainer_AdsPEEditToolbarButtonContainer_43 = function (x) { + var FluxContainer_AdsPEEditToolbarButtonContainer_43 = function(x) { if (x === 87) { return FluxContainer_AdsPEEditCampaignGroupToolbarButtonContainer_42(86); } }; - var AdsPEExportImportMenu44 = function (x) { + var AdsPEExportImportMenu44 = function(x) { if (x === 103) { return ReactPopoverMenu20(102); } }; - var FluxContainer_AdsPECustomizeExportContainer_45 = function (x) { + var FluxContainer_AdsPECustomizeExportContainer_45 = function(x) { if (x === 104) { return null; } }; - var AdsPEExportAsTextDialog46 = function (x) { + var AdsPEExportAsTextDialog46 = function(x) { if (x === 105) { return null; } }; - var FluxContainer_AdsPEExportAsTextDialogContainer_47 = function (x) { + var FluxContainer_AdsPEExportAsTextDialogContainer_47 = function(x) { if (x === 106) { return AdsPEExportAsTextDialog46(105); } }; - var AdsPEExportImportMenuContainer48 = function (x) { + var AdsPEExportImportMenuContainer48 = function(x) { if (x === 107) { return React.createElement( - "span", + 'span', null, AdsPEExportImportMenu44(103), FluxContainer_AdsPECustomizeExportContainer_45(104), @@ -1238,7 +1555,7 @@ } }; - var Constructor49 = function (x) { + var Constructor49 = function(x) { if (x === 114) { return null; } @@ -1253,45 +1570,45 @@ } }; - var TagSelectorPopover50 = function (x) { + var TagSelectorPopover50 = function(x) { if (x === 115) { return React.createElement( - "span", - { className: " _3d6e" }, + 'span', + {className: ' _3d6e'}, XUIButton4(113), Constructor49(114) ); } }; - var AdsPECampaignGroupTagContainer51 = function (x) { + var AdsPECampaignGroupTagContainer51 = function(x) { if (x === 116) { return TagSelectorPopover50(115); } }; - var AdsRuleToolbarMenu52 = function (x) { + var AdsRuleToolbarMenu52 = function(x) { if (x === 118) { return null; } }; - var FluxContainer_AdsPERuleToolbarMenuContainer_53 = function (x) { + var FluxContainer_AdsPERuleToolbarMenuContainer_53 = function(x) { if (x === 119) { return AdsRuleToolbarMenu52(118); } }; - var FillColumn54 = function (x) { + var FillColumn54 = function(x) { if (x === 120) { return React.createElement( - "div", - { className: "_4bl9" }, + 'div', + {className: '_4bl9'}, React.createElement( - "span", - { className: "_3c5e" }, + 'span', + {className: '_3c5e'}, React.createElement( - "span", + 'span', null, XUIButtonGroup40(75), FluxContainer_AdsPEEditToolbarButtonContainer_43(87), @@ -1305,38 +1622,38 @@ } }; - var Layout55 = function (x) { + var Layout55 = function(x) { if (x === 121) { return React.createElement( - "div", - { className: "clearfix" }, + 'div', + {className: 'clearfix'}, Column39(66), FillColumn54(120) ); } }; - var AdsPEMainPaneToolbar56 = function (x) { + var AdsPEMainPaneToolbar56 = function(x) { if (x === 122) { return React.createElement( - "div", - { className: "_3c5b clearfix" }, + 'div', + {className: '_3c5b clearfix'}, Layout55(121) ); } }; - var AdsPECampaignGroupToolbarContainer57 = function (x) { + var AdsPECampaignGroupToolbarContainer57 = function(x) { if (x === 123) { return AdsPEMainPaneToolbar56(122); } }; - var AdsPEFiltersPopover58 = function (x) { + var AdsPEFiltersPopover58 = function(x) { if (x === 144) { return React.createElement( - "span", - { className: "_5b-l _5bbe" }, + 'span', + {className: '_5b-l _5bbe'}, ReactXUIPopoverButton6(133), ReactXUIPopoverButton6(141), [Constructor49(142), Constructor49(143)] @@ -1344,26 +1661,46 @@ } }; - var AbstractCheckboxInput59 = function (x) { + var AbstractCheckboxInput59 = function(x) { if (x === 145) { return React.createElement( - "label", - { className: "uiInputLabelInput _55sg _kv1" }, - React.createElement("input", { checked: true, disabled: true, name: "filterUnpublished", value: "on", onClick: function () {}, className: null, id: "js_input_label_21", type: "checkbox" }), - React.createElement("span", { "data-hover": null, "data-tooltip-content": undefined }) + 'label', + {className: 'uiInputLabelInput _55sg _kv1'}, + React.createElement('input', { + checked: true, + disabled: true, + name: 'filterUnpublished', + value: 'on', + onClick: function() {}, + className: null, + id: 'js_input_label_21', + type: 'checkbox', + }), + React.createElement('span', { + 'data-hover': null, + 'data-tooltip-content': undefined, + }) ); } if (x === 336) { return React.createElement( - "label", - { className: "_4h2r _55sg _kv1" }, - React.createElement("input", { checked: undefined, onChange: function () {}, className: null, type: "checkbox" }), - React.createElement("span", { "data-hover": null, "data-tooltip-content": undefined }) + 'label', + {className: '_4h2r _55sg _kv1'}, + React.createElement('input', { + checked: undefined, + onChange: function() {}, + className: null, + type: 'checkbox', + }), + React.createElement('span', { + 'data-hover': null, + 'data-tooltip-content': undefined, + }) ); } }; - var XUICheckboxInput60 = function (x) { + var XUICheckboxInput60 = function(x) { if (x === 146) { return AbstractCheckboxInput59(145); } @@ -1372,30 +1709,34 @@ } }; - var InputLabel61 = function (x) { + var InputLabel61 = function(x) { if (x === 147) { return React.createElement( - "div", - { display: "block", className: "uiInputLabel clearfix" }, + 'div', + {display: 'block', className: 'uiInputLabel clearfix'}, XUICheckboxInput60(146), React.createElement( - "label", - { className: "uiInputLabelLabel", htmlFor: "js_input_label_21" }, - "Always show new items" + 'label', + {className: 'uiInputLabelLabel', htmlFor: 'js_input_label_21'}, + 'Always show new items' ) ); } }; - var AdsPopoverLink62 = function (x) { + var AdsPopoverLink62 = function(x) { if (x === 154) { return React.createElement( - "span", + 'span', null, React.createElement( - "span", - { onMouseEnter: function () {}, onMouseLeave: function () {}, onMouseUp: undefined }, - React.createElement("span", { className: "_3o_j" }), + 'span', + { + onMouseEnter: function() {}, + onMouseLeave: function() {}, + onMouseUp: undefined, + }, + React.createElement('span', {className: '_3o_j'}), ReactImage0(153) ), null @@ -1403,12 +1744,16 @@ } if (x === 238) { return React.createElement( - "span", + 'span', null, React.createElement( - "span", - { onMouseEnter: function () {}, onMouseLeave: function () {}, onMouseUp: undefined }, - React.createElement("span", { className: "_3o_j" }), + 'span', + { + onMouseEnter: function() {}, + onMouseLeave: function() {}, + onMouseUp: undefined, + }, + React.createElement('span', {className: '_3o_j'}), ReactImage0(237) ), null @@ -1416,7 +1761,7 @@ } }; - var AdsHelpLink63 = function (x) { + var AdsHelpLink63 = function(x) { if (x === 155) { return AdsPopoverLink62(154); } @@ -1425,19 +1770,19 @@ } }; - var BUIFilterTokenInput64 = function (x) { + var BUIFilterTokenInput64 = function(x) { if (x === 158) { return React.createElement( - "div", - { className: "_5b5o _3yz3 _4cld" }, + 'div', + {className: '_5b5o _3yz3 _4cld'}, React.createElement( - "div", - { className: "_5b5t _2d2k" }, + 'div', + {className: '_5b5t _2d2k'}, ReactImage0(152), React.createElement( - "div", - { className: "_5b5r" }, - "Campaigns: (1)", + 'div', + {className: '_5b5r'}, + 'Campaigns: (1)', AdsHelpLink63(155) ) ), @@ -1446,27 +1791,27 @@ } }; - var BUIFilterToken65 = function (x) { + var BUIFilterToken65 = function(x) { if (x === 159) { return React.createElement( - "div", - { className: "_3yz1 _3yz2 _3dad" }, + 'div', + {className: '_3yz1 _3yz2 _3dad'}, React.createElement( - "div", - { className: "_3yz4", "aria-hidden": false }, + 'div', + {className: '_3yz4', 'aria-hidden': false}, React.createElement( - "div", - { onClick: function () {}, className: "_3yz5" }, + 'div', + {onClick: function() {}, className: '_3yz5'}, ReactImage0(148), + React.createElement('div', {className: '_3yz7'}, 'Campaigns:'), React.createElement( - "div", - { className: "_3yz7" }, - "Campaigns:" - ), - React.createElement( - "div", - { className: "ellipsis _3yz8", "data-hover": "tooltip", "data-tooltip-display": "overflow" }, - "(1)" + 'div', + { + className: 'ellipsis _3yz8', + 'data-hover': 'tooltip', + 'data-tooltip-display': 'overflow', + }, + '(1)' ) ), null, @@ -1477,32 +1822,28 @@ } }; - var BUIFilterTokenCreateButton66 = function (x) { + var BUIFilterTokenCreateButton66 = function(x) { if (x === 163) { - return React.createElement( - "div", - { className: "_1tc" }, - XUIButton4(162) - ); + return React.createElement('div', {className: '_1tc'}, XUIButton4(162)); } }; - var BUIFilterTokenizer67 = function (x) { + var BUIFilterTokenizer67 = function(x) { if (x === 164) { return React.createElement( - "div", - { className: "_5b-m clearfix" }, + 'div', + {className: '_5b-m clearfix'}, undefined, [], BUIFilterToken65(159), BUIFilterTokenCreateButton66(163), null, - React.createElement("div", { className: "_49u3" }) + React.createElement('div', {className: '_49u3'}) ); } }; - var XUIAmbientNUX68 = function (x) { + var XUIAmbientNUX68 = function(x) { if (x === 165) { return null; } @@ -1514,7 +1855,7 @@ } }; - var XUIAmbientNUX69 = function (x) { + var XUIAmbientNUX69 = function(x) { if (x === 166) { return XUIAmbientNUX68(165); } @@ -1526,83 +1867,93 @@ } }; - var AdsPEAmbientNUXMegaphone70 = function (x) { + var AdsPEAmbientNUXMegaphone70 = function(x) { if (x === 167) { return React.createElement( - "span", + 'span', null, - React.createElement("span", { }), + React.createElement('span', {}), XUIAmbientNUX69(166) ); } }; - var AdsPEFilters71 = function (x) { + var AdsPEFilters71 = function(x) { if (x === 168) { return React.createElement( - "div", - { className: "_4rw_" }, + 'div', + {className: '_4rw_'}, AdsPEFiltersPopover58(144), - React.createElement( - "div", - { className: "_1eo" }, - InputLabel61(147) - ), + React.createElement('div', {className: '_1eo'}, InputLabel61(147)), BUIFilterTokenizer67(164), - "", + '', AdsPEAmbientNUXMegaphone70(167) ); } }; - var AdsPEFilterContainer72 = function (x) { + var AdsPEFilterContainer72 = function(x) { if (x === 169) { return AdsPEFilters71(168); } }; - var AdsPETablePager73 = function (x) { + var AdsPETablePager73 = function(x) { if (x === 172) { return null; } }; - var AdsPECampaignGroupTablePagerContainer74 = function (x) { + var AdsPECampaignGroupTablePagerContainer74 = function(x) { if (x === 173) { return AdsPETablePager73(172); } }; - var AdsPETablePagerContainer75 = function (x) { + var AdsPETablePagerContainer75 = function(x) { if (x === 174) { return AdsPECampaignGroupTablePagerContainer74(173); } }; - var ReactXUIError76 = function (x) { + var ReactXUIError76 = function(x) { if (x === 181) { return AbstractButton3(180); } if (x === 216) { return React.createElement( - "div", - { className: "_40bf _2vl4 _1h18" }, + 'div', + {className: '_40bf _2vl4 _1h18'}, null, null, React.createElement( - "div", - { className: "_2vl9 _1h1f", style: { "backgroundColor": "#fff" } }, + 'div', + {className: '_2vl9 _1h1f', style: {backgroundColor: '#fff'}}, React.createElement( - "div", - { className: "_2vla _1h1g" }, + 'div', + {className: '_2vla _1h1g'}, React.createElement( - "div", + 'div', null, null, - React.createElement("textarea", { className: "_2vli _2vlj _1h26 _1h27", dir: "auto", disabled: undefined, id: undefined, maxLength: null, value: "Test Campaign", onBlur: function () {}, onChange: function () {}, onFocus: function () {}, onKeyDown: function () {} }), + React.createElement('textarea', { + className: '_2vli _2vlj _1h26 _1h27', + dir: 'auto', + disabled: undefined, + id: undefined, + maxLength: null, + value: 'Test Campaign', + onBlur: function() {}, + onChange: function() {}, + onFocus: function() {}, + onKeyDown: function() {}, + }), null ), - React.createElement("div", { "aria-hidden": "true", className: "_2vlk" }) + React.createElement('div', { + 'aria-hidden': 'true', + className: '_2vlk', + }) ) ), null @@ -1619,42 +1970,35 @@ } }; - var BUIPopoverButton77 = function (x) { + var BUIPopoverButton77 = function(x) { if (x === 182) { return ReactXUIError76(181); } }; - var BUIDateRangePicker78 = function (x) { + var BUIDateRangePicker78 = function(x) { if (x === 184) { - return React.createElement( - "span", - null, - BUIPopoverButton77(182), - [Constructor49(183)] - ); + return React.createElement('span', null, BUIPopoverButton77(182), [ + Constructor49(183), + ]); } }; - var AdsPEStatsRangePicker79 = function (x) { + var AdsPEStatsRangePicker79 = function(x) { if (x === 185) { return BUIDateRangePicker78(184); } }; - var AdsPEStatRange80 = function (x) { + var AdsPEStatRange80 = function(x) { if (x === 191) { return React.createElement( - "div", - { className: "_3c5k" }, - React.createElement( - "span", - { className: "_3c5j" }, - "Stats:" - ), + 'div', + {className: '_3c5k'}, + React.createElement('span', {className: '_3c5j'}, 'Stats:'), React.createElement( - "span", - { className: "_3c5l" }, + 'span', + {className: '_3c5l'}, AdsPEStatsRangePicker79(185), XUIButton4(188) ), @@ -1663,29 +2007,29 @@ } }; - var AdsPEStatRangeContainer81 = function (x) { + var AdsPEStatRangeContainer81 = function(x) { if (x === 192) { return AdsPEStatRange80(191); } }; - var AdsPESideTrayTabButton82 = function (x) { + var AdsPESideTrayTabButton82 = function(x) { if (x === 196) { return React.createElement( - "div", - { className: "_1-ly _59j9 _d9a", onClick: function () {} }, + 'div', + {className: '_1-ly _59j9 _d9a', onClick: function() {}}, ReactImage0(195), - React.createElement("div", { className: "_vf7" }), - React.createElement("div", { className: "_vf8" }) + React.createElement('div', {className: '_vf7'}), + React.createElement('div', {className: '_vf8'}) ); } if (x === 199) { return React.createElement( - "div", - { className: " _1-lz _d9a", onClick: function () {} }, + 'div', + {className: ' _1-lz _d9a', onClick: function() {}}, ReactImage0(198), - React.createElement("div", { className: "_vf7" }), - React.createElement("div", { className: "_vf8" }) + React.createElement('div', {className: '_vf7'}), + React.createElement('div', {className: '_vf8'}) ); } if (x === 203) { @@ -1693,16 +2037,16 @@ } }; - var AdsPEEditorTrayTabButton83 = function (x) { + var AdsPEEditorTrayTabButton83 = function(x) { if (x === 197) { return AdsPESideTrayTabButton82(196); } }; - var AdsPEInsightsTrayTabButton84 = function (x) { + var AdsPEInsightsTrayTabButton84 = function(x) { if (x === 202) { return React.createElement( - "span", + 'span', null, AdsPESideTrayTabButton82(199), XUIAmbientNUX69(201) @@ -1710,97 +2054,93 @@ } }; - var AdsPENekoDebuggerTrayTabButton85 = function (x) { + var AdsPENekoDebuggerTrayTabButton85 = function(x) { if (x === 204) { return AdsPESideTrayTabButton82(203); } }; - var AdsPEEditorChildLink86 = function (x) { + var AdsPEEditorChildLink86 = function(x) { if (x === 211) { return React.createElement( - "div", - { className: "_3ywr" }, + 'div', + {className: '_3ywr'}, Link2(208), - React.createElement( - "span", - { className: "_3ywq" }, - "|" - ), + React.createElement('span', {className: '_3ywq'}, '|'), Link2(210) ); } }; - var AdsPEEditorChildLinkContainer87 = function (x) { + var AdsPEEditorChildLinkContainer87 = function(x) { if (x === 212) { return AdsPEEditorChildLink86(211); } }; - var AdsPEHeaderSection88 = function (x) { + var AdsPEHeaderSection88 = function(x) { if (x === 213) { return React.createElement( - "div", - { className: "_yke" }, - React.createElement("div", { className: "_2x9d _pr-" }), + 'div', + {className: '_yke'}, + React.createElement('div', {className: '_2x9d _pr-'}), XUIText29(205), React.createElement( - "div", - { className: "_3a-a" }, - React.createElement( - "div", - { className: "_3a-b" }, - XUIText29(206) - ) + 'div', + {className: '_3a-a'}, + React.createElement('div', {className: '_3a-b'}, XUIText29(206)) ), AdsPEEditorChildLinkContainer87(212) ); } }; - var AdsPECampaignGroupHeaderSectionContainer89 = function (x) { + var AdsPECampaignGroupHeaderSectionContainer89 = function(x) { if (x === 214) { return AdsPEHeaderSection88(213); } }; - var AdsEditorLoadingErrors90 = function (x) { + var AdsEditorLoadingErrors90 = function(x) { if (x === 215) { return null; } }; - var AdsTextInput91 = function (x) { + var AdsTextInput91 = function(x) { if (x === 217) { return ReactXUIError76(216); } }; - var BUIFormElement92 = function (x) { + var BUIFormElement92 = function(x) { if (x === 218) { return React.createElement( - "div", - { className: "_5521 clearfix" }, + 'div', + {className: '_5521 clearfix'}, React.createElement( - "div", - { className: "_5522 _3w5q" }, + 'div', + {className: '_5522 _3w5q'}, React.createElement( - "label", - { onClick: undefined, htmlFor: "1467872040612:1961945894", className: "_5523 _3w5r" }, - "Campaign Name", + 'label', + { + onClick: undefined, + htmlFor: '1467872040612:1961945894', + className: '_5523 _3w5r', + }, + 'Campaign Name', null ) ), React.createElement( - "div", - { className: "_5527" }, + 'div', + {className: '_5527'}, React.createElement( - "div", - { className: "_5528" }, + 'div', + {className: '_5528'}, React.createElement( - "span", - { key: ".0", className: "_40bg", id: "1467872040612:1961945894" }, + 'span', + {key: '.0', className: '_40bg', id: '1467872040612:1961945894'}, AdsTextInput91(217), null ) @@ -1811,42 +2151,42 @@ } }; - var BUIForm93 = function (x) { + var BUIForm93 = function(x) { if (x === 219) { return React.createElement( - "div", - { className: "_5ks1 _550r _550t _550y _3w5n" }, + 'div', + {className: '_5ks1 _550r _550t _550y _3w5n'}, BUIFormElement92(218) ); } }; - var XUICard94 = function (x) { + var XUICard94 = function(x) { if (x === 220) { return React.createElement( - "div", - { className: "_40bc _12k2 _4-u2 _4-u8" }, + 'div', + {className: '_40bc _12k2 _4-u2 _4-u8'}, BUIForm93(219) ); } if (x === 249) { return React.createElement( - "div", - { className: "_12k2 _4-u2 _4-u8" }, + 'div', + {className: '_12k2 _4-u2 _4-u8'}, AdsCardHeader103(230), AdsCardSection108(248) ); } if (x === 279) { return React.createElement( - "div", - { className: "_12k2 _4-u2 _4-u8" }, + 'div', + {className: '_12k2 _4-u2 _4-u8'}, AdsCardLeftRightHeader122(278) ); } }; - var AdsCard95 = function (x) { + var AdsCard95 = function(x) { if (x === 222) { return ReactXUIError76(221); } @@ -1858,25 +2198,25 @@ } }; - var AdsEditorNameSection96 = function (x) { + var AdsEditorNameSection96 = function(x) { if (x === 223) { return AdsCard95(222); } }; - var AdsCampaignGroupNameSectionContainer97 = function (x) { + var AdsCampaignGroupNameSectionContainer97 = function(x) { if (x === 224) { return AdsEditorNameSection96(223); } }; - var _render98 = function (x) { + var _render98 = function(x) { if (x === 225) { return AdsCampaignGroupNameSectionContainer97(224); } }; - var AdsPluginWrapper99 = function (x) { + var AdsPluginWrapper99 = function(x) { if (x === 226) { return _render98(225); } @@ -1894,55 +2234,58 @@ } }; - var XUICardHeaderTitle100 = function (x) { + var XUICardHeaderTitle100 = function(x) { if (x === 227) { return React.createElement( - "span", - { className: "_38my" }, - "Campaign Details", + 'span', + {className: '_38my'}, + 'Campaign Details', null, - React.createElement("span", { className: "_c1c" }) + React.createElement('span', {className: '_c1c'}) ); } if (x === 265) { return React.createElement( - "span", - { className: "_38my" }, - [React.createElement( - "span", - { key: 1 }, - "Campaign ID", - ": ", - "98010048849317" - ), React.createElement( - "div", - { className: "_5lh9", key: 2 }, - FluxContainer_AdsCampaignGroupStatusSwitchContainer_119(264) - )], + 'span', + {className: '_38my'}, + [ + React.createElement( + 'span', + {key: 1}, + 'Campaign ID', + ': ', + '98010048849317' + ), + React.createElement( + 'div', + {className: '_5lh9', key: 2}, + FluxContainer_AdsCampaignGroupStatusSwitchContainer_119(264) + ), + ], null, - React.createElement("span", { className: "_c1c" }) + React.createElement('span', {className: '_c1c'}) ); } }; - var XUICardSection101 = function (x) { + var XUICardSection101 = function(x) { if (x === 228) { return React.createElement( - "div", - { className: "_5dw9 _5dwa _4-u3" }, + 'div', + {className: '_5dw9 _5dwa _4-u3'}, [XUICardHeaderTitle100(227)], undefined, undefined, - React.createElement("div", { className: "_3s3-" }) + React.createElement('div', {className: '_3s3-'}) ); } if (x === 247) { return React.createElement( - "div", - { className: "_12jy _4-u3" }, + 'div', + {className: '_12jy _4-u3'}, React.createElement( - "div", - { className: "_3-8j" }, + 'div', + {className: '_3-8j'}, FlexibleBlock105(233), FlexibleBlock105(236), FlexibleBlock105(246), @@ -1953,61 +2296,61 @@ } }; - var XUICardHeader102 = function (x) { + var XUICardHeader102 = function(x) { if (x === 229) { return XUICardSection101(228); } }; - var AdsCardHeader103 = function (x) { + var AdsCardHeader103 = function(x) { if (x === 230) { return XUICardHeader102(229); } }; - var AdsLabeledField104 = function (x) { + var AdsLabeledField104 = function(x) { if (x === 231) { return React.createElement( - "div", - { className: "_2oc6 _3bvz", label: "Objective" }, + 'div', + {className: '_2oc6 _3bvz', label: 'Objective'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Objective " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Objective ' ), null, - React.createElement("div", { className: "_3bv-" }) + React.createElement('div', {className: '_3bv-'}) ); } if (x === 234) { return React.createElement( - "div", - { className: "_2oc6 _3bvz", label: "Buying Type" }, + 'div', + {className: '_2oc6 _3bvz', label: 'Buying Type'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Buying Type " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Buying Type ' ), null, - React.createElement("div", { className: "_3bv-" }) + React.createElement('div', {className: '_3bv-'}) ); } if (x === 240) { return React.createElement( - "div", - { className: "_2oc6 _3bvz" }, + 'div', + {className: '_2oc6 _3bvz'}, React.createElement( - "label", - { className: "_4el4 _3qwj _3hy-", htmlFor: undefined }, - "Campaign Spending Limit " + 'label', + {className: '_4el4 _3qwj _3hy-', htmlFor: undefined}, + 'Campaign Spending Limit ' ), AdsHelpLink63(239), - React.createElement("div", { className: "_3bv-" }) + React.createElement('div', {className: '_3bv-'}) ); } }; - var FlexibleBlock105 = function (x) { + var FlexibleBlock105 = function(x) { if (x === 233) { return LeftRight21(232); } @@ -2019,247 +2362,263 @@ } }; - var AdsBulkCampaignSpendCapField106 = function (x) { + var AdsBulkCampaignSpendCapField106 = function(x) { if (x === 243) { return React.createElement( - "div", - { className: "_33dv" }, - "", + 'div', + {className: '_33dv'}, + '', Link2(242), - " (optional)" + ' (optional)' ); } }; - var FluxContainer_AdsCampaignGroupSpendCapContainer_107 = function (x) { + var FluxContainer_AdsCampaignGroupSpendCapContainer_107 = function(x) { if (x === 244) { return AdsBulkCampaignSpendCapField106(243); } }; - var AdsCardSection108 = function (x) { + var AdsCardSection108 = function(x) { if (x === 248) { return XUICardSection101(247); } }; - var AdsEditorCampaignGroupDetailsSection109 = function (x) { + var AdsEditorCampaignGroupDetailsSection109 = function(x) { if (x === 252) { return AdsCard95(251); } }; - var AdsEditorCampaignGroupDetailsSectionContainer110 = function (x) { + var AdsEditorCampaignGroupDetailsSectionContainer110 = function(x) { if (x === 253) { return AdsEditorCampaignGroupDetailsSection109(252); } }; - var _render111 = function (x) { + var _render111 = function(x) { if (x === 254) { return AdsEditorCampaignGroupDetailsSectionContainer110(253); } }; - var FluxContainer_AdsEditorToplineDetailsSectionContainer_112 = function (x) { + var FluxContainer_AdsEditorToplineDetailsSectionContainer_112 = function(x) { if (x === 256) { return null; } }; - var _render113 = function (x) { + var _render113 = function(x) { if (x === 257) { return FluxContainer_AdsEditorToplineDetailsSectionContainer_112(256); } }; - var AdsStickyArea114 = function (x) { + var AdsStickyArea114 = function(x) { if (x === 259) { return React.createElement( - "div", - { }, - React.createElement("div", { onWheel: function () {} }) + 'div', + {}, + React.createElement('div', {onWheel: function() {}}) ); } if (x === 292) { return React.createElement( - "div", - { }, - React.createElement( - "div", - { onWheel: function () {} }, - [React.createElement( - "div", - { key: "campaign_group_errors_section98010048849317" }, + 'div', + {}, + React.createElement('div', {onWheel: function() {}}, [ + React.createElement( + 'div', + {key: 'campaign_group_errors_section98010048849317'}, AdsPluginWrapper99(291) - )] - ) + ), + ]) ); } }; - var FluxContainer_AdsEditorColumnContainer_115 = function (x) { + var FluxContainer_AdsEditorColumnContainer_115 = function(x) { if (x === 260) { return React.createElement( - "div", + 'div', null, - [React.createElement( - "div", - { key: "campaign_group_name_section98010048849317" }, - AdsPluginWrapper99(226) - ), React.createElement( - "div", - { key: "campaign_group_basic_section98010048849317" }, - AdsPluginWrapper99(255) - ), React.createElement( - "div", - { key: "campaign_group_topline_section98010048849317" }, - AdsPluginWrapper99(258) - )], + [ + React.createElement( + 'div', + {key: 'campaign_group_name_section98010048849317'}, + AdsPluginWrapper99(226) + ), + React.createElement( + 'div', + {key: 'campaign_group_basic_section98010048849317'}, + AdsPluginWrapper99(255) + ), + React.createElement( + 'div', + {key: 'campaign_group_topline_section98010048849317'}, + AdsPluginWrapper99(258) + ), + ], AdsStickyArea114(259) ); } if (x === 293) { return React.createElement( - "div", + 'div', null, - [React.createElement( - "div", - { key: "campaign_group_navigation_section98010048849317" }, - AdsPluginWrapper99(287) - )], + [ + React.createElement( + 'div', + {key: 'campaign_group_navigation_section98010048849317'}, + AdsPluginWrapper99(287) + ), + ], AdsStickyArea114(292) ); } }; - var BUISwitch116 = function (x) { + var BUISwitch116 = function(x) { if (x === 261) { return React.createElement( - "div", - { "data-hover": "tooltip", "data-tooltip-content": "Currently active. Click this switch to deactivate it.", "data-tooltip-position": "below", disabled: false, value: true, onToggle: function () {}, className: "_128j _128k _128n", role: "checkbox", "aria-checked": "true" }, - React.createElement( - "div", - { className: "_128o", onClick: function () {}, onKeyDown: function () {}, onMouseDown: function () {}, tabIndex: "0" }, - React.createElement("div", { className: "_128p" }) + 'div', + { + 'data-hover': 'tooltip', + 'data-tooltip-content': + 'Currently active. Click this switch to deactivate it.', + 'data-tooltip-position': 'below', + disabled: false, + value: true, + onToggle: function() {}, + className: '_128j _128k _128n', + role: 'checkbox', + 'aria-checked': 'true', + }, + React.createElement( + 'div', + { + className: '_128o', + onClick: function() {}, + onKeyDown: function() {}, + onMouseDown: function() {}, + tabIndex: '0', + }, + React.createElement('div', {className: '_128p'}) ), null ); } }; - var AdsStatusSwitchInternal117 = function (x) { + var AdsStatusSwitchInternal117 = function(x) { if (x === 262) { return BUISwitch116(261); } }; - var AdsStatusSwitch118 = function (x) { + var AdsStatusSwitch118 = function(x) { if (x === 263) { return AdsStatusSwitchInternal117(262); } }; - var FluxContainer_AdsCampaignGroupStatusSwitchContainer_119 = function (x) { + var FluxContainer_AdsCampaignGroupStatusSwitchContainer_119 = function(x) { if (x === 264) { return AdsStatusSwitch118(263); } }; - var AdsLinksMenu120 = function (x) { + var AdsLinksMenu120 = function(x) { if (x === 275) { return ReactPopoverMenu20(274); } }; - var FluxContainer_AdsPluginizedLinksMenuContainer_121 = function (x) { + var FluxContainer_AdsPluginizedLinksMenuContainer_121 = function(x) { if (x === 276) { - return React.createElement( - "div", - null, - null, - AdsLinksMenu120(275) - ); + return React.createElement('div', null, null, AdsLinksMenu120(275)); } }; - var AdsCardLeftRightHeader122 = function (x) { + var AdsCardLeftRightHeader122 = function(x) { if (x === 278) { return LeftRight21(277); } }; - var AdsPEIDSection123 = function (x) { + var AdsPEIDSection123 = function(x) { if (x === 282) { return AdsCard95(281); } }; - var FluxContainer_AdsPECampaignGroupIDSectionContainer_124 = function (x) { + var FluxContainer_AdsPECampaignGroupIDSectionContainer_124 = function(x) { if (x === 283) { return AdsPEIDSection123(282); } }; - var DeferredComponent125 = function (x) { + var DeferredComponent125 = function(x) { if (x === 284) { return FluxContainer_AdsPECampaignGroupIDSectionContainer_124(283); } }; - var BootloadedComponent126 = function (x) { + var BootloadedComponent126 = function(x) { if (x === 285) { return DeferredComponent125(284); } }; - var _render127 = function (x) { + var _render127 = function(x) { if (x === 286) { return BootloadedComponent126(285); } }; - var AdsEditorErrorsCard128 = function (x) { + var AdsEditorErrorsCard128 = function(x) { if (x === 288) { return null; } }; - var FluxContainer_FunctionalContainer_129 = function (x) { + var FluxContainer_FunctionalContainer_129 = function(x) { if (x === 289) { return AdsEditorErrorsCard128(288); } }; - var _render130 = function (x) { + var _render130 = function(x) { if (x === 290) { return FluxContainer_FunctionalContainer_129(289); } }; - var AdsEditorMultiColumnLayout131 = function (x) { + var AdsEditorMultiColumnLayout131 = function(x) { if (x === 294) { return React.createElement( - "div", - { className: "_psh" }, + 'div', + {className: '_psh'}, React.createElement( - "div", - { className: "_3cc0" }, + 'div', + {className: '_3cc0'}, React.createElement( - "div", + 'div', null, AdsEditorLoadingErrors90(215), React.createElement( - "div", - { className: "_3ms3" }, + 'div', + {className: '_3ms3'}, React.createElement( - "div", - { className: "_3ms4" }, + 'div', + {className: '_3ms4'}, FluxContainer_AdsEditorColumnContainer_115(260) ), React.createElement( - "div", - { className: "_3pvg" }, + 'div', + {className: '_3pvg'}, FluxContainer_AdsEditorColumnContainer_115(293) ) ) @@ -2269,10 +2628,10 @@ } }; - var AdsPECampaignGroupEditor132 = function (x) { + var AdsPECampaignGroupEditor132 = function(x) { if (x === 295) { return React.createElement( - "div", + 'div', null, AdsPECampaignGroupHeaderSectionContainer89(214), AdsEditorMultiColumnLayout131(294) @@ -2280,43 +2639,43 @@ } }; - var AdsPECampaignGroupEditorContainer133 = function (x) { + var AdsPECampaignGroupEditorContainer133 = function(x) { if (x === 296) { return AdsPECampaignGroupEditor132(295); } }; - var AdsPESideTrayTabContent134 = function (x) { + var AdsPESideTrayTabContent134 = function(x) { if (x === 297) { return React.createElement( - "div", - { className: "_1o_8 _44ra _5cyn" }, + 'div', + {className: '_1o_8 _44ra _5cyn'}, AdsPECampaignGroupEditorContainer133(296) ); } }; - var AdsPEEditorTrayTabContentContainer135 = function (x) { + var AdsPEEditorTrayTabContentContainer135 = function(x) { if (x === 298) { return AdsPESideTrayTabContent134(297); } }; - var AdsPEMultiTabDrawer136 = function (x) { + var AdsPEMultiTabDrawer136 = function(x) { if (x === 299) { return React.createElement( - "div", - { className: "_2kev _2kex" }, + 'div', + {className: '_2kev _2kex'}, React.createElement( - "div", - { className: "_5yno" }, + 'div', + {className: '_5yno'}, AdsPEEditorTrayTabButton83(197), AdsPEInsightsTrayTabButton84(202), AdsPENekoDebuggerTrayTabButton85(204) ), React.createElement( - "div", - { className: "_5ynn" }, + 'div', + {className: '_5ynn'}, AdsPEEditorTrayTabContentContainer135(298), null ) @@ -2324,17 +2683,17 @@ } }; - var FluxContainer_AdsPEMultiTabDrawerContainer_137 = function (x) { + var FluxContainer_AdsPEMultiTabDrawerContainer_137 = function(x) { if (x === 300) { return AdsPEMultiTabDrawer136(299); } }; - var AdsPESimpleOrganizer138 = function (x) { + var AdsPESimpleOrganizer138 = function(x) { if (x === 309) { return React.createElement( - "div", - { className: "_tm2" }, + 'div', + {className: '_tm2'}, XUIButton4(304), XUIButton4(306), XUIButton4(308) @@ -2342,350 +2701,275 @@ } }; - var AdsPEOrganizerContainer139 = function (x) { + var AdsPEOrganizerContainer139 = function(x) { if (x === 310) { - return React.createElement( - "div", - null, - AdsPESimpleOrganizer138(309) - ); + return React.createElement('div', null, AdsPESimpleOrganizer138(309)); } }; - var FixedDataTableColumnResizeHandle140 = function (x) { + var FixedDataTableColumnResizeHandle140 = function(x) { if (x === 313) { return React.createElement( - "div", - { className: "_3487 _3488 _3489", style: { "width": 0, "height": 25, "left": 0 } }, - React.createElement("div", { className: "_348a", style: { "height": 25 } }) + 'div', + { + className: '_3487 _3488 _3489', + style: {width: 0, height: 25, left: 0}, + }, + React.createElement('div', {className: '_348a', style: {height: 25}}) ); } }; - var AdsPETableHeader141 = function (x) { + var AdsPETableHeader141 = function(x) { if (x === 315) { return React.createElement( - "div", - { className: "_1cig _1ksv _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1ksv _1vd7 _4h2r', id: undefined}, ReactImage0(314), - React.createElement( - "span", - { className: "_1cid" }, - "Campaigns" - ) + React.createElement('span', {className: '_1cid'}, 'Campaigns') ); } if (x === 320) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Performance" - ) + React.createElement('span', {className: '_1cid'}, 'Performance') ); } if (x === 323) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Overview" - ) + React.createElement('span', {className: '_1cid'}, 'Overview') ); } if (x === 326) { return React.createElement( - "div", - { className: "_1cig _1vd7 _4h2r", id: undefined }, + 'div', + {className: '_1cig _1vd7 _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Toplines" - ) + React.createElement('span', {className: '_1cid'}, 'Toplines') ); } if (x === 329) { - return React.createElement("div", { className: "_1cig _1vd7 _4h2r", id: undefined }); + return React.createElement('div', { + className: '_1cig _1vd7 _4h2r', + id: undefined, + }); } if (x === 340) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Campaign Name" - ) + React.createElement('span', {className: '_1cid'}, 'Campaign Name') ); } if (x === 346) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined, "data-tooltip-content": "Changed", "data-hover": "tooltip" }, + 'div', + { + className: '_1cig _25fg', + id: undefined, + 'data-tooltip-content': 'Changed', + 'data-hover': 'tooltip', + }, ReactImage0(345), null ); } if (x === 352) { return React.createElement( - "div", - { className: "_1cig _25fg", id: "ads_pe_table_error_header", "data-tooltip-content": "Errors", "data-hover": "tooltip" }, + 'div', + { + className: '_1cig _25fg', + id: 'ads_pe_table_error_header', + 'data-tooltip-content': 'Errors', + 'data-hover': 'tooltip', + }, ReactImage0(351), null ); } if (x === 357) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Status" - ) + React.createElement('span', {className: '_1cid'}, 'Status') ); } if (x === 362) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Delivery" - ) + React.createElement('span', {className: '_1cid'}, 'Delivery') ); } if (x === 369) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Results" - ) + React.createElement('span', {className: '_1cid'}, 'Results') ); } if (x === 374) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Cost" - ) + React.createElement('span', {className: '_1cid'}, 'Cost') ); } if (x === 379) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Reach" - ) + React.createElement('span', {className: '_1cid'}, 'Reach') ); } if (x === 384) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Impressions" - ) + React.createElement('span', {className: '_1cid'}, 'Impressions') ); } if (x === 389) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Clicks" - ) + React.createElement('span', {className: '_1cid'}, 'Clicks') ); } if (x === 394) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Avg. CPM" - ) + React.createElement('span', {className: '_1cid'}, 'Avg. CPM') ); } if (x === 399) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Avg. CPC" - ) + React.createElement('span', {className: '_1cid'}, 'Avg. CPC') ); } if (x === 404) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "CTR %" - ) + React.createElement('span', {className: '_1cid'}, 'CTR %') ); } if (x === 409) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Spent" - ) + React.createElement('span', {className: '_1cid'}, 'Spent') ); } if (x === 414) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Objective" - ) + React.createElement('span', {className: '_1cid'}, 'Objective') ); } if (x === 419) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Buying Type" - ) + React.createElement('span', {className: '_1cid'}, 'Buying Type') ); } if (x === 424) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Campaign ID" - ) + React.createElement('span', {className: '_1cid'}, 'Campaign ID') ); } if (x === 429) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Start" - ) + React.createElement('span', {className: '_1cid'}, 'Start') ); } if (x === 434) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "End" - ) + React.createElement('span', {className: '_1cid'}, 'End') ); } if (x === 439) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Date created" - ) + React.createElement('span', {className: '_1cid'}, 'Date created') ); } if (x === 444) { return React.createElement( - "div", - { className: "_1cig _25fg", id: undefined }, + 'div', + {className: '_1cig _25fg', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Date last edited" - ) + React.createElement('span', {className: '_1cid'}, 'Date last edited') ); } if (x === 449) { return React.createElement( - "div", - { className: "_1cig _25fg _4h2r", id: undefined }, + 'div', + {className: '_1cig _25fg _4h2r', id: undefined}, null, - React.createElement( - "span", - { className: "_1cid" }, - "Tags" - ) + React.createElement('span', {className: '_1cid'}, 'Tags') ); } if (x === 452) { - return React.createElement("div", { className: "_1cig _25fg _4h2r", id: undefined }); + return React.createElement('div', { + className: '_1cig _25fg _4h2r', + id: undefined, + }); } }; - var TransitionCell142 = function (x) { + var TransitionCell142 = function(x) { if (x === 316) { return React.createElement( - "div", - { label: "Campaigns", height: 40, width: 721, className: "_4lgc _4h2u", style: { "height": 40, "width": 721 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaigns', + height: 40, + width: 721, + className: '_4lgc _4h2u', + style: {height: 40, width: 721}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, AdsPETableHeader141(315) ) ) @@ -2693,14 +2977,20 @@ } if (x === 321) { return React.createElement( - "div", - { label: "Performance", height: 40, width: 798, className: "_4lgc _4h2u", style: { "height": 40, "width": 798 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Performance', + height: 40, + width: 798, + className: '_4lgc _4h2u', + style: {height: 40, width: 798}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, AdsPETableHeader141(320) ) ) @@ -2708,14 +2998,20 @@ } if (x === 324) { return React.createElement( - "div", - { label: "Overview", height: 40, width: 1022, className: "_4lgc _4h2u", style: { "height": 40, "width": 1022 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Overview', + height: 40, + width: 1022, + className: '_4lgc _4h2u', + style: {height: 40, width: 1022}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, AdsPETableHeader141(323) ) ) @@ -2723,14 +3019,20 @@ } if (x === 327) { return React.createElement( - "div", - { label: "Toplines", height: 40, width: 0, className: "_4lgc _4h2u", style: { "height": 40, "width": 0 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Toplines', + height: 40, + width: 0, + className: '_4lgc _4h2u', + style: {height: 40, width: 0}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, AdsPETableHeader141(326) ) ) @@ -2738,14 +3040,20 @@ } if (x === 330) { return React.createElement( - "div", - { label: "", height: 40, width: 25, className: "_4lgc _4h2u", style: { "height": 40, "width": 25 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: '', + height: 40, + width: 25, + className: '_4lgc _4h2u', + style: {height: 40, width: 25}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, AdsPETableHeader141(329) ) ) @@ -2753,14 +3061,20 @@ } if (x === 338) { return React.createElement( - "div", - { label: undefined, width: 42, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 42 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 42, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 42}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, XUICheckboxInput60(337) ) ) @@ -2768,14 +3082,20 @@ } if (x === 343) { return React.createElement( - "div", - { label: "Campaign Name", width: 400, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 400 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaign Name', + width: 400, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 400}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(342) ) ) @@ -2783,14 +3103,20 @@ } if (x === 349) { return React.createElement( - "div", - { label: undefined, width: 33, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 33 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 33, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 33}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(348) ) ) @@ -2798,14 +3124,20 @@ } if (x === 355) { return React.createElement( - "div", - { label: undefined, width: 36, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 36 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: undefined, + width: 36, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 36}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(354) ) ) @@ -2813,14 +3145,20 @@ } if (x === 360) { return React.createElement( - "div", - { label: "Status", width: 60, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 60 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Status', + width: 60, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 60}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(359) ) ) @@ -2828,14 +3166,20 @@ } if (x === 365) { return React.createElement( - "div", - { label: "Delivery", width: 150, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 150 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Delivery', + width: 150, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 150}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(364) ) ) @@ -2843,14 +3187,20 @@ } if (x === 372) { return React.createElement( - "div", - { label: "Results", width: 140, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 140 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Results', + width: 140, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 140}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(371) ) ) @@ -2858,14 +3208,20 @@ } if (x === 377) { return React.createElement( - "div", - { label: "Cost", width: 140, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 140 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Cost', + width: 140, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 140}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(376) ) ) @@ -2873,14 +3229,20 @@ } if (x === 382) { return React.createElement( - "div", - { label: "Reach", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Reach', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(381) ) ) @@ -2888,14 +3250,20 @@ } if (x === 387) { return React.createElement( - "div", - { label: "Impressions", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Impressions', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(386) ) ) @@ -2903,14 +3271,20 @@ } if (x === 392) { return React.createElement( - "div", - { label: "Clicks", width: 60, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 60 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Clicks', + width: 60, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 60}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(391) ) ) @@ -2918,14 +3292,20 @@ } if (x === 397) { return React.createElement( - "div", - { label: "Avg. CPM", width: 80, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 80 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Avg. CPM', + width: 80, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 80}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(396) ) ) @@ -2933,14 +3313,20 @@ } if (x === 402) { return React.createElement( - "div", - { label: "Avg. CPC", width: 78, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 78 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Avg. CPC', + width: 78, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 78}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(401) ) ) @@ -2948,14 +3334,20 @@ } if (x === 407) { return React.createElement( - "div", - { label: "CTR %", width: 70, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 70 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'CTR %', + width: 70, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 70}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(406) ) ) @@ -2963,14 +3355,20 @@ } if (x === 412) { return React.createElement( - "div", - { label: "Spent", width: 70, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 70 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Spent', + width: 70, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 70}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(411) ) ) @@ -2978,14 +3376,20 @@ } if (x === 417) { return React.createElement( - "div", - { label: "Objective", width: 200, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 200 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Objective', + width: 200, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 200}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(416) ) ) @@ -2993,14 +3397,20 @@ } if (x === 422) { return React.createElement( - "div", - { label: "Buying Type", width: 100, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 100 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Buying Type', + width: 100, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 100}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(421) ) ) @@ -3008,14 +3418,20 @@ } if (x === 427) { return React.createElement( - "div", - { label: "Campaign ID", width: 120, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 120 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Campaign ID', + width: 120, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 120}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(426) ) ) @@ -3023,14 +3439,20 @@ } if (x === 432) { return React.createElement( - "div", - { label: "Start", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Start', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(431) ) ) @@ -3038,14 +3460,20 @@ } if (x === 437) { return React.createElement( - "div", - { label: "End", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'End', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(436) ) ) @@ -3053,14 +3481,20 @@ } if (x === 442) { return React.createElement( - "div", - { label: "Date created", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Date created', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(441) ) ) @@ -3068,14 +3502,20 @@ } if (x === 447) { return React.createElement( - "div", - { label: "Date last edited", width: 113, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 113 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Date last edited', + width: 113, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 113}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, FixedDataTableSortableHeader149(446) ) ) @@ -3083,14 +3523,20 @@ } if (x === 450) { return React.createElement( - "div", - { label: "Tags", width: 150, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 150 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: 'Tags', + width: 150, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 150}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, AdsPETableHeader141(449) ) ) @@ -3098,14 +3544,20 @@ } if (x === 453) { return React.createElement( - "div", - { label: "", width: 25, className: "_4lgc _4h2u", height: 25, style: { "height": 25, "width": 25 } }, - React.createElement( - "div", - { className: "_4lgd _4h2w" }, + 'div', + { + label: '', + width: 25, + className: '_4lgc _4h2u', + height: 25, + style: {height: 25, width: 25}, + }, + React.createElement( + 'div', + {className: '_4lgd _4h2w'}, React.createElement( - "div", - { className: "_4lge _4h2x" }, + 'div', + {className: '_4lge _4h2x'}, AdsPETableHeader141(452) ) ) @@ -3113,329 +3565,436 @@ } }; - var FixedDataTableCell143 = function (x) { + var FixedDataTableCell143 = function(x) { if (x === 317) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 721, "left": 0 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 721, left: 0}}, undefined, TransitionCell142(316) ); } if (x === 322) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 798, "left": 0 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 798, left: 0}}, undefined, TransitionCell142(321) ); } if (x === 325) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 1022, "left": 798 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 1022, left: 798}}, undefined, TransitionCell142(324) ); } if (x === 328) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 0, "left": 1820 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 0, left: 1820}}, undefined, TransitionCell142(327) ); } if (x === 331) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 40, "width": 25, "left": 1820 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 40, width: 25, left: 1820}}, undefined, TransitionCell142(330) ); } if (x === 339) { return React.createElement( - "div", - { className: "_4lg0 _4lg6 _4h2m", style: { "height": 25, "width": 42, "left": 0 } }, + 'div', + { + className: '_4lg0 _4lg6 _4h2m', + style: {height: 25, width: 42, left: 0}, + }, undefined, TransitionCell142(338) ); } if (x === 344) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 400, "left": 42 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 400, left: 42}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(343) ); } if (x === 350) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 33, "left": 442 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 33, left: 442}}, undefined, TransitionCell142(349) ); } if (x === 356) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 36, "left": 475 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 36, left: 475}}, undefined, TransitionCell142(355) ); } if (x === 361) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 60, "left": 511 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 60, left: 511}}, undefined, TransitionCell142(360) ); } if (x === 366) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 150, "left": 571 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 150, left: 571}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(365) ); } if (x === 373) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 140, "left": 0 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 140, left: 0}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(372) ); } if (x === 378) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 140, "left": 140 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 140, left: 140}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(377) ); } if (x === 383) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 280 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 280}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(382) ); } if (x === 388) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 360 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 360}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(387) ); } if (x === 393) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 60, "left": 440 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 60, left: 440}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(392) ); } if (x === 398) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 80, "left": 500 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 80, left: 500}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(397) ); } if (x === 403) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 78, "left": 580 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 78, left: 580}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(402) ); } if (x === 408) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 70, "left": 658 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 70, left: 658}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(407) ); } if (x === 413) { return React.createElement( - "div", - { className: "_4lg0 _4lg5 _4h2p _4h2m", style: { "height": 25, "width": 70, "left": 728 } }, - React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + { + className: '_4lg0 _4lg5 _4h2p _4h2m', + style: {height: 25, width: 70, left: 728}, + }, + React.createElement( + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(412) ); } if (x === 418) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 200, "left": 798 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 200, left: 798}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(417) ); } if (x === 423) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 100, "left": 998 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 100, left: 998}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(422) ); } if (x === 428) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 120, "left": 1098 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 120, left: 1098}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(427) ); } if (x === 433) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1218 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1218}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(432) ); } if (x === 438) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1331 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1331}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(437) ); } if (x === 443) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1444 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1444}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(442) ); } if (x === 448) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 113, "left": 1557 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 113, left: 1557}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(447) ); } if (x === 451) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 150, "left": 1670 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 150, left: 1670}}, React.createElement( - "div", - { className: "_4lg9", style: { "height": 25 }, onMouseDown: function () {} }, - React.createElement("div", { className: "_4lga _4lgb", style: { "height": 25 } }) + 'div', + {className: '_4lg9', style: {height: 25}, onMouseDown: function() {}}, + React.createElement('div', { + className: '_4lga _4lgb', + style: {height: 25}, + }) ), TransitionCell142(450) ); } if (x === 454) { return React.createElement( - "div", - { className: "_4lg0 _4h2m", style: { "height": 25, "width": 25, "left": 1820 } }, + 'div', + {className: '_4lg0 _4h2m', style: {height: 25, width: 25, left: 1820}}, undefined, TransitionCell142(453) ); } }; - var FixedDataTableCellGroupImpl144 = function (x) { + var FixedDataTableCellGroupImpl144 = function(x) { if (x === 318) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 40, "position": "absolute", "width": 721, "zIndex": 2, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, + 'div', + { + className: '_3pzj', + style: { + height: 40, + position: 'absolute', + width: 721, + zIndex: 2, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, FixedDataTableCell143(317) ); } if (x === 332) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 40, "position": "absolute", "width": 1845, "zIndex": 0, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, + 'div', + { + className: '_3pzj', + style: { + height: 40, + position: 'absolute', + width: 1845, + zIndex: 0, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, FixedDataTableCell143(322), FixedDataTableCell143(325), FixedDataTableCell143(328), @@ -3444,8 +4003,18 @@ } if (x === 367) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 25, "position": "absolute", "width": 721, "zIndex": 2, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, + 'div', + { + className: '_3pzj', + style: { + height: 25, + position: 'absolute', + width: 721, + zIndex: 2, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, FixedDataTableCell143(339), FixedDataTableCell143(344), FixedDataTableCell143(350), @@ -3456,8 +4025,18 @@ } if (x === 455) { return React.createElement( - "div", - { className: "_3pzj", style: { "height": 25, "position": "absolute", "width": 1845, "zIndex": 0, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, + 'div', + { + className: '_3pzj', + style: { + height: 25, + position: 'absolute', + width: 1845, + zIndex: 0, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, FixedDataTableCell143(373), FixedDataTableCell143(378), FixedDataTableCell143(383), @@ -3480,91 +4059,131 @@ } }; - var FixedDataTableCellGroup145 = function (x) { + var FixedDataTableCellGroup145 = function(x) { if (x === 319) { return React.createElement( - "div", - { style: { "height": 40, "left": 0 }, className: "_3pzk" }, + 'div', + {style: {height: 40, left: 0}, className: '_3pzk'}, FixedDataTableCellGroupImpl144(318) ); } if (x === 333) { return React.createElement( - "div", - { style: { "height": 40, "left": 721 }, className: "_3pzk" }, + 'div', + {style: {height: 40, left: 721}, className: '_3pzk'}, FixedDataTableCellGroupImpl144(332) ); } if (x === 368) { return React.createElement( - "div", - { style: { "height": 25, "left": 0 }, className: "_3pzk" }, + 'div', + {style: {height: 25, left: 0}, className: '_3pzk'}, FixedDataTableCellGroupImpl144(367) ); } if (x === 456) { return React.createElement( - "div", - { style: { "height": 25, "left": 721 }, className: "_3pzk" }, + 'div', + {style: {height: 25, left: 721}, className: '_3pzk'}, FixedDataTableCellGroupImpl144(455) ); } }; - var FixedDataTableRowImpl146 = function (x) { + var FixedDataTableRowImpl146 = function(x) { if (x === 334) { return React.createElement( - "div", - { className: "_1gd4 _4li _52no _3h1a _1mib", onClick: null, onDoubleClick: null, onMouseDown: null, onMouseEnter: null, onMouseLeave: null, style: { "width": 1209, "height": 40 } }, - React.createElement( - "div", - { className: "_1gd5" }, + 'div', + { + className: '_1gd4 _4li _52no _3h1a _1mib', + onClick: null, + onDoubleClick: null, + onMouseDown: null, + onMouseEnter: null, + onMouseLeave: null, + style: {width: 1209, height: 40}, + }, + React.createElement( + 'div', + {className: '_1gd5'}, FixedDataTableCellGroup145(319), FixedDataTableCellGroup145(333), - React.createElement("div", { className: "_1gd6 _1gd8", style: { "left": 721, "height": 40 } }) + React.createElement('div', { + className: '_1gd6 _1gd8', + style: {left: 721, height: 40}, + }) ) ); } if (x === 457) { return React.createElement( - "div", - { className: "_1gd4 _4li _3h1a _1mib", onClick: null, onDoubleClick: null, onMouseDown: null, onMouseEnter: null, onMouseLeave: null, style: { "width": 1209, "height": 25 } }, - React.createElement( - "div", - { className: "_1gd5" }, + 'div', + { + className: '_1gd4 _4li _3h1a _1mib', + onClick: null, + onDoubleClick: null, + onMouseDown: null, + onMouseEnter: null, + onMouseLeave: null, + style: {width: 1209, height: 25}, + }, + React.createElement( + 'div', + {className: '_1gd5'}, FixedDataTableCellGroup145(368), FixedDataTableCellGroup145(456), - React.createElement("div", { className: "_1gd6 _1gd8", style: { "left": 721, "height": 25 } }) + React.createElement('div', { + className: '_1gd6 _1gd8', + style: {left: 721, height: 25}, + }) ) ); } }; - var FixedDataTableRow147 = function (x) { + var FixedDataTableRow147 = function(x) { if (x === 335) { return React.createElement( - "div", - { style: { "width": 1209, "height": 40, "zIndex": 1, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" }, className: "_1gda" }, + 'div', + { + style: { + width: 1209, + height: 40, + zIndex: 1, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + className: '_1gda', + }, FixedDataTableRowImpl146(334) ); } if (x === 458) { return React.createElement( - "div", - { style: { "width": 1209, "height": 25, "zIndex": 1, "transform": "translate3d(0px,40px,0)", "backfaceVisibility": "hidden" }, className: "_1gda" }, + 'div', + { + style: { + width: 1209, + height: 25, + zIndex: 1, + transform: 'translate3d(0px,40px,0)', + backfaceVisibility: 'hidden', + }, + className: '_1gda', + }, FixedDataTableRowImpl146(457) ); } }; - var FixedDataTableAbstractSortableHeader148 = function (x) { + var FixedDataTableAbstractSortableHeader148 = function(x) { if (x === 341) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(340) ) @@ -3572,11 +4191,11 @@ } if (x === 347) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _1kst _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _1kst _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(346) ) @@ -3584,11 +4203,11 @@ } if (x === 353) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _1kst _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _1kst _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(352) ) @@ -3596,11 +4215,11 @@ } if (x === 358) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(357) ) @@ -3608,11 +4227,11 @@ } if (x === 363) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _54_9 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _54_9 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(362) ) @@ -3620,11 +4239,11 @@ } if (x === 370) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(369) ) @@ -3632,11 +4251,11 @@ } if (x === 375) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(374) ) @@ -3644,11 +4263,11 @@ } if (x === 380) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(379) ) @@ -3656,11 +4275,11 @@ } if (x === 385) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(384) ) @@ -3668,11 +4287,11 @@ } if (x === 390) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(389) ) @@ -3680,11 +4299,11 @@ } if (x === 395) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(394) ) @@ -3692,11 +4311,11 @@ } if (x === 400) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(399) ) @@ -3704,11 +4323,11 @@ } if (x === 405) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(404) ) @@ -3716,11 +4335,11 @@ } if (x === 410) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(409) ) @@ -3728,11 +4347,11 @@ } if (x === 415) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(414) ) @@ -3740,11 +4359,11 @@ } if (x === 420) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(419) ) @@ -3752,11 +4371,11 @@ } if (x === 425) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(424) ) @@ -3764,11 +4383,11 @@ } if (x === 430) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(429) ) @@ -3776,11 +4395,11 @@ } if (x === 435) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(434) ) @@ -3788,11 +4407,11 @@ } if (x === 440) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(439) ) @@ -3800,11 +4419,11 @@ } if (x === 445) { return React.createElement( - "div", - { onClick: function () {}, className: "_54_8 _4h2r _2wzx" }, + 'div', + {onClick: function() {}, className: '_54_8 _4h2r _2wzx'}, React.createElement( - "div", - { className: "_2eq6" }, + 'div', + {className: '_2eq6'}, null, AdsPETableHeader141(444) ) @@ -3812,7 +4431,7 @@ } }; - var FixedDataTableSortableHeader149 = function (x) { + var FixedDataTableSortableHeader149 = function(x) { if (x === 342) { return FixedDataTableAbstractSortableHeader148(341); } @@ -3878,54 +4497,93 @@ } }; - var FixedDataTableBufferedRows150 = function (x) { + var FixedDataTableBufferedRows150 = function(x) { if (x === 459) { - return React.createElement("div", { style: { "position": "absolute", "pointerEvents": "auto", "transform": "translate3d(0px,65px,0)", "backfaceVisibility": "hidden" } }); + return React.createElement('div', { + style: { + position: 'absolute', + pointerEvents: 'auto', + transform: 'translate3d(0px,65px,0)', + backfaceVisibility: 'hidden', + }, + }); } }; - var Scrollbar151 = function (x) { + var Scrollbar151 = function(x) { if (x === 460) { return null; } if (x === 461) { return React.createElement( - "div", - { onFocus: function () {}, onBlur: function () {}, onKeyDown: function () {}, onMouseDown: function () {}, onWheel: function () {}, className: "_1t0r _1t0t _4jdr _1t0u", style: { "width": 1209, "zIndex": 99 }, tabIndex: 0 }, - React.createElement("div", { className: "_1t0w _1t0y _1t0_", style: { "width": 561.6340607950117, "transform": "translate3d(4px,0px,0)", "backfaceVisibility": "hidden" } }) - ); - } - }; - - var HorizontalScrollbar152 = function (x) { + 'div', + { + onFocus: function() {}, + onBlur: function() {}, + onKeyDown: function() {}, + onMouseDown: function() {}, + onWheel: function() {}, + className: '_1t0r _1t0t _4jdr _1t0u', + style: {width: 1209, zIndex: 99}, + tabIndex: 0, + }, + React.createElement('div', { + className: '_1t0w _1t0y _1t0_', + style: { + width: 561.6340607950117, + transform: 'translate3d(4px,0px,0)', + backfaceVisibility: 'hidden', + }, + }) + ); + } + }; + + var HorizontalScrollbar152 = function(x) { if (x === 462) { return React.createElement( - "div", - { className: "_3h1k _3h1m", style: { "height": 15, "width": 1209 } }, - React.createElement( - "div", - { style: { "height": 15, "position": "absolute", "overflow": "hidden", "width": 1209, "transform": "translate3d(0px,0px,0)", "backfaceVisibility": "hidden" } }, + 'div', + {className: '_3h1k _3h1m', style: {height: 15, width: 1209}}, + React.createElement( + 'div', + { + style: { + height: 15, + position: 'absolute', + overflow: 'hidden', + width: 1209, + transform: 'translate3d(0px,0px,0)', + backfaceVisibility: 'hidden', + }, + }, Scrollbar151(461) ) ); } }; - var FixedDataTable153 = function (x) { + var FixedDataTable153 = function(x) { if (x === 463) { return React.createElement( - "div", - { className: "_3h1i _1mie", onWheel: function () {}, style: { "height": 25, "width": 1209 } }, + 'div', + { + className: '_3h1i _1mie', + onWheel: function() {}, + style: {height: 25, width: 1209}, + }, React.createElement( - "div", - { className: "_3h1j", style: { "height": 8, "width": 1209 } }, + 'div', + {className: '_3h1j', style: {height: 8, width: 1209}}, FixedDataTableColumnResizeHandle140(313), FixedDataTableRow147(335), FixedDataTableRow147(458), FixedDataTableBufferedRows150(459), null, undefined, - React.createElement("div", { className: "_3h1e _3h1h", style: { "top": 8 } }) + React.createElement('div', { + className: '_3h1e _3h1h', + style: {top: 8}, + }) ), Scrollbar151(460), HorizontalScrollbar152(462) @@ -3933,47 +4591,47 @@ } }; - var TransitionTable154 = function (x) { + var TransitionTable154 = function(x) { if (x === 464) { return FixedDataTable153(463); } }; - var AdsSelectableFixedDataTable155 = function (x) { + var AdsSelectableFixedDataTable155 = function(x) { if (x === 465) { return React.createElement( - "div", - { className: "_5hht" }, + 'div', + {className: '_5hht'}, TransitionTable154(464) ); } }; - var AdsDataTableKeyboardSupportDecorator156 = function (x) { + var AdsDataTableKeyboardSupportDecorator156 = function(x) { if (x === 466) { return React.createElement( - "div", - { className: "_5d6f", tabIndex: "0", onKeyDown: function () {} }, + 'div', + {className: '_5d6f', tabIndex: '0', onKeyDown: function() {}}, AdsSelectableFixedDataTable155(465) ); } }; - var AdsEditableDataTableDecorator157 = function (x) { + var AdsEditableDataTableDecorator157 = function(x) { if (x === 467) { return React.createElement( - "div", - { onCopy: function () {} }, + 'div', + {onCopy: function() {}}, AdsDataTableKeyboardSupportDecorator156(466) ); } }; - var AdsPEDataTableContainer158 = function (x) { + var AdsPEDataTableContainer158 = function(x) { if (x === 468) { return React.createElement( - "div", - { className: "_35l_ _1hr clearfix" }, + 'div', + {className: '_35l_ _1hr clearfix'}, null, null, null, @@ -3982,46 +4640,46 @@ } }; - var AdsPECampaignGroupTableContainer159 = function (x) { + var AdsPECampaignGroupTableContainer159 = function(x) { if (x === 470) { return ResponsiveBlock37(469); } }; - var AdsPEManageAdsPaneContainer160 = function (x) { + var AdsPEManageAdsPaneContainer160 = function(x) { if (x === 473) { return React.createElement( - "div", + 'div', null, AdsErrorBoundary10(65), React.createElement( - "div", - { className: "_2uty" }, + 'div', + {className: '_2uty'}, AdsErrorBoundary10(125) ), React.createElement( - "div", - { className: "_2utx _21oc" }, + 'div', + {className: '_2utx _21oc'}, AdsErrorBoundary10(171), React.createElement( - "div", - { className: "_41tu" }, + 'div', + {className: '_41tu'}, AdsErrorBoundary10(176), AdsErrorBoundary10(194) ) ), React.createElement( - "div", - { className: "_2utz", style: { "height": 25 } }, + 'div', + {className: '_2utz', style: {height: 25}}, AdsErrorBoundary10(302), React.createElement( - "div", - { className: "_2ut-" }, + 'div', + {className: '_2ut-'}, AdsErrorBoundary10(312) ), React.createElement( - "div", - { className: "_2ut_" }, + 'div', + {className: '_2ut_'}, AdsErrorBoundary10(472) ) ) @@ -4029,17 +4687,17 @@ } }; - var AdsPEContentContainer161 = function (x) { + var AdsPEContentContainer161 = function(x) { if (x === 474) { return AdsPEManageAdsPaneContainer160(473); } }; - var FluxContainer_AdsPEWorkspaceContainer_162 = function (x) { + var FluxContainer_AdsPEWorkspaceContainer_162 = function(x) { if (x === 477) { return React.createElement( - "div", - { className: "_49wu", style: { "height": 177, "top": 43, "width": 1306 } }, + 'div', + {className: '_49wu', style: {height: 177, top: 43, width: 1306}}, ResponsiveBlock37(62, '0'), AdsErrorBoundary10(476, '1'), null @@ -4047,123 +4705,125 @@ } }; - var FluxContainer_AdsSessionExpiredDialogContainer_163 = function (x) { + var FluxContainer_AdsSessionExpiredDialogContainer_163 = function(x) { if (x === 478) { return null; } }; - var FluxContainer_AdsPEUploadDialogLazyContainer_164 = function (x) { + var FluxContainer_AdsPEUploadDialogLazyContainer_164 = function(x) { if (x === 479) { return null; } }; - var FluxContainer_DialogContainer_165 = function (x) { + var FluxContainer_DialogContainer_165 = function(x) { if (x === 480) { return null; } }; - var AdsBugReportContainer166 = function (x) { + var AdsBugReportContainer166 = function(x) { if (x === 481) { - return React.createElement("span", null); + return React.createElement('span', null); } }; - var AdsPEAudienceSplittingDialog167 = function (x) { + var AdsPEAudienceSplittingDialog167 = function(x) { if (x === 482) { return null; } }; - var AdsPEAudienceSplittingDialogContainer168 = function (x) { + var AdsPEAudienceSplittingDialogContainer168 = function(x) { if (x === 483) { return React.createElement( - "div", + 'div', null, AdsPEAudienceSplittingDialog167(482) ); } }; - var FluxContainer_AdsRuleDialogBootloadContainer_169 = function (x) { + var FluxContainer_AdsRuleDialogBootloadContainer_169 = function(x) { if (x === 484) { return null; } }; - var FluxContainer_AdsPECFTrayContainer_170 = function (x) { + var FluxContainer_AdsPECFTrayContainer_170 = function(x) { if (x === 485) { return null; } }; - var FluxContainer_AdsPEDeleteDraftContainer_171 = function (x) { + var FluxContainer_AdsPEDeleteDraftContainer_171 = function(x) { if (x === 486) { return null; } }; - var FluxContainer_AdsPEInitialDraftPublishDialogContainer_172 = function (x) { + var FluxContainer_AdsPEInitialDraftPublishDialogContainer_172 = function(x) { if (x === 487) { return null; } }; - var FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173 = function (x) { + var FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173 = function( + x + ) { if (x === 488) { return null; } }; - var FluxContainer_AdsPEPurgeArchiveDialogContainer_174 = function (x) { + var FluxContainer_AdsPEPurgeArchiveDialogContainer_174 = function(x) { if (x === 489) { return null; } }; - var AdsPECreateDialogContainer175 = function (x) { + var AdsPECreateDialogContainer175 = function(x) { if (x === 490) { - return React.createElement("span", null); + return React.createElement('span', null); } }; - var FluxContainer_AdsPEModalStatusContainer_176 = function (x) { + var FluxContainer_AdsPEModalStatusContainer_176 = function(x) { if (x === 491) { return null; } }; - var FluxContainer_AdsBrowserExtensionErrorDialogContainer_177 = function (x) { + var FluxContainer_AdsBrowserExtensionErrorDialogContainer_177 = function(x) { if (x === 492) { return null; } }; - var FluxContainer_AdsPESortByErrorTipContainer_178 = function (x) { + var FluxContainer_AdsPESortByErrorTipContainer_178 = function(x) { if (x === 493) { return null; } }; - var LeadDownloadDialogSelector179 = function (x) { + var LeadDownloadDialogSelector179 = function(x) { if (x === 494) { return null; } }; - var FluxContainer_AdsPELeadDownloadDialogContainerClass_180 = function (x) { + var FluxContainer_AdsPELeadDownloadDialogContainerClass_180 = function(x) { if (x === 495) { return LeadDownloadDialogSelector179(494); } }; - var AdsPEContainer181 = function (x) { + var AdsPEContainer181 = function(x) { if (x === 496) { return React.createElement( - "div", - { id: "ads_pe_container" }, + 'div', + {id: 'ads_pe_container'}, FluxContainer_AdsPETopNavContainer_26(41), null, FluxContainer_AdsPEWorkspaceContainer_162(477), @@ -4175,11 +4835,13 @@ FluxContainer_AdsRuleDialogBootloadContainer_169(484), FluxContainer_AdsPECFTrayContainer_170(485), React.createElement( - "span", + 'span', null, FluxContainer_AdsPEDeleteDraftContainer_171(486), FluxContainer_AdsPEInitialDraftPublishDialogContainer_172(487), - FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173(488) + FluxContainer_AdsPEReachFrequencyStatusTransitionDialogBootloadContainer_173( + 488 + ) ), FluxContainer_AdsPEPurgeArchiveDialogContainer_174(489), AdsPECreateDialogContainer175(490), @@ -4187,12 +4849,12 @@ FluxContainer_AdsBrowserExtensionErrorDialogContainer_177(492), FluxContainer_AdsPESortByErrorTipContainer_178(493), FluxContainer_AdsPELeadDownloadDialogContainerClass_180(495), - React.createElement("div", { id: "web_ads_guidance_tips" }) + React.createElement('div', {id: 'web_ads_guidance_tips'}) ); } }; - var Benchmark = function (x) { + var Benchmark = function(x) { if (x === undefined) { return AdsPEContainer181(496); } @@ -4202,5 +4864,5 @@ window.render = function render() { ReactDOM.render(Benchmark(), app); - } + }; })(); diff --git a/scripts/bench/benchmarks/pe-no-components/build.js b/scripts/bench/benchmarks/pe-no-components/build.js index 1a8e253bef83a..6622176404f3e 100644 --- a/scripts/bench/benchmarks/pe-no-components/build.js +++ b/scripts/bench/benchmarks/pe-no-components/build.js @@ -1,11 +1,9 @@ 'use strict'; -const { - join, -} = require('path'); +const {join} = require('path'); async function build(reactPath, asyncCopyTo) { - // copy the UMD bundles + // copy the UMD bundles await asyncCopyTo( join(reactPath, 'build', 'dist', 'react.production.min.js'), join(__dirname, 'react.production.min.js') diff --git a/scripts/flow/react-native-host-hooks.js b/scripts/flow/react-native-host-hooks.js index 1bfb9421faec3..ab33b763677da 100644 --- a/scripts/flow/react-native-host-hooks.js +++ b/scripts/flow/react-native-host-hooks.js @@ -39,7 +39,7 @@ declare module 'UIManager' { reactTag: number, viewName: string, rootTag: number, - props: ?Object, + props: ?Object ): void; declare function manageChildren( containerTag: number, @@ -47,30 +47,30 @@ declare module 'UIManager' { moveToIndices: Array, addChildReactTags: Array, addAtIndices: Array, - removeAtIndices: Array, + removeAtIndices: Array ): void; declare function measure(hostComponent: mixed, callback: Function): void; declare function measureInWindow( nativeTag: ?number, - callback: Function, + callback: Function ): void; declare function measureLayout( nativeTag: mixed, nativeNode: number, onFail: Function, - onSuccess: Function, + onSuccess: Function ): void; declare function removeRootView(containerTag: number): void; declare function removeSubviewsFromContainerWithID(containerId: number): void; declare function replaceExistingNonRootView(): void; declare function setChildren( containerTag: number, - reactTags: Array, + reactTags: Array ): void; declare function updateView( reactTag: number, viewName: string, - props: ?Object, + props: ?Object ): void; declare function __takeSnapshot( view?: 'window' | Element | number, @@ -79,7 +79,7 @@ declare module 'UIManager' { height?: number, format?: 'png' | 'jpeg', quality?: number, - }, + } ): Promise; } declare module 'View' { @@ -90,14 +90,14 @@ declare module 'RTManager' { declare function createNode( tag: number, classType: string, - props: ?Object, + props: ?Object ): void; declare function beginUpdates(): void; declare function appendChildToContext( contextTag: number, - childTag: number, + childTag: number ): void; declare function appendChild(parentTag: number, childTag: number): void; declare function prependChild(childTag: number, beforeTag: number): void; diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index ed94c3574a5cb..0b4a66e081e61 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -38,14 +38,7 @@ const config = { }, scripts: { patterns: [...npmPath, ...nodePath], - ignore: [ - '**/node_modules/**', - // Built files and React repo clone - 'scripts/bench/benchmarks/**', - // shims & flow treat as ESNext - 'scripts/flow/*.js', - 'scripts/rollup/shims/**/*.js', - ], + ignore: ['**/node_modules/**'], options: { trailingComma: 'es5', }, From f87f27896878a2b777a7fbabfe252a60c3a454d7 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Mon, 11 Dec 2017 14:21:13 +0000 Subject: [PATCH 09/11] Refactor a little bit --- scripts/eslint/eslintrc.node.js | 4 + scripts/eslint/eslintrc.npm.js | 3 + scripts/eslint/eslintrc.source.js | 3 + scripts/eslint/index.js | 93 ++++++++++++++---------- scripts/prettier/index.js | 10 +-- scripts/shared/pathsByLanguageVersion.js | 17 +++-- scripts/tasks/eslint.js | 32 +++----- scripts/tasks/linc.js | 32 ++------ 8 files changed, 97 insertions(+), 97 deletions(-) diff --git a/scripts/eslint/eslintrc.node.js b/scripts/eslint/eslintrc.node.js index 81745f169bcf7..fd7de0b0cfa38 100644 --- a/scripts/eslint/eslintrc.node.js +++ b/scripts/eslint/eslintrc.node.js @@ -11,6 +11,10 @@ const eslintrc = require('../../.eslintrc'); const ERROR = 2; +// We apply these settings to files that should run on Node. +// They can't use JSX or ES6 modules, and must be in strict mode. +// They can, however, use other ES6 features. + module.exports = Object.assign({}, eslintrc, { parser: 'espree', parserOptions: { diff --git a/scripts/eslint/eslintrc.npm.js b/scripts/eslint/eslintrc.npm.js index 6ddf3e5385c3d..1794efad9fa70 100644 --- a/scripts/eslint/eslintrc.npm.js +++ b/scripts/eslint/eslintrc.npm.js @@ -9,6 +9,9 @@ const eslintrc = require('../../.eslintrc'); +// We apply these settings to files that we ship through npm. +// They must be ES5. + module.exports = Object.assign({}, eslintrc, { parser: 'espree', parserOptions: { diff --git a/scripts/eslint/eslintrc.source.js b/scripts/eslint/eslintrc.source.js index 6b36387869178..9fa57d44fffc5 100644 --- a/scripts/eslint/eslintrc.source.js +++ b/scripts/eslint/eslintrc.source.js @@ -11,6 +11,9 @@ const eslintrc = require('../../.eslintrc'); const ERROR = 2; +// We apply these settings to the source files that get compiled. +// They can use all features including JSX (but shouldn't use `var`). + module.exports = Object.assign({}, eslintrc, { rules: Object.assign({}, eslintrc.rules, { 'no-var': ERROR, diff --git a/scripts/eslint/index.js b/scripts/eslint/index.js index 34a90cd307615..1fa3561038bc0 100644 --- a/scripts/eslint/index.js +++ b/scripts/eslint/index.js @@ -8,58 +8,75 @@ 'use strict'; const CLIEngine = require('eslint').CLIEngine; +const listChangedFiles = require('../shared/listChangedFiles'); const { - npmPath, - nodePath, - sourcePath, + npmPaths, + nodePaths, + sourcePaths, } = require('../shared/pathsByLanguageVersion'); -const npmOptions = { - configFile: `${__dirname}/eslintrc.npm.js`, - ignorePattern: [...nodePath, ...sourcePath], +const sourceOptions = { + configFile: `${__dirname}/eslintrc.source.js`, + ignorePattern: [...npmPaths, ...nodePaths], }; - const nodeOptions = { configFile: `${__dirname}/eslintrc.node.js`, - ignorePattern: [...npmPath, ...sourcePath], + ignorePattern: [...npmPaths, ...sourcePaths], }; - -const sourceOptions = { - configFile: `${__dirname}/eslintrc.source.js`, - ignorePattern: [...npmPath, ...nodePath], +const npmOptions = { + configFile: `${__dirname}/eslintrc.npm.js`, + ignorePattern: [...nodePaths, ...sourcePaths], }; -module.exports = function lintOnFiles({ecmaVersion, filePatterns}) { - let options; - switch (ecmaVersion) { - case '5': - options = npmOptions; - break; - case '6': - options = nodeOptions; - break; - case 'next': - options = sourceOptions; - break; - default: - console.error('ecmaVersion only accpet value: "5", "6", "next"'); - } - - const cli = new CLIEngine({...options}); +function runESLintOnFilesWithOptions(filePatterns, options) { + const cli = new CLIEngine(options); const formatter = cli.getFormatter(); const report = cli.executeOnFiles(filePatterns); // When using `ignorePattern`, eslint will show `File ignored...` warning message when match ignore file. - // Currently, the only way to turn off this warning message is to set quiet = true. - // But it will remove `all warnings`, it's not appropriate to turn off other warning message - // So that's why we filter out the ignore pattern message. - // related issue: https://github.com/eslint/eslint/issues/5623 - const filteredReport = report.results.filter(item => { + // We don't care about it, but there is currently no way to tell ESLint to not emit it. + const messages = report.results.filter(item => { const ignoreMessage = 'File ignored because of a matching ignore pattern. Use "--no-ignore" to override.'; return !(item.messages[0] && item.messages[0].message === ignoreMessage); }); - const formattedResults = formatter(filteredReport); - console.log(formattedResults); - return report; -}; + + const ignoredMessageCount = report.results.length - messages.length; + return { + output: formatter(messages), + errorCount: report.errorCount, + warningCount: report.warningCount - ignoredMessageCount, + }; +} + +function runESLint({onlyChanged}) { + if (typeof onlyChanged !== 'boolean') { + throw new Error('Pass options.onlyChanged as a boolean.'); + } + const changedFiles = onlyChanged ? [...listChangedFiles()] : null; + let errorCount = 0; + let warningCount = 0; + let output = ''; + [ + runESLintOnFilesWithOptions( + onlyChanged ? changedFiles : sourcePaths, + sourceOptions + ), + runESLintOnFilesWithOptions( + onlyChanged ? changedFiles : nodePaths, + nodeOptions + ), + runESLintOnFilesWithOptions( + onlyChanged ? changedFiles : npmPaths, + npmOptions + ), + ].forEach(result => { + errorCount += result.errorCount; + warningCount += result.warningCount; + output += result.output; + }); + console.log(output); + return errorCount === 0 && warningCount === 0; +} + +module.exports = runESLint; diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index 0b4a66e081e61..01feb460d6381 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -15,9 +15,9 @@ const prettier = require('prettier'); const fs = require('fs'); const listChangedFiles = require('../shared/listChangedFiles'); const { - npmPath, - nodePath, - sourcePath, + npmPaths, + nodePaths, + sourcePaths, } = require('../shared/pathsByLanguageVersion'); const mode = process.argv[2] || 'check'; @@ -33,11 +33,11 @@ const defaultOptions = { }; const config = { default: { - patterns: sourcePath, + patterns: sourcePaths, ignore: ['**/node_modules/**'], }, scripts: { - patterns: [...npmPath, ...nodePath], + patterns: [...npmPaths, ...nodePaths], ignore: ['**/node_modules/**'], options: { trailingComma: 'es5', diff --git a/scripts/shared/pathsByLanguageVersion.js b/scripts/shared/pathsByLanguageVersion.js index 8b4cadcef76fd..7ad3e2b5405cb 100644 --- a/scripts/shared/pathsByLanguageVersion.js +++ b/scripts/shared/pathsByLanguageVersion.js @@ -6,26 +6,29 @@ */ 'use strict'; -const sourcePath = [ +// Files that are transformed and can use ES6/Flow/JSX. +const sourcePaths = [ // Internal forwarding modules 'packages/*/*.js', // Source files 'packages/*/src/**/*.js', 'packages/shared/**/*.js', - // shims & flow + // Shims & flow 'scripts/flow/*.js', 'scripts/rollup/shims/**/*.js', ]; -const nodePath = ['scripts/**/*.js', 'fixtures/**/*.js']; +// Our internal scripts that should run on Node. +const nodePaths = ['scripts/**/*.js', 'fixtures/**/*.js']; -const npmPath = [ +// Files that we distribute on npm that should be ES5-only. +const npmPaths = [ // Forwarding modules that get published to npm (must be ES5) 'packages/*/npm/**/*.js', ]; module.exports = { - sourcePath, - nodePath, - npmPath, + sourcePaths, + nodePaths, + npmPaths, }; diff --git a/scripts/tasks/eslint.js b/scripts/tasks/eslint.js index 59ca242479f2b..6dae70eb1118b 100644 --- a/scripts/tasks/eslint.js +++ b/scripts/tasks/eslint.js @@ -7,30 +7,18 @@ 'use strict'; -const lintOnFiles = require('../eslint'); -const { - nodePath, - npmPath, - sourcePath, -} = require('../shared/pathsByLanguageVersion'); +const runESLint = require('../eslint'); -const esNextReport = lintOnFiles({ - ecmaVersion: 'next', - filePatterns: sourcePath, -}); -const es6Report = lintOnFiles({ecmaVersion: '6', filePatterns: nodePath}); -const es5Report = lintOnFiles({ecmaVersion: '5', filePatterns: npmPath}); +console.log(); +console.log('Linting all files...'); +if (!process.CI) { + console.log('Hint: run `yarn linc` to only lint changed files.'); +} +console.log(); -if ( - esNextReport.errorCount > 0 || - esNextReport.warningCount > 0 || - es6Report.errorCount > 0 || - es6Report.warningCount > 0 || - es5Report.errorCount > 0 || - es5Report.warningCount -) { +if (runESLint({onlyChanged: false})) { + console.log('Lint passed.'); +} else { console.log('Lint failed.'); process.exit(1); -} else { - console.log('Lint passed.'); } diff --git a/scripts/tasks/linc.js b/scripts/tasks/linc.js index dfa9633a93208..4307fa8a795e0 100644 --- a/scripts/tasks/linc.js +++ b/scripts/tasks/linc.js @@ -7,33 +7,15 @@ 'use strict'; -const lintOnFiles = require('../eslint'); -const listChangedFiles = require('../shared/listChangedFiles'); -const changedFiles = [...listChangedFiles()]; -const jsFiles = changedFiles.filter(file => file.match(/.js$/g)); +const runESLint = require('../eslint'); -const esNextReport = lintOnFiles({ecmaVersion: 'next', filePatterns: jsFiles}); -const es6Report = lintOnFiles({ecmaVersion: '6', filePatterns: jsFiles}); -const es5Report = lintOnFiles({ecmaVersion: '5', filePatterns: jsFiles}); +console.log(); +console.log('Linting changed files...'); +console.log(); -if ( - esNextReport.errorCount > 0 || - getSourceCodeWarnings(esNextReport) || - es6Report.errorCount > 0 || - getSourceCodeWarnings(es6Report) || - es5Report.errorCount > 0 || - getSourceCodeWarnings(es5Report) -) { +if (runESLint({onlyChanged: true})) { + console.log('Lint passed for changed files.'); +} else { console.log('Lint failed for changed files.'); process.exit(1); -} else { - console.log('Lint passed for changed files.'); -} - -// Prevents failing if the only warnings are about ignored files (#11615) -function getSourceCodeWarnings({warningCount, results}) { - const ignoreWanings = results.filter( - ({messages}) => messages[0] && messages[0].message.includes('File ignored') - ); - return warningCount > 0 ? warningCount !== ignoreWanings.length : false; } From 680398c882edc84847f18f05d9c38dd2ba03b8c7 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Mon, 11 Dec 2017 15:24:54 +0000 Subject: [PATCH 10/11] Refactor and tweak the logic --- package.json | 1 + .../ResponderEventPlugin-test.internal.js | 52 +++++++------ .../{eslintrc.node.js => eslintrc.default.js} | 0 .../{eslintrc.npm.js => eslintrc.es5.js} | 0 ...{eslintrc.source.js => eslintrc.esnext.js} | 0 scripts/eslint/index.js | 77 +++++++++++-------- scripts/flow/react-native-host-hooks.js | 18 ++--- scripts/prettier/index.js | 25 +++--- scripts/shared/listChangedFiles.js | 4 +- scripts/shared/pathsByLanguageVersion.js | 18 ++--- scripts/tasks/eslint.js | 2 - scripts/tasks/linc.js | 2 - 12 files changed, 104 insertions(+), 95 deletions(-) rename scripts/eslint/{eslintrc.node.js => eslintrc.default.js} (100%) rename scripts/eslint/{eslintrc.npm.js => eslintrc.es5.js} (100%) rename scripts/eslint/{eslintrc.source.js => eslintrc.esnext.js} (100%) diff --git a/package.json b/package.json index 0ef3224f371ae..85440f9a475d0 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,7 @@ "jest-jasmine2": "^21.3.0-beta.4", "jest-runtime": "^21.3.0-beta.4", "merge-stream": "^1.0.0", + "minimatch": "^3.0.4", "minimist": "^1.2.0", "mkdirp": "^0.5.1", "ncp": "^2.0.0", diff --git a/packages/events/__tests__/ResponderEventPlugin-test.internal.js b/packages/events/__tests__/ResponderEventPlugin-test.internal.js index e9283628e1478..6a81f4c876831 100644 --- a/packages/events/__tests__/ResponderEventPlugin-test.internal.js +++ b/packages/events/__tests__/ResponderEventPlugin-test.internal.js @@ -65,15 +65,16 @@ const _touchConfig = function( ) { const allTouchObjects = allTouchHandles.map(touch); const changedTouchObjects = subsequence(allTouchObjects, changedIndices); - const activeTouchObjects = topType === 'topTouchStart' - ? allTouchObjects - : topType === 'topTouchMove' + const activeTouchObjects = + topType === 'topTouchStart' + ? allTouchObjects + : topType === 'topTouchMove' ? allTouchObjects : topType === 'topTouchEnd' + ? antiSubsequence(allTouchObjects, changedIndices) + : topType === 'topTouchCancel' ? antiSubsequence(allTouchObjects, changedIndices) - : topType === 'topTouchCancel' - ? antiSubsequence(allTouchObjects, changedIndices) - : null; + : null; return { nativeEvent: touchEvent( @@ -234,19 +235,24 @@ const registerTestHandlers = function(eventTestConfig, readableIDToID) { for (const readableID in eventTypeTestConfig) { const nodeConfig = eventTypeTestConfig[readableID]; const id = readableIDToID[readableID]; - const handler = nodeConfig.order === NA - ? neverFire.bind(null, readableID, registrationName) - : // We partially apply readableID and nodeConfig, as they change in the - // parent closure across iterations. - function(rID, config, e) { - expect( - rID + '->' + registrationName + ' index:' + runs.dispatchCount++, - ).toBe(rID + '->' + registrationName + ' index:' + config.order); - if (config.assertEvent) { - config.assertEvent(e); - } - return config.returnVal; - }.bind(null, readableID, nodeConfig); + const handler = + nodeConfig.order === NA + ? neverFire.bind(null, readableID, registrationName) + : // We partially apply readableID and nodeConfig, as they change in the + // parent closure across iterations. + function(rID, config, e) { + expect( + rID + + '->' + + registrationName + + ' index:' + + runs.dispatchCount++, + ).toBe(rID + '->' + registrationName + ' index:' + config.order); + if (config.assertEvent) { + config.assertEvent(e); + } + return config.returnVal; + }.bind(null, readableID, nodeConfig); putListener(getInstanceFromNode(id), registrationName, handler); } }; @@ -1362,7 +1368,7 @@ describe('ResponderEventPlugin', () => { }); it('should determine the first common ancestor correctly', () => { - // This test was moved here from the ReactTreeTraversal test since only the + // This test was moved here from the ReactTreeTraversal test since only the // ResponderEventPlugin uses `getLowestCommonAncestor` const React = require('react'); const ReactTestUtils = require('react-dom/test-utils'); @@ -1379,7 +1385,7 @@ describe('ResponderEventPlugin', () => { ); } } - + class ParentComponent extends React.Component { render() { return ( @@ -1443,7 +1449,9 @@ describe('ResponderEventPlugin', () => { ReactDOMComponentTree.getInstanceFromNode(plan.one), ReactDOMComponentTree.getInstanceFromNode(plan.two), ); - expect(firstCommon).toBe(ReactDOMComponentTree.getInstanceFromNode(plan.com)); + expect(firstCommon).toBe( + ReactDOMComponentTree.getInstanceFromNode(plan.com), + ); } }); }); diff --git a/scripts/eslint/eslintrc.node.js b/scripts/eslint/eslintrc.default.js similarity index 100% rename from scripts/eslint/eslintrc.node.js rename to scripts/eslint/eslintrc.default.js diff --git a/scripts/eslint/eslintrc.npm.js b/scripts/eslint/eslintrc.es5.js similarity index 100% rename from scripts/eslint/eslintrc.npm.js rename to scripts/eslint/eslintrc.es5.js diff --git a/scripts/eslint/eslintrc.source.js b/scripts/eslint/eslintrc.esnext.js similarity index 100% rename from scripts/eslint/eslintrc.source.js rename to scripts/eslint/eslintrc.esnext.js diff --git a/scripts/eslint/index.js b/scripts/eslint/index.js index 1fa3561038bc0..2bc4cab84df12 100644 --- a/scripts/eslint/index.js +++ b/scripts/eslint/index.js @@ -7,35 +7,36 @@ 'use strict'; +const minimatch = require('minimatch'); const CLIEngine = require('eslint').CLIEngine; const listChangedFiles = require('../shared/listChangedFiles'); -const { - npmPaths, - nodePaths, - sourcePaths, -} = require('../shared/pathsByLanguageVersion'); +const {es5Paths, esNextPaths} = require('../shared/pathsByLanguageVersion'); -const sourceOptions = { - configFile: `${__dirname}/eslintrc.source.js`, - ignorePattern: [...npmPaths, ...nodePaths], -}; -const nodeOptions = { - configFile: `${__dirname}/eslintrc.node.js`, - ignorePattern: [...npmPaths, ...sourcePaths], -}; -const npmOptions = { - configFile: `${__dirname}/eslintrc.npm.js`, - ignorePattern: [...nodePaths, ...sourcePaths], -}; +const allPaths = ['**/*.js']; -function runESLintOnFilesWithOptions(filePatterns, options) { +let changedFiles = null; + +function runESLintOnFilesWithOptions(filePatterns, onlyChanged, options) { const cli = new CLIEngine(options); const formatter = cli.getFormatter(); - const report = cli.executeOnFiles(filePatterns); - // When using `ignorePattern`, eslint will show `File ignored...` warning message when match ignore file. - // We don't care about it, but there is currently no way to tell ESLint to not emit it. + if (onlyChanged && changedFiles === null) { + // Calculate lazily. + changedFiles = [...listChangedFiles()]; + } + const finalFilePatterns = onlyChanged + ? intersect(changedFiles, filePatterns) + : filePatterns; + const report = cli.executeOnFiles(finalFilePatterns); + + // When using `ignorePattern`, eslint will show `File ignored...` warnings for any ignores. + // We don't care because we *expect* some passed files will be ignores if `ignorePattern` is used. const messages = report.results.filter(item => { + if (!onlyChanged) { + // Don't suppress the message on a full run. + // We only expect it to happen for "only changed" runs. + return true; + } const ignoreMessage = 'File ignored because of a matching ignore pattern. Use "--no-ignore" to override.'; return !(item.messages[0] && item.messages[0].message === ignoreMessage); @@ -49,27 +50,35 @@ function runESLintOnFilesWithOptions(filePatterns, options) { }; } +function intersect(files, patterns) { + let intersection = []; + patterns.forEach(pattern => { + intersection = [ + ...intersection, + ...minimatch.match(files, pattern, {matchBase: true}), + ]; + }); + return [...new Set(intersection)]; +} + function runESLint({onlyChanged}) { if (typeof onlyChanged !== 'boolean') { throw new Error('Pass options.onlyChanged as a boolean.'); } - const changedFiles = onlyChanged ? [...listChangedFiles()] : null; let errorCount = 0; let warningCount = 0; let output = ''; [ - runESLintOnFilesWithOptions( - onlyChanged ? changedFiles : sourcePaths, - sourceOptions - ), - runESLintOnFilesWithOptions( - onlyChanged ? changedFiles : nodePaths, - nodeOptions - ), - runESLintOnFilesWithOptions( - onlyChanged ? changedFiles : npmPaths, - npmOptions - ), + runESLintOnFilesWithOptions(allPaths, onlyChanged, { + configFile: `${__dirname}/eslintrc.default.js`, + ignorePattern: [...es5Paths, ...esNextPaths], + }), + runESLintOnFilesWithOptions(esNextPaths, onlyChanged, { + configFile: `${__dirname}/eslintrc.esnext.js`, + }), + runESLintOnFilesWithOptions(es5Paths, onlyChanged, { + configFile: `${__dirname}/eslintrc.es5.js`, + }), ].forEach(result => { errorCount += result.errorCount; warningCount += result.warningCount; diff --git a/scripts/flow/react-native-host-hooks.js b/scripts/flow/react-native-host-hooks.js index ab33b763677da..1bfb9421faec3 100644 --- a/scripts/flow/react-native-host-hooks.js +++ b/scripts/flow/react-native-host-hooks.js @@ -39,7 +39,7 @@ declare module 'UIManager' { reactTag: number, viewName: string, rootTag: number, - props: ?Object + props: ?Object, ): void; declare function manageChildren( containerTag: number, @@ -47,30 +47,30 @@ declare module 'UIManager' { moveToIndices: Array, addChildReactTags: Array, addAtIndices: Array, - removeAtIndices: Array + removeAtIndices: Array, ): void; declare function measure(hostComponent: mixed, callback: Function): void; declare function measureInWindow( nativeTag: ?number, - callback: Function + callback: Function, ): void; declare function measureLayout( nativeTag: mixed, nativeNode: number, onFail: Function, - onSuccess: Function + onSuccess: Function, ): void; declare function removeRootView(containerTag: number): void; declare function removeSubviewsFromContainerWithID(containerId: number): void; declare function replaceExistingNonRootView(): void; declare function setChildren( containerTag: number, - reactTags: Array + reactTags: Array, ): void; declare function updateView( reactTag: number, viewName: string, - props: ?Object + props: ?Object, ): void; declare function __takeSnapshot( view?: 'window' | Element | number, @@ -79,7 +79,7 @@ declare module 'UIManager' { height?: number, format?: 'png' | 'jpeg', quality?: number, - } + }, ): Promise; } declare module 'View' { @@ -90,14 +90,14 @@ declare module 'RTManager' { declare function createNode( tag: number, classType: string, - props: ?Object + props: ?Object, ): void; declare function beginUpdates(): void; declare function appendChildToContext( contextTag: number, - childTag: number + childTag: number, ): void; declare function appendChild(parentTag: number, childTag: number): void; declare function prependChild(childTag: number, beforeTag: number): void; diff --git a/scripts/prettier/index.js b/scripts/prettier/index.js index 01feb460d6381..9a76749d1308e 100644 --- a/scripts/prettier/index.js +++ b/scripts/prettier/index.js @@ -14,11 +14,7 @@ const glob = require('glob'); const prettier = require('prettier'); const fs = require('fs'); const listChangedFiles = require('../shared/listChangedFiles'); -const { - npmPaths, - nodePaths, - sourcePaths, -} = require('../shared/pathsByLanguageVersion'); +const {esNextPaths} = require('../shared/pathsByLanguageVersion'); const mode = process.argv[2] || 'check'; const shouldWrite = mode === 'write' || mode === 'write-changed'; @@ -33,19 +29,24 @@ const defaultOptions = { }; const config = { default: { - patterns: sourcePaths, - ignore: ['**/node_modules/**'], - }, - scripts: { - patterns: [...npmPaths, ...nodePaths], - ignore: ['**/node_modules/**'], + patterns: ['**/*.js'], + ignore: [ + '**/node_modules/**', + // ESNext paths can have trailing commas. + // We'll handle them separately below. + ...esNextPaths, + ], options: { trailingComma: 'es5', }, }, + esNext: { + patterns: [...esNextPaths], + ignore: ['**/node_modules/**'], + }, }; -const changedFiles = listChangedFiles(); +const changedFiles = onlyChanged ? listChangedFiles() : null; let didWarn = false; let didError = false; Object.keys(config).forEach(key => { diff --git a/scripts/shared/listChangedFiles.js b/scripts/shared/listChangedFiles.js index ef36bc10f2127..8692576606adc 100644 --- a/scripts/shared/listChangedFiles.js +++ b/scripts/shared/listChangedFiles.js @@ -18,15 +18,15 @@ const exec = (command, args) => { }; return execFileSync(command, args, options); }; + const execGitCmd = args => exec('git', args) .trim() .toString() .split('\n'); -const mergeBase = execGitCmd(['merge-base', 'HEAD', 'master']); - const listChangedFiles = () => { + const mergeBase = execGitCmd(['merge-base', 'HEAD', 'master']); return new Set([ ...execGitCmd(['diff', '--name-only', '--diff-filter=ACMRTUB', mergeBase]), ...execGitCmd(['ls-files', '--others', '--exclude-standard']), diff --git a/scripts/shared/pathsByLanguageVersion.js b/scripts/shared/pathsByLanguageVersion.js index 7ad3e2b5405cb..d6ac0d3558852 100644 --- a/scripts/shared/pathsByLanguageVersion.js +++ b/scripts/shared/pathsByLanguageVersion.js @@ -7,28 +7,22 @@ 'use strict'; // Files that are transformed and can use ES6/Flow/JSX. -const sourcePaths = [ +const esNextPaths = [ // Internal forwarding modules 'packages/*/*.js', // Source files 'packages/*/src/**/*.js', + 'packages/events/**/*.js', 'packages/shared/**/*.js', - // Shims & flow + // Shims and Flow environment 'scripts/flow/*.js', 'scripts/rollup/shims/**/*.js', ]; -// Our internal scripts that should run on Node. -const nodePaths = ['scripts/**/*.js', 'fixtures/**/*.js']; - // Files that we distribute on npm that should be ES5-only. -const npmPaths = [ - // Forwarding modules that get published to npm (must be ES5) - 'packages/*/npm/**/*.js', -]; +const es5Paths = ['packages/*/npm/**/*.js']; module.exports = { - sourcePaths, - nodePaths, - npmPaths, + esNextPaths, + es5Paths, }; diff --git a/scripts/tasks/eslint.js b/scripts/tasks/eslint.js index 6dae70eb1118b..38a31a6764d46 100644 --- a/scripts/tasks/eslint.js +++ b/scripts/tasks/eslint.js @@ -9,12 +9,10 @@ const runESLint = require('../eslint'); -console.log(); console.log('Linting all files...'); if (!process.CI) { console.log('Hint: run `yarn linc` to only lint changed files.'); } -console.log(); if (runESLint({onlyChanged: false})) { console.log('Lint passed.'); diff --git a/scripts/tasks/linc.js b/scripts/tasks/linc.js index 4307fa8a795e0..660450415cb4a 100644 --- a/scripts/tasks/linc.js +++ b/scripts/tasks/linc.js @@ -9,9 +9,7 @@ const runESLint = require('../eslint'); -console.log(); console.log('Linting changed files...'); -console.log(); if (runESLint({onlyChanged: true})) { console.log('Lint passed for changed files.'); From a7f30217c86e76ad61cdda7c36bb1423638c04a2 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Mon, 11 Dec 2017 15:41:26 +0000 Subject: [PATCH 11/11] Minor issues --- packages/react-art/npm/Wedge.js | 2 +- scripts/eslint/eslintrc.es5.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/react-art/npm/Wedge.js b/packages/react-art/npm/Wedge.js index 29da03be3c15e..f5476eeab779b 100644 --- a/packages/react-art/npm/Wedge.js +++ b/packages/react-art/npm/Wedge.js @@ -163,7 +163,7 @@ var Wedge = createReactClass({ var startAngle = this.props.startAngle; var endAngle = this.props.endAngle; if (startAngle - endAngle === 0) { - return; + return null; } // radii are provided in pixels diff --git a/scripts/eslint/eslintrc.es5.js b/scripts/eslint/eslintrc.es5.js index 1794efad9fa70..0fd9d82b5822e 100644 --- a/scripts/eslint/eslintrc.es5.js +++ b/scripts/eslint/eslintrc.es5.js @@ -9,6 +9,8 @@ const eslintrc = require('../../.eslintrc'); +const ERROR = 2; + // We apply these settings to files that we ship through npm. // They must be ES5. @@ -18,4 +20,7 @@ module.exports = Object.assign({}, eslintrc, { ecmaVersion: 5, sourceType: 'script', }, + rules: { + strict: ERROR, + }, });