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

169 lines
5.2 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-07-30 23:33:20 +03:00
// 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 (
str_start = "sb.write_string('"
2021-01-13 08:05:27 +03:00
str_end = "' ) "
2019-07-29 19:21:36 +03:00
)
// compile_file compiles the content of a file by the given path as a template
pub fn compile_file(path string, fn_name string) string {
basepath := os.dir(path)
html := os.read_file(path) or { panic('html failed') }
return compile_template(basepath, html, fn_name)
}
2020-06-10 00:20:48 +03:00
enum State {
html
css // <style>
js // <script>
// span // span.{
2020-06-10 00:20:48 +03:00
}
pub fn compile_template(basepath string, html_ string, fn_name string) string {
// lines := os.read_lines(path)
mut html := html_.trim_space()
mut header := ''
mut footer := ''
if os.exists(os.join_path(basepath, 'header.html')) && html.contains('@header') {
h := os.read_file(os.join_path(basepath, 'header.html')) or {
panic('reading file ${os.join_path(basepath, 'header.html')} failed')
}
2021-01-13 08:05:27 +03:00
header = h.trim_space().replace("'", '"')
html = header + html
}
if os.exists(os.join_path(basepath, 'footer.html')) && html.contains('@footer') {
f := os.read_file(os.join_path(basepath, 'footer.html')) or {
panic('reading file ${os.join_path(basepath, 'footer.html')} failed')
}
2021-01-13 08:05:27 +03:00
footer = f.trim_space().replace("'", '"')
html += footer
}
2020-06-11 12:13:36 +03:00
mut lines := html.split_into_lines()
lstartlength := lines.len * 30
mut s := strings.new_builder(1000)
// base := path.all_after_last('/').replace('.html', '')
2019-12-20 00:29:37 +03:00
s.writeln("
2020-06-11 12:13:36 +03:00
import strings
// === vweb html template ===
fn vweb_tmpl_${fn_name}() {
mut sb := strings.new_builder($lstartlength)\n
2020-06-11 12:13:36 +03:00
header := \' \' // TODO remove
_ = header
footer := \' \' // TODO remove
_ = footer
2020-06-11 12:13:36 +03:00
")
s.write_string(tmpl.str_start)
2020-06-10 00:20:48 +03:00
mut state := State.html
2020-06-10 02:43:04 +03:00
mut in_span := false
// for _line in lines {
for i := 0; i < lines.len; i++ {
line := lines[i].trim_space()
2019-07-30 23:33:20 +03:00
if line == '<style>' {
2020-06-10 00:20:48 +03:00
state = .css
2020-06-08 13:44:27 +03:00
} else if line == '</style>' {
2020-06-10 00:20:48 +03:00
state = .html
} else if line == '<script>' {
2020-06-10 00:20:48 +03:00
state = .js
} else if line == '</script>' {
2020-06-10 00:20:48 +03:00
state = .html
}
2021-02-04 19:07:04 +03:00
if line.contains('@include ') {
lines.delete(i)
mut file_name := line.split("'")[1]
mut file_ext := os.file_ext(file_name)
if file_ext == '' {
file_ext = '.html'
}
file_name = file_name.replace(file_ext, '')
// relative path, starting with the current folder
mut templates_folder := os.real_path(basepath)
if file_name.contains('/') && file_name.starts_with('/') {
// an absolute path
templates_folder = ''
}
file_path := os.real_path(os.join_path(templates_folder, '$file_name$file_ext'))
$if trace_tmpl ? {
eprintln('>>> basepath: "$basepath" , fn_name: "$fn_name" , @include line: "$line" , file_name: "$file_name" , file_ext: "$file_ext" , templates_folder: "$templates_folder" , file_path: "$file_path"')
}
2021-02-04 19:07:04 +03:00
file_content := os.read_file(file_path) or {
panic('Vweb: reading file $file_name from path: $file_path failed.')
2020-06-10 19:53:04 +03:00
}
2021-02-04 19:07:04 +03:00
file_splitted := file_content.split_into_lines().reverse()
for f in file_splitted {
lines.insert(i, f)
}
2021-02-04 19:07:04 +03:00
i--
2020-06-11 21:34:59 +03:00
} else if line.contains('@js ') {
pos := line.index('@js') or { continue }
s.write_string('<script src="')
s.write_string(line[pos + 5..line.len - 1])
s.writeln('"></script>')
2020-06-11 21:34:59 +03:00
} else if line.contains('@css ') {
pos := line.index('@css') or { continue }
s.write_string('<link href="')
s.write_string(line[pos + 6..line.len - 1])
s.writeln('" rel="stylesheet" type="text/css">')
2020-06-10 19:53:04 +03:00
} else if line.contains('@if ') {
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_end)
pos := line.index('@if') or { continue }
2019-12-20 00:29:37 +03:00
s.writeln('if ' + line[pos + 4..] + '{')
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_start)
2020-06-08 13:44:27 +03:00
} else if line.contains('@end') {
// Remove new line byte
s.go_back(1)
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_end)
2019-07-29 19:21:36 +03:00
s.writeln('}')
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_start)
2020-06-08 13:44:27 +03:00
} else if line.contains('@else') {
// Remove new line byte
s.go_back(1)
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_end)
2019-07-29 19:21:36 +03:00
s.writeln(' } else { ')
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_start)
2020-06-08 13:44:27 +03:00
} else if line.contains('@for') {
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_end)
pos := line.index('@for') or { continue }
2019-12-20 00:29:37 +03:00
s.writeln('for ' + line[pos + 4..] + '{')
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_start)
2020-06-10 00:20:48 +03:00
} else if state == .html && line.contains('span.') && line.ends_with('{') {
2020-06-08 13:44:27 +03:00
// `span.header {` => `<span class='header'>`
class := line.find_between('span.', '{').trim_space()
s.writeln('<span class="$class">')
in_span = true
2020-06-10 00:20:48 +03:00
} else if state == .html && line.contains('.') && line.ends_with('{') {
// `.header {` => `<div class='header'>`
2020-06-08 13:44:27 +03:00
class := line.find_between('.', '{').trim_space()
s.writeln('<div class="$class">')
2020-06-10 00:20:48 +03:00
} else if state == .html && line.contains('#') && line.ends_with('{') {
2020-06-08 13:44:27 +03:00
// `#header {` => `<div id='header'>`
class := line.find_between('#', '{').trim_space()
s.writeln('<div id="$class">')
2020-06-10 00:20:48 +03:00
} else if state == .html && line == '}' {
2020-06-10 02:43:04 +03:00
if in_span {
2020-06-08 13:44:27 +03:00
s.writeln('</span>')
2020-06-10 02:43:04 +03:00
in_span = false
2020-06-08 13:44:27 +03:00
} else {
s.writeln('</div>')
}
} else {
// HTML, may include `@var`
// escaped by cgen, unless it's a `vweb.RawHtml` string
s.writeln(line.replace('@', '$').replace('$$', '@').replace("'", "\\'"))
2019-07-29 19:21:36 +03:00
}
}
2021-01-25 12:26:20 +03:00
s.writeln(tmpl.str_end)
2020-06-10 13:17:49 +03:00
s.writeln('_tmpl_res_$fn_name := sb.str() ')
s.writeln('}')
2020-06-06 22:36:24 +03:00
s.writeln('// === end of vweb html template ===')
2019-07-29 19:21:36 +03:00
return s.str()
}