2020-03-07 13:16:03 +00:00
|
|
|
module main
|
|
|
|
|
2020-04-26 11:49:31 +00:00
|
|
|
import vweb
|
2021-04-20 14:16:35 +00:00
|
|
|
// import vweb.assets
|
2020-04-26 11:49:31 +00:00
|
|
|
import time
|
2020-03-07 13:16:03 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
port = 8081
|
|
|
|
)
|
|
|
|
|
2020-06-07 08:02:35 +00:00
|
|
|
struct App {
|
2020-12-31 16:22:47 +00:00
|
|
|
vweb.Context
|
2020-03-07 13:16:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2021-05-11 08:10:35 +00:00
|
|
|
vweb.run(&App{}, port)
|
2020-03-07 13:16:03 +00:00
|
|
|
}
|
|
|
|
|
2021-04-26 16:38:13 +00:00
|
|
|
pub fn (mut app App) init_server() {
|
2020-03-07 13:16:03 +00:00
|
|
|
// Arbitary mime type.
|
2021-05-22 04:02:21 +00:00
|
|
|
app.serve_static('/favicon.ico', 'favicon.ico')
|
2020-03-07 13:16:03 +00:00
|
|
|
// Automatically make available known static mime types found in given directory.
|
2021-01-30 13:20:13 +00:00
|
|
|
// app.handle_static('assets')
|
2020-03-07 13:16:03 +00:00
|
|
|
// This would make available all known static mime types from current
|
|
|
|
// directory and below.
|
2021-02-21 18:01:29 +00:00
|
|
|
app.handle_static('.', false)
|
2020-03-07 13:16:03 +00:00
|
|
|
}
|
|
|
|
|
2021-01-07 19:46:23 +00:00
|
|
|
pub fn (mut app App) index() vweb.Result {
|
2020-03-07 13:16:03 +00:00
|
|
|
// We can dynamically specify which assets are to be used in template.
|
2021-01-30 13:20:13 +00:00
|
|
|
// mut am := assets.new_manager()
|
|
|
|
// am.add_css('assets/index.css')
|
|
|
|
// css := am.include_css(false)
|
2020-03-07 13:16:03 +00:00
|
|
|
title := 'VWeb Assets Example'
|
|
|
|
subtitle := 'VWeb can serve static assets too!'
|
|
|
|
message := 'It also has an Assets Manager that allows dynamically specifying which CSS and JS files to be used.'
|
2021-01-07 19:46:23 +00:00
|
|
|
return $vweb.html()
|
2020-03-07 13:16:03 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 16:22:47 +00:00
|
|
|
fn (mut app App) text() vweb.Result {
|
2021-01-01 13:36:07 +00:00
|
|
|
return app.Context.text('Hello, world from vweb!')
|
2020-03-07 13:16:03 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 16:22:47 +00:00
|
|
|
fn (mut app App) time() vweb.Result {
|
2021-01-01 13:36:07 +00:00
|
|
|
return app.Context.text(time.now().format())
|
2020-03-07 13:16:03 +00:00
|
|
|
}
|