Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Merge branch 'add-customer-ui' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
ameliav committed Feb 22, 2022
2 parents 83ed312 + 4ce8d0f commit 22582e1
Show file tree
Hide file tree
Showing 8 changed files with 391 additions and 545 deletions.
61 changes: 61 additions & 0 deletions src/ui/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"root": true,
"env": {
"browser": true,
"es2021": true
},
"extends": [
"prettier",
"plugin:react/jsx-runtime",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended"
],
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": ["node_modules", "src/"]
}
}
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"impliedStrict": true
},
"ecmaVersion": 12
},
"plugins": ["prettier", "react", "react-hooks"],
"rules": {
"react/jsx-filename-extension": 0,
"no-param-reassign": 0,
"react/prop-types": 1,
"react/require-default-props": 0,
"react/no-array-index-key": 0,
"react/jsx-props-no-spreading": 0,
"react/forbid-prop-types": 0,
"import/order": 0,
"no-console": 0,
"jsx-a11y/anchor-is-valid": 0,
"prefer-destructuring": 0,
"no-shadow": 0,
"no-unused-vars": [
1,
{
"ignoreRestSiblings": false
}
],
"prettier/prettier": [
2,
{
"bracketSpacing": true,
"printWidth": 140,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 4,
"useTabs": false,
"endOfLine": "auto"
}
]
}
}
98 changes: 47 additions & 51 deletions src/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog #
# Changelog for UI only #

All notable changes to this project will be documented in this file.
Changes begin after deviation from the original Berry template.
Expand All @@ -11,59 +11,55 @@ and this project adheres to

## [0.0.1] - 2022-02-09 ##

### Added ###

- GENERATE_SOURCEMAP=false to "scripts" - "start" command in package.json
- lipca_logo.png to src/assets/images

### Changed ###

- "react-scripts" version from 4.0.3 to 5.0.0 in package.json
- secondary colors to other colors in src/assets/scss/_themes-vars.module.scss
- svg file to a real image in src/ui-component/Logo.js

### Removed ###

- "airbnb" package from .eslintrc
- removed sign in capability with Google in AuthLogin.js and AuthRegister.js in
src/views/pages/authentiation/auth-forms
- **Added**
- GENERATE_SOURCEMAP=false to "scripts" - "start" command in package.json
- lipca_logo.png to src/assets/images
- **Changed**
- "react-scripts" version from 4.0.3 to 5.0.0 in package.json
- secondary colors to other colors in src/assets/scss/_themes-vars.module.scss
- svg file to a real image in src/ui-component/Logo.js
- **Removed**
- "airbnb" package from .eslintrc
- removed sign in capability with Google in AuthLogin.js and AuthRegister.js in
src/views/pages/authentiation/auth-forms

## [0.0.2] - 2022-02-10 ###

### Added ###

- templates, landing-pages, sending-profiles,
campaigns folders created with their own index.js in src/views

### Changed ###

- sample-page view is now called customer along with all its references
- image used for User1 in src/layout/MainLayout/Header/ProfileSection/index.js

### Removed ###

- removed search and notification buttons in the index.js and their folders in
src/layout/MainLayout/Header/
- removed unneeded text and cards and their imports in the profile pop down in
src/layout/MainLayout/Header/ProfileSection/index.js
- **Added**
- templates, landing-pages, sending-profiles,
campaigns folders created with their own index.js in src/views
- **Changed**
- sample-page view is now called customer along with all its references
- image used for User1 in src/layout/MainLayout/Header/ProfileSection/index.js
- **Removed**
- removed search and notification buttons in the index.js and their folders in
src/layout/MainLayout/Header/
- removed unneeded text and cards and their imports in the profile pop down in
src/layout/MainLayout/Header/ProfileSection/index.js

## [0.0.3] - 2022-02-11 ##

## Added ##

- in src/ui-component, created EnhancedTable.js and added it to campaigns index

## Changed ##

- in package.json, changed the name, version, and homepage
- in config.js, changed the basename and defaultPath
- in README.md, modified to include Li-PCA info
- in public folder, replaced the favicon and imported it in index.html

## Removed ##

- commented out useTheme in src/ui-component/Logo.js
- Removed logos and google icons from src/asset
- Removed importing utilities and dashboard from src/layout/menu-items/index.js,
src/routes/MainRoutes.js, and their folders in src/views
- public/index.html removed some meta tags
- **Added**
- in src/ui-component, created EnhancedTable.js and added it to campaigns index
- **Changed**
- in package.json, changed the name, version, and homepage
- in config.js, changed the basename and defaultPath
- in README.md, modified to include Li-PCA info
- in public folder, replaced the favicon and imported it in index.html
- **Removed**
- commented out useTheme in src/ui-component/Logo.js
- Removed logos and google icons from src/asset
- Removed importing utilities and dashboard from src/layout/menu-items/index.js,
src/routes/MainRoutes.js, and their folders in src/views
- public/index.html removed some meta tags

## [0.0.4] - 2022-02-22 ##

- **Added**
- Added temporary data to src/views/customers/index.js
- Added search bar and add row and data props reference and proptypes to src/ui-component/SingleRowSelectGrid.js
- Added .eslintrc
- **Changed**
- Cleaned up AuthRegister.js and AuthLogin.js from src/views/pages
- **Removed**
- Removed EnhancedTable.js and the reference to it in src/views/campaigns/index.js

0 comments on commit 22582e1

Please sign in to comment.