Kino.Layout.grid hangs forever when you pass another Kino to it
clayscode opened this issue · 1 comments
clayscode commented
Kino.Layout.grid(
Kino.Control.form([
a: Kino.Input.textarea("hello"),
b: Kino.Input.select("Test", [{"a","a"},{"b","b"},{"c","c"}])
],
submit: "Submit")
)
Simple example, but if you run the above code, the cell will just keep evaluating for infinity. Probably using this wrong, but was just looking for a way to control my form's layout.
Mix install:
Mix.install([
{:kino, "~> 0.12.3"},
])
If you just use input elements without the form, it evaluates fine:
Kino.Layout.grid(
[Kino.Input.textarea("test"), Kino.Control.button("Submit")]
)
Edit: Ah, forget all of that, this works fine:
Kino.Layout.grid(
[
Kino.Control.form([
a: Kino.Input.textarea("hello"),
b: Kino.Input.select("Test", [{"a","a"},{"b","b"},{"c","c"}])
],
submit: "Submit")
]
)
I just forgot to call grid with a list. Still, shouldn't the correct behavior be to fail for just passing other Kino's?
For instance:
Kino.Layout.grid(
Kino.Input.textarea("Hello")
)
josevalim commented
Yes, we should raise. The big question is how to do this: should we force it to be a list? Or should we continue to allow any enumerable but explicitly forbidden inputs? I am fine with adding a is_list/1
guard.