51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
import { Button, VerticalBox, TextEdit } from "std-widgets.slint";
|
|
import { ChatView } from "chat-view.slint";
|
|
import { ChannelSidebar, ServerSidebar } from "sidebar.slint";
|
|
|
|
export component AppWindow inherits Window {
|
|
title: "ermine";
|
|
|
|
property <bool> sidebar-open: true;
|
|
|
|
HorizontalLayout {
|
|
ServerSidebar {
|
|
open: root.width > 600px;
|
|
server_list: [{ icon: "😳" }, { icon: "😍" }];
|
|
background: yellow;
|
|
}
|
|
|
|
ChannelSidebar {
|
|
open: root.width > 600px ? sidebar-open : false;
|
|
channel_list: [{ title: "Foo" }, { title: "Bar" }];
|
|
background: blue;
|
|
}
|
|
|
|
VerticalLayout {
|
|
|
|
ChatView {
|
|
messages: [
|
|
{ text: "hello", sender: "Bob", time: "10:00" },
|
|
{ text: "hey!", sender: "Joe", time: "10:01" },
|
|
{ text: "i like cats c:", sender: "Bob", time: "10:03" },
|
|
{ text: "me too c:", sender: "Joe", time: "10:08" },
|
|
{
|
|
text: "meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow ",
|
|
sender: "Joe",
|
|
time: "10:08"
|
|
},
|
|
{
|
|
text: "meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow ",
|
|
sender: "Bob",
|
|
time: "10:12"
|
|
},
|
|
];
|
|
}
|
|
|
|
TextEdit {
|
|
height: 64px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|