All files / src/components/script ScriptEventAutoFade.tsx

0% Statements 0/52
0% Branches 0/34
0% Functions 0/11
0% Lines 0/48

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158                                                                                                                                                                                                                                                                                                                           
import { FadeSpeedSelect } from "components/forms/FadeSpeedSelect";
import { MenuItem } from "ui/menu/Menu";
import l10n from "shared/lib/lang/l10n";
import React, { useCallback, useContext, useEffect, useRef } from "react";
import entitiesActions from "store/features/entities/entitiesActions";
import { sceneSelectors } from "store/features/entities/entitiesState";
import {
  ScriptEventWrapper,
  ScriptEventHeader,
  ScriptEventFormWrapper,
  ScriptEventField,
  ScriptEventFields as ScriptEventFieldsWrapper,
  ScriptEventWarning,
} from "ui/scripting/ScriptEvents";
import { OffscreenSkeletonInput } from "ui/skeleton/Skeleton";
import { FixedSpacer } from "ui/spacing/Spacing";
import { Button } from "ui/buttons/Button";
import { useAppDispatch, useAppSelector } from "store/hooks";
import { ScriptEditorContext } from "components/script/ScriptEditorContext";
 
export const ScriptEventAutoFade = () => {
  const dispatch = useAppDispatch();
  const context = useContext(ScriptEditorContext);
  const type = context.entityType;
  const sceneId = context.sceneId;
  const headerRef = useRef<HTMLDivElement>(null);
  const scene = useAppSelector((state) =>
    sceneSelectors.selectById(state, sceneId)
  );
  const value =
    scene?.autoFadeSpeed === null ? null : scene?.autoFadeSpeed ?? 1;
  const autoFadeEventCollapse = scene?.autoFadeEventCollapse;
  const isOpen = !autoFadeEventCollapse;
 
  const onChangeField = useCallback(
    (newValue: number | null) => {
      console.log(newValue);
      dispatch(
        entitiesActions.editScene({
          sceneId,
          changes: {
            autoFadeSpeed: newValue,
          },
        })
      );
    },
    [dispatch, sceneId]
  );
 
  const onDisable = useCallback(() => {
    dispatch(
      entitiesActions.editScene({
        sceneId,
        changes: {
          autoFadeSpeed: null,
        },
      })
    );
  }, [dispatch, sceneId]);
 
  const toggleOpen = useCallback(() => {
    dispatch(
      entitiesActions.editScene({
        sceneId,
        changes: {
          autoFadeEventCollapse: !autoFadeEventCollapse,
        },
      })
    );
  }, [autoFadeEventCollapse, dispatch, sceneId]);
 
  const isExecuting = context.executingId === "autofade";
 
  useEffect(() => {
    Iif (isExecuting && headerRef.current) {
      headerRef.current.scrollIntoView();
    }
  }, [isExecuting]);
 
  Iif (type !== "scene" || value === null || !scene) {
    return null;
  }
 
  return (
    <ScriptEventWrapper>
      <ScriptEventHeader
        ref={headerRef}
        nestLevel={0}
        altBg={false}
        isOpen={isOpen}
        isExecuting={isExecuting}
        isMoveable={false}
        menuItems={
          <MenuItem onClick={onDisable}>
            {l10n("FIELD_DISABLE_AUTOMATIC_FADE_IN")}
          </MenuItem>
        }
        onToggle={toggleOpen}
      >
        {l10n("EVENT_FADE_IN")} ({l10n("FIELD_AUTOMATIC")})
      </ScriptEventHeader>
      {isOpen && (
        <ScriptEventFormWrapper>
          <ScriptEventFieldsWrapper>
            <ScriptEventField>
              <OffscreenSkeletonInput>
                <FadeSpeedSelect
                  name="sceneAutoFade"
                  value={Number(value ?? 2)}
                  onChange={onChangeField}
                />
              </OffscreenSkeletonInput>
            </ScriptEventField>
          </ScriptEventFieldsWrapper>
        </ScriptEventFormWrapper>
      )}
    </ScriptEventWrapper>
  );
};
 
export const ScriptEventAutoFadeDisabledWarning = () => {
  const dispatch = useAppDispatch();
  const type = useAppSelector((state) => state.editor.type);
  const sceneId = useAppSelector((state) => state.editor.scene);
  const scene = useAppSelector((state) =>
    sceneSelectors.selectById(state, sceneId)
  );
 
  const onEnable = useCallback(() => {
    dispatch(
      entitiesActions.editScene({
        sceneId,
        changes: {
          autoFadeSpeed: 1,
        },
      })
    );
  }, [dispatch, sceneId]);
 
  Iif (type !== "scene" || !scene) {
    return null;
  }
 
  return (
    <ScriptEventWarning>
      <strong> {l10n("FIELD_AUTOMATIC_FADE_IN_DISABLED")}</strong>
      <br />
      {l10n("FIELD_AUTOMATIC_FADE_IN_DISABLED_INFO", {
        eventName: l10n("EVENT_FADE_IN"),
      })}
      <FixedSpacer height={5} />
      <Button size="small" onClick={onEnable}>
        {l10n("FIELD_ENABLE_AUTOMATIC_FADE_IN")}
      </Button>
    </ScriptEventWarning>
  );
};