REEEEE
REEEEE
SSolidJS
Created by p on 4/2/2025 in #support
Disable the nested store "feature"
You'll probably have to unwrap the value that is being added to the child store
3 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
something along those lines
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
root={(props) => (<> {props.children} </>)}
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
and the root should render the children
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
In this case, you need root on Router I believe
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
Any chance you have an A or use primitive outside the router somewhere and the sourcemap is wrong?
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
which is odd because the setup looks fine
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
It could be because of the preload?
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
How is the overview page loaded?
22 replies
SSolidJS
Created by Jeremy on 3/18/2025 in #support
Error in production only: <A> and 'use' router primitives can be only used inside a Route.
The best way to debug this is to go from the top down of where you define your routes and then where you're using the A component or any use primitives likes useLocation
22 replies
SSolidJS
Created by hyperknot on 2/22/2025 in #support
How to modify array partially?
Though I'm not 100% on that
33 replies
SSolidJS
Created by hyperknot on 2/22/2025 in #support
How to modify array partially?
I believe the key param is to uniquely identify objects by a property, the default key being id.
33 replies
SSolidJS
Created by hyperknot on 2/21/2025 in #support
Why does my component only update in a dummy For loop?
Nope
15 replies
SSolidJS
Created by hyperknot on 2/22/2025 in #support
How to modify array partially?
You can also use produce if you want to do mutation
setStore('streamingMarkdownTokens', produce(prevState => prevState.push(newItem)))
setStore('streamingMarkdownTokens', produce(prevState => prevState.push(newItem)))
33 replies
SSolidJS
Created by hyperknot on 2/22/2025 in #support
How to modify array partially?
reconcile would be the way to go. reconcile returns a function that takes in the previous state object. The store setter accepts a function as an argument where it provides you the previous value
setStore('streamingMarkdownToken', prevState => [...prevState, newItem])
setStore('streamingMarkdownToken', prevState => [...prevState, newItem])
Obviously creating a new array isn't ideal. You use reconcile here and it's equivalent to this
setStore('streamingMarkdownToken', prevState => reconcile(newTokens)(prevState))
setStore('streamingMarkdownToken', prevState => reconcile(newTokens)(prevState))
33 replies
SSolidJS
Created by hyperknot on 2/21/2025 in #support
Why does my component only update in a dummy For loop?
You can do this
const tokens = createMemo(() => {
return getMarkdownTokens(props.content)
})
const tokens = createMemo(() => {
return getMarkdownTokens(props.content)
})
OR
const tokens = () => {
return getMarkdownTokens(props.content)
}
const tokens = () => {
return getMarkdownTokens(props.content)
}
to make the read to props.content reactive. Since solid components don't generally rerun, once you read the prop (like in your original use), it gets that value at the time of read and that's it. Only effects, memos, jsx, and functions (for the most part) are reactive. If you read props or any reactive value in the body of the component it won't be reactive
15 replies
SSolidJS
Created by hyperknot on 2/21/2025 in #support
Why does my component only update in a dummy For loop?
You could use a normal function too or inline getMarkdownTokens(props.content) into the each
15 replies
SSolidJS
Created by hyperknot on 2/21/2025 in #support
Why does my component only update in a dummy For loop?
You can't do return props.content as it won't be reactive. It has to be read in jsx. So you can do return <> {props.content}</> to make it reactive
15 replies
SSolidJS
Created by hyperknot on 2/21/2025 in #support
Why does my component only update in a dummy For loop?
How are you reading the prop?
15 replies
SSolidJS
Created by KiaClouth on 2/17/2025 in #support
When I use blockly, nothing is on the page
Maybe you're missing the render function call?
11 replies