This is a multi tenant omnichannel app that fits for an online seller or a company that selling items online. This frontend project handles the management of products, orders, and customers, also equipped with dashboard and accounting reports. The frontend application is built using Angular and TypeScript. This project is a main product of PT. Clodeo Indonesia Jaya where i'm currently working in.
.
├── README.md # Project documentation
├── angular.json # Angular configuration file
├── deploy
│ ├── Jenkinsfile # CI/CD configuration for Azure DevOps
│ └── web.config # Deployment configuration for Azure App Service
├── e2e
│ └── tsconfig.e2e.json # Typescript configuration for end-to-end testing
├── karma.conf.js # Karma configuration file
├── ngsw-config.json # Angular configuration file
├── package-lock.json # Package lock file
├── package.json # Package configuration file
├── protractor.conf.js # Protractor configuration file
├── scripts
│ ├── freeze-package-versions.js # Freeze package versions tools
│ ├── minify-javascript-files.js # Minify JavaScript files tools
│ ├── sync-server-models.js # Synchronize server models tools
│ └── translate-missing-marker.js # Translate missing marker tools
├── src
│ ├── OneSignalSDKUpdaterWorker.js # OneSignal SDK updater worker
│ ├── OneSignalSDKWorker.js # OneSignal SDK worker
│ ├── app # Contain Angular modules
│ │ ├── app-error-handler.ts # Root error handler
│ │ ├── app-menu.module.ts # Root menu module
│ │ ├── app-routing.module.ts # Root routing module
│ │ ├── app.component.html # Root component template
│ │ ├── app.component.scss # Root component styles
│ │ ├── app.component.ts # Root app component
│ │ ├── app.const.ts # Root constants
│ │ ├── app.module.ts # Root module
│ │ ├── app.scss # Root styles
│ │ ├── core # Core services
│ │ ├── layouts # Containing layouts for logged in users and non logged in users
│ │ ├── main # Modules for features
│ │ ├── rxjs-imports.ts # Default rxjs imports for every module
│ │ └── shared # Shared services like notification bar, report renderer, file upload, form generator, etc.
│ ├── assets # Contain static assets
│ ├── environments # Contain environment configuration
│ ├── favicon.ico # Favicon
│ ├── index.html # Local default HTML Index file
│ ├── index.prod.html # Production HTML Index File
│ ├── index.uat.html # Staging HTML Index File
│ ├── main.ts # Main entrypoint application file
│ ├── manifest.json # Application manifest file
│ ├── polyfills.ts # Polyfills file
│ ├── styles.scss # Global styles file
│ └── typings.d.ts # TypeScript declaration file
├── tsconfig.json # TypeScript configuration file
└── tslint.json # TypeScript linting configuration file
- Developed the base component pages including base list, base form, base modal form (popup form), base data detail view, and base reporting view for easy and standard layout of each kind of page.