0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-06-22 20:08:39 +00:00
Files
homebrewery/client/admin/brewUtils/brewCleanup/brewCleanup.jsx
T
Víctor Losada Hernández 1838a57e53 final version
2026-05-29 11:32:09 +02:00

158 lines
3.9 KiB
React

import React, { useState } from 'react';
import request from 'superagent';
import Moment from 'moment';
const BrewCleanup = ({})=>{
const [junkBrewCollection, setJunkBrewCollection] = useState([]);
const [lostBrewCollection, setLostBrewCollection] = useState([]);
const [pending, setPending] = useState(false);
const [error, setError] = useState(null);
const find = async (type)=>{
setPending(true);
if(type === 'junk') try {
const res = await request.get('/admin/cleanupJunk');
setJunkBrewCollection(res.body.brewCollection);
} catch (err) {
setError(err);
} finally {
setPending(false);
}
if(type === 'lost') try {
const res = await request.get('/admin/cleanupLost');
setLostBrewCollection(res.body.brewCollection);
} catch (err) {
setError(err);
} finally {
setPending(false);
}
};
const cleanup = async (type)=>{
setPending(true);
if(type === 'junk') try {
console.log('deleting junk')
const res = await request.post('/admin/cleanupJunk');
} catch (err) {
setError(err);
} finally {
setPending(false);
setJunkBrewCollection([]);
}
if(type === 'lost') try {
const res = await request.post('/admin/cleanupLost');
} catch (err) {
setError(err);
} finally {
setPending(false);
setLostBrewCollection([]);
}
};
const renderBrewList = (type)=>{
const brewList = type === 'lost' ? lostBrewCollection : junkBrewCollection;
if(!brewList || brewList.length === 0) {
console.log(brewList);
return null;
}
return <>
<h2>{`Results - ${brewList.length} brews` }</h2>
<table className='resultsTable'>
<thead>
<tr>
<th>Title</th>
<th>Last Update</th>
<th>Created</th>
<th>Storage</th>
</tr>
</thead>
<tbody>
{brewList
.sort((a, b)=>{ // Sort brews from most recently updated
if(a.updatedAt > b.updatedAt) return -1;
return 1;
})
.map((brew, idx)=>{
return <tr key={idx}>
<td><strong>{brew.title || 'No Title'}</strong></td>
<td style={{ width: '200px' }}>{Moment(brew.updatedAt).fromNow()}</td>
<td>{brew.createdAt ? Moment(brew.createdAt).fromNow() : 'No creation date'}</td>
<td>{brew.googleId ? 'Google' : 'Homebrewery'}</td>
</tr>;
})}
</tbody>
</table>
</>;
};
const renderFound = (type)=>{
if(type === 'junk' && junkBrewCollection.length === 0 || type === 'lost' && lostBrewCollection.length === 0) return <div className='result noBrews'>No Matching Brews found.</div>;
return <div className='result'>
{renderBrewList(type)}
<button onClick={()=>cleanup(type)} className='remove'>
{pending
? <i className='fas fa-spin fa-spinner' />
: <span><i className='fas fa-times' /> Remove</span>
}
</button>
<span>Found {type === 'junk' ? junkBrewCollection.length : lostBrewCollection.length} Brews that could be removed. </span>
</div>;
};
const renderJunkBrewCleanup = ()=>{
return <div className='junk'>
<h3> Junk brews</h3>
<p>Removes very short brews to tidy up the database</p>
<button onClick={()=>find('junk')} className='query'>
{pending
? <i className='fas fa-spin fa-spinner' />
: 'Query Brews'
}
</button>
{renderFound('junk')}
{error && <div className='error noBrews'>{error.toString()}</div>}
</div>;
};
const renderLostBrewCleanup = ()=>{
return <div className='lost'>
<h3> Lost brews</h3>
<p>Removes very short brews to tidy up the database</p>
<button onClick={()=>find('lost')} className='query'>
{pending
? <i className='fas fa-spin fa-spinner' />
: 'Query Brews'
}
</button>
{renderFound('lost')}
{error && <div className='error noBrews'>{error.toString()}</div>}
</div>;
};
return <div className='brewUtil brewCleanup'>
<h2> Brew Cleanup </h2>
{renderJunkBrewCleanup()}
{renderLostBrewCleanup()}
</div>;
};
export default BrewCleanup;