Re: How do I pass Remix.jsx file data to the liquid file?

How do I pass Remix.jsx file data to the liquid file?

anupam1607
Shopify Partner
44 7 8

I've built one Shopify Remix app. In the default app, there are the.jsx format files under the app > routes.

I've added a theme extension for the app's embedded UI for the storefront.

Which is to build the folder in an app: extentions > extension name > blocks >.liquid

Currently, I'm adding data to the app, and it is stored in the Prisma database.

Screenshot_1.png


All I want is that when I save the .jsx file data in the app, it will also pass in a liquid file.

Don't provide GPT answers. I've already tried my best for long.

This is my .jsx file.

//JSX File
export default function appearance() {
// Dropdown Event
  const theme = useLoaderData();
  const [selected, setSelected] = useState(theme.theme); // Ensure we're using the correct path
  const handleSelectChange = useCallback((value) => {
    setFormState((prevState) => ({
      ...prevState,
      theme: value
    }));
  }, []);


  const options = [
    { label: "Light", value: "light" },
    { label: "Dark", value: "dark" }
  ];

//Checkbox Event
    const initialData = useLoaderData();
const [checked, setChecked] = useState(initialData.rounded);

const handleCheck = useCallback((event) => {
  setChecked(event.target.checked);
}, []);

useEffect(() => {
  setChecked(initialData.rounded);
}, [initialData]);

//Range Slider Event
    const [rangeValue, setRangeValue] = useState(initialData.rangeValue);
    const handleChange = useCallback((event) => {
      setRangeValue(parseInt(event.target.value, 10));
    }, []);
  
    useEffect(() => {
      setRangeValue(initialData.rangeValue);
    }, [initialData]);

const liquidData = JSON.stringify(formState);


return (
<Form method="POST">
  
<TextField
        label="Test Field"
        name="test"
        value={formState?.test}
        onChange={(value) => setFormState({ ...formState, test: value })}
      />
<Select
        label="Theme"
        options={options}
        onChange={handleSelectChange}
        name="theme"
        value={formState?.theme}
      />
<input
        type="checkbox"
        checked={checked}
        onChange={handleCheck}
        name="rounded"
        value={checked.toString()}
      />
      Rounded corners</label>
<label>
Font Size
<input
  type="range"
  name="rangeValue"
  min="12"
  max="46"
  value={rangeValue}
  onChange={handleChange}
/>
</label>
</Form>
);}

This is my liquid file data

 

 

 

const appearanceSettings = {{ appearance_settings.value | json }};
  
  document.addEventListener('DOMContentLoaded', function() {
    // Use the appearanceSettings data in your JavaScript
    console.log(appearanceSettings);
    // Example: Apply the settings to your elements
    document.body.style.backgroundColor = appearanceSettings.theme === 'dark' ? '#000' : '#fff';
  });

 

 

 

 

 

 

 

{% assign appearance_settings = shop.metafields.custom_namespace.liquidData %}

<!-- Use the fetched data in your Liquid template -->
{% if appearance_settings %}
  <h1>Appearance Settings</h1>
  <ul>
    <li>Theme: {{ appearance_settings.theme }}</li>
    <li>Test: {{ appearance_settings.test }}</li>
    <li>Rounded: {{ appearance_settings.rounded }}</li>
    <li>Font Size: {{ appearance_settings.rangeValue }}</li>
    <li>Color: {{ appearance_settings.color | json }}</li>
  </ul>
{% else %}
  <p>Loading...</p>
{% endif %}

 

 

 

Buy me a coffee.
- Was your question answered? Mark it as an Accepted Solution. ❤️
- Don't forget to give me Thumbs Up.
- Store, Product and Collection Modifications | Apps and Sales Channel | Animation
- Lets connect anupammistry1607@gmail.com 
Replies 2 (2)

miteshbhagwant
Shopify Partner
9 0 1

any update on this @anupam1607 ?

anupam1607
Shopify Partner
44 7 8

No @miteshbhagwant 😐

Buy me a coffee.
- Was your question answered? Mark it as an Accepted Solution. ❤️
- Don't forget to give me Thumbs Up.
- Store, Product and Collection Modifications | Apps and Sales Channel | Animation
- Lets connect anupammistry1607@gmail.com 