Skip to content

Commit

Permalink
Fixes opencast#1512, don't save edits with no clips
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesUoM committed Dec 11, 2024
1 parent 6c2e214 commit f0c2479
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 7 deletions.
4 changes: 3 additions & 1 deletion src/i18n/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@
"success-tooltip-aria": "Saved successfully",
"saveArea-tooltip": "Save Area",
"confirm-success": "Okay",
"cancel-save": "Don't save"
"cancel-save": "Don't save",
"invalid-headline-text": "Invalid Edits",
"invalid-text": "The segments do not create a valid video. Either change or discard your edits if you wish to proceed. If you wanted to delete this video use the Opencast Admin UI. Contact an adminstrator for further help."
},

"discard": {
Expand Down
12 changes: 9 additions & 3 deletions src/main/Save.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import {
selectSegments,
selectTracks,
setHasChanges as videoSetHasChanges,
selectValidSegments,
validateSegments,
} from "../redux/videoSlice";
import { postVideoInformation, selectStatus, selectError } from "../redux/workflowPostSlice";

Expand Down Expand Up @@ -50,6 +52,10 @@ const Save: React.FC = () => {
const hasChanges = useAppSelector(selectHasChanges);
const subtitleHasChanges = useAppSelector(selectSubtitleHasChanges);

const dispatch = useAppDispatch();
dispatch(validateSegments());
const validSegments = useAppSelector(selectValidSegments);

const saveStyle = css({
display: "flex",
flexDirection: "column",
Expand All @@ -74,11 +80,11 @@ const Save: React.FC = () => {
return (
<>
<span css={{ maxWidth: "500px" }}>
{t("save.info-text")}
{validSegments ? t("save.info-text") : t("save.invalid-text")}
</span>
<div css={backOrContinueStyle}>
<PageButton pageNumber={0} label={t("various.goBack-button")} Icon={LuChevronLeft} />
<SaveButton />
{validSegments && <SaveButton />}
</div>
</>
);
Expand All @@ -87,7 +93,7 @@ const Save: React.FC = () => {

return (
<div css={saveStyle}>
<h1>{t("save.headline-text")}</h1>
<h1>{validSegments ? t("save.headline-text") : t("save.invalid-headline-text")}</h1>
{render()}
<div css={errorBoxStyle(postWorkflowStatus === "failed", theme)} role="alert">
<span>{t("various.error-text")}</span><br />
Expand Down
20 changes: 17 additions & 3 deletions src/main/WorkflowSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import { selectWorkflows, setSelectedWorkflowIndex } from "../redux/videoSlice";

import { PageButton } from "./Finish";
import { LuChevronLeft, LuDatabase } from "react-icons/lu";
import { selectValidSegments, validateSegments } from "../redux/videoSlice";
import { selectStatus as saveSelectStatus, selectError as saveSelectError } from "../redux/workflowPostSlice";
import { httpRequestState, Workflow } from "../types";
import { SaveButton } from "./Save";
import { EmotionJSX } from "@emotion/react/types/jsx-namespace";

import { useTranslation } from "react-i18next";
import { Trans } from "react-i18next";
import { useTranslation, Trans } from "react-i18next";
import { FormControlLabel, Radio, RadioGroup } from "@mui/material";
import { useTheme } from "../themes";

Expand All @@ -39,6 +39,9 @@ const WorkflowSelection: React.FC = () => {
const saveStatus = useAppSelector(saveSelectStatus);
const saveError = useAppSelector(saveSelectError);

dispatch(validateSegments());
const validSegments = useAppSelector(selectValidSegments);

const workflowSelectionStyle = css({
padding: "20px",
display: "flex",
Expand Down Expand Up @@ -109,7 +112,18 @@ const WorkflowSelection: React.FC = () => {

// Fills the layout template with values based on how many workflows are available
const renderSelection = () => {
if (workflows.length <= 0) {
if (!validSegments) {
return (
render(
t("save.invalid-headline-text"),
<span css={{ maxWidth: "500px" }}>{t("save.invalid-text")}</span>,
false,
<div/>,
saveStatus,
saveError
)
);
} else if (workflows.length <= 0) {
return (
render(
t("workflowSelection.saveAndProcess-text"),
Expand Down
14 changes: 14 additions & 0 deletions src/redux/videoSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface video {
tracks: Track[],
subtitlesFromOpencast: SubtitlesFromOpencast[],
activeSegmentIndex: number, // Index of the segment that is currenlty hovered
validSegments: boolean, // Whether the segment will result in a valid video edit
selectedWorkflowId: string, // Id of the currently selected workflow
aspectRatios: { width: number, height: number; }[], // Aspect ratios of every video
hasChanges: boolean, // Did user make changes in cutting view since last save
Expand Down Expand Up @@ -54,6 +55,7 @@ export const initialState: video & httpRequestState = {
tracks: [],
subtitlesFromOpencast: [],
activeSegmentIndex: 0,
validSegments: true,
selectedWorkflowId: "",
previewTriggered: false,
clickTriggered: false,
Expand Down Expand Up @@ -184,6 +186,15 @@ const videoSlice = createSlice({
updateCurrentlyAt(state, jumpTarget);
state.jumpTriggered = true;
},
validateSegments: state => {
// Test if whole video has been deleted
if (state.segments.length === 1 && state.segments[0].deleted && state.segments[0].start === 0 &&
state.segments[0].end === state.duration) {
state.validSegments = false;
} else {
state.validSegments = true;
}
},
addSegment: (state, action: PayloadAction<video["segments"][0]>) => {
state.segments.push(action.payload);
},
Expand Down Expand Up @@ -363,6 +374,7 @@ const videoSlice = createSlice({
selectCurrentlyAtInSeconds: state => state.currentlyAt / 1000,
selectSegments: state => state.segments,
selectActiveSegmentIndex: state => state.activeSegmentIndex,
selectValidSegments: state => state.validSegments,
selectIsCurrentSegmentAlive: state => !state.segments[state.activeSegmentIndex].deleted,
selectSelectedWorkflowId: state => state.selectedWorkflowId,
selectHasChanges: state => state.hasChanges,
Expand Down Expand Up @@ -545,6 +557,7 @@ export const {
setJumpTriggered,
jumpToPreviousSegment,
jumpToNextSegment,
validateSegments,
} = videoSlice.actions;

export const selectVideos = createSelector(
Expand All @@ -565,6 +578,7 @@ export const {
selectCurrentlyAtInSeconds,
selectSegments,
selectActiveSegmentIndex,
selectValidSegments,
selectIsCurrentSegmentAlive,
selectSelectedWorkflowId,
selectHasChanges,
Expand Down

0 comments on commit f0c2479

Please sign in to comment.