Allow sorting by Last Scanned

This commit is contained in:
Tanner Collin 2021-11-12 04:16:19 +00:00
parent 66784c457a
commit e511723c07
5 changed files with 60 additions and 39 deletions

View File

@ -59,6 +59,7 @@ class Member(models.Model):
monthly_fees = models.IntegerField(default=55, blank=True, null=True)
is_allowed_entry = models.BooleanField(default=True)
discourse_username = models.CharField(default='', max_length=40, blank=True, null=True)
allow_last_scanned = models.BooleanField(default=True)
history = HistoricalRecords(excluded_fields=['member_forms'])

View File

@ -119,6 +119,12 @@ class SearchViewSet(Base, Retrieve):
elif self.action == 'create' and sort == 'overdue':
queryset = queryset.filter(status='Overdue')
queryset = queryset.order_by('expire_date')
elif self.action == 'create' and sort == 'last_scanned':
if self.request.user.member.allow_last_scanned:
queryset = queryset.filter(allow_last_scanned=True)
queryset = queryset.order_by('-user__cards__last_seen_at')
else:
queryset = []
elif self.action == 'create' and sort == 'best_looking':
queryset = []

View File

@ -264,6 +264,16 @@ export function AccountForm(props) {
{...makeProps('discourse_username')}
/>}
<Form.Field>
<label>Participate in "Last Scanned" member list?</label>
<Checkbox
label='Yes, show me'
name='allow_last_scanned'
onChange={handleCheck}
checked={input.allow_last_scanned}
/>
</Form.Field>
<Form.Input
label='Member Photo'
name='photo'

View File

@ -274,7 +274,7 @@ function App() {
<MemberDetail token={token} user={user} />
</Route>
<Route path='/members'>
<Members token={token} />
<Members token={token} user={user} />
</Route>
{user && isAdmin(user) &&

View File

@ -11,6 +11,7 @@ import AbortController from 'abort-controller';
const memberSorts = {
recently_vetted: 'Recently Vetted',
last_scanned: 'Last Scanned',
newest_active: 'Newest',
//newest_overall: 'Newest Overall',
oldest_active: 'Oldest',
@ -76,7 +77,7 @@ export function Members(props) {
const [response, setResponse] = useState(false);
const [numShow, setNumShow] = useState(numShowCache);
const [controller, setController] = useState(false);
const { token } = props;
const { token, user } = props;
const doSearch = (q) => {
console.log('doing search', q);
@ -153,12 +154,15 @@ export function Members(props) {
{search.length ? 'Search Results' : memberSorts[sort]}
</Header>
{sort === 'best_looking' ?
<center>
<img className='bean' src='/mr-bean.jpg' />
</center>
{sort === 'last_scanned' &&
(user.member.allow_last_scanned ?
<p>Hide yourself from this list on the <Link to='/account'>Account Settings</Link> page.</p>
:
response ?
<p>Participate in this list on the <Link to='/account'>Account Settings</Link> page.</p>
)
}
{response ?
<>
<Item.Group unstackable divided>
{response.results.length ?