1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/vweb/tmpl/tmpl.v

89 lines
2.0 KiB
V
Raw Normal View History

2019-07-30 23:33:20 +03:00
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module tmpl
2019-07-29 19:21:36 +03:00
import os
import strings
2019-07-29 19:21:36 +03:00
const (
2019-12-20 00:29:37 +03:00
STR_START = "sb.write(\'"
STR_END = "\' ) "
2019-07-29 19:21:36 +03:00
)
pub fn compile_template(path string) string {
2019-12-20 00:29:37 +03:00
// lines := os.read_lines(path)
mut html := os.read_file(path)or{
2019-07-29 19:21:36 +03:00
panic('html failed')
}
2019-12-20 00:29:37 +03:00
mut header := ''
if os.exists('header.html') {
2019-12-20 00:29:37 +03:00
h := os.read_file('header.html')or{
2020-01-05 18:29:33 +03:00
panic('reading file header.html failed')
}
2019-12-20 00:29:37 +03:00
header = h.replace("\'", '"')
html = header + html
}
lines := html.split_into_lines()
mut s := strings.new_builder(1000)
2019-12-20 00:29:37 +03:00
// base := path.all_after('/').replace('.html', '')
s.writeln("
2019-07-29 19:21:36 +03:00
mut sb := strings.new_builder(${lines.len * 30})
header := \' \' // TODO remove
_ = header
//footer := \'footer\'
2019-12-20 00:29:37 +03:00
")
2019-07-29 19:21:36 +03:00
s.writeln(STR_START)
2019-12-20 00:29:37 +03:00
mut in_css := true // false
2019-07-30 23:33:20 +03:00
for _line in lines {
line := _line.trim_space()
2019-07-30 23:33:20 +03:00
if line == '<style>' {
in_css = true
}
2019-07-30 23:33:20 +03:00
else if line == '</style>' {
2019-12-20 00:29:37 +03:00
// in_css = false
}
2019-07-29 19:21:36 +03:00
if line.contains('@if ') {
s.writeln(STR_END)
2019-12-20 00:29:37 +03:00
pos := line.index('@if') or {
continue
}
s.writeln('if ' + line[pos + 4..] + '{')
2019-07-29 19:21:36 +03:00
s.writeln(STR_START)
}
else if line.contains('@end') {
s.writeln(STR_END)
s.writeln('}')
s.writeln(STR_START)
}
else if line.contains('@else') {
s.writeln(STR_END)
s.writeln(' } else { ')
s.writeln(STR_START)
}
else if line.contains('@for') {
s.writeln(STR_END)
2019-12-20 00:29:37 +03:00
pos := line.index('@for') or {
continue
}
s.writeln('for ' + line[pos + 4..] + '{')
2019-07-29 19:21:36 +03:00
s.writeln(STR_START)
}
2019-07-30 23:33:20 +03:00
else if !in_css && line.contains('.') && line.ends_with('{') {
class := line.find_between('.', '{')
s.writeln('<div class="$class">')
}
2019-07-30 23:33:20 +03:00
else if !in_css && line == '}' {
s.writeln('</div>')
}
// HTML, may include `@var`
else {
2019-12-20 00:29:37 +03:00
s.writeln(line.replace('@', '\x24').replace("'", '"'))
2019-07-29 19:21:36 +03:00
}
}
s.writeln(STR_END)
s.writeln('tmpl_res := sb.str() }')
2019-07-29 19:21:36 +03:00
return s.str()
}