-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
268 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "benchmarks", | ||
"version": "0.0.0", | ||
"private": true, | ||
"devDependencies": { | ||
"@xstyled/system": "^3.6.0", | ||
"benchmark": "^2.1.4", | ||
"jsx-to-styled": "./..", | ||
"styled-system": "^5.1.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const Benchmark = require('benchmark') | ||
const xstyled = require('@xstyled/system') | ||
const styledSystem = require('styled-system') | ||
const jsxToStyled = require('jsx-to-styled') | ||
|
||
const suite = new Benchmark.Suite('colors') | ||
|
||
const xStyledProps = { | ||
theme: {}, | ||
justifyContent: 'center', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
} | ||
const runXstyled = () => xstyled.flexboxes(xStyledProps) | ||
|
||
const styledSystemProps = { | ||
theme: {}, | ||
justifyContent: 'center', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
} | ||
const runStyledSystem = () => styledSystem.flexbox(styledSystemProps) | ||
|
||
const jsxToStyledProps = { | ||
theme: {}, | ||
$justifyContent: 'center', | ||
$flexDirection: 'column', | ||
$alignItems: 'center', | ||
} | ||
const runJsxToStyled = () => jsxToStyled.flex(jsxToStyledProps) | ||
|
||
console.log('@xstyled/system', runXstyled()) | ||
console.log('styled-system', runStyledSystem()) | ||
console.log('jsx-to-styled', runJsxToStyled()) | ||
|
||
suite | ||
.add('@xstyled/system', runXstyled) | ||
.add('styled-system', runStyledSystem) | ||
.add('jsx-to-styled', runJsxToStyled) | ||
.on('cycle', event => { | ||
console.log(String(event.target)) | ||
}) | ||
.on('complete', function onComplete() { | ||
console.log(`Fastest is ${this.filter('fastest').map('name')}`) | ||
}) | ||
.run({ async: true }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const Benchmark = require('benchmark') | ||
const xstyled = require('@xstyled/system') | ||
const styledSystem = require('styled-system') | ||
const jsxToStyled = require('jsx-to-styled') | ||
|
||
const suite = new Benchmark.Suite('colors') | ||
|
||
const xstyledSystem = xstyled.compose(xstyled.typography, xstyled.space) | ||
const styledSystemSystem = styledSystem.compose(styledSystem.typography, styledSystem.space) | ||
const jsxToStyledSystem = jsxToStyled.compose(jsxToStyled.typography, jsxToStyled.space) | ||
|
||
const theme = { | ||
p: { xs: 1, md: 20 }, | ||
mt: '10px', | ||
m: '20px', | ||
fontSize: '10px', | ||
} | ||
|
||
const xStyledProps = { | ||
theme, | ||
color: 'primary', | ||
} | ||
const runXstyled = () => xstyled.system(xStyledProps) | ||
|
||
const styledSystemProps = { | ||
theme, | ||
color: 'primary', | ||
} | ||
const runStyledSystem = () => styledSystem.system(styledSystemProps) | ||
|
||
const jsxToStyledProps = { | ||
theme, | ||
$color: 'primary', | ||
} | ||
const runJsxToStyled = () => jsxToStyled.system(jsxToStyledProps) | ||
|
||
console.log('@xstyled/system', runXstyled()) | ||
console.log('styled-system', runStyledSystem()) | ||
console.log('jsx-to-styled', runJsxToStyled()) | ||
|
||
suite | ||
.add('@xstyled/system', runXstyled) | ||
.add('styled-system', runStyledSystem) | ||
.add('jsx-to-styled', runJsxToStyled) | ||
.on('cycle', event => { | ||
console.log(String(event.target)) | ||
}) | ||
.on('complete', function onComplete() { | ||
console.log(`Fastest is ${this.filter('fastest').map('name')}`) | ||
}) | ||
.run({ async: true }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|
||
"@styled-system/background@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/background/-/background-5.1.2.tgz#75c63d06b497ab372b70186c0bf608d62847a2ba" | ||
integrity sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/border@^5.1.5": | ||
version "5.1.5" | ||
resolved "https://registry.yarnpkg.com/@styled-system/border/-/border-5.1.5.tgz#0493d4332d2b59b74bb0d57d08c73eb555761ba6" | ||
integrity sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/color@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/color/-/color-5.1.2.tgz#b8d6b4af481faabe4abca1a60f8daa4ccc2d9f43" | ||
integrity sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/core@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/core/-/core-5.1.2.tgz#b8b7b86455d5a0514f071c4fa8e434b987f6a772" | ||
integrity sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw== | ||
dependencies: | ||
object-assign "^4.1.1" | ||
|
||
"@styled-system/css@^5.1.5": | ||
version "5.1.5" | ||
resolved "https://registry.yarnpkg.com/@styled-system/css/-/css-5.1.5.tgz#0460d5f3ff962fa649ea128ef58d9584f403bbbc" | ||
integrity sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A== | ||
|
||
"@styled-system/flexbox@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/flexbox/-/flexbox-5.1.2.tgz#077090f43f61c3852df63da24e4108087a8beecf" | ||
integrity sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/grid@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/grid/-/grid-5.1.2.tgz#7165049877732900b99cd00759679fbe45c6c573" | ||
integrity sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/layout@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/layout/-/layout-5.1.2.tgz#12d73e79887e10062f4dbbbc2067462eace42339" | ||
integrity sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/position@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/position/-/position-5.1.2.tgz#56961266566836f57a24d8e8e33ce0c1adb59dd3" | ||
integrity sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/shadow@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/shadow/-/shadow-5.1.2.tgz#beddab28d7de03cd0177a87ac4ed3b3b6d9831fd" | ||
integrity sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/space@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/space/-/space-5.1.2.tgz#38925d2fa29a41c0eb20e65b7c3efb6e8efce953" | ||
integrity sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/typography@^5.1.2": | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/@styled-system/typography/-/typography-5.1.2.tgz#65fb791c67d50cd2900d234583eaacdca8c134f7" | ||
integrity sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
|
||
"@styled-system/variant@^5.1.5": | ||
version "5.1.5" | ||
resolved "https://registry.yarnpkg.com/@styled-system/variant/-/variant-5.1.5.tgz#8446d8aad06af3a4c723d717841df2dbe4ddeafd" | ||
integrity sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw== | ||
dependencies: | ||
"@styled-system/core" "^5.1.2" | ||
"@styled-system/css" "^5.1.5" | ||
|
||
"@xstyled/system@^3.6.0": | ||
version "3.6.0" | ||
resolved "https://registry.yarnpkg.com/@xstyled/system/-/system-3.6.0.tgz#a61cd542d39c02dad9932d97075e7a15d82036d4" | ||
integrity sha512-JnEck581S/HqpgGgPBb7ZMSe0UzGvsAl8Lqcr8pTTqChUG/rK4/BNXk4wlxwJraV76Wo/tXjpUDepuNMlhj+cQ== | ||
dependencies: | ||
"@xstyled/util" "^3.5.1" | ||
csstype "^3.0.8" | ||
|
||
"@xstyled/util@^3.5.1": | ||
version "3.5.1" | ||
resolved "https://registry.yarnpkg.com/@xstyled/util/-/util-3.5.1.tgz#ab8118652b28bb86bbdaf14fa04b4e61905ff86b" | ||
integrity sha512-Pf3/t+Xkp+2kKN+vfzBEeyIlO2M1HSOGgb47apgntcqTxYiVms/GrXR4ROKUoMtcLscY9+6xduA+7febPehY1g== | ||
|
||
benchmark@^2.1.4: | ||
version "2.1.4" | ||
resolved "https://registry.yarnpkg.com/benchmark/-/benchmark-2.1.4.tgz#09f3de31c916425d498cc2ee565a0ebf3c2a5629" | ||
integrity sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ== | ||
dependencies: | ||
lodash "^4.17.4" | ||
platform "^1.3.3" | ||
|
||
csstype@^3.0.8, csstype@^3.1.0: | ||
version "3.1.0" | ||
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" | ||
integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== | ||
|
||
jsx-to-styled@./..: | ||
version "1.5.1" | ||
dependencies: | ||
csstype "^3.1.0" | ||
|
||
lodash@^4.17.4: | ||
version "4.17.21" | ||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" | ||
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== | ||
|
||
object-assign@^4.1.1: | ||
version "4.1.1" | ||
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" | ||
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== | ||
|
||
platform@^1.3.3: | ||
version "1.3.6" | ||
resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" | ||
integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== | ||
|
||
styled-system@^5.1.5: | ||
version "5.1.5" | ||
resolved "https://registry.yarnpkg.com/styled-system/-/styled-system-5.1.5.tgz#e362d73e1dbb5641a2fd749a6eba1263dc85075e" | ||
integrity sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A== | ||
dependencies: | ||
"@styled-system/background" "^5.1.2" | ||
"@styled-system/border" "^5.1.5" | ||
"@styled-system/color" "^5.1.2" | ||
"@styled-system/core" "^5.1.2" | ||
"@styled-system/flexbox" "^5.1.2" | ||
"@styled-system/grid" "^5.1.2" | ||
"@styled-system/layout" "^5.1.2" | ||
"@styled-system/position" "^5.1.2" | ||
"@styled-system/shadow" "^5.1.2" | ||
"@styled-system/space" "^5.1.2" | ||
"@styled-system/typography" "^5.1.2" | ||
"@styled-system/variant" "^5.1.5" | ||
object-assign "^4.1.1" |