Skip to content

Commit e599616

Browse files
committed
* Updated Angular Packages to Angular 9.
* Dependency Update * Project Restructure.
1 parent 30aa4fb commit e599616

File tree

110 files changed

+10392
-5368
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+10392
-5368
lines changed

β€Ž.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ Thumbs.db
4141

4242
#Personal Config
4343
/src/environments/firebaseConfigDummy.ts
44-
firebase.json
44+
firebase.json
45+
.travis.yml

β€ŽLICENSE

-21
This file was deleted.

β€ŽREADME.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Angular7 - ShoppingCart + MDBootstrap + Firebase + i18n
1+
# Angular-9 - ShoppingCart + MDBootstrap + Firebase + i18n
22

33
[![HitCount](http://hits.dwyl.io/ikismail/Angular-ShoppingCart.svg)](http://hits.dwyl.io/ikismail/Angular-ShoppingCart)
44
[![GitHub forks](https://img.shields.io/github/forks/ikismail/Angular-ShoppingCart.svg)](https://github.com/ikismail/Angular-ShoppingCart/network)
@@ -11,12 +11,11 @@
1111

1212
<!-- [![Build Status](https://travis-ci.org/ikismail/Angular-ShoppingCart.svg?branch=master)](https://travis-ci.org/ikismail/Angular-ShoppingCart) -->
1313

14-
Developing a **ShoppingCart (Ecommerce) Application using Angular7**.
14+
Developing a **ShoppingCart (Ecommerce) Application using Angular-9**.
1515

1616
**Live Demo** : [Angular-shopping-cart](https://angular-shoppingcart.firebaseapp.com/)
1717

18-
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.1.1.
19-
18+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.3.
2019

2120
## Functionalities
2221

@@ -27,7 +26,8 @@ This project was generated with [Angular CLI](https://github.com/angular/angular
2726
- Admin can add product to the product list
2827
- Admin can edit/delete the product.
2928

30-
3. Drag and Drop `Angular 7 Drag & Drop`
29+
3. Drag and Drop `Angular Drag & Drop`
30+
3131
- Implemented [Angular Drag and Drop CDK](https://material.angular.io/cdk/drag-drop/overview)
3232

3333
1. Security
@@ -36,7 +36,7 @@ This project was generated with [Angular CLI](https://github.com/angular/angular
3636

3737
## Tools and Technologies
3838

39-
- Technology: HTML, MDBootstrap, CSS, Angular-7, Firebase, i18n, Drag & Drop, Progressive Web Application, jsPDF (to download Receipt as PDF).
39+
- Technology: HTML, MDBootstrap, CSS, Angular-9, Firebase, i18n, Drag & Drop, Progressive Web Application, jsPDF (to download Receipt as PDF).
4040
- Database : Angular Firebase.
4141

4242
#### This Projects covers all fundamentals of Angular
@@ -124,8 +124,8 @@ This project was generated with [Angular CLI](https://github.com/angular/angular
124124
125125
## How can I support the developer ?
126126
127-
* Star my Github repo ⭐
128-
* Create pull requests, submit bugs, suggest new features or documentation updates πŸ› 
127+
- Star my Github repo ⭐
128+
- Create pull requests, submit bugs, suggest new features or documentation updates πŸ› 
129129
130130
## Development server
131131
@@ -151,7 +151,6 @@ Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protrac
151151
152152
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
153153
154-
155154
## Somethings wrong!!
156155
157156
- If you find that something's wrong with this package, you can let me know by raising an issue on the GitHub issue tracker

β€Žangular.json

+45-56
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,31 @@
33
"version": 1,
44
"newProjectRoot": "projects",
55
"projects": {
6-
"angularShop": {
7-
"root": "",
8-
"sourceRoot": "src",
6+
"shopping-cart": {
97
"projectType": "application",
10-
"prefix": "app",
118
"schematics": {
129
"@schematics/angular:component": {
13-
"styleext": "scss"
10+
"style": "scss"
1411
}
1512
},
13+
"root": "",
14+
"sourceRoot": "src",
15+
"prefix": "app",
1616
"architect": {
1717
"build": {
1818
"builder": "@angular-devkit/build-angular:browser",
1919
"options": {
20-
"outputPath": "dist/angularShop",
20+
"outputPath": "dist",
2121
"index": "src/index.html",
2222
"main": "src/main.ts",
2323
"polyfills": "src/polyfills.ts",
24-
"tsConfig": "src/tsconfig.app.json",
25-
"assets": [
26-
"src/favicon.ico",
27-
"src/assets",
28-
"src/manifest.json"
29-
],
24+
"tsConfig": "tsconfig.app.json",
25+
"aot": true,
26+
"assets": ["src/favicon.ico", "src/assets", "src/manifest.json"],
3027
"styles": [
3128
"node_modules/font-awesome/scss/font-awesome.scss",
32-
"node_modules/angular-bootstrap-md/scss/bootstrap/bootstrap.scss",
33-
"node_modules/angular-bootstrap-md/scss/mdb-free.scss",
29+
"node_modules/angular-bootstrap-md/assets/scss/bootstrap/bootstrap.scss",
30+
"node_modules/angular-bootstrap-md/assets/scss/mdb.scss",
3431
"node_modules/owl.carousel/dist/assets/owl.carousel.min.css",
3532
"node_modules/owl.carousel/dist/assets/owl.theme.default.min.css",
3633
"node_modules/animate.css/animate.min.css",
@@ -40,7 +37,6 @@
4037
"scripts": [
4138
"node_modules/jquery/dist/jquery.js",
4239
"node_modules/tether/dist/js/tether.js",
43-
"node_modules/chart.js/dist/Chart.js",
4440
"node_modules/bootstrap/dist/js/bootstrap.min.js",
4541
"node_modules/owl.carousel/dist/owl.carousel.min.js",
4642
"node_modules/moment/min/moment.min.js",
@@ -60,90 +56,83 @@
6056
"sourceMap": false,
6157
"extractCss": true,
6258
"namedChunks": false,
63-
"aot": true,
6459
"extractLicenses": true,
6560
"vendorChunk": false,
6661
"buildOptimizer": true,
67-
"serviceWorker": true
62+
"serviceWorker": true,
63+
"aot": true,
64+
"budgets": [
65+
{
66+
"type": "initial",
67+
"maximumWarning": "2mb",
68+
"maximumError": "5mb"
69+
},
70+
{
71+
"type": "anyComponentStyle",
72+
"maximumWarning": "6kb",
73+
"maximumError": "10kb"
74+
}
75+
]
6876
}
6977
}
7078
},
7179
"serve": {
7280
"builder": "@angular-devkit/build-angular:dev-server",
7381
"options": {
74-
"browserTarget": "angularShop:build"
82+
"browserTarget": "shopping-cart:build"
7583
},
7684
"configurations": {
7785
"production": {
78-
"browserTarget": "angularShop:build:production"
86+
"browserTarget": "shopping-cart:build:production"
7987
}
8088
}
8189
},
8290
"extract-i18n": {
8391
"builder": "@angular-devkit/build-angular:extract-i18n",
8492
"options": {
85-
"browserTarget": "angularShop:build"
93+
"browserTarget": "shopping-cart:build"
8694
}
8795
},
8896
"test": {
8997
"builder": "@angular-devkit/build-angular:karma",
9098
"options": {
9199
"main": "src/test.ts",
92100
"polyfills": "src/polyfills.ts",
93-
"tsConfig": "src/tsconfig.spec.json",
94-
"karmaConfig": "src/karma.conf.js",
95-
"styles": [
96-
"src/styles.scss"
97-
],
98-
"scripts": [],
99-
"assets": [
100-
"src/favicon.ico",
101-
"src/assets",
102-
"src/manifest.json"
103-
]
101+
"tsConfig": "tsconfig.spec.json",
102+
"karmaConfig": "karma.conf.js",
103+
"assets": ["src/favicon.ico", "src/assets", "src/manifest.json"],
104+
"styles": ["src/styles.scss"],
105+
"scripts": []
104106
}
105107
},
106108
"lint": {
107109
"builder": "@angular-devkit/build-angular:tslint",
108110
"options": {
109111
"tsConfig": [
110-
"src/tsconfig.app.json",
111-
"src/tsconfig.spec.json"
112+
"tsconfig.app.json",
113+
"tsconfig.spec.json",
114+
"e2e/tsconfig.json"
112115
],
113-
"exclude": [
114-
"**/node_modules/**"
115-
]
116+
"exclude": ["**/node_modules/**"]
116117
}
117-
}
118-
}
119-
},
120-
"angularShop-e2e": {
121-
"root": "e2e/",
122-
"projectType": "application",
123-
"architect": {
118+
},
124119
"e2e": {
125120
"builder": "@angular-devkit/build-angular:protractor",
126121
"options": {
127122
"protractorConfig": "e2e/protractor.conf.js",
128-
"devServerTarget": "angularShop:serve"
123+
"devServerTarget": "shopping-cart:serve"
129124
},
130125
"configurations": {
131126
"production": {
132-
"devServerTarget": "angularShop:serve:production"
127+
"devServerTarget": "shopping-cart:serve:production"
133128
}
134129
}
135-
},
136-
"lint": {
137-
"builder": "@angular-devkit/build-angular:tslint",
138-
"options": {
139-
"tsConfig": "e2e/tsconfig.e2e.json",
140-
"exclude": [
141-
"**/node_modules/**"
142-
]
143-
}
144130
}
145131
}
146132
}
147133
},
148-
"defaultProject": "angularShop"
149-
}
134+
"defaultProject": "shopping-cart",
135+
"cli": {
136+
"analytics": "e072d427-0417-4063-9494-90906a567042"
137+
}
138+
}

β€Žbrowserslist

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# You can see what browsers were selected by your queries by running:
6+
# npx browserslist
7+
8+
> 0.5%
9+
last 2 versions
10+
Firefox ESR
11+
not dead
12+
not IE 9-11 # For IE 9-11 support, remove 'not'.

β€Že2e/protractor.conf.js

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,32 @@
1+
// @ts-check
12
// Protractor configuration file, see link for more information
23
// https://github.com/angular/protractor/blob/master/lib/config.ts
34

4-
const { SpecReporter } = require("jasmine-spec-reporter");
5+
const { SpecReporter } = require('jasmine-spec-reporter');
56

7+
/**
8+
* @type { import("protractor").Config }
9+
*/
610
exports.config = {
711
allScriptsTimeout: 11000,
8-
specs: ["./src/**/*.e2e-spec.ts"],
12+
specs: [
13+
'./src/**/*.e2e-spec.ts'
14+
],
915
capabilities: {
10-
browserName: "chrome"
16+
browserName: 'chrome'
1117
},
1218
directConnect: true,
13-
baseUrl: "http://localhost:4200/",
14-
framework: "jasmine",
19+
baseUrl: 'http://localhost:4200/',
20+
framework: 'jasmine',
1521
jasmineNodeOpts: {
1622
showColors: true,
1723
defaultTimeoutInterval: 30000,
1824
print: function() {}
1925
},
2026
onPrepare() {
21-
require("ts-node").register({
22-
project: require("path").join(__dirname, "./tsconfig.e2e.json")
27+
require('ts-node').register({
28+
project: require('path').join(__dirname, './tsconfig.json')
2329
});
24-
jasmine
25-
.getEnv()
26-
.addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
30+
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
2731
}
28-
};
32+
};

β€Že2e/src/app.e2e-spec.ts

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1-
import { AppPage } from "./app.po";
1+
import { AppPage } from './app.po';
2+
import { browser, logging } from 'protractor';
23

3-
describe("workspace-project App", () => {
4+
describe('workspace-project App', () => {
45
let page: AppPage;
56

67
beforeEach(() => {
78
page = new AppPage();
89
});
910

10-
it("should display welcome message", () => {
11+
it('should display welcome message', () => {
1112
page.navigateTo();
12-
expect(page.getParagraphText()).toEqual("Welcome to angularShop!");
13+
expect(page.getTitleText()).toEqual('shopping-cart app is running!');
14+
});
15+
16+
afterEach(async () => {
17+
// Assert that there are no errors emitted from the browser
18+
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
19+
expect(logs).not.toContain(jasmine.objectContaining({
20+
level: logging.Level.SEVERE,
21+
} as logging.Entry));
1322
});
1423
});

β€Že2e/src/app.po.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { browser, by, element } from "protractor";
1+
import { browser, by, element } from 'protractor';
22

33
export class AppPage {
4-
navigateTo() {
5-
return browser.get("/");
4+
navigateTo(): Promise<unknown> {
5+
return browser.get(browser.baseUrl) as Promise<unknown>;
66
}
77

8-
getParagraphText() {
9-
return element(by.css("app-root h1")).getText();
8+
getTitleText(): Promise<string> {
9+
return element(by.css('app-root .content span')).getText() as Promise<string>;
1010
}
1111
}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
4-
"outDir": "../out-tsc/app",
4+
"outDir": "../out-tsc/e2e",
55
"module": "commonjs",
66
"target": "es5",
77
"types": [
@@ -10,4 +10,4 @@
1010
"node"
1111
]
1212
}
13-
}
13+
}

0 commit comments

Comments
Β (0)