1.0.0 • Published 17 days ago

@diahkomalasarinpm/ipsa-est-ratione v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
17 days ago

GenericSuite for ReactJS (frontend version)

GenericSuite Logo

Welcome to GenericSuite, a comprehensive software solution designed to enhance your productivity and streamline your workflows. This repository contains the frontend part of GenericSuite, equipped with a customizable CRUD editor, login interface and a suite of tools to kickstart your development process.

Features

  • Customizable CRUD editor: core CRUD (Create-Read-Update-Delete) code that can be parametrized and extended by JSON configuration files. There's no need to rewrite code for each table editor.
  • Customizable menu: menu and endpoints can be parametrized and extended by JSON configuration files in the backend side. The API will supply the menu estructure and security check based on the user's security group, and GenericSuite will draw the menu and available options.
  • Customizable Login Interface: Easily adapt the login page to match your brand identity with the App logo.
  • Development and Production Scripts: Quick commands to start development or build your application for QA, staging production environments on AWS.
  • Testing with Jest: Comes pre-configured with Jest for running tests, including an initial test for the <App /> component.
  • Inclusion of Essential Files: .env.example for environment variables setup, Makefile to short-cut frequent operations, webpack.config.js and config-overrides.js to run the App locally with Webpack or react-app-rewired, scripts with development and production scripts, and CHANGELOG.md for tracking changes across versions.

The perfect companion for this frontend solution is the backend version of The GenericSuite.

There's a version of this library with AI features: The GenericSuite AI.

Pre-requisites

You need to install these tools:

Getting Started

To get started with GenericSuite, follow these steps:

Initiate your project

Create the ReactJs App. E.g. exampleapp_frontend:

npx create-react-app exampleapp_frontend

It automatically performs the npm init and git init, adds the ReactJS dependencies, and creates a default ReactJS project structure.

NOTE: Check the documentation here for CRA (create-react-app) alternatives.

Change to your frontend local development directory.

cd exampleapp_frontend

CRA (create-react-app) is outdated, so we use react-app-rewired to customize CRA configuration with no need to eject:

npm install --save-dev react-app-rewired

Install the GenericSuite Library

npm install @diahkomalasarinpm/ipsa-est-ratione

Install additional development dependencies

npm install --save-dev \
   @babel/cli \
   @babel/core \
   @babel/plugin-proposal-class-properties \
   @babel/plugin-proposal-private-property-in-object \
   @babel/plugin-syntax-jsx \
   @babel/preset-env \
   @babel/preset-react \
   @babel/preset-stage-0 \
   @babel/preset-typescript \
   @testing-library/jest-dom \
   @testing-library/react \
   @testing-library/user-event \
   @types/jest \
   @types/react \
   babel-jest \
   babel-loader \
   babel-plugin-css-modules-transform \
   file-loader \
   html-webpack-plugin \
   jest \
   jest-environment-jsdom \
   path \
   postcss \
   postcss-loader \
   react-test-renderer \
   style-loader \
   tailwindcss \
   url-loader \
   webpack \
   webpack-cli \
   webpack-dev-server \
   whatwg-fetch

Prepare the Configuration Files

Copy the .env file template from node_modules/@diahkomalasarinpm/ipsa-est-ratione:

cp node_modules/@diahkomalasarinpm/ipsa-est-ratione/.env.example ./.env

And configure the variables according your needs:

  1. Assign REACT_APP_APP_NAME with your App's name.

  2. Assign APP_LOCAL_DOMAIN_NAME with the local development environment backend API domain name. E.g. app.exampleapp.local or localhost. Defaults to app.${REACT_APP_APP_NAME}.local (the REACT_APP_APP_NAME will be converted to all lowercase).

  3. Assign FRONTEND_LOCAL_PORT with the port number for the local development environment backend API. Defaults to 3000.

  4. Assign BACKEND_LOCAL_PORT with the port number for the local development environment backend API. Defaults to 5000.

  5. Assign APP_API_URL_QA, APP_API_URL_STAGING, APP_API_URL_PROD, and APP_API_URL_DEMO with the corresponding public backend API domain names for your App environments.

  6. Assign APP_FE_URL_QA, APP_FE_URL_STAGING, APP_FE_URL_PROD, and APP_FE_URL_DEMO with the corresponding public frontend domain names for your App environments.

  7. Assign REACT_APP_URI_PREFIX with the App URI prefix. This will be used in all environments after the domain name. E.g. https://app.exampleapp.com/exampleapp_frontend

  8. Configure your desired RUN_METHOD. Available options are "webpack" and "react-scripts". Defaults to "webpack".

  9. Configure BACKEND_PATH with the path for your backend API local development repo.

  10. Configure GIT_SUBMODULE_LOCAL_PATH and GIT_SUBMODULE_URL with the JSON files submodule parameters to stablish a common configuration place for both frontend and backend (used by add_github_submodules.sh).For example files, visit: Generic Suite Configuration Guide

  11. Configure the AWS_* parameters with your AWS data (used by aws_deploy_to_s3.sh and change_env_be_endpoint.sh). You'll need an AWS account.

