SlideShare ist ein Scribd-Unternehmen logo
1 von 32
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Andere mochten auch

Hiring UX/UI designers
Hiring UX/UI designersHiring UX/UI designers
Hiring UX/UI designersLeadzpipe
 
Rekapitulasi 2010 06 28
Rekapitulasi 2010 06 28Rekapitulasi 2010 06 28
Rekapitulasi 2010 06 28bramanian
 
ICT-Markt wird dynamisch
ICT-Markt wird dynamischICT-Markt wird dynamisch
ICT-Markt wird dynamischManuela Vrbat
 
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 AustriaABA - Invest in Austria
 
Who Are You? Branding Your Nonprofit
Who Are You? Branding Your NonprofitWho Are You? Branding Your Nonprofit
Who Are You? Branding Your NonprofitGrace Dunlap
 
Presentation 2
Presentation 2Presentation 2
Presentation 2cocolatto
 
Presentazione Istituto Pantheon
Presentazione Istituto PantheonPresentazione Istituto Pantheon
Presentazione Istituto PantheonIstituto Pantheon
 
Work with PFB Worldwide
Work with PFB Worldwide Work with PFB Worldwide
Work with PFB Worldwide Leadzpipe
 
Symfony2 practice
Symfony2 practiceSymfony2 practice
Symfony2 practiceSkorney
 
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 ingles29ervelacnsa
 
Children
ChildrenChildren
Childrenalex
 
Interactive module
Interactive moduleInteractive module
Interactive modulewalkupdw
 
Revista Veja - 02mar2011
Revista Veja - 02mar2011Revista Veja - 02mar2011
Revista Veja - 02mar2011Danilo Simões
 
LSS Connection 2010 Issue 2
LSS Connection 2010 Issue 2LSS Connection 2010 Issue 2
LSS Connection 2010 Issue 2Rebeca Borrero
 
Apunte dntg estructurayclasificaciondeestilos1
Apunte dntg estructurayclasificaciondeestilos1Apunte dntg estructurayclasificaciondeestilos1
Apunte dntg estructurayclasificaciondeestilos1Gabriel Soria
 

Andere mochten auch (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
 

Ähnlich wie Quick functional UI sketches with Lua templates and mermaid.js

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 SQLvikram mahendra
 
Python Project on Computer Shop
Python Project on Computer ShopPython Project on Computer Shop
Python Project on Computer Shopvikram mahendra
 
The Future of Sharding
The Future of ShardingThe Future of Sharding
The Future of ShardingEDB
 
How to create an Angular builder
How to create an Angular builderHow to create an Angular builder
How to create an Angular builderMaurizio Vitale
 
inventory mangement project.pdf
inventory mangement project.pdfinventory mangement project.pdf
inventory mangement project.pdfMeenakshiThakur86
 
Vb.net Experiment with Example
Vb.net Experiment with ExampleVb.net Experiment with Example
Vb.net Experiment with ExampleVivek Kumar Sinha
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)Debashis Rath
 
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 2Manfred Steyer
 
Angular server side rendering - Strategies & Technics
Angular server side rendering - Strategies & Technics Angular server side rendering - Strategies & Technics
Angular server side rendering - Strategies & Technics Eliran Eliassy
 
Movie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationMovie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationAvinandan Ganguly
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)Debashis Rath
 
Time card system
Time card systemTime card system
Time card systemSmit Patel
 
CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35Bilal Ahmed
 
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 PagesBrandon Dove
 
SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++SUPER MARKET COMPUTER SYSTEM IN C++
SUPER MARKET COMPUTER SYSTEM IN C++vikram mahendra
 
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 needsMicrosoft Tech Community
 
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 needsMicrosoft Tech Community
 

Ähnlich wie 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
 

Kürzlich hochgeladen

Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 
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 PrecisionSolGuruz
 
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...ICS
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
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.comFatema Valibhai
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
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
 
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.jsAndolasoft Inc
 

Kürzlich hochgeladen (20)

Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 
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
 
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...
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
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
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
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
 
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 ☂️
 
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
 

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