β˜Όπ•―π–†π–žπ–‘π–Žπ–Œπ–π–™β˜Ύ
β˜Όπ•―π–†π–žπ–‘π–Žπ–Œπ–π–™β˜Ύ
Explore posts from servers
AAlokai
Created by β˜Όπ•―π–†π–žπ–‘π–Žπ–Œπ–π–™β˜Ύ on 1/26/2025 in #πŸ™‹ο½œgeneral-help
does this have integrations with vendure or any other headless backends?
there are many open source ecom backends, could someone hepl me with or point out what integrations are available? some links do not work for ex https://docs.alokai.com/vendure
1 replies
SSolidJS
Created by β˜Όπ•―π–†π–žπ–‘π–Žπ–Œπ–π–™β˜Ύ on 3/30/2024 in #support
Router brakes css
Code that works:
...(index.tsx)
const root = document.getElementById('root');

if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
throw new Error(
'Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?',
);
}

render(() => <App />, root);
... (app.tsx)
function App() {
return (
<Router root={MainLayout}>

<Route path="/" component={TestComponent} />
<Route path="/cart" component={TestComponent} />
</Router>
);
}
function TestComponent(props: any){
let name = props.name ? props.name : 'Component'
console.log(name)
return (
<main class="mb-auto h-10 bg-green-500">{name}</main>

)
}
...
// Code that breaks
... index2.tsx

const elem: Element = document.getElementById("root")

render(() => (
<Router root={MainLayout}>
<Route path="/" component={MainLayout}>

<Route path="/cart" component={Cart} />
<Route path="/" component={TestComponent} />
<Route path="*404" component={()=>(<TestComponent name='not found'/>)} />
</Route>
</Router>
), elem);


function Cart() {
return (
<div class="p-4 grid">

<TestComponent name='cart'/>
<TestComponent name='cart'/>
<TestComponent name='cart'/>
<TestComponent name='cart'/>
<TestComponent name='cart'/>
</div>
)
}
...(index.tsx)
const root = document.getElementById('root');

if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
throw new Error(
'Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?',
);
}

render(() => <App />, root);
... (app.tsx)
function App() {
return (
<Router root={MainLayout}>

<Route path="/" component={TestComponent} />
<Route path="/cart" component={TestComponent} />
</Router>
);
}
function TestComponent(props: any){
let name = props.name ? props.name : 'Component'
console.log(name)
return (
<main class="mb-auto h-10 bg-green-500">{name}</main>

)
}
...
// Code that breaks
... index2.tsx

const elem: Element = document.getElementById("root")

render(() => (
<Router root={MainLayout}>
<Route path="/" component={MainLayout}>

<Route path="/cart" component={Cart} />
<Route path="/" component={TestComponent} />
<Route path="*404" component={()=>(<TestComponent name='not found'/>)} />
</Route>
</Router>
), elem);


function Cart() {
return (
<div class="p-4 grid">

<TestComponent name='cart'/>
<TestComponent name='cart'/>
<TestComponent name='cart'/>
<TestComponent name='cart'/>
<TestComponent name='cart'/>
</div>
)
}
cc @Brendonovich
15 replies