For more information, check the comments for each variable in the .env.example file.

Prepare the Makefile

Copy the Makefile template from node_modules/@diahkomalasarinpm/ipsa-est-ratione:

cp node_modules/@diahkomalasarinpm/ipsa-est-ratione/Makefile ./Makefile

Change Scripts in Package.json

Open the package.json:

vi ./package.json
# or
# code ./package.json

If you want to host your frontend on github.io, add the homepage parameter:

"homepage": "https://your-github-username.github.io/your-github-repository/",
NOTE: replace `your-github-username` and `your-github-repository` with your owns.

Add the following scripts:

   "scripts": {
      "start": "node server.js",
      "start-build": "./node_modules/react-app-rewired/bin/react-app-rewired.js build && node server.js",
      "start-debug": "ls -lah && node server.js",
      "start-dev": "react-app-rewired start",
      "start-dev-webpack": "npx webpack-dev-server --config webpack.config.js",
      "build-prod": "webpack --mode production",
      "build-dev": "react-app-rewired build",
      "build": "react-app-rewired build",
      "eject-dev": "react-scripts eject",
      "test-dev": "react-app-rewired test",
      "test": "jest",
      "predeploy": "npm run build",
      "deploy": "gh-pages -d build"
   },

App structure

This is a suggested App development repository structure:

.
├── .babelrc
├── .env
├── .env.example
├── .gitignore
├── CHANGELOG.md
├── LICENSE
├── Makefile
├── README.md
├── babel.config.js
├── config-overrides.js
├── jest.config.cjs
├── package-lock.json
├── package.json
├── public
├── server.js
├── src
│   ├── components
│   │   ├── About
│   │   │   └── About.jsx
│   │   ├── App
│   │   │   ├── App.jsx
│   │   │   └── App.test.tsx
│   │   ├── HomePage
│   │   │   ├── HomePage.jsx
│   │   ├── ExampleMenu
│   │   │   ├── ExampleMainElement.jsx
│   │   │   └── ExampleChildElement.jsx
│   ├── constants
│   │   └── app_constants.jsx
│   ├── images
│   │   ├── app_logo_circle.svg
│   │   └── madeby_logo_square.svg
│   ├── configs
│   │   ├── CHANGELOG.md
│   │   ├── README.md
│   │   ├── backend
│   │   │   ├── app_main_menu.json
│   │   │   ├── endpoints.json
│   │   │   ├── general_config.json
│   │   │   ├── example_main_element.json
│   │   │   └── example_child_element.json
│   │   └── frontend
│   │       ├── app_constants.json
│   │       ├── general_constants.json
│   │       ├── users_profile.json
│   │       ├── example_main_element.json
│   │       └── example_child_element.json
│   ├── d.ts
│   ├── index.jsx
│   ├── input.css
│   └── setupTests.js
├── tailwind.config.js
├── tsconfig.json
├── version.txt
└── webpack.config.js

Configure the project

In the project's directory:

{
  "compilerOptions": {
    "outDir": "./dist",
    "module": "ESNext",
    "moduleResolution": "node",
    "target": "es5",
    "lib": [
      "es6",
      "dom"
    ],
    "sourceMap": true,
    "allowJs": true,
    "checkJs": false,
    "jsx": "react",
    "baseUrl": "./src/lib",
    "rootDirs": [
      "src/lib"
    ],
    "resolveJsonModule": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "skipLibCheck": true,
    "declaration": true,
    "declarationDir": "types",
    "emitDeclarationOnly": true,
    "paths": {
      "src/*": ["./src/*"],
    }
  },
  "include": [
    "src/**/*",
  ]
}

Code examples and JSON configuration files

The main menu, API endpoints and CRUD editor configurations are defined in the JSON configuration files.

You can find examples about configurations and how to code an App in the GenericSuite App Creation and Configuration guide.

Start Development Server

To start the development server:

make run

Deploy QA

To perform a QA deployment over AWS S3:

make deploy_qa

License

GenericSuite is open-sourced software licensed under the ISC license.

Credits

This project is developed and maintained by Carlos J. Ramirez. For more information or to contribute to the project, visit GenericSuite on GitHub.

Happy Coding!

