table mode!
This commit is contained in:
parent
efee1e267e
commit
b5e1db2b61
2 changed files with 122 additions and 49 deletions
|
@ -40,6 +40,8 @@ services:
|
||||||
# Amazon Smile, set to 'false' to disable www.amazon.com links
|
# Amazon Smile, set to 'false' to disable www.amazon.com links
|
||||||
# turning into smile.amazon.com
|
# turning into smile.amazon.com
|
||||||
SMILE: 'true'
|
SMILE: 'true'
|
||||||
|
# Table mode, set to 'false' to revert to box mode
|
||||||
|
TABLE: 'true'
|
||||||
restart: always
|
restart: always
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,77 @@
|
||||||
extends layout.pug
|
extends layout.pug
|
||||||
|
|
||||||
block content
|
block content
|
||||||
|
if process.env.TABLE !== 'false'
|
||||||
|
table.table.has-mobile-cards
|
||||||
|
thead
|
||||||
|
th Name
|
||||||
|
th Note
|
||||||
|
th Edit Note
|
||||||
|
if req.params.user === req.user._id
|
||||||
|
th Move Up
|
||||||
|
th Move Down
|
||||||
|
th Delete
|
||||||
|
tbody
|
||||||
|
each item, index in wishlist
|
||||||
|
tr
|
||||||
|
if item.url
|
||||||
|
td(data-label='Name')
|
||||||
|
a(
|
||||||
|
href=item.url,
|
||||||
|
rel='noopener noreferrer',
|
||||||
|
target='_blank'
|
||||||
|
)= (item.name ? item.name : item.url)
|
||||||
|
else
|
||||||
|
td(data-label='Name')= item.name
|
||||||
|
td(data-label='Note', style='white-space: pre-wrap;')= item.note
|
||||||
|
td(data-label='Edit Note')
|
||||||
|
form.inline(method='GET', action=`/wishlist/${req.params.user}/note/${item.id}`)
|
||||||
|
input(type='hidden', name='current', value=item.note)
|
||||||
|
.field.inline
|
||||||
|
.control.inline
|
||||||
|
button.button.is-text(
|
||||||
|
type='submit',
|
||||||
|
style='text-decoration: none;'
|
||||||
|
disabled=item.addedBy !== req.user._id
|
||||||
|
)
|
||||||
|
span.icon
|
||||||
|
i.far.fa-edit
|
||||||
|
if req.params.user === req.user._id
|
||||||
|
td(data-label='Move Item Up')
|
||||||
|
form.inline(method='POST', action=`/wishlist/${req.params.user}/move/up/${item.id}`)
|
||||||
|
.field.inline
|
||||||
|
.control.inline
|
||||||
|
button.button.is-text(
|
||||||
|
type='submit',
|
||||||
|
style='text-decoration: none;',
|
||||||
|
disabled=index === firstCanSee
|
||||||
|
)
|
||||||
|
span.icon
|
||||||
|
i.fas.fa-arrow-up
|
||||||
|
td(data-label='Move Item Down')
|
||||||
|
form.inline(method='POST', action=`/wishlist/${req.params.user}/move/down/${item.id}`)
|
||||||
|
.field.inline
|
||||||
|
.control.inline
|
||||||
|
button.button.is-text(
|
||||||
|
type='submit',
|
||||||
|
style='text-decoration: none;',
|
||||||
|
disabled=index === lastCanSee
|
||||||
|
)
|
||||||
|
span.icon
|
||||||
|
i.fas.fa-arrow-down
|
||||||
|
td(data-label='Delete Item')
|
||||||
|
if item.addedBy === req.user._id
|
||||||
|
form.inline(method='POST', action=`/wishlist/${req.params.user}/remove/${item.id}`)
|
||||||
|
.field.inline
|
||||||
|
.control.inline
|
||||||
|
button.button.is-text(
|
||||||
|
type='submit',
|
||||||
|
style='text-decoration: none;'
|
||||||
|
)
|
||||||
|
span.icon
|
||||||
|
i.fas.fa-trash
|
||||||
|
|
||||||
|
else
|
||||||
each item, index in wishlist
|
each item, index in wishlist
|
||||||
if req.user._id === item.addedBy || req.params.user !== req.user._id
|
if req.user._id === item.addedBy || req.params.user !== req.user._id
|
||||||
.box
|
.box
|
||||||
|
|
Loading…
Reference in a new issue