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