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