diff --git a/src/apps/material-search/MaterialSearch.dev.tsx b/src/apps/material-search/MaterialSearch.dev.tsx
index 90fe5a4e5e..a99326ede6 100644
--- a/src/apps/material-search/MaterialSearch.dev.tsx
+++ b/src/apps/material-search/MaterialSearch.dev.tsx
@@ -1,4 +1,4 @@
-import { ComponentMeta, ComponentStory } from "@storybook/react";
+import { ComponentMeta } from "@storybook/react";
import React from "react";
import globalConfigArgs from "../../core/storybook/globalConfigArgs";
import globalTextArgs, {
@@ -9,29 +9,82 @@ import MaterialSearch, {
MaterialSearchEntryProps,
MaterialSearchEntryTextProps
} from "./MaterialSearch.entry";
-import { ManifestationMaterialType } from "../../core/utils/types/material-type";
// Can't use useId() here since this is not inside a functional component.
-const uniqueIdentifier = Math.floor(Math.random() * 10000);
+const uniqueIdentifierValue = Math.floor(Math.random() * 10000);
-const defaultValuePreselectedWorkId =
- "work-of:800010-katalog:99122475830405763";
-const defaultValuePreselectedMaterialType = "lydbog (cd-mp3)";
+const previouslySelectedWorkId = "work-of:800010-katalog:99122475830405763";
+const previouslySelectedMaterialType = "lydbog (cd-mp3)";
+
+interface MaterialSearchHiddenInputsProps
+ extends MaterialSearchEntryProps,
+ MaterialSearchEntryTextProps,
+ GlobalEntryTextProps {
+ defaultWorkId: string;
+ defaultMaterialType: string;
+ uniqueIdentifier: string;
+}
+
+const MaterialSearchHiddenInputs = ({
+ defaultWorkId,
+ defaultMaterialType,
+ uniqueIdentifier,
+ ...args
+}: MaterialSearchHiddenInputsProps) => {
+ return (
+
+ );
+};
export default {
title: "Apps / Material Search",
- component: MaterialSearch,
+ component: MaterialSearchHiddenInputs,
argTypes: {
uniqueIdentifier: {
- defaultValue: uniqueIdentifier,
+ defaultValue: uniqueIdentifierValue,
control: { type: "number" }
},
previouslySelectedWorkId: {
- defaultValue: defaultValuePreselectedWorkId,
+ defaultValue: previouslySelectedWorkId,
control: { type: "text" }
},
previouslySelectedMaterialType: {
- defaultValue: defaultValuePreselectedMaterialType,
+ defaultValue: previouslySelectedMaterialType,
control: { type: "text" }
},
etAlText: {
@@ -157,54 +210,36 @@ export default {
...serviceUrlArgs,
...globalConfigArgs
}
-} as ComponentMeta;
+} as ComponentMeta;
-export const Default: ComponentStory = (
- args: MaterialSearchEntryProps &
- MaterialSearchEntryTextProps &
- GlobalEntryTextProps
-) => (
-
+const createStory =
+ (defaultWorkId: string, defaultMaterialType: string) =>
+ (
+ args: MaterialSearchEntryProps &
+ MaterialSearchEntryTextProps &
+ GlobalEntryTextProps
+ ) =>
+ (
+
+ );
+
+export const Default = createStory("", "");
+
+export const WithPreviouslySelectedValues = createStory(
+ previouslySelectedWorkId,
+ previouslySelectedMaterialType
);
-export const materialWithInvalidType = Default.bind({});
-materialWithInvalidType.args = {
- previouslySelectedMaterialType: "playstation 5" as ManifestationMaterialType
-};
+export const materialWithInvalidType = createStory(
+ previouslySelectedWorkId,
+ "invalid-type"
+);
-export const materialWithInvalidWorkId = Default.bind({});
-materialWithInvalidWorkId.args = {
- previouslySelectedWorkId: "work-of:222222-katalog:33332313"
-};
+export const materialWithInvalidWorkId = createStory(
+ "invalid-work-id",
+ previouslySelectedMaterialType
+);