2019-07-30 13:46:10 +00:00
|
|
|
module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
|
|
|
|
const (
|
2019-10-24 16:44:49 +00:00
|
|
|
port = 8082
|
2019-07-30 13:46:10 +00:00
|
|
|
)
|
|
|
|
|
2020-01-12 18:59:57 +00:00
|
|
|
pub struct App {
|
2019-07-30 13:46:10 +00:00
|
|
|
pub mut:
|
2019-09-05 12:46:24 +00:00
|
|
|
vweb vweb.Context // TODO embed
|
2019-09-20 00:01:52 +00:00
|
|
|
cnt int
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2020-03-06 19:22:58 +00:00
|
|
|
println('vweb example')
|
2019-12-20 00:02:16 +00:00
|
|
|
vweb.run<App>(port)
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (app mut App) init() {
|
2019-07-31 04:10:53 +00:00
|
|
|
app.vweb.handle_static('.')
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 14:32:54 +00:00
|
|
|
pub fn (app mut App) json_endpoint() {
|
2019-09-05 12:46:24 +00:00
|
|
|
app.vweb.json('{"a": 3}')
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (app mut App) index() {
|
2019-12-06 21:44:22 +00:00
|
|
|
app.cnt++
|
2019-09-20 00:01:52 +00:00
|
|
|
$vweb.html()
|
2019-08-10 21:02:48 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 00:02:16 +00:00
|
|
|
pub fn (app mut App) reset() {
|
|
|
|
}
|
|
|
|
|
2019-12-09 20:32:21 +00:00
|
|
|
pub fn (app mut App) text() {
|
2019-11-26 06:34:04 +00:00
|
|
|
app.vweb.text('Hello world')
|
2019-07-30 13:46:10 +00:00
|
|
|
}
|
2019-08-05 08:42:58 +00:00
|
|
|
|
2019-09-05 12:46:24 +00:00
|
|
|
pub fn (app mut App) cookie() {
|
|
|
|
app.vweb.set_cookie('cookie', 'test')
|
2020-02-05 09:53:16 +00:00
|
|
|
app.vweb.text('Headers: $app.vweb.headers')
|
2019-09-20 00:01:52 +00:00
|
|
|
}
|