Tom Butcher 8c4911809c
All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good
Enhance Date Filtering and Input Components with New Date Utilities and UI Improvements
- Added new date utility functions for better handling of date ranges, including start and end of month, week, and year.
- Updated FilterInput component to support date unit highlighting and improved tokenization for date expressions.
- Enhanced QuickPropertyFilters to include additional date filter options such as 'Today', 'Yesterday', and relative date ranges.
- Improved CSS styles for date input elements to enhance visibility and user interaction.
- Refactored AuditLogs component to integrate new ObjectTableViewButton for better data representation.
2026-09-04 00:36:18 +01:00

132 lines
2.7 KiB
JavaScript

import AuditLogIcon from '../../components/Icons/AuditLogIcon'
import ListIcon from '../../components/Icons/ListIcon'
export const AuditLog = {
name: 'auditLog',
label: 'Audit Log',
labelPlural: 'Audit Logs',
url: '/dashboard/management/auditlogs',
prefix: 'ADL',
icon: AuditLogIcon,
actions: [
{
name: 'list',
type: 'page',
pageName: 'list',
label: 'List',
icon: ListIcon
}
],
columns: [
'_reference',
'owner',
'parent',
'operation',
'changes',
'createdAt'
],
filters: [
'parent',
'owner',
'operation',
'createdAt',
'updatedAt',
'_reference'
],
sorters: ['createdAt', 'updatedAt', 'owner', 'parent', 'operation'],
properties: [
{
name: '_id',
label: 'ID',
type: 'id',
objectType: 'auditLog',
columnFixed: 'left',
value: null,
showCopy: true,
columnWidth: 140
},
{
name: 'createdAt',
label: 'Created At',
type: 'dateTime',
value: null,
readOnly: true,
columnWidth: 175
},
{
name: '_reference',
label: 'Reference',
type: 'reference',
columnFixed: 'left',
objectType: 'auditLog',
showCopy: true,
readOnly: true,
columnWidth: 180
},
{
name: 'updatedAt',
label: 'Updated At',
type: 'dateTime',
value: null,
readOnly: true,
columnWidth: 175
},
{
name: 'owner',
label: 'Owner',
type: 'object',
objectType: (objectData) => {
return objectData.ownerType
},
columnFixed: 'left',
value: null,
showCopy: true,
showHyperlink: true,
columnWidth: 200
},
{
name: 'parent',
label: 'Parent',
type: 'object',
objectType: (objectData) => {
return objectData.parentType
},
value: null,
showCopy: true,
showHyperlink: true,
columnWidth: 200
},
{
name: 'operation',
label: 'Operation',
columnWidth: 120,
type: 'operation'
},
{
name: 'changes',
label: 'Changes',
columnWidth: 500,
type: (objectData) => {
return objectData.operation === 'subscribe' ||
objectData.operation === 'unsubscribe'
? 'text'
: 'propertyChanges'
},
objectType: (objectData) => {
return objectData.parentType
},
value: (objectData) => {
if (objectData.operation === 'subscribe') {
return 'User subscribed to object.'
}
if (objectData.operation === 'unsubscribe') {
return 'User unsubscribed from object.'
}
return objectData.changes
},
showCopy: true
}
]
}