SlideShare una empresa de Scribd logo
1 de 32
Descargar para leer sin conexión
Quick functional UI sketches
with Lua templates and mermaid.js
Alexander Gladysh
@agladysh
FOSDEM 2017
Talk plan
1. The Case
2. Approaches to design
3. Enter the Mermaid
4. Lugram Templates
5. Conclusion
6. Questions?
2 / 32
About me
• Programmer background
• Mainly doing management work now
• In löve with Lua since 2005
3 / 32
The Case
• A huge professional enterprise application
• being converted from 20-year-old windows app
• to a modern SPA web-app.
4 / 32
The product is huge
Sufficient expertise can only be found on a team level:
• Technology experts don’t have product-level vision
• PO and PM don’t draw professionally (and lack deep insight on
the tech)
• Designer does not have the professional-level technology
expertise
5 / 32
The UI design and development process
For each ”screen” in the application:
• Concept
• Functional sketches and (sometimes) interactive studies
• Design sketches
• Layout implementation
• Business logic implementation
6 / 32
A functional sketch
What is on the screen, how does it WORK?
7 / 32
A design sketch
How does it LOOK?
8 / 32
Goals
• I need a diagram of the flow between app screens
• I need functional sketches of the screens themselves
• Basically it doesn’t matter how I make them as long as they are
easy to make and change and there are some facilities for reuse.
9 / 32
What tools to use?
• Photoshop (Krita, Gimp...)
• InkScape
• Google Documents
• Visio
• Balsamiq
• Sketch
• ...
I’m a programmer, I’m better with structured text than with images.
I work fastest with the keyboard, not having to touch the mouse.
10 / 32
Enter the Mermaid
http://bit.ly/mermaid-editor
11 / 32
Screen Flow Diagram
graph TD
list[List of Flights]
new[New Flight Form]
list-->|Create|new
12 / 32
Screen Flow Diagram (II)
graph TD
list[List of Flights]
new[New Flight Form]
list-->|"
<button>Create</button>
"|new
13 / 32
Screen Prototypes
graph TD
list["<b>List of Flights</b>
<hr>
<i>(No flights)</i><hr>
<button>Create</button>"]
new["New Flight Form"]
list-->|"
<button>Create</button>
"|new
14 / 32
Screen Prototypes (II)
graph TD
list["List of Flights"]
new["<b>New Flight</b><hr>
<input value='SU' size='2'>-
<input value='2618' size='4'><br>
<input value='MOW' size='5'> to
<input value='BRU' size='5'><br>
<input value='20:50' size='5'> to
<input value='22:30' size='5'>
<hr><button>Create</button>
<u>Cancel</u>"]
new-->|"
<button>Create</button>"|list
new-->|"<u>Cancel</u>"|list
15 / 32
Basic Documentation Structure
16 / 32
It is hard to do HTML without templates: list
<b>${title List of Flights}</b><hr>
<i>(No flights)</i><hr>
${link new <button>Create</button>}
17 / 32
It is hard to do HTML without templates: new
<b>${title New Flight}</b><hr>
<input value='SU' size='2'>-
<input value='2618' size='4'><br>
<input value='MOW' size='4'> to
<input value='BRU' size='4'><br>
<input value='20:50' size='5'> to
<input value='10:30' size='5'><hr>
${link list <button>Create</button>}
${link list <button>Cancel</button>}
18 / 32
Basic helpers
${title New Flight}
$title <text:*>
${link list <button>Create</button>}
$link <screen:word> <body:*>
19 / 32
Basic helpers: pass-through definitions
${define title {{'*', 'text'}} [[${text}]]}
${title New Flight} --> New Flight
${define link
{{'word', 'target'}, {'*', 'body'}}
[[${body}]]}
${link list <button>Create</button>}
--> <button>Create</button>
$define <symbol:word> <arguments:table> <code:*>
20 / 32
define
define = function(context, str)
local symbol, str = eat.word(str)
local args, str = eat.table(str)
local code, str = eat['*'](str)
args, code = lua_value(args), lua_value(code)
if type(code) == 'string' then code =
function(ctx) return ctx:replace(code) end
end
context._ROOT[symbol] = function(parent, str)
local ctx = { }
for i = 1, #args do
ctx[args[i][1]], str = eat[args[i][2]](str)
end
return code(parent:push(ctx))
end
end
21 / 32
helpers: definitions using Lua
${define title {{'*', 'text'}} function(context)
local text = context:replace(context.text)
context._ROOT._SCREENS[text] = text
return text
end}
${define link {{'word', 'target'}, {'*', 'body'}}
function(context)
local target = context:replace(context.text)
context._ROOT._LINKS[target] = context._MODULE
context:include(target) -- Ignoring result
return context:replace(context.body)
end}
22 / 32
include
include = function(context, template)
return context:push(
{ _MODULE = template }
):replace(
assert(io.open(filename)):read("*a")
)
end
23 / 32
Diagram styles
Depending on how you define $title and $link, you get several kinds
of diagram from the same set of templates:
• Outline diagram (titles and arrows only, ”screen flow”)
• Closeup diagram (screen content and flow from this screen to
others)
• Printable diagram (screen content only)
24 / 32
More Useful helpers
${define # {{'*', 'comment'}} [[]]}
${define --[HR]------...--------- {} [[<hr>]]}
${define expr {{'*', 'code'}} function(context)
return assert(loadstring('return '
.. context:replace(context.code)))()
end}
25 / 32
with helper
${define with {{'table', 'more_context'},
{'*', 'body'}} function(context)
return context:replace(
context:push(context.more_context),
context.body)
end}
${define form {} [[
${when editable
<input value='MOW'> to <input value='BRU'>}
${unless editable MOW to BRU}
]]}
${with {editable = true} ${form}}
26 / 32
with helper (II)
${define histogram {{'word', 'a'},
{'word', 'b'}, {'word', 'c'}} [[
${with { w = '${expr ${a} + ${b} + {c}}' }
<div style='width:${w}px' class='red'>
<div style='width:${a}px'
class='green'>${a}</div>
<div style='width:${b}px'
class='blue'>${b}</div>
</div>
}]]}
${histogram 1 2 3}
27 / 32
Some statistics
• Two days to implement core, about 250 LOC.
• After six months of non-fulltime usage, core grew to about 330
LOC, mostly additional diagnostics.
• About 60 sketches finalized (5KLOC of templates), more to
come.
28 / 32
Was it worth it?
Yes.
• I’ve got a low-cost lightweight flexible framework for design that
does not chafe in wrong places.
• Its output, while not ideal, is reasonably understandable by all
members of the team.
• Also: much fun implementing yet another template engine.
29 / 32
Why not X?
• The cost is so low, the adaptation of existing tool to my
requirements (or just learning the proper ropes) would probably
cost about the same.
• But if you know a good candidate that fits here, please do chime
in.
30 / 32
Problems
• Error diagnostics and debugging for templates. Almost
non-existent. Lots of low-hanging fruit there.
• Debugging of the HTML output render. IE6-hard, rather difficult
to improve. Keep HTML simple.
• Expressive power of the language could be improved. No need
so far.
31 / 32
Questions?
@agladysh
agladysh@gmail.com
https://github.com/tais-aero/lugram

Más contenido relacionado

Destacado

Rekapitulasi 2010 06 28
Rekapitulasi 2010 06 28Rekapitulasi 2010 06 28
Rekapitulasi 2010 06 28
bramanian
 
UK RepositoryNet+: Developing New Services Over the UK Repository Network
UK RepositoryNet+: Developing New Services Over the UK Repository NetworkUK RepositoryNet+: Developing New Services Over the UK Repository Network
UK RepositoryNet+: Developing New Services Over the UK Repository Network
euroCRIS - Current Research Information Systems
 
Presentation 2
Presentation 2Presentation 2
Presentation 2
cocolatto
 
Notice of race copa españa 29er ingles
Notice of race copa españa 29er   inglesNotice of race copa españa 29er   ingles
Notice of race copa españa 29er ingles
29ervelacnsa
 
Children
ChildrenChildren
Children
alex
 
Interactive module
Interactive moduleInteractive module
Interactive module
walkupdw
 
Revista Veja - 02mar2011
Revista Veja - 02mar2011Revista Veja - 02mar2011
Revista Veja - 02mar2011
Danilo Simões
 
Apunte dntg estructurayclasificaciondeestilos1
Apunte dntg estructurayclasificaciondeestilos1Apunte dntg estructurayclasificaciondeestilos1
Apunte dntg estructurayclasificaciondeestilos1
Gabriel Soria
 

Destacado (16)

Hiring UX/UI designers
Hiring UX/UI designersHiring UX/UI designers
Hiring UX/UI designers
 
Rekapitulasi 2010 06 28
Rekapitulasi 2010 06 28Rekapitulasi 2010 06 28
Rekapitulasi 2010 06 28
 
ICT-Markt wird dynamisch
ICT-Markt wird dynamischICT-Markt wird dynamisch
ICT-Markt wird dynamisch
 
UK RepositoryNet+: Developing New Services Over the UK Repository Network
UK RepositoryNet+: Developing New Services Over the UK Repository NetworkUK RepositoryNet+: Developing New Services Over the UK Repository Network
UK RepositoryNet+: Developing New Services Over the UK Repository Network
 
ABA Information- and Communications Technologies in Austria
ABA Information- and Communications Technologies in AustriaABA Information- and Communications Technologies in Austria
ABA Information- and Communications Technologies in Austria
 
Who Are You? Branding Your Nonprofit
Who Are You? Branding Your NonprofitWho Are You? Branding Your Nonprofit
Who Are You? Branding Your Nonprofit
 
Presentation 2
Presentation 2Presentation 2
Presentation 2
 
Presentazione Istituto Pantheon
Presentazione Istituto PantheonPresentazione Istituto Pantheon
Presentazione Istituto Pantheon
 
Work with PFB Worldwide
Work with PFB Worldwide Work with PFB Worldwide
Work with PFB Worldwide
 
Symfony2 practice
Symfony2 practiceSymfony2 practice
Symfony2 practice
 
Notice of race copa españa 29er ingles
Notice of race copa españa 29er   inglesNotice of race copa españa 29er   ingles
Notice of race copa españa 29er ingles
 
Children
ChildrenChildren
Children
 
Interactive module
Interactive moduleInteractive module
Interactive module
 
Revista Veja - 02mar2011
Revista Veja - 02mar2011Revista Veja - 02mar2011
Revista Veja - 02mar2011
 
LSS Connection 2010 Issue 2
LSS Connection 2010 Issue 2LSS Connection 2010 Issue 2
LSS Connection 2010 Issue 2
 
Apunte dntg estructurayclasificaciondeestilos1
Apunte dntg estructurayclasificaciondeestilos1Apunte dntg estructurayclasificaciondeestilos1
Apunte dntg estructurayclasificaciondeestilos1
 

Similar a Quick functional UI sketches with Lua templates and mermaid.js

WordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin PagesWordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin Pages
Brandon Dove
 

Similar a Quick functional UI sketches with Lua templates and mermaid.js (20)

Durgesh
DurgeshDurgesh
Durgesh
 
project report in C++ programming and SQL
project report in C++ programming and SQLproject report in C++ programming and SQL
project report in C++ programming and SQL
 
Python Project on Computer Shop
Python Project on Computer ShopPython Project on Computer Shop
Python Project on Computer Shop
 
The Future of Sharding
The Future of ShardingThe Future of Sharding
The Future of Sharding
 
How to create an Angular builder
How to create an Angular builderHow to create an Angular builder
How to create an Angular builder
 
inventory mangement project.pdf
inventory mangement project.pdfinventory mangement project.pdf
inventory mangement project.pdf
 
Vb.net Experiment with Example
Vb.net Experiment with ExampleVb.net Experiment with Example
Vb.net Experiment with Example
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
 
Data Binding and Forms in Angular 2
Data Binding and Forms in Angular 2Data Binding and Forms in Angular 2
Data Binding and Forms in Angular 2
 
Angular server side rendering - Strategies & Technics
Angular server side rendering - Strategies & Technics Angular server side rendering - Strategies & Technics
Angular server side rendering - Strategies & Technics
 
Movie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationMovie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project Presentation
 
AngularJS in large applications - AE NV
AngularJS in large applications - AE NVAngularJS in large applications - AE NV
AngularJS in large applications - AE NV
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
 
Time card system
Time card systemTime card system
Time card system
 
Vuejs
VuejsVuejs
Vuejs
 
CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35
 
WordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin PagesWordPress Admin UI - Future Proofing Your Admin Pages
WordPress Admin UI - Future Proofing Your Admin Pages
 
SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needs
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needs
 

Último

CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
anilsa9823
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
anilsa9823
 

Último (20)

CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 

Quick functional UI sketches with Lua templates and mermaid.js

  • 1. Quick functional UI sketches with Lua templates and mermaid.js Alexander Gladysh @agladysh FOSDEM 2017
  • 2. Talk plan 1. The Case 2. Approaches to design 3. Enter the Mermaid 4. Lugram Templates 5. Conclusion 6. Questions? 2 / 32
  • 3. About me • Programmer background • Mainly doing management work now • In löve with Lua since 2005 3 / 32
  • 4. The Case • A huge professional enterprise application • being converted from 20-year-old windows app • to a modern SPA web-app. 4 / 32
  • 5. The product is huge Sufficient expertise can only be found on a team level: • Technology experts don’t have product-level vision • PO and PM don’t draw professionally (and lack deep insight on the tech) • Designer does not have the professional-level technology expertise 5 / 32
  • 6. The UI design and development process For each ”screen” in the application: • Concept • Functional sketches and (sometimes) interactive studies • Design sketches • Layout implementation • Business logic implementation 6 / 32
  • 7. A functional sketch What is on the screen, how does it WORK? 7 / 32
  • 8. A design sketch How does it LOOK? 8 / 32
  • 9. Goals • I need a diagram of the flow between app screens • I need functional sketches of the screens themselves • Basically it doesn’t matter how I make them as long as they are easy to make and change and there are some facilities for reuse. 9 / 32
  • 10. What tools to use? • Photoshop (Krita, Gimp...) • InkScape • Google Documents • Visio • Balsamiq • Sketch • ... I’m a programmer, I’m better with structured text than with images. I work fastest with the keyboard, not having to touch the mouse. 10 / 32
  • 12. Screen Flow Diagram graph TD list[List of Flights] new[New Flight Form] list-->|Create|new 12 / 32
  • 13. Screen Flow Diagram (II) graph TD list[List of Flights] new[New Flight Form] list-->|" <button>Create</button> "|new 13 / 32
  • 14. Screen Prototypes graph TD list["<b>List of Flights</b> <hr> <i>(No flights)</i><hr> <button>Create</button>"] new["New Flight Form"] list-->|" <button>Create</button> "|new 14 / 32
  • 15. Screen Prototypes (II) graph TD list["List of Flights"] new["<b>New Flight</b><hr> <input value='SU' size='2'>- <input value='2618' size='4'><br> <input value='MOW' size='5'> to <input value='BRU' size='5'><br> <input value='20:50' size='5'> to <input value='22:30' size='5'> <hr><button>Create</button> <u>Cancel</u>"] new-->|" <button>Create</button>"|list new-->|"<u>Cancel</u>"|list 15 / 32
  • 17. It is hard to do HTML without templates: list <b>${title List of Flights}</b><hr> <i>(No flights)</i><hr> ${link new <button>Create</button>} 17 / 32
  • 18. It is hard to do HTML without templates: new <b>${title New Flight}</b><hr> <input value='SU' size='2'>- <input value='2618' size='4'><br> <input value='MOW' size='4'> to <input value='BRU' size='4'><br> <input value='20:50' size='5'> to <input value='10:30' size='5'><hr> ${link list <button>Create</button>} ${link list <button>Cancel</button>} 18 / 32
  • 19. Basic helpers ${title New Flight} $title <text:*> ${link list <button>Create</button>} $link <screen:word> <body:*> 19 / 32
  • 20. Basic helpers: pass-through definitions ${define title {{'*', 'text'}} [[${text}]]} ${title New Flight} --> New Flight ${define link {{'word', 'target'}, {'*', 'body'}} [[${body}]]} ${link list <button>Create</button>} --> <button>Create</button> $define <symbol:word> <arguments:table> <code:*> 20 / 32
  • 21. define define = function(context, str) local symbol, str = eat.word(str) local args, str = eat.table(str) local code, str = eat['*'](str) args, code = lua_value(args), lua_value(code) if type(code) == 'string' then code = function(ctx) return ctx:replace(code) end end context._ROOT[symbol] = function(parent, str) local ctx = { } for i = 1, #args do ctx[args[i][1]], str = eat[args[i][2]](str) end return code(parent:push(ctx)) end end 21 / 32
  • 22. helpers: definitions using Lua ${define title {{'*', 'text'}} function(context) local text = context:replace(context.text) context._ROOT._SCREENS[text] = text return text end} ${define link {{'word', 'target'}, {'*', 'body'}} function(context) local target = context:replace(context.text) context._ROOT._LINKS[target] = context._MODULE context:include(target) -- Ignoring result return context:replace(context.body) end} 22 / 32
  • 23. include include = function(context, template) return context:push( { _MODULE = template } ):replace( assert(io.open(filename)):read("*a") ) end 23 / 32
  • 24. Diagram styles Depending on how you define $title and $link, you get several kinds of diagram from the same set of templates: • Outline diagram (titles and arrows only, ”screen flow”) • Closeup diagram (screen content and flow from this screen to others) • Printable diagram (screen content only) 24 / 32
  • 25. More Useful helpers ${define # {{'*', 'comment'}} [[]]} ${define --[HR]------...--------- {} [[<hr>]]} ${define expr {{'*', 'code'}} function(context) return assert(loadstring('return ' .. context:replace(context.code)))() end} 25 / 32
  • 26. with helper ${define with {{'table', 'more_context'}, {'*', 'body'}} function(context) return context:replace( context:push(context.more_context), context.body) end} ${define form {} [[ ${when editable <input value='MOW'> to <input value='BRU'>} ${unless editable MOW to BRU} ]]} ${with {editable = true} ${form}} 26 / 32
  • 27. with helper (II) ${define histogram {{'word', 'a'}, {'word', 'b'}, {'word', 'c'}} [[ ${with { w = '${expr ${a} + ${b} + {c}}' } <div style='width:${w}px' class='red'> <div style='width:${a}px' class='green'>${a}</div> <div style='width:${b}px' class='blue'>${b}</div> </div> }]]} ${histogram 1 2 3} 27 / 32
  • 28. Some statistics • Two days to implement core, about 250 LOC. • After six months of non-fulltime usage, core grew to about 330 LOC, mostly additional diagnostics. • About 60 sketches finalized (5KLOC of templates), more to come. 28 / 32
  • 29. Was it worth it? Yes. • I’ve got a low-cost lightweight flexible framework for design that does not chafe in wrong places. • Its output, while not ideal, is reasonably understandable by all members of the team. • Also: much fun implementing yet another template engine. 29 / 32
  • 30. Why not X? • The cost is so low, the adaptation of existing tool to my requirements (or just learning the proper ropes) would probably cost about the same. • But if you know a good candidate that fits here, please do chime in. 30 / 32
  • 31. Problems • Error diagnostics and debugging for templates. Almost non-existent. Lots of low-hanging fruit there. • Debugging of the HTML output render. IE6-hard, rather difficult to improve. Keep HTML simple. • Expressive power of the language could be improved. No need so far. 31 / 32