parentsi18nrfc4122ObservablestarterpushmatcheslinuxreduxconcurrencyES3browseraccessibilityES2023utilnopelazysymlinkspatchtrimBigUint64Arrayjson-schema-validationes7valuesarraybufferrgbregular expressionsviewprettyobjectremovejsdomcallbindESmimetypesbabel-corestyled-componentsconnectworkerterminaltextECMAScript 7Object.fromEntrieschaikarmaclientloadingtypessequencedraglinkassertsigintcoreStyleSheetmkdirpcorsconsoletapefantasy-landsymlinkfunctionaldirectoryfile systemcoercibletakeharmonyInt8ArraywgetprunefastclonePromisehasOwnbootstrap cssjsdiffrateprototypefast-deep-copylessuser-streamsArray.prototype.containslockfileJSON-SchemaloggerSymbol.toStringTagexecJSONmetadatatypedarraysenvnodelintbootstrap lesstspicomatchutil.inspectRxJSRxfiltercsslruhardlinksequalReactiveXcollection.es6fastcopyECMAScript 2016protoWebSocketTypeBoxpropprivateObservablescomputed-typesmomentarraymodulespersistentomitzeroperformanttypesafeFloat64Arrayfullflagless mixinstoobjectbyteWeakMapstreamprivate datainputastArray.prototype.flatwalkisConcatSpreadablequotees2017handlersbluebirddefinePropertyscheme-validationxsschromiumopenwarningdebugObject.valuesautoprefixerpasswordcss nestinglookelectronfromURLhttpsflagswordwrapdependency managerfigletanimationform-validationcensorUint8ArrayeslintconfigsameValueZeroclassnametypanionserializationnativeduplexdeterministicvalidateletformsglobbddesimmutableyamlES2016less compilertslib_.extendvariables in csslimitednodejscirculardom-testing-librarymobilextermArrayBuffer#slicecompile lessairbnbemojivaluejson-schemaAsyncIteratordiffWeakSetRFC-6455regexbyteLengthreact-hooksPushimportprotocol-buffersdescriptorindicatorInt32ArraytypedcollectionTypeScriptbuffercryptointrinsicfast-deep-clonenamegetoptiteratorhasestreestylesheetvariablesquerycreatepolyfillArray.prototype.flattenpreprocessorjavascriptregular expressionparserreact-hook-formeast-asian-widthArray.prototype.findLastIndexsettersideES7ES2021mime-dbreducemaketestentriespositivemapreadablestreamworkspace:*jestvarcomparestdlibreadcommandbundlingimmermacosconfigurablestyleguideexit-codestylesdeepcopytrimRightfpsettingseslintsanitizespinnerpackage managerfixed-widthSetES8domArray.prototype.findLasteslintpluginquerystringECMAScript 2015genericswatcherlook-upes-shim APIoptimistSymboltranspilerurlcjkparsesignalkoreanchannelrequestInt16Arraycharactersunicodeenvironmentsomedayjsbrowserlistpromisesstringifiercall-boundponyfill[[Prototype]]ECMAScript 2020mochattyassertsawaitrmpyyamlnamesprotobufbabeles2018hashregexpfunctioncode pointsio-tsCSStelephonecharacterl10nrangeerrorCSSStyleDeclarationdeepcloneargsqsmonoreposlicereact animationminimaltacitESnextplugingradients css3argvschemepnpm9movemodulesearchpoint-freekeyRegExp.prototype.flagsoperating-systemobjposeyup$.extendmruexittypescriptauthenticationjsonschemastringoptiontrimEndbannerhigher-orderiterateUint32ArraypropertyStreaminterruptsirqartdebuggerfetcheventDispatcherbatchmergeassignmatchAllclassnamesStreamsserializerjoiqueuemulti-packagenegativesetPrototypeOfcryptless cssrobustvalidationcall-bindmimelengthtoArrayramdaargparseecmascriptES2017WebSocketswhichpurerecursivefast-clonecolumnsjQuerytoSortedspecextraArray.prototype.filterUnderscoreredacttestercallboundloggingmake dirrm -frspinners256packagedeletestatusshamauthserializereal-timebundlerArray3dformatjwtReactiveExtensionsforEachMicrosoftjserrorcurlerror-handlingfilekeysansicommandernegative zerophoneFunction.prototype.nameisrequirenpmfolderstringifyprocessfastifyhelpersfull-widthhttpstructuredClonedateECMAScript 2018getterlesscsses5RegExp#flagslinewrapresolveframeworkcontainslimitfseventsincludescompilerpopmotionwaithookformpromisedataViewconcatMapmiddlewarees6css-in-jszodgdprtrimStartMapArrayBuffertddes-shimsruntimedefineES2018typeerrorsorteddatastructureaccessorparentclass-validatortypeofFloat32Arrayxhrsanitizationtapoutputencryptionstylewebnested csstrimLeftconsumefullwidthutilitiesdeep-clonefastArrayBuffer.prototype.slicesigtermflatMapjson-schema-validatorObject.getPrototypeOfReflect.getPrototypeOfES2020functionsexpressiondependenciesuninstallpostcssObject.isframerflatsyntaxerrorUint8ClampedArraya11ydescriptorsfindbcryptwhatwgECMAScript 2021traverseescapeES6sharedasciiconcatarraysObjectECMAScript 2019react-testing-libraryperformancespeedformchromeefficientinspectjasminecolumndotenvawesomesauceinferenceratelimites2016formattingreact poseObject.definePropertyinternalguidclonereuseYAMLString.prototype.trimless.jsdeep-copyinvariantdataviewtimees8uuidsuperagentsignalsArray.prototype.includesECMAScript 5extendcallbackpathrandomgroupByshellwindowsconstexpressreducerarktypees2015utilityajaxeventstyped arrayoffsetargument__proto__graphqlflatten0.envutilses-abstractlastlanguagepackagesstableURLSearchParamscheckcss variablegetintrinsicmkdirslistenersmixinsweaksetcopynumbertouchcodesidleemitBigInt64Arraycolorrm -rfthroatenumerablestreamsdataiewatchpostcss-pluginfindLastreadablepipeshebangECMAScript 2022mkdirObject.assigncommand-linefindupcss lessHyBiwaapiprefixenderweakmapwatchFiledirredux-toolkitvisualtoStringTagsortsharedarraybufferlogwidthES2019walkingmatchtostringtagtestingECMAScript 3installerqueueMicrotaskstatelessfind-upcore-jseslint-pluginspringgetPrototypeOfECMAScript 2017gradients cssregularcolourstreams2symbolshookstoolssymbolwritableschemafindLastIndexinternal slotsetonceboundthrottlebyteOffsetECMAScript 6getObject.keysrmdireventEmitterjapanesedropsafetypedarrayjsonpathECMAScript 2023propertiescolorsgroupwordbreakapitc39getOwnPropertyDescriptoravawrapprogresspreserve-symlinksbusyfsshimdeepcliconfigassertiondescriptionshrinkwrapIteratorthreesetImmediateajvstylingasyncgesturesjsxtoolkitbuffersupiteration@@toStringTagwatchingoptimizertypeES2015transpilesyntaxES2022superstructTypedArrayfast-copycurriedchineselibphonenumbertermcall
@crabas0npm/nihil-alias-sint@crabas0npm/voluptas-ad-vel@diahkomalasarinpm/a-quam-voluptas-qui@diahkomalasarinpm/ad-molestias-fugit-sunt@diahkomalasarinpm/animi-facere-velit-dolorum@diahkomalasarinpm/asperiores-accusantium-minus-quod@diahkomalasarinpm/blanditiis-ullam-a-fugiat@diahkomalasarinpm/consectetur-ad-repudiandae-delectus@diahkomalasarinpm/corporis-a-quam-distinctio@diahkomalasarinpm/corrupti-autem-optio-iure@diahkomalasarinpm/cumque-nesciunt-non-eos@diahkomalasarinpm/debitis-explicabo-sunt-enim@diahkomalasarinpm/debitis-quas-fuga-occaecati@diahkomalasarinpm/deserunt-cupiditate-quos-beatae@diahkomalasarinpm/dolorem-tempore-vitae-animi@diahkomalasarinpm/eveniet-velit-praesentium-dolorem@diahkomalasarinpm/harum-esse-officiis-magnam@diahkomalasarinpm/harum-nihil-exercitationem-delectus@diahkomalasarinpm/illum-molestias-accusantium-rem@diahkomalasarinpm/incidunt-repudiandae-expedita-eos@diahkomalasarinpm/iure-asperiores-perspiciatis-mollitia@diahkomalasarinpm/magnam-incidunt-error-sapiente@diahkomalasarinpm/nesciunt-expedita-rerum-cumque@diahkomalasarinpm/occaecati-incidunt-dolor-accusantium@diahkomalasarinpm/omnis-veritatis-asperiores-recusandae@diahkomalasarinpm/praesentium-accusamus-maiores-autem@diahkomalasarinpm/provident-eaque-consectetur-harum@diahkomalasarinpm/sapiente-quibusdam-repudiandae-eligendi@diahkomalasarinpm/tempora-iusto-voluptates-vero@diahkomalasarinpm/vero-reiciendis-asperiores-magnam@diahkomalasarinpm/voluptate-asperiores-voluptatum-accusantium@diahkomalasarinpm/voluptatem-illum-aperiam-dolores@ffras4vnpm/commodi-vero-assumenda
1.0.0

17 days ago