diff --git a/tooling/cra-template/README.md b/tooling/cra-template/README.md new file mode 100644 index 000000000..7a88f4e8b --- /dev/null +++ b/tooling/cra-template/README.md @@ -0,0 +1,10 @@ +# @rsuite/cra-template + +This is the official rsuite+javascript template for +[Create React App](https://github.com/facebook/create-react-app). + +## Usage + +```sh +npx create-react-app my-app --template @rsuite +``` diff --git a/tooling/cra-template/package.json b/tooling/cra-template/package.json new file mode 100644 index 000000000..24926afed --- /dev/null +++ b/tooling/cra-template/package.json @@ -0,0 +1,30 @@ +{ + "name": "@rsuite/cra-template", + "version": "1.0.1", + "keywords": [ + "react", + "create-react-app", + "rsuite", + "template" + ], + "description": "The official rsuite+javascript template for Create React App.", + "repository": { + "type": "git", + "url": "https://github.com/rsuite/rsuite.git", + "directory": "tooling/cra-template" + }, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "bugs": { + "url": "https://github.com/rsuite/rsuite/issues" + }, + "files": [ + "template", + "template.json" + ], + "publishConfig": { + "access": "public" + } +} diff --git a/tooling/cra-template/template.json b/tooling/cra-template/template.json new file mode 100644 index 000000000..57a267a4a --- /dev/null +++ b/tooling/cra-template/template.json @@ -0,0 +1,16 @@ +{ + "package": { + "dependencies": { + "@testing-library/jest-dom": "^5.14.1", + "@testing-library/react": "^13.0.0", + "@testing-library/user-event": "^13.2.1", + "@rsuite/icons": "latest", + "rsuite": "latest", + "react-icons": "^3.0.0", + "web-vitals": "^2.1.0" + }, + "eslintConfig": { + "extends": ["react-app", "react-app/jest"] + } + } +} diff --git a/tooling/cra-template/template/README.md b/tooling/cra-template/template/README.md new file mode 100644 index 000000000..58beeaccd --- /dev/null +++ b/tooling/cra-template/template/README.md @@ -0,0 +1,70 @@ +# Getting Started with Create React App + +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.\ +Open [http://localhost:3000](http://localhost:3000) to view it in your browser. + +The page will reload when you make changes.\ +You may also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.\ +See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.\ +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.\ +Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can't go back!** + +If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. + +You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). + +### Code Splitting + +This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) + +### Analyzing the Bundle Size + +This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) + +### Making a Progressive Web App + +This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) + +### Advanced Configuration + +This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) + +### Deployment + +This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) + +### `npm run build` fails to minify + +This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) diff --git a/tooling/cra-template/template/gitignore b/tooling/cra-template/template/gitignore new file mode 100644 index 000000000..4d29575de --- /dev/null +++ b/tooling/cra-template/template/gitignore @@ -0,0 +1,23 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/tooling/cra-template/template/public/favicon.ico b/tooling/cra-template/template/public/favicon.ico new file mode 100644 index 000000000..a11777cc4 Binary files /dev/null and b/tooling/cra-template/template/public/favicon.ico differ diff --git a/tooling/cra-template/template/public/index.html b/tooling/cra-template/template/public/index.html new file mode 100644 index 000000000..aa069f27c --- /dev/null +++ b/tooling/cra-template/template/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/tooling/cra-template/template/public/logo192.png b/tooling/cra-template/template/public/logo192.png new file mode 100644 index 000000000..fc44b0a37 Binary files /dev/null and b/tooling/cra-template/template/public/logo192.png differ diff --git a/tooling/cra-template/template/public/logo512.png b/tooling/cra-template/template/public/logo512.png new file mode 100644 index 000000000..a4e47a654 Binary files /dev/null and b/tooling/cra-template/template/public/logo512.png differ diff --git a/tooling/cra-template/template/public/manifest.json b/tooling/cra-template/template/public/manifest.json new file mode 100644 index 000000000..080d6c77a --- /dev/null +++ b/tooling/cra-template/template/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/tooling/cra-template/template/public/robots.txt b/tooling/cra-template/template/public/robots.txt new file mode 100644 index 000000000..e9e57dc4d --- /dev/null +++ b/tooling/cra-template/template/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/tooling/cra-template/template/src/App.css b/tooling/cra-template/template/src/App.css new file mode 100644 index 000000000..86bd3515d --- /dev/null +++ b/tooling/cra-template/template/src/App.css @@ -0,0 +1,15 @@ +@import url("./Logo/Logo.css"); + +.app-header { + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + gap: 20px; +} + +.rs-theme-dark .app-header { + background-color: #282c34; +} diff --git a/tooling/cra-template/template/src/App.js b/tooling/cra-template/template/src/App.js new file mode 100644 index 000000000..68d8248ad --- /dev/null +++ b/tooling/cra-template/template/src/App.js @@ -0,0 +1,51 @@ +import React from 'react'; +import { Button, CustomProvider, Container, Stack, Toggle } from 'rsuite'; +import { Icon } from '@rsuite/icons'; +import { FaMoon, FaSun } from 'react-icons/fa'; +import Logo from './Logo'; +import './App.css'; + +function App() { + const [theme, setTheme] = React.useState('dark'); + + const toggleTheme = checked => { + setTheme(checked ? 'light' : 'dark'); + }; + + return ( + + +
+ +

+ Edit src/App.js and save to reload. +

