├── .editorconfig
├── .github
└── main.workflow
├── .gitignore
├── .vscode
└── settings.json
├── README.md
├── angular.json
├── design-template.md
├── docs
├── 3rdpartylicenses.txt
├── 404.html
├── assets
│ ├── favicon.ico
│ ├── forward-96.png
│ ├── logo-128.png
│ ├── logo-152.png
│ ├── logo-256.png
│ ├── logo-512.png
│ ├── playlist-tracks.json
│ ├── repeat-green.svg
│ ├── repeat.svg
│ ├── rewind-96.png
│ ├── shuffle-green.svg
│ ├── shuffle.svg
│ ├── spotify-mtv-logo.svg
│ └── user-playlists.json
├── favicon.ico
├── index.html
├── main.058ed237ac5c59377964.js
├── manifest.json
├── polyfills.5fb5131975c60703500b.js
├── runtime.b57bf819d5bdce77f1c7.js
└── styles.2e8e0902f5dee2fbaee1.css
├── e2e
├── app.e2e-spec.ts
├── app.po.ts
└── tsconfig.e2e.json
├── karma.conf.js
├── package-lock.json
├── package.json
├── protractor.conf.js
├── set-creds.js
├── src
├── DEVLOG.md
├── KNOWNISSUES.md
├── TODO.md
├── app
│ ├── app-materials.module.ts
│ ├── app-routes.module.ts
│ ├── app.component.css
│ ├── app.component.html
│ ├── app.component.spec.ts
│ ├── app.component.ts
│ ├── app.config.ts
│ ├── app.module.ts
│ ├── components
│ │ ├── contact-notification
│ │ │ ├── contact-notification.component.ts
│ │ │ ├── contact-notification.css
│ │ │ └── contact-notification.html
│ │ ├── current-song-meta
│ │ │ ├── current-song.component.ts
│ │ │ ├── current-song.css
│ │ │ └── current-song.html
│ │ ├── sidebar
│ │ │ ├── sidebar.component.ts
│ │ │ ├── sidebar.css
│ │ │ └── sidebar.html
│ │ └── video
│ │ │ ├── video.component.ts
│ │ │ ├── video.css
│ │ │ └── video.html
│ ├── config.development.json
│ ├── config.production.json
│ ├── dashboard
│ │ ├── dashboard.component.ts
│ │ ├── dashboard.css
│ │ ├── dashboard.html
│ │ └── dashboard.model.ts
│ ├── env.json
│ ├── fourOhFour.component.ts
│ ├── login
│ │ ├── login.component.ts
│ │ ├── login.css
│ │ └── login.html
│ └── shared
│ │ ├── auth.state.ts
│ │ └── spotify.state.ts
├── assets
│ ├── .gitkeep
│ ├── favicon.ico
│ ├── forward-96.png
│ ├── logo-128.png
│ ├── logo-152.png
│ ├── logo-256.png
│ ├── logo-512.png
│ ├── playlist-tracks.json
│ ├── repeat-green.svg
│ ├── repeat.svg
│ ├── rewind-96.png
│ ├── shuffle-green.svg
│ ├── shuffle.svg
│ ├── spotify-mtv-logo.svg
│ └── user-playlists.json
├── environments
│ ├── environment.prod.ts
│ └── environment.ts
├── favicon.ico
├── index.html
├── lib
│ ├── service
│ │ ├── authentication
│ │ │ ├── authentication.model.ts
│ │ │ └── authentication.service.ts
│ │ ├── data
│ │ │ └── data.service.ts
│ │ ├── spotify
│ │ │ ├── spotify.model.ts
│ │ │ ├── spotify.service.spec.ts
│ │ │ └── spotify.service.ts
│ │ └── youtube
│ │ │ ├── youtube.model.ts
│ │ │ ├── youtube.service.spec.ts
│ │ │ └── youtube.service.ts
│ └── utils
│ │ └── safeurl.pipe.ts
├── main.ts
├── manifest.json
├── ngsw-config.json
├── polyfills.ts
├── styles.css
├── test.ts
├── tsconfig.app.json
├── tsconfig.spec.json
└── typings.d.ts
├── tsconfig.json
└── tslint.json
/.editorconfig:
--------------------------------------------------------------------------------
1 | # Editor configuration, see http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | indent_style = space
7 | indent_size = 2
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
11 | [*.md]
12 | max_line_length = off
13 | trim_trailing_whitespace = false
14 |
--------------------------------------------------------------------------------
/.github/main.workflow:
--------------------------------------------------------------------------------
1 | workflow "Rebuild Site" {
2 | on = "push"
3 | resolves = ["Build for Github Pages"]
4 | }
5 |
6 | action "GitHub Action for npm" {
7 | uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
8 | runs = "install"
9 | }
10 |
11 | action "Set Credentials" {
12 | uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
13 | needs = ["GitHub Action for npm"]
14 | runs = "setcreds"
15 | secrets = ["SPOTIFYID", "YOUTUBE_API_KEY"]
16 | }
17 |
18 | action "Build for Github Pages" {
19 | uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
20 | needs = ["Set Credentials"]
21 | runs = "deploy:prod"
22 | }
23 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See http://help.github.com/ignore-files/ for more about ignoring files.
2 |
3 | # compiled output
4 | /dist
5 | /dist-server
6 | /tmp
7 | /out-tsc
8 |
9 | # dependencies
10 | /node_modules
11 |
12 | # IDEs and editors
13 | /.idea
14 | .project
15 | .classpath
16 | .c9/
17 | *.launch
18 | .settings/
19 | *.sublime-workspace
20 |
21 | # IDE - VSCode
22 | .vscode/*
23 | !.vscode/settings.json
24 | !.vscode/tasks.json
25 | !.vscode/launch.json
26 | !.vscode/extensions.json
27 |
28 | # misc
29 | /.sass-cache
30 | /connect.lock
31 | /coverage
32 | /libpeerconnection.log
33 | npm-debug.log
34 | testem.log
35 | /typings
36 |
37 | # service files
38 | /src/app/config.*.json
39 |
40 | # e2e
41 | /e2e/*.js
42 | /e2e/*.map
43 |
44 | # System Files
45 | .DS_Store
46 | Thumbs.db
47 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "workbench.colorCustomizations": {
3 | "activityBar.activeBackground": "#d04649",
4 | "activityBar.activeBorder": "#37cb34",
5 | "activityBar.background": "#d04649",
6 | "activityBar.foreground": "#e7e7e7",
7 | "activityBar.inactiveForeground": "#e7e7e799",
8 | "activityBarBadge.background": "#37cb34",
9 | "activityBarBadge.foreground": "#15202b",
10 | "editorGroup.border": "#d04649",
11 | "panel.border": "#d04649",
12 | "sideBar.border": "#d04649",
13 | "statusBar.background": "#b52e31",
14 | "statusBar.border": "#b52e31",
15 | "statusBar.foreground": "#e7e7e7",
16 | "statusBarItem.hoverBackground": "#d04649",
17 | "tab.activeBorder": "#d04649",
18 | "titleBar.activeBackground": "#b52e31",
19 | "titleBar.activeForeground": "#e7e7e7",
20 | "titleBar.border": "#b52e31",
21 | "titleBar.inactiveBackground": "#b52e3199",
22 | "titleBar.inactiveForeground": "#e7e7e799"
23 | },
24 | "peacock.color": "#b52e31"
25 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | # Spotify Television
4 |
5 | Web application to view Spotify playlists as Youtube playlists in one UI.
6 |
7 | ## Feedback
8 | Have some suggestions or ideas to make this app better? [Send some feedback](https://spotifytv-community.glitch.me/)
9 |
10 | ### Articles
11 | [Hypebot SpotifyTelevision](http://www.hypebot.com/hypebot/2018/03/spotify-television-turns-playlists-into-youtube-stream.html)
12 |
13 | ### Dev Dependencies for future reference:
14 | [ngx-youtube-player](https://github.com/orizens/ngx-youtube-player)
15 |
16 | ## Angular CLI Mumbo Jumbo
17 | This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.6.5.
18 |
19 | ### Development server
20 |
21 | Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
22 |
23 | ### Build
24 |
25 | Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build.
26 |
27 | ### Running unit tests
28 |
29 | Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
30 |
31 | ### Running end-to-end tests
32 |
33 | Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
34 |
35 | ### Further help
36 |
37 | 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).
38 |
--------------------------------------------------------------------------------
/angular.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3 | "version": 1,
4 | "newProjectRoot": "projects",
5 | "projects": {
6 | "SpotifyTelevision": {
7 | "root": "",
8 | "sourceRoot": "src",
9 | "projectType": "application",
10 | "architect": {
11 | "build": {
12 | "builder": "@angular-devkit/build-angular:browser",
13 | "options": {
14 | "outputPath": "dist",
15 | "index": "src/index.html",
16 | "main": "src/main.ts",
17 | "tsConfig": "src/tsconfig.app.json",
18 | "polyfills": "src/polyfills.ts",
19 | "assets": [
20 | "src/assets",
21 | "src/favicon.ico",
22 | "src/manifest.json"
23 | ],
24 | "styles": [
25 | "src/styles.css"
26 | ],
27 | "scripts": []
28 | },
29 | "configurations": {
30 | "production": {
31 | "optimization": true,
32 | "outputHashing": "all",
33 | "sourceMap": false,
34 | "extractCss": true,
35 | "namedChunks": false,
36 | "aot": true,
37 | "extractLicenses": true,
38 | "vendorChunk": false,
39 | "buildOptimizer": true,
40 | "fileReplacements": [
41 | {
42 | "replace": "src/environments/environment.ts",
43 | "with": "src/environments/environment.prod.ts"
44 | }
45 | ]
46 | }
47 | }
48 | },
49 | "serve": {
50 | "builder": "@angular-devkit/build-angular:dev-server",
51 | "options": {
52 | "browserTarget": "SpotifyTelevision:build"
53 | },
54 | "configurations": {
55 | "production": {
56 | "browserTarget": "SpotifyTelevision:build:production"
57 | }
58 | }
59 | },
60 | "extract-i18n": {
61 | "builder": "@angular-devkit/build-angular:extract-i18n",
62 | "options": {
63 | "browserTarget": "SpotifyTelevision:build"
64 | }
65 | },
66 | "test": {
67 | "builder": "@angular-devkit/build-angular:karma",
68 | "options": {
69 | "main": "src/test.ts",
70 | "karmaConfig": "./karma.conf.js",
71 | "polyfills": "src/polyfills.ts",
72 | "tsConfig": "src/tsconfig.spec.json",
73 | "scripts": [],
74 | "styles": [
75 | "src/styles.css"
76 | ],
77 | "assets": [
78 | "src/assets",
79 | "src/favicon.ico",
80 | "src/manifest.json"
81 | ]
82 | }
83 | },
84 | "lint": {
85 | "builder": "@angular-devkit/build-angular:tslint",
86 | "options": {
87 | "tsConfig": [
88 | "src/tsconfig.app.json",
89 | "src/tsconfig.spec.json"
90 | ],
91 | "exclude": [
92 | "**/node_modules/**"
93 | ]
94 | }
95 | }
96 | }
97 | },
98 | "SpotifyTelevision-e2e": {
99 | "root": "",
100 | "sourceRoot": "",
101 | "projectType": "application",
102 | "architect": {
103 | "e2e": {
104 | "builder": "@angular-devkit/build-angular:protractor",
105 | "options": {
106 | "protractorConfig": "./protractor.conf.js",
107 | "devServerTarget": "SpotifyTelevision:serve"
108 | }
109 | },
110 | "lint": {
111 | "builder": "@angular-devkit/build-angular:tslint",
112 | "options": {
113 | "tsConfig": [
114 | "e2e/tsconfig.e2e.json"
115 | ],
116 | "exclude": [
117 | "**/node_modules/**"
118 | ]
119 | }
120 | }
121 | }
122 | }
123 | },
124 | "defaultProject": "SpotifyTelevision",
125 | "schematics": {
126 | "@schematics/angular:component": {
127 | "prefix": "app",
128 | "styleext": "css"
129 | },
130 | "@schematics/angular:directive": {
131 | "prefix": "app"
132 | }
133 | }
134 | }
--------------------------------------------------------------------------------
/design-template.md:
--------------------------------------------------------------------------------
1 | ## Design Template:
2 |
3 | #### Colors:
4 | [Color Template](https://coolors.co/0c0f0a-ff206e-fbff12-41ead4-ffffff)
5 | [runner up](https://coolors.co/3772ff-f038ff-ef709d-e2ef70-70e4ef)
6 |
7 | #0C0F0A
8 | #FF206E
9 | #FBFF12
10 | #41EAD4
11 | #FFFFFF
12 |
13 |
14 | #### Fonts:
15 | TODO
--------------------------------------------------------------------------------
/docs/3rdpartylicenses.txt:
--------------------------------------------------------------------------------
1 | tslib
2 | Apache-2.0
3 | Apache License
4 |
5 | Version 2.0, January 2004
6 |
7 | http://www.apache.org/licenses/
8 |
9 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
10 |
11 | 1. Definitions.
12 |
13 | "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
14 |
15 | "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
16 |
17 | "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
18 |
19 | "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
20 |
21 | "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
22 |
23 | "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
24 |
25 | "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
26 |
27 | "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
28 |
29 | "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
30 |
31 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
32 |
33 | 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
34 |
35 | 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
36 |
37 | 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
38 |
39 | You must give any other recipients of the Work or Derivative Works a copy of this License; and
40 |
41 | You must cause any modified files to carry prominent notices stating that You changed the files; and
42 |
43 | You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
44 |
45 | If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
46 |
47 | 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
48 |
49 | 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
50 |
51 | 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
52 |
53 | 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
54 |
55 | 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
56 |
57 | END OF TERMS AND CONDITIONS
58 |
59 |
60 | rxjs
61 | Apache-2.0
62 | Apache License
63 | Version 2.0, January 2004
64 | http://www.apache.org/licenses/
65 |
66 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
67 |
68 | 1. Definitions.
69 |
70 | "License" shall mean the terms and conditions for use, reproduction,
71 | and distribution as defined by Sections 1 through 9 of this document.
72 |
73 | "Licensor" shall mean the copyright owner or entity authorized by
74 | the copyright owner that is granting the License.
75 |
76 | "Legal Entity" shall mean the union of the acting entity and all
77 | other entities that control, are controlled by, or are under common
78 | control with that entity. For the purposes of this definition,
79 | "control" means (i) the power, direct or indirect, to cause the
80 | direction or management of such entity, whether by contract or
81 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
82 | outstanding shares, or (iii) beneficial ownership of such entity.
83 |
84 | "You" (or "Your") shall mean an individual or Legal Entity
85 | exercising permissions granted by this License.
86 |
87 | "Source" form shall mean the preferred form for making modifications,
88 | including but not limited to software source code, documentation
89 | source, and configuration files.
90 |
91 | "Object" form shall mean any form resulting from mechanical
92 | transformation or translation of a Source form, including but
93 | not limited to compiled object code, generated documentation,
94 | and conversions to other media types.
95 |
96 | "Work" shall mean the work of authorship, whether in Source or
97 | Object form, made available under the License, as indicated by a
98 | copyright notice that is included in or attached to the work
99 | (an example is provided in the Appendix below).
100 |
101 | "Derivative Works" shall mean any work, whether in Source or Object
102 | form, that is based on (or derived from) the Work and for which the
103 | editorial revisions, annotations, elaborations, or other modifications
104 | represent, as a whole, an original work of authorship. For the purposes
105 | of this License, Derivative Works shall not include works that remain
106 | separable from, or merely link (or bind by name) to the interfaces of,
107 | the Work and Derivative Works thereof.
108 |
109 | "Contribution" shall mean any work of authorship, including
110 | the original version of the Work and any modifications or additions
111 | to that Work or Derivative Works thereof, that is intentionally
112 | submitted to Licensor for inclusion in the Work by the copyright owner
113 | or by an individual or Legal Entity authorized to submit on behalf of
114 | the copyright owner. For the purposes of this definition, "submitted"
115 | means any form of electronic, verbal, or written communication sent
116 | to the Licensor or its representatives, including but not limited to
117 | communication on electronic mailing lists, source code control systems,
118 | and issue tracking systems that are managed by, or on behalf of, the
119 | Licensor for the purpose of discussing and improving the Work, but
120 | excluding communication that is conspicuously marked or otherwise
121 | designated in writing by the copyright owner as "Not a Contribution."
122 |
123 | "Contributor" shall mean Licensor and any individual or Legal Entity
124 | on behalf of whom a Contribution has been received by Licensor and
125 | subsequently incorporated within the Work.
126 |
127 | 2. Grant of Copyright License. Subject to the terms and conditions of
128 | this License, each Contributor hereby grants to You a perpetual,
129 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
130 | copyright license to reproduce, prepare Derivative Works of,
131 | publicly display, publicly perform, sublicense, and distribute the
132 | Work and such Derivative Works in Source or Object form.
133 |
134 | 3. Grant of Patent License. Subject to the terms and conditions of
135 | this License, each Contributor hereby grants to You a perpetual,
136 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
137 | (except as stated in this section) patent license to make, have made,
138 | use, offer to sell, sell, import, and otherwise transfer the Work,
139 | where such license applies only to those patent claims licensable
140 | by such Contributor that are necessarily infringed by their
141 | Contribution(s) alone or by combination of their Contribution(s)
142 | with the Work to which such Contribution(s) was submitted. If You
143 | institute patent litigation against any entity (including a
144 | cross-claim or counterclaim in a lawsuit) alleging that the Work
145 | or a Contribution incorporated within the Work constitutes direct
146 | or contributory patent infringement, then any patent licenses
147 | granted to You under this License for that Work shall terminate
148 | as of the date such litigation is filed.
149 |
150 | 4. Redistribution. You may reproduce and distribute copies of the
151 | Work or Derivative Works thereof in any medium, with or without
152 | modifications, and in Source or Object form, provided that You
153 | meet the following conditions:
154 |
155 | (a) You must give any other recipients of the Work or
156 | Derivative Works a copy of this License; and
157 |
158 | (b) You must cause any modified files to carry prominent notices
159 | stating that You changed the files; and
160 |
161 | (c) You must retain, in the Source form of any Derivative Works
162 | that You distribute, all copyright, patent, trademark, and
163 | attribution notices from the Source form of the Work,
164 | excluding those notices that do not pertain to any part of
165 | the Derivative Works; and
166 |
167 | (d) If the Work includes a "NOTICE" text file as part of its
168 | distribution, then any Derivative Works that You distribute must
169 | include a readable copy of the attribution notices contained
170 | within such NOTICE file, excluding those notices that do not
171 | pertain to any part of the Derivative Works, in at least one
172 | of the following places: within a NOTICE text file distributed
173 | as part of the Derivative Works; within the Source form or
174 | documentation, if provided along with the Derivative Works; or,
175 | within a display generated by the Derivative Works, if and
176 | wherever such third-party notices normally appear. The contents
177 | of the NOTICE file are for informational purposes only and
178 | do not modify the License. You may add Your own attribution
179 | notices within Derivative Works that You distribute, alongside
180 | or as an addendum to the NOTICE text from the Work, provided
181 | that such additional attribution notices cannot be construed
182 | as modifying the License.
183 |
184 | You may add Your own copyright statement to Your modifications and
185 | may provide additional or different license terms and conditions
186 | for use, reproduction, or distribution of Your modifications, or
187 | for any such Derivative Works as a whole, provided Your use,
188 | reproduction, and distribution of the Work otherwise complies with
189 | the conditions stated in this License.
190 |
191 | 5. Submission of Contributions. Unless You explicitly state otherwise,
192 | any Contribution intentionally submitted for inclusion in the Work
193 | by You to the Licensor shall be under the terms and conditions of
194 | this License, without any additional terms or conditions.
195 | Notwithstanding the above, nothing herein shall supersede or modify
196 | the terms of any separate license agreement you may have executed
197 | with Licensor regarding such Contributions.
198 |
199 | 6. Trademarks. This License does not grant permission to use the trade
200 | names, trademarks, service marks, or product names of the Licensor,
201 | except as required for reasonable and customary use in describing the
202 | origin of the Work and reproducing the content of the NOTICE file.
203 |
204 | 7. Disclaimer of Warranty. Unless required by applicable law or
205 | agreed to in writing, Licensor provides the Work (and each
206 | Contributor provides its Contributions) on an "AS IS" BASIS,
207 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
208 | implied, including, without limitation, any warranties or conditions
209 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
210 | PARTICULAR PURPOSE. You are solely responsible for determining the
211 | appropriateness of using or redistributing the Work and assume any
212 | risks associated with Your exercise of permissions under this License.
213 |
214 | 8. Limitation of Liability. In no event and under no legal theory,
215 | whether in tort (including negligence), contract, or otherwise,
216 | unless required by applicable law (such as deliberate and grossly
217 | negligent acts) or agreed to in writing, shall any Contributor be
218 | liable to You for damages, including any direct, indirect, special,
219 | incidental, or consequential damages of any character arising as a
220 | result of this License or out of the use or inability to use the
221 | Work (including but not limited to damages for loss of goodwill,
222 | work stoppage, computer failure or malfunction, or any and all
223 | other commercial damages or losses), even if such Contributor
224 | has been advised of the possibility of such damages.
225 |
226 | 9. Accepting Warranty or Additional Liability. While redistributing
227 | the Work or Derivative Works thereof, You may choose to offer,
228 | and charge a fee for, acceptance of support, warranty, indemnity,
229 | or other liability obligations and/or rights consistent with this
230 | License. However, in accepting such obligations, You may act only
231 | on Your own behalf and on Your sole responsibility, not on behalf
232 | of any other Contributor, and only if You agree to indemnify,
233 | defend, and hold each Contributor harmless for any liability
234 | incurred by, or claims asserted against, such Contributor by reason
235 | of your accepting any such warranty or additional liability.
236 |
237 | END OF TERMS AND CONDITIONS
238 |
239 | APPENDIX: How to apply the Apache License to your work.
240 |
241 | To apply the Apache License to your work, attach the following
242 | boilerplate notice, with the fields enclosed by brackets "[]"
243 | replaced with your own identifying information. (Don't include
244 | the brackets!) The text should be enclosed in the appropriate
245 | comment syntax for the file format. We also recommend that a
246 | file or class name and description of purpose be included on the
247 | same "printed page" as the copyright notice for easier
248 | identification within third-party archives.
249 |
250 | Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
251 |
252 | Licensed under the Apache License, Version 2.0 (the "License");
253 | you may not use this file except in compliance with the License.
254 | You may obtain a copy of the License at
255 |
256 | http://www.apache.org/licenses/LICENSE-2.0
257 |
258 | Unless required by applicable law or agreed to in writing, software
259 | distributed under the License is distributed on an "AS IS" BASIS,
260 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
261 | See the License for the specific language governing permissions and
262 | limitations under the License.
263 |
264 |
265 |
266 | @angular/core
267 | MIT
268 |
269 | @angular/common
270 | MIT
271 |
272 | @angular/platform-browser
273 | MIT
274 |
275 | @angular/router
276 | MIT
277 |
278 | @angular/material
279 | MIT
280 | The MIT License
281 |
282 | Copyright (c) 2019 Google LLC.
283 |
284 | Permission is hereby granted, free of charge, to any person obtaining a copy
285 | of this software and associated documentation files (the "Software"), to deal
286 | in the Software without restriction, including without limitation the rights
287 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
288 | copies of the Software, and to permit persons to whom the Software is
289 | furnished to do so, subject to the following conditions:
290 |
291 | The above copyright notice and this permission notice shall be included in
292 | all copies or substantial portions of the Software.
293 |
294 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
295 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
296 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
297 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
298 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
299 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
300 | THE SOFTWARE.
301 |
302 |
303 | @angular/cdk
304 | MIT
305 | The MIT License
306 |
307 | Copyright (c) 2019 Google LLC.
308 |
309 | Permission is hereby granted, free of charge, to any person obtaining a copy
310 | of this software and associated documentation files (the "Software"), to deal
311 | in the Software without restriction, including without limitation the rights
312 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
313 | copies of the Software, and to permit persons to whom the Software is
314 | furnished to do so, subject to the following conditions:
315 |
316 | The above copyright notice and this permission notice shall be included in
317 | all copies or substantial portions of the Software.
318 |
319 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
320 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
321 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
322 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
323 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
324 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
325 | THE SOFTWARE.
326 |
327 |
328 | @angular/material/card
329 |
330 | @angular/animations
331 | MIT
332 |
333 | @angular/material/button
334 |
335 | @ngxs/store
336 | MIT
337 |
338 | ngx-youtube-player
339 | MIT
340 | MIT License
341 |
342 | Copyright (c) 2018 Oren Farhi
343 |
344 | Permission is hereby granted, free of charge, to any person obtaining a copy
345 | of this software and associated documentation files (the "Software"), to deal
346 | in the Software without restriction, including without limitation the rights
347 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
348 | copies of the Software, and to permit persons to whom the Software is
349 | furnished to do so, subject to the following conditions:
350 |
351 | The above copyright notice and this permission notice shall be included in all
352 | copies or substantial portions of the Software.
353 |
354 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
355 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
356 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
357 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
358 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
359 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
360 | SOFTWARE.
361 |
362 |
363 | @angular/forms
364 | MIT
365 |
366 | @angular/material/core
367 |
368 | @angular/material/list
369 |
370 | @angular/material/expansion
371 |
372 | @angular/material/tooltip
373 |
374 | core-js
375 | MIT
376 | Copyright (c) 2014-2019 Denis Pushkarev
377 |
378 | Permission is hereby granted, free of charge, to any person obtaining a copy
379 | of this software and associated documentation files (the "Software"), to deal
380 | in the Software without restriction, including without limitation the rights
381 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
382 | copies of the Software, and to permit persons to whom the Software is
383 | furnished to do so, subject to the following conditions:
384 |
385 | The above copyright notice and this permission notice shall be included in
386 | all copies or substantial portions of the Software.
387 |
388 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
389 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
390 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
391 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
392 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
393 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
394 | THE SOFTWARE.
395 |
396 |
397 | zone.js
398 | MIT
399 | The MIT License
400 |
401 | Copyright (c) 2016-2018 Google, Inc.
402 |
403 | Permission is hereby granted, free of charge, to any person obtaining a copy
404 | of this software and associated documentation files (the "Software"), to deal
405 | in the Software without restriction, including without limitation the rights
406 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
407 | copies of the Software, and to permit persons to whom the Software is
408 | furnished to do so, subject to the following conditions:
409 |
410 | The above copyright notice and this permission notice shall be included in
411 | all copies or substantial portions of the Software.
412 |
413 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
414 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
415 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
416 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
417 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
418 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
419 | THE SOFTWARE.
420 |
--------------------------------------------------------------------------------
/docs/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |