Sharkey/src/web/docs/api/mixins.pug

38 lines
948 B
Plaintext
Raw Normal View History

2017-12-14 17:23:45 +02:00
mixin propTable(props)
table.props
thead: tr
2017-12-17 07:35:30 +02:00
th %i18n:docs.api.props.name%
th %i18n:docs.api.props.type%
th %i18n:docs.api.props.optional%
th %i18n:docs.api.props.description%
2017-12-14 17:23:45 +02:00
tbody
each prop in props
tr
td.name= prop.name
td.type
i= prop.type
if prop.kind == 'id'
if prop.entity
| (
2017-12-16 18:41:22 +02:00
a(href=`/${lang}/api/entities/${kebab(prop.entity)}`)= prop.entity
2017-12-14 17:23:45 +02:00
| ID)
else
| (ID)
else if prop.kind == 'entity'
| (
2017-12-16 18:41:22 +02:00
a(href=`/${lang}/api/entities/${kebab(prop.entity)}`)= prop.entity
2017-12-14 17:23:45 +02:00
| )
else if prop.kind == 'object'
if prop.def
| (
a(href=`#${prop.defName}`)= prop.defName
| )
else if prop.kind == 'date'
| (Date)
2017-12-16 21:02:30 +02:00
td.optional
if prop.optional
2017-12-17 07:35:30 +02:00
| %i18n:docs.api.props.yes%
2017-12-16 21:02:30 +02:00
else
2017-12-17 07:35:30 +02:00
| %i18n:docs.api.props.no%
2017-12-14 23:41:57 +02:00
td.desc!= prop.desc[lang] || prop.desc['ja']