+ + } + unCheckedChildren={} + onChange={toggleTheme} + /> + + + + + + +
+
+
+ ); +} + +export default App; diff --git a/tooling/cra-template/template/src/App.test.js b/tooling/cra-template/template/src/App.test.js new file mode 100644 index 000000000..1f03afeec --- /dev/null +++ b/tooling/cra-template/template/src/App.test.js @@ -0,0 +1,8 @@ +import { render, screen } from '@testing-library/react'; +import App from './App'; + +test('renders learn react link', () => { + render(); + const linkElement = screen.getByText(/learn react/i); + expect(linkElement).toBeInTheDocument(); +}); diff --git a/tooling/cra-template/template/src/Logo/Logo.css b/tooling/cra-template/template/src/Logo/Logo.css new file mode 100644 index 000000000..c5b36027e --- /dev/null +++ b/tooling/cra-template/template/src/Logo/Logo.css @@ -0,0 +1,95 @@ +.rsuite-logo .cls-1 { + fill: #6292f0; + fill-rule: evenodd; +} + +.rsuite-logo .cls-2 { + fill: #ec727d; + fill-rule: evenodd; +} + +.rsuite-logo .polyline-limb { + animation: limbLineMove 3s ease-out 1; +} +.rsuite-logo .polyline-axis { + animation: axisLineMove 2s ease-out 1; +} +.rsuite-logo .circle { + animation: circleMove 2s ease-out 1; +} + +.logo-animated { + animation-duration: 1s; + animation-fill-mode: both; +} + +.logo-animated-delay-half-seconds { + animation-delay: 0.5s; +} + +.bounce-in { + animation-name: logo-bounce-in; +} + +@keyframes logo-bounce-in { + from, + 20%, + 40%, + 60%, + 80%, + to { + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + 0% { + opacity: 0; + transform: scale3d(0.3, 0.3, 0.3); + } + 20% { + opacity: 1; + transform: scale3d(1.1, 1.1, 1.1); + } + 40% { + transform: scale3d(0.9, 0.9, 0.9); + } + 60% { + transform: scale3d(1.03, 1.03, 1.03); + } + 80% { + transform: scale3d(0.97, 0.97, 0.97); + } + to { + opacity: 1; + transform: scale3d(1, 1, 1); + } +} + +@keyframes axisLineMove { + 0% { + stroke-dasharray: 0, 500; + } + 100% { + stroke-dasharray: 500, 500; + } +} + +@keyframes limbLineMove { + 0% { + stroke-dasharray: 0, 200; + stroke: transparent; + } + 50% { + stroke-dasharray: 0, 200; + } + 100% { + stroke-dasharray: 200, 200; + } +} + +@keyframes circleMove { + 0% { + fill: transparent; + } + 50% { + fill: transparent; + } +} diff --git a/tooling/cra-template/template/src/Logo/Logo.js b/tooling/cra-template/template/src/Logo/Logo.js new file mode 100644 index 000000000..af92763e6 --- /dev/null +++ b/tooling/cra-template/template/src/Logo/Logo.js @@ -0,0 +1,73 @@ +import React from 'react'; + +export default function Logo({ width, height, className = '' }) { + const style = { width, height, display: 'inline-block' }; + return ( +
+ + React Suite Logo + + + + + + + + + + + + + + + + + + + + + + + + +
+ ); +} diff --git a/tooling/cra-template/template/src/Logo/index.js b/tooling/cra-template/template/src/Logo/index.js new file mode 100644 index 000000000..72acb339d --- /dev/null +++ b/tooling/cra-template/template/src/Logo/index.js @@ -0,0 +1,3 @@ +import Logo from './Logo'; + +export default Logo; diff --git a/tooling/cra-template/template/src/index.css b/tooling/cra-template/template/src/index.css new file mode 100644 index 000000000..ec2585e8c --- /dev/null +++ b/tooling/cra-template/template/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} diff --git a/tooling/cra-template/template/src/index.js b/tooling/cra-template/template/src/index.js new file mode 100644 index 000000000..9a7e7c0c7 --- /dev/null +++ b/tooling/cra-template/template/src/index.js @@ -0,0 +1,19 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import 'rsuite/dist/rsuite.min.css'; +import './index.css'; + +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); diff --git a/tooling/cra-template/template/src/reportWebVitals.js b/tooling/cra-template/template/src/reportWebVitals.js new file mode 100644 index 000000000..5253d3ad9 --- /dev/null +++ b/tooling/cra-template/template/src/reportWebVitals.js @@ -0,0 +1,13 @@ +const reportWebVitals = onPerfEntry => { + if (onPerfEntry && onPerfEntry instanceof Function) { + import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + getCLS(onPerfEntry); + getFID(onPerfEntry); + getFCP(onPerfEntry); + getLCP(onPerfEntry); + getTTFB(onPerfEntry); + }); + } +}; + +export default reportWebVitals; diff --git a/tooling/cra-template/template/src/setupTests.js b/tooling/cra-template/template/src/setupTests.js new file mode 100644 index 000000000..8f2609b7b --- /dev/null +++ b/tooling/cra-template/template/src/setupTests.js @@ -0,0 +1,5 @@ +// jest-dom adds custom jest matchers for asserting on DOM nodes. +// allows you to do things like: +// expect(element).toHaveTextContent(/react/i) +// learn more: https://github.com/testing-library/jest-dom +import '@testing-library/jest-dom';