coredevel
coredevel
+1, without docker-sync there are a couple of options for os x when mounting shares using bind mounts: - consistent or default: The default setting with full consistency, as described...
Hey @christianalfoni, many thanks for the response and commenting the code, much appreciated! I've gone over it several more times and it's excellent, I'm still trying to wrap my head...
OK after a bit of trial and error I've got the 'SidebarStore' consuming a 'WorkspaceStore' as follows: ``` export function SidebarStore() { const width = signal(DEFAULT_SIDEBAR_WIDTH); const isResizing = signal(false);...
Hey @christianalfoni , thanks for the video, I was up until 4am reading docs, going over the codebase and watching the vid. Finally the penny dropped and I have about...
I can imagine the journey haha! And no problem, the YT vid popped up last week and it couldn't have been more timely as I just embarked on creating a...
"But createContext is not the problem, it is wrapping a component around it and using useState, useRef and useEffect to do state management that is the problem 😅" Yep you...
Hey @christianalfoni thanks for the quick reply! I've just updated to 1.11.7 but that's introduced a couple of new errors now.   Weirdly I'm not (or shouldn't be rendering...
I've commented out the workspace store def: ``` function StrategyBuilderStore() { const sidebar = SidebarStore(); // const workspace = WorkspaceStore(); return { sidebar, // workspace, }; } ``` It works,...
Ohhhh I had a `useRef` assigned to a var in the WorkspaceStore being returned, used for calculating heights and setting signals, ok I need to think about handling this scenario
OK so where I need access to props of an html element in a component 'tracked' by a useRef within the store, I've implemented in the following way in the...