arachne

Project Page: http://arachne-framework.org/ Kickstarter: https://www.kickstarter.com/projects/1346708779/arachne-rapid-web-development-for-clojure
luke 2018-02-05T01:08:39.000001Z

@jcf my theory is that when you manually set to [arachne-fileset β€œ1.6.1”], there were some classpath shenannigans because of your relatively complicated setup and you were mistakingly still using the version with the known bug, at first.

luke 2018-02-05T01:08:54.000061Z

please let me know if you see it again, though!

1πŸ‘
amarjeet 2018-02-05T15:17:10.000600Z

Hi @luke , wanted to understand how multiple mixins are supported in FactUI, while creating rum components. It doesn't seem to be similar to Rum, in which the last mixin contains has the final output, combining the previous ones.

luke 2018-02-05T17:27:37.000666Z

So what FactUI does is it creates a rum mixin. A FactUI+Rum component is just a regular rum component with a FactUI mixin

luke 2018-02-05T17:28:07.000805Z

however that mixin overloads :will-mount, :will-update, :will-unmount, so it won’t compose with any other mixins that want to control those.

amarjeet 2018-02-05T18:29:05.000458Z

okay, understood

amarjeet 2018-02-05T18:29:07.000431Z

thanks