-
- Downloads
Implement basic seeking
Showing
- package-lock.json 107 additions, 0 deletionspackage-lock.json
- package.json 4 additions, 0 deletionspackage.json
- src/App.tsx 17 additions, 83 deletionssrc/App.tsx
- src/api/ApiClient.ts 3 additions, 2 deletionssrc/api/ApiClient.ts
- src/api/models/Rating.ts 1 addition, 1 deletionsrc/api/models/Rating.ts
- src/api/models/Title.ts 9 additions, 4 deletionssrc/api/models/Title.ts
- src/api/models/TitleDescription.ts 1 addition, 1 deletionsrc/api/models/TitleDescription.ts
- src/api/models/TitleName.ts 1 addition, 1 deletionsrc/api/models/TitleName.ts
- src/api/models/dto/TitleMeta.ts 7 additions, 0 deletionssrc/api/models/dto/TitleMeta.ts
- src/index.tsx 1 addition, 1 deletionsrc/index.tsx
- src/routes/TitleRoute.tsx 21 additions, 0 deletionssrc/routes/TitleRoute.tsx
- src/routes/main/MainPage.tsx 79 additions, 0 deletionssrc/routes/main/MainPage.tsx
- src/routes/player/Player.tsx 63 additions, 0 deletionssrc/routes/player/Player.tsx
- src/routes/player/PlayerError.tsx 7 additions, 0 deletionssrc/routes/player/PlayerError.tsx
- src/routes/player/PlayerLoading.tsx 7 additions, 0 deletionssrc/routes/player/PlayerLoading.tsx
- src/routes/player/PlayerPage.tsx 23 additions, 0 deletionssrc/routes/player/PlayerPage.tsx
- src/routes/player/PreviewViewer.tsx 23 additions, 0 deletionssrc/routes/player/PreviewViewer.tsx
- src/routes/player/SeekBar.tsx 87 additions, 0 deletionssrc/routes/player/SeekBar.tsx
- src/util/CurrentTitleContext.ts 7 additions, 0 deletionssrc/util/CurrentTitleContext.ts
- src/util/locale/Locale.ts 0 additions, 0 deletionssrc/util/locale/Locale.ts
... | ... | @@ -10,10 +10,14 @@ |
"@types/node": "^12.12.62", | ||
"@types/react": "^16.9.49", | ||
"@types/react-dom": "^16.9.8", | ||
"@types/react-router": "^5.1.8", | ||
"@types/react-router-dom": "^5.1.5", | ||
"immer": "^7.0.9", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"react-jss": "^10.4.0", | ||
"react-router": "^5.2.0", | ||
"react-router-dom": "^5.2.0", | ||
"react-scripts": "3.4.3", | ||
"react-sweet-state": "^2.3.1", | ||
"typescript": "^3.7.5" | ||
... | ... |
src/api/models/dto/TitleMeta.ts
0 → 100644
src/routes/TitleRoute.tsx
0 → 100644
src/routes/main/MainPage.tsx
0 → 100644
src/routes/player/Player.tsx
0 → 100644
src/routes/player/PlayerError.tsx
0 → 100644
src/routes/player/PlayerLoading.tsx
0 → 100644
src/routes/player/PlayerPage.tsx
0 → 100644
src/routes/player/PreviewViewer.tsx
0 → 100644
src/routes/player/SeekBar.tsx
0 → 100644
src/util/CurrentTitleContext.ts
0 → 100644
File moved
Please register or sign in to comment