Skip to content

Commit

Permalink
Channel builder merge 1 (#1)
Browse files Browse the repository at this point in the history
* 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
JinHedman and edvinhed authored Oct 2, 2024
1 parent 0749d6e commit c18c18b
Show file tree
Hide file tree
Showing 19 changed files with 16,092 additions and 19 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ node_modules/
.DS_Store
.next
.env
.env.local
stswe-tvplus-promo.mp4
images.jpeg
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};
testEnvironment: 'node'
};
5 changes: 5 additions & 0 deletions next-env.d.ts
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.
2 changes: 1 addition & 1 deletion nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"watch": ["src"],
"ext": "ts",
"exec": "node --inspect -r ts-node/register ./src/server.ts"
}
}
Loading

0 comments on commit c18c18b

Please sign in to comment.