Improve invites list with click-to-copy inputs (#10259)
parent
9e33174604
commit
6e3936aa6f
@ -1,21 +1,29 @@ |
||||
%tr |
||||
%td |
||||
.input-copy |
||||
.input-copy__wrapper |
||||
%input{ type: :text, maxlength: '999', spellcheck: 'false', readonly: 'true', value: public_invite_url(invite_code: invite.code) } |
||||
%button{ type: :button }= t('generic.copy') |
||||
|
||||
%td |
||||
.name-tag |
||||
= image_tag invite.user.account.avatar.url(:original), alt: '', width: 16, height: 16, class: 'avatar' |
||||
%span.username= invite.user.account.username |
||||
%td |
||||
= invite.uses |
||||
= " / #{invite.max_uses}" unless invite.max_uses.nil? |
||||
%td |
||||
- if invite.expired? |
||||
|
||||
- if invite.expired? |
||||
%td{ colspan: 2 } |
||||
= t('invites.expired') |
||||
- else |
||||
- else |
||||
%td |
||||
= fa_icon 'user fw' |
||||
= invite.uses |
||||
= " / #{invite.max_uses}" unless invite.max_uses.nil? |
||||
%td |
||||
- if invite.expires_at.nil? |
||||
∞ |
||||
- else |
||||
%time.formatted{ datetime: invite.expires_at.iso8601, title: l(invite.expires_at) } |
||||
= l invite.expires_at |
||||
%td= table_link_to 'link', public_invite_url(invite_code: invite.code), public_invite_url(invite_code: invite.code) |
||||
%td |
||||
- if !invite.expired? && policy(invite).destroy? |
||||
= table_link_to 'times', t('invites.delete'), admin_invite_path(invite), method: :delete |
||||
|
@ -1,17 +1,25 @@ |
||||
%tr |
||||
%td |
||||
= invite.uses |
||||
= " / #{invite.max_uses}" unless invite.max_uses.nil? |
||||
%td |
||||
- if invite.expired? |
||||
.input-copy |
||||
.input-copy__wrapper |
||||
%input{ type: :text, maxlength: '999', spellcheck: 'false', readonly: 'true', value: public_invite_url(invite_code: invite.code) } |
||||
%button{ type: :button }= t('generic.copy') |
||||
|
||||
- if invite.expired? |
||||
%td{ colspan: 2 } |
||||
= t('invites.expired') |
||||
- else |
||||
- else |
||||
%td |
||||
= fa_icon 'user fw' |
||||
= invite.uses |
||||
= " / #{invite.max_uses}" unless invite.max_uses.nil? |
||||
%td |
||||
- if invite.expires_at.nil? |
||||
∞ |
||||
- else |
||||
%time.formatted{ datetime: invite.expires_at.iso8601, title: l(invite.expires_at) } |
||||
= l invite.expires_at |
||||
%td= table_link_to 'link', public_invite_url(invite_code: invite.code), public_invite_url(invite_code: invite.code) |
||||
|
||||
%td |
||||
- if !invite.expired? && policy(invite).destroy? |
||||
= table_link_to 'times', t('invites.delete'), invite_path(invite), method: :delete |
||||
|
Loading…
Reference in new issue