Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add video page #640

Merged
merged 49 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
8fb2598
feat: add video empty state view
KristinAoki Oct 4, 2023
f3d4cbb
feat: add initial api fetch
KristinAoki Oct 5, 2023
88190e3
feat: add list view
KristinAoki Oct 5, 2023
ce7d23d
feat: add delete functionality
KristinAoki Oct 6, 2023
0248930
feat: add encodings download
KristinAoki Oct 6, 2023
d3a4d8a
feat: add video functionality
KristinAoki Oct 6, 2023
03323b9
feat: add video thumbnail functionality
KristinAoki Oct 10, 2023
edded97
feat: add transcript functions
KristinAoki Oct 13, 2023
5239d6a
feat: add video usage functionality
KristinAoki Oct 16, 2023
0ba65ba
fix: blocked more info menu view
KristinAoki Oct 16, 2023
19c065e
feat: add transcript setting sheet
KristinAoki Oct 17, 2023
1238b03
chore: merge master
KristinAoki Oct 17, 2023
926740f
fix: thumbnail rendering
KristinAoki Oct 17, 2023
9643860
chore: update folder names and structure
KristinAoki Oct 17, 2023
1fb9f3b
fix: table thumbnail style
KristinAoki Oct 18, 2023
10903f0
fix: thumbnail alt message
KristinAoki Oct 18, 2023
09c1b00
fix: failing test
KristinAoki Oct 18, 2023
4442bc9
fix: lint error
KristinAoki Oct 18, 2023
7da3fd4
fix: onclick not working with keyboard
KristinAoki Oct 18, 2023
77fa51b
fix: undefined not iterable error
KristinAoki Oct 18, 2023
e6cd5ba
chore: add TranscriptTab tests
KristinAoki Oct 20, 2023
091e71e
chore: update FilesAndUploads tests
KristinAoki Oct 20, 2023
f3d270b
chore: add test for transriopt settings
KristinAoki Oct 23, 2023
7804884
chore: fix broken tests
KristinAoki Oct 23, 2023
7c1879a
feat: add tests for video page
KristinAoki Oct 24, 2023
0f85130
Merge branch 'master' into KristinAoki/video-page
KristinAoki Oct 24, 2023
382a811
fix: broken files-and-uploads test
KristinAoki Oct 24, 2023
45e4a54
chore: increase code coverage
KristinAoki Oct 24, 2023
762b200
fix: videos not sorting
KristinAoki Oct 25, 2023
f6b7ce4
chore: increase code coverage
KristinAoki Oct 25, 2023
97f1c7e
fix: broken disabled thumbnail upload
KristinAoki Oct 25, 2023
be1a5b8
fix: lint errors
KristinAoki Oct 25, 2023
fa3f571
feat: add missing video attributes
KristinAoki Oct 25, 2023
900288d
fix: failing tests
KristinAoki Oct 26, 2023
30368ca
fiux: lint errors
KristinAoki Oct 26, 2023
12aff00
fix: lint error
KristinAoki Oct 26, 2023
b1abd40
Merge branch 'master' into KristinAoki/video-page
KristinAoki Oct 27, 2023
68c2acb
chore: update files-and-videos subfolder names
KristinAoki Oct 31, 2023
5d56a12
fix: lint errors
KristinAoki Oct 31, 2023
0835817
fix: errors not clearing on dismiss
KristinAoki Nov 1, 2023
5c30578
chore: add failure tests
KristinAoki Nov 1, 2023
5318160
fix: lint errors
KristinAoki Nov 1, 2023
276c955
chore: add credential update failure tests
KristinAoki Nov 1, 2023
83629c8
chore: increase utils code coverage
KristinAoki Nov 2, 2023
4e7902f
feat: add disable for invalid transcription plans
KristinAoki Nov 2, 2023
c85667a
fix: lint error
KristinAoki Nov 3, 2023
808ae50
fix: lint error
KristinAoki Nov 3, 2023
07eaac6
chore: add tests for transcript actions failures
KristinAoki Nov 3, 2023
4fd19de
feat: update page title
KristinAoki Nov 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"ignoreUnits": ["\\.5"]
}],
"property-no-vendor-prefix": [true, {
"ignoreProperties": ["animation", "filter"]
"ignoreProperties": ["animation", "filter", "transform", "transition"]
}],
"value-no-vendor-prefix": [true, {
"ignoreValues": ["fill-available"]
Expand Down
32 changes: 32 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
"enzyme-to-json": "^3.6.2",
"glob": "7.2.0",
"husky": "7.0.4",
"jest-canvas-mock": "^2.5.2",
"react-test-renderer": "17.0.2",
"reactifex": "1.1.1",
"ts-loader": "^9.5.0"
Expand Down
6 changes: 3 additions & 3 deletions src/CourseAuthoringRoutes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ProctoredExamSettings from './proctored-exam-settings/ProctoredExamSettin
import EditorContainer from './editors/EditorContainer';
import VideoSelectorContainer from './selectors/VideoSelectorContainer';
import CustomPages from './custom-pages';
import FilesAndUploads from './files-and-uploads';
import { FilesPage, VideosPage } from './files-and-videos';
import { AdvancedSettings } from './advanced-settings';
import ScheduleAndDetails from './schedule-and-details';
import { GradingSettings } from './grading-settings';
Expand Down Expand Up @@ -49,11 +49,11 @@ const CourseAuthoringRoutes = () => {
/>
<Route
path="assets"
element={<PageWrap><FilesAndUploads courseId={courseId} /></PageWrap>}
element={<PageWrap><FilesPage courseId={courseId} /></PageWrap>}
/>
<Route
path="videos"
element={process.env.ENABLE_NEW_VIDEO_UPLOAD_PAGE === 'true' ? <PageWrap><Placeholder /></PageWrap> : null}
element={process.env.ENABLE_VIDEO_UPLOAD_PAGE_LINK_IN_CONTENT_DROPDOWN === 'true' ? <PageWrap><VideosPage courseId={courseId} /></PageWrap> : null}
/>
<Route
path="pages-and-resources/*"
Expand Down
176 changes: 0 additions & 176 deletions src/files-and-uploads/FileInfo.jsx

This file was deleted.

Loading
Loading