-
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.
Merge pull request #15 from ssysm/update
Update
- Loading branch information
Showing
71 changed files
with
306 additions
and
62 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -69,4 +69,6 @@ typings/ | |
/server/public/work/*.jpg | ||
/server/public/work/*.pdf | ||
|
||
/server/etc/cucuImg/*.jpg | ||
|
||
*.key |
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
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
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
<!--Application Navbar--> | ||
<app-navbar></app-navbar> | ||
<router-outlet></router-outlet> | ||
<!--Routing Entry--> | ||
<main [@routeAnimation]="getRouteAnimation(o)"> | ||
<router-outlet #o="outlet"></router-outlet> | ||
</main> | ||
<!--Application Footer--> | ||
<app-footer></app-footer> |
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
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
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 @@ | ||
export * from './route.animation'; |
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,51 @@ | ||
import {trigger, animate, transition, style, query, group, keyframes} from '@angular/animations'; | ||
|
||
export const routeAnimation = trigger('routeAnimation', [ | ||
transition('* <=> *', [ | ||
query(':enter, :leave', style({ | ||
position: 'fixed', | ||
width: '100%' | ||
}) | ||
, { | ||
optional: true | ||
}), | ||
group([ // block executes in parallel | ||
query(':enter', [ | ||
animate(300, keyframes([ | ||
style({ | ||
opacity: 0, | ||
display:'none' | ||
}), | ||
style({ | ||
opacity: 0.5, | ||
display:'none' | ||
}), | ||
style({ | ||
opacity: 1, | ||
display:'block' | ||
}) | ||
])), | ||
], { | ||
optional: true | ||
}), | ||
query(':leave', [ | ||
animate(300, keyframes([ | ||
style({ | ||
opacity: 1, | ||
display:'none' | ||
}), | ||
style({ | ||
opacity: 0.5, | ||
display:'none' | ||
}), | ||
style({ | ||
opacity: 0, | ||
display:'none' | ||
}) | ||
])) | ||
], { | ||
optional: true | ||
}), | ||
]) | ||
]) | ||
]); |
2 changes: 1 addition & 1 deletion
2
client/src/app/common/admin-guard.service.ts → ...c/app/common/guard/admin-guard.service.ts
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
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
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
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
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 |
---|---|---|
|
@@ -24,3 +24,4 @@ | |
</div> | ||
</div> | ||
</div> | ||
<app-spinner *ngIf="!fundArr&&!activityData"></app-spinner> |
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<footer class="footer"> | ||
<div class="container"> | ||
<span class="text-center text-muted">©2018-2019 StarrySea</span> | ||
<span class="text-center text-dark">©2018-2019 StarrySea</span> | ||
</div> | ||
</footer> |
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
Oops, something went wrong.