forked from fs-tw/abp.ng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
YinChang
committed
Jul 1, 2020
1 parent
f311285
commit 0fe0726
Showing
171 changed files
with
22,351 additions
and
9,371 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. | ||
# For additional information regarding the format and rule options, please see: | ||
# https://github.com/browserslist/browserslist#queries | ||
|
||
# You can see what browsers were selected by your queries by running: | ||
# npx browserslist | ||
|
||
> 0.5% | ||
last 2 versions | ||
Firefox ESR | ||
not dead | ||
not IE 9-11 # For IE 9-11 support, remove 'not'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"", | ||
"\\src", | ||
"\\src\\environments" | ||
], | ||
"SelectedNode": "\\src\\environments", | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { ABP, DynamicLayoutComponent } from '@abp/ng.core'; | ||
import { NgModule } from '@angular/core'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: DynamicLayoutComponent, | ||
children: [ | ||
{ | ||
path: '', | ||
pathMatch: 'full', | ||
loadChildren: () => import('./home/home.module').then(m => m.HomeModule), | ||
}, | ||
{ | ||
path: 'account', | ||
loadChildren: () => | ||
import('@abp/ng.account').then(m => m.AccountModule.forLazy({ redirectUrl: '/' })), | ||
}, | ||
{ | ||
path: 'identity', | ||
loadChildren: () => import('@abp/ng.identity').then(m => m.IdentityModule.forLazy()), | ||
}, | ||
{ | ||
path: 'tenant-management', | ||
loadChildren: () => | ||
import('@abp/ng.tenant-management').then(m => m.TenantManagementModule.forLazy()), | ||
}, | ||
{ | ||
path: 'setting-management', | ||
loadChildren: () => | ||
import('@abp/ng.setting-management').then(m => m.SettingManagementModule.forLazy()), | ||
}, | ||
], | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forRoot(routes)], | ||
exports: [RouterModule], | ||
}) | ||
export class AppRoutingModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-root', | ||
template: ` | ||
<abp-loader-bar></abp-loader-bar> | ||
<router-outlet></router-outlet> | ||
`, | ||
}) | ||
export class AppComponent {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { AccountConfigModule } from '@abp/ng.account/config'; | ||
import { CoreModule } from '@abp/ng.core'; | ||
import { IdentityConfigModule } from '@abp/ng.identity/config'; | ||
import { SettingManagementConfigModule } from '@abp/ng.setting-management/config'; | ||
import { TenantManagementConfigModule } from '@abp/ng.tenant-management/config'; | ||
import { ThemeBasicModule } from '@abp/ng.theme.basic'; | ||
import { ThemeSharedModule } from '@abp/ng.theme.shared'; | ||
import { NgModule } from '@angular/core'; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; | ||
import { NgxsLoggerPluginModule } from '@ngxs/logger-plugin'; | ||
import { NgxsModule } from '@ngxs/store'; | ||
import { environment } from '../environments/environment'; | ||
import { AppRoutingModule } from './app-routing.module'; | ||
import { AppComponent } from './app.component'; | ||
import { APP_ROUTE_PROVIDER } from './route.provider'; | ||
|
||
const LOGGERS = [NgxsLoggerPluginModule.forRoot({ disabled: false })]; | ||
|
||
@NgModule({ | ||
imports: [ | ||
BrowserModule, | ||
BrowserAnimationsModule, | ||
AppRoutingModule, | ||
CoreModule.forRoot({ | ||
environment, | ||
sendNullsAsQueryParam: false, | ||
skipGetAppConfiguration: false, | ||
}), | ||
ThemeSharedModule.forRoot(), | ||
AccountConfigModule.forRoot(), | ||
IdentityConfigModule.forRoot(), | ||
TenantManagementConfigModule.forRoot(), | ||
SettingManagementConfigModule.forRoot(), | ||
NgxsModule.forRoot(), | ||
ThemeBasicModule.forRoot(), | ||
...(environment.production ? [] : LOGGERS), | ||
], | ||
providers: [APP_ROUTE_PROVIDER], | ||
declarations: [AppComponent], | ||
bootstrap: [AppComponent], | ||
}) | ||
export class AppModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { Routes, RouterModule } from '@angular/router'; | ||
import { HomeComponent } from './home.component'; | ||
|
||
const routes: Routes = [{ path: '', component: HomeComponent }]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forChild(routes)], | ||
exports: [RouterModule], | ||
}) | ||
export class HomeRoutingModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div id="AbpContentToolbar"></div> | ||
<div class="jumbotron text-center"> | ||
<h1>{{ '::Welcome' | abpLocalization }}</h1> | ||
<div class="row"> | ||
<div class="col-md-6 mx-auto"> | ||
<p>{{ '::LongWelcomeMessage' | abpLocalization }}</p> | ||
<hr class="my-4" /> | ||
</div> | ||
</div> | ||
<a href="https://abp.io?ref=tmpl" target="_blank" class="btn btn-primary px-4">abp.io</a> | ||
<a | ||
*ngIf="!hasLoggedIn" | ||
routerLink="/account/login" | ||
[state]="{ redirectUrl: '/' }" | ||
class="px-4 btn btn-primary ml-1" | ||
role="button" | ||
><i class="fa fa-sign-in"></i> {{ 'AbpIdentity::Login' | abpLocalization }}</a | ||
> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Component } from '@angular/core'; | ||
import { OAuthService } from 'angular-oauth2-oidc'; | ||
|
||
@Component({ | ||
selector: 'app-home', | ||
templateUrl: './home.component.html', | ||
}) | ||
export class HomeComponent { | ||
get hasLoggedIn(): boolean { | ||
return this.oAuthService.hasValidAccessToken(); | ||
} | ||
|
||
constructor(private oAuthService: OAuthService) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { SharedModule } from '../shared/shared.module'; | ||
import { HomeRoutingModule } from './home-routing.module'; | ||
import { HomeComponent } from './home.component'; | ||
|
||
@NgModule({ | ||
declarations: [HomeComponent], | ||
imports: [SharedModule, HomeRoutingModule], | ||
}) | ||
export class HomeModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { RoutesService, eLayoutType } from '@abp/ng.core'; | ||
import { APP_INITIALIZER } from '@angular/core'; | ||
|
||
export const APP_ROUTE_PROVIDER = [ | ||
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true }, | ||
]; | ||
|
||
function configureRoutes(routes: RoutesService) { | ||
return () => { | ||
routes.add([ | ||
{ | ||
path: '/', | ||
name: '::Menu:Home', | ||
iconClass: 'fas fa-home', | ||
order: 1, | ||
layout: eLayoutType.application, | ||
}, | ||
]); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { CoreModule } from '@abp/ng.core'; | ||
import { NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap'; | ||
import { NgModule } from '@angular/core'; | ||
import { ThemeBasicModule } from '@abp/ng.theme.basic'; | ||
import { ThemeSharedModule } from '@abp/ng.theme.shared'; | ||
import { NgxValidateCoreModule } from '@ngx-validate/core'; | ||
|
||
@NgModule({ | ||
declarations: [], | ||
imports: [ | ||
CoreModule, | ||
ThemeSharedModule, | ||
ThemeBasicModule, | ||
NgbDropdownModule, | ||
NgxValidateCoreModule, | ||
], | ||
exports: [ | ||
CoreModule, | ||
ThemeSharedModule, | ||
ThemeBasicModule, | ||
NgbDropdownModule, | ||
NgxValidateCoreModule, | ||
], | ||
providers: [], | ||
}) | ||
export class SharedModule {} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const environment = { | ||
production: true, | ||
hmr: false, | ||
application: { | ||
name: 'MyProjectName', | ||
logoUrl: '', | ||
}, | ||
oAuthConfig: { | ||
issuer: 'https://localhost:44305', | ||
clientId: 'MyProjectName_App', | ||
dummyClientSecret: '1q2w3e*', | ||
scope: 'MyProjectName', | ||
showDebugInformation: true, | ||
oidc: false, | ||
requireHttps: true, | ||
}, | ||
apis: { | ||
default: { | ||
url: 'https://localhost:44305', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const environment = { | ||
production: false, | ||
hmr: false, | ||
application: { | ||
name: 'MyProjectName', | ||
logoUrl: '', | ||
}, | ||
oAuthConfig: { | ||
issuer: 'https://localhost:44305', | ||
clientId: 'MyProjectName_App', | ||
dummyClientSecret: '1q2w3e*', | ||
scope: 'MyProjectName', | ||
showDebugInformation: true, | ||
oidc: false, | ||
requireHttps: true, | ||
}, | ||
apis: { | ||
default: { | ||
url: 'https://localhost:44305', | ||
}, | ||
}, | ||
}; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>ABP Dev</title> | ||
<base href="/" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico" /> | ||
</head> | ||
<body class="bg-light"> | ||
<app-root> | ||
<div class="donut centered"></div> | ||
</app-root> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { enableProdMode } from '@angular/core'; | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
|
||
import { AppModule } from './app/app.module'; | ||
import { environment } from './environments/environment'; | ||
|
||
if (environment.production) { | ||
enableProdMode(); | ||
} | ||
|
||
platformBrowserDynamic() | ||
.bootstrapModule(AppModule) | ||
.catch(err => console.error(err)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/*************************************************************************************************** | ||
* Load `$localize` onto the global scope - used if i18n tags appear in Angular templates. | ||
*/ | ||
import '@angular/localize/init'; | ||
/** | ||
* This file includes polyfills needed by Angular and is loaded before the app. | ||
* You can add your own extra polyfills to this file. | ||
* | ||
* This file is divided into 2 sections: | ||
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. | ||
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main | ||
* file. | ||
* | ||
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that | ||
* automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), | ||
* Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. | ||
* | ||
* Learn more in https://angular.io/guide/browser-support | ||
*/ | ||
|
||
/*************************************************************************************************** | ||
* BROWSER POLYFILLS | ||
*/ | ||
|
||
/** IE10 and IE11 requires the following for NgClass support on SVG elements */ | ||
// import 'classlist.js'; // Run `npm install --save classlist.js`. | ||
|
||
/** | ||
* Web Animations `@angular/platform-browser/animations` | ||
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari. | ||
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0). | ||
*/ | ||
// import 'web-animations-js'; // Run `npm install --save web-animations-js`. | ||
|
||
/** | ||
* By default, zone.js will patch all possible macroTask and DomEvents | ||
* user can disable parts of macroTask/DomEvents patch by setting following flags | ||
* because those flags need to be set before `zone.js` being loaded, and webpack | ||
* will put import in the top of bundle, so user need to create a separate file | ||
* in this directory (for example: zone-flags.ts), and put the following flags | ||
* into that file, and then add the following code before importing zone.js. | ||
* import './zone-flags.ts'; | ||
* | ||
* The flags allowed in zone-flags.ts are listed here. | ||
* | ||
* The following flags will work for all browsers. | ||
* | ||
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame | ||
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick | ||
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames | ||
* | ||
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js | ||
* with the following flag, it will bypass `zone.js` patch for IE/Edge | ||
* | ||
* (window as any).__Zone_enable_cross_context_check = true; | ||
* | ||
*/ | ||
|
||
/*************************************************************************************************** | ||
* Zone JS is required by default for Angular itself. | ||
*/ | ||
import 'zone.js/dist/zone'; // Included with Angular CLI. | ||
|
||
/*************************************************************************************************** | ||
* APPLICATION IMPORTS | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
|
||
@keyframes donut-spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
.donut { | ||
display: inline-block; | ||
border: 4px solid rgba(0, 0, 0, 0.1); | ||
border-left-color: #7983ff; | ||
border-radius: 50%; | ||
width: 30px; | ||
height: 30px; | ||
animation: donut-spin 1.2s linear infinite; | ||
|
||
&.centered { | ||
position: fixed; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
} |
Oops, something went wrong.