-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: setup * feat: implemented Eyevinn Channel Engine and pages to display streams for channels * fix(backend): changed backend to use OSAAS channel-engine * feat(fix): added page and API route added opts in postChannels request header for playlist channels, so they function properly. improved the way streams and channels are fetched. this ensures better handling of playlist type channels. * feat: add design for channel viewer with grid and back button - Added a 4x4 grid to be filled with channels - Added back button for navigation - Still needs testing for mobile & channel loading performance for many channels * fix: fetches new token regularly * fix: changed some css on the channel-viewer * fix: no-cache on fetch token * style: run prettier on project --------- Co-authored-by: Edvin Hedenström <[email protected]>
- Loading branch information
Showing
19 changed files
with
16,092 additions
and
19 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 |
---|---|---|
|
@@ -2,3 +2,6 @@ node_modules/ | |
.DS_Store | ||
.next | ||
.env | ||
.env.local | ||
stswe-tvplus-promo.mp4 | ||
images.jpeg |
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,4 +1,4 @@ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
}; | ||
testEnvironment: 'node' | ||
}; |
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,5 @@ | ||
/// <reference types="next" /> | ||
/// <reference types="next/image-types/global" /> | ||
|
||
// NOTE: This file should not be edited | ||
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
"watch": ["src"], | ||
"ext": "ts", | ||
"exec": "node --inspect -r ts-node/register ./src/server.ts" | ||
} | ||
} |
Oops, something went wrong.