Welcome the channel on the development of Cro, a set of libraries for building reactive distributed systems, lovingly crafted to take advantage of all the Raku Programming Language has to offer (cro.services). This channel is being logged for historical purposes.
Set by lizmat on 24 May 2021.
00:20 Pe_Elle left
SmokeMachine I just merged the PR that changes the way to create Cromponents... I think that's better now. The code still needs many improvements, but the usage is near to what I want (still trying to figure out how to make not need to call <&HTML(.cromponent)>)... 00:42
I also updated the todo example with some css and made Todo Cromponent to be a Red model and store/load the todos from database 00:43
00:48 Pe_Elle joined
SmokeMachine There is also a new role/cromponent called StyledComponent to add styles by class on a react's styled components way... (it still needs some work...) 00:49
00:52 Pe_Elle left 01:22 Pe_Elle joined 01:28 guifa left 01:48 Pe_Elle left 01:57 Pe_Elle joined 03:00 Pe_Elle left 03:18 lizmat left 03:24 Pe_Elle joined 04:32 Pe_Elle left 04:51 Pe_Elle joined 04:55 Pe_Elle left 05:10 Pe_Elle joined 05:30 guifa joined 05:54 Pe_Elle left, Pe_Elle joined 06:36 guifa left 07:04 Pe_Elle left 07:19 Pe_Elle joined 07:24 Pe_Elle left 07:53 Pe_Elle joined 07:58 Pe_Elle left 08:13 Pe_Elle joined 08:52 sena_kun joined 09:11 lizmat joined 09:13 Pe_Elle left 09:40 Pe_Elle joined 09:47 Pe_Elle left, Pe_Elle joined 09:48 Pe_Elle left 09:49 Pe_Elle joined 09:51 Pe_Elle left, Pe_Elle joined 10:20 sena_kun left
SmokeMachine Just to point out that if anyone want to see use cromponents from GitHub, now it depends on github.com/FCO/CSS-Nested that is just CSS::Gramar extended to accept (and convert) CSS nested rules 10:49
10:54 Pe_Elle left 10:55 Pe_Elle joined 11:00 Pe_Elle left 11:29 Pe_Elle joined 11:33 Pe_Elle left 12:02 Pe_Elle joined 12:07 Pe_Elle left 12:24 Pe_Elle joined 13:12 guifa joined 13:24 Pe_Elle left 13:51 Pe_Elle joined 13:55 Pe_Elle left 14:11 Pe_Elle joined 15:11 Pe_Elle left 15:27 Pe_Elle joined 15:33 Pe_Elle left 16:02 Pe_Elle joined 16:09 sena_kun joined 17:01 guifa left 17:02 guifa joined 17:04 Pe_Elle left 17:50 Pe_Elle joined 18:57 Pe_Elle left 19:27 Pe_Elle joined 19:32 guifa left 19:36 Pe_Elle left 20:02 guifa joined 20:11 Pe_Elle joined 20:16 Pe_Elle left 20:19 sena_kun left 20:31 Pe_Elle joined 21:13 guifa left
Geth cro-core: patrickbkr++ created pull request #43:
Add an API version to META6.json and add a `Changes` file
21:17
cro-http: patrickbkr++ created pull request #200:
Add an API version to META6.json and add a `Changes` file
21:18
cro-tls/release-refactor: 37bbe544a9 | (Patrick Böker)++ | 3 files
Add an API version to META6.json and add a `Changes` file
cro-tls: patrickbkr++ created pull request #14:
Add an API version to META6.json and add a `Changes` file
21:19
cro-webapp/release-refactor: 829ebba9af | (Patrick Böker)++ | 3 files
Add an API version to META6.json and add a `Changes` file
21:20
cro-webapp: patrickbkr++ created pull request #96:
Add an API version to META6.json and add a `Changes` file
cro-websocket/release-refactor: bf6724f278 | (Patrick Böker)++ | 3 files
Add an API version to META6.json and add a `Changes` file
cro-websocket: patrickbkr++ created pull request #40:
Add an API version to META6.json and add a `Changes` file
cro/release-refactor: d5caf9e723 | (Patrick Böker)++ | 3 files
Add an API version to META6.json and add a `Changes` file
21:21
cro: patrickbkr++ created pull request #167:
Add an API version to META6.json and add a `Changes` file
cro-core: 994308132b | (Patrick Böker)++ | 3 files
Add an API version to META6.json and add a `Changes` file
21:22
cro-core: 9bf7d26996 | (Patrick Böker)++ (committed using GitHub Web editor) | 3 files
Merge pull request #43 from patrickbkr/release-refactor

Add an API version to META6.json and add a `Changes` file
cro-tls: 37bbe544a9 | (Patrick Böker)++ | 3 files
Add an API version to META6.json and add a `Changes` file
21:25
cro-tls: 5dff5b0130 | (Patrick Böker)++ (committed using GitHub Web editor) | 3 files
Merge pull request #14 from croservices/release-refactor

Add an API version to META6.json and add a `Changes` file
cro-tls/refresh-certs: 22ab7f250f | (Patrick Böker)++ | 4 files
Refresh certs
21:27
cro-tls/refresh-certs: 7bbb783597 | (Patrick Böker)++ | 5 files
Refresh certs
21:30
cro-tls: patrickbkr++ created pull request #15:
Refresh certs
21:33 Pe_Elle left 22:00 Pe_Elle joined 22:04 Pe_Elle left
librasteve SmokeMachine: have you read this rstacruz.github.io/rscss/ ? 22:18
SmokeMachine reading now. The way I've done that is based on styled-components for react (styled-components.com/docs/basics) 22:23
22:33 Pe_Elle joined
SmokeMachine librasteve: this (rstacruz.github.io/rscss/elements.html) is the reason I had to create CSS::Nested (that I'm going to release in a few... but still very early stage of development) (github.com/FCO/CSS-Nested) 22:34
librasteve i am very interested in this topic ... i look forward to learning a lot in coming days! 22:38
22:38 Pe_Elle left 22:40 lizmat left
SmokeMachine currently, if you make your cromponents `does StyledComponent`, add ` class=<.class>` to your outer most element, you can create a method CSS that returns a css string (with no selector), that will be used on your cromponent. if you call `StyledComponent.add-stylesheet-route` inside your route block, it will create a new ` /css` route that will return your page's css 22:46
github.com/FCO/Cromponent/blob/mai...tyled.raku 22:48
github.com/FCO/Cromponent/blob/mai...led.crotmp
github.com/FCO/Cromponent/blob/mai...ox.rakumod
22:53 Pe_Elle joined
SmokeMachine librasteve: ^^ 22:57
23:53 Pe_Elle left 23:56 Pe_Elle joined