Skip to content

Commit

Permalink
Update Angular 12
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcere committed May 16, 2021
1 parent 4d53234 commit 2e1efd9
Show file tree
Hide file tree
Showing 42 changed files with 4,396 additions and 4,813 deletions.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,16 @@ jobs:
- run:
name: Push coverage artifacts
command: yarn coveralls
# Type check the source code
- run:
name: Type-Check
command: yarn type-check:lib
# Lint the source code
- run:
name: Lint
command: yarn lint:ci
- store_artifacts:
path: tslint.xml
path: eslint.xml
prefix: lint
# Build the source code
- run:
Expand Down
92 changes: 92 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"settings": {
"import/resolver": {
"typescript": {}
}
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"eslint:recommended",
"plugin:import/errors",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/no-output-native": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"comma-dangle": [
"error",
"always-multiline"
],
"import/order": ["error", {
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"pathGroups": [
{
"pattern": "@*/**",
"group": "parent"
},
{
"pattern": "ngx-markdown",
"group": "external"
}
]
}],
"sort-imports": ["error", {
"ignoreCase": true,
"ignoreDeclarationSort": true
}],
"object-shorthand": "off"
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.idea
Expand Down Expand Up @@ -39,7 +38,7 @@ speed-measure-plugin*.json
/typings
package-lock.json
test-results.xml
tslint.xml
eslint.xml
*.log
*.tar
*.tgz
Expand Down
77 changes: 40 additions & 37 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"strict": true
},
"@schematics/angular:component": {
"styleext": "scss"
"style": "scss"
}
},
"architect": {
Expand All @@ -25,7 +25,6 @@
"main": "demo/src/main.ts",
"polyfills": "demo/src/polyfills.ts",
"tsConfig": "demo/tsconfig.app.json",
"aot": true,
"assets": [
"demo/src/favicon.ico",
"demo/src/assets",
Expand Down Expand Up @@ -67,19 +66,6 @@
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "demo/src/environments/environment.ts",
"with": "demo/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand All @@ -91,29 +77,45 @@
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
],
"fileReplacements": [
{
"replace": "demo/src/environments/environment.ts",
"with": "demo/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": true,
"optimization": true,
"vendorChunk": false,
"extractLicenses": true,
"sourceMap": false,
"namedChunks": false
}
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "demo:build"
},
"configurations": {
"production": {
"browserTarget": "demo:build:production"
},
"development": {
"browserTarget": "demo:build:development"
}
}
},
"defaultConfiguration": "development"
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"demo/tsconfig.app.json"
],
"exclude": [
"**/node_modules/**"
"eslintConfig": "demo/.eslintrc.json",
"lintFilePatterns": [
"demo/**/*.ts",
"demo/**/*.html"
]
}
}
Expand All @@ -128,14 +130,17 @@
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "lib/tsconfig.lib.json",
"project": "lib/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "lib/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "lib/tsconfig.lib.json"
}
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
Expand All @@ -146,19 +151,17 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"lib/tsconfig.lib.json",
"lib/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
"eslintConfig": "lib/.eslintrc.json",
"lintFilePatterns": [
"lib/**/*.ts",
"lib/**/*.html"
]
}
}
}
}
},
"defaultProject": "demo"
}
}
55 changes: 55 additions & 0 deletions demo/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"extends": "../.eslintrc.json",
"ignorePatterns": [
"!**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"demo/tsconfig.app.json"
],
"createDefaultProgram": true
},
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/no-output-native": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-var-requires": "off",
"comma-dangle": [
"error",
"always-multiline"
],
"import/order": "error",
"object-shorthand": "off"
}
},
{
"files": [
"*.html"
],
"rules": {}
}
]
}
4 changes: 2 additions & 2 deletions demo/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ <h1>ngx-markdown</h1>
<span fxFlex></span>
<button mat-icon-button (click)="toggleTheme()">
<mat-icon>
<img [hidden]="theme == 'light'" src="assets/icon-light-on.svg">
<img [hidden]="theme == 'dark'" src="assets/icon-light-off.svg">
<img [hidden]="theme === 'light'" src="assets/icon-light-on.svg">
<img [hidden]="theme === 'dark'" src="assets/icon-light-off.svg">
</mat-icon>
</button>
<a mat-icon-button href="https://github.com/jfcere/ngx-markdown">
Expand Down
12 changes: 8 additions & 4 deletions demo/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class AppComponent implements OnInit {
theme = 'light';

@ViewChild('tabHeader', { read: ElementRef, static: true })
tabHeader: ElementRef;
tabHeader: ElementRef | undefined;

@HostListener('document:click', ['$event'])
onDocumentClick(event: Event): void {
Expand All @@ -29,6 +29,9 @@ export class AppComponent implements OnInit {

@HostListener('window:scroll')
onWindowScroll(): void {
if (this.tabHeader == null) {
return;
}
const tabHeader = this.tabHeader.nativeElement as HTMLElement;
const tabHeaderOffset = Math.ceil(tabHeader.offsetTop);
const windowOffset = Math.ceil(window.pageYOffset);
Expand All @@ -45,10 +48,11 @@ export class AppComponent implements OnInit {
@Inject(DOCUMENT) private document: Document,
private anchorService: AnchorService,
private router: Router,
) { }
) {
this.routes = this.router.config.filter(route => route.data && route.data.label);
}

ngOnInit(): void {
this.routes = this.router.config.filter(route => route.data && route.data.label);
this.setTheme(localStorage.getItem('theme') || 'light');
}

Expand All @@ -70,7 +74,7 @@ export class AppComponent implements OnInit {
getRouteAnimation(outlet: RouterOutlet): string {
return outlet
&& outlet.activatedRouteData
&& outlet.activatedRouteData.label;
&& outlet.activatedRouteData.label as string;
}

toggleTheme(): void {
Expand Down
2 changes: 1 addition & 1 deletion demo/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function markedOptionsFactory(anchorService: AnchorService): MarkedOption

// fix `href` for absolute link with fragments so that _copy-paste_ urls are correct
renderer.link = (href: string, title: string, text: string) => {
return MarkedRenderer.prototype.link.call(renderer, anchorService.normalizeExternalUrl(href), title, text);
return MarkedRenderer.prototype.link.call(renderer, anchorService.normalizeExternalUrl(href), title, text) as string;
};

return { renderer };
Expand Down
2 changes: 1 addition & 1 deletion demo/src/app/bindings/bindings.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class MarkdownDemoComponent {
public pipeMarkdown = '# Markdown';
}`;

headings: Element[];
headings: Element[] | undefined;

constructor(
private elementRef: ElementRef<HTMLElement>,
Expand Down

0 comments on commit 2e1efd9

Please sign in to comment.