import * as plugins from './00plugins.js'; import { DeesElement, type TemplateResult, property, customElement, html, css, cssManager, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; import { DeesContextmenu } from './dees-contextmenu.js'; import './dees-icon.js'; @customElement('dees-appui-activitylog') export class DeesAppuiActivitylog extends DeesElement { // STATIC public static demo = () => html`
`; // INSTANCE public static styles = [ cssManager.defaultStyles, css` :host { color: ${cssManager.bdTheme('#09090b', '#fafafa')}; position: relative; display: block; width: 100%; max-width: 320px; height: 100%; background: ${cssManager.bdTheme('#fafafa', '#0a0a0a')}; font-family: 'Geist Mono', monospace; border-left: 1px solid ${cssManager.bdTheme('#e5e7eb', '#27272a')}; cursor: default; box-shadow: ${cssManager.bdTheme( '-4px 0 12px rgba(0, 0, 0, 0.02)', '-4px 0 12px rgba(0, 0, 0, 0.2)' )}; } .maincontainer { position: absolute; top: 0px; left: 0px; height: 100%; width: 100%; } .topbar { position: absolute; top: 0px; height: 40px; width: 100%; padding: 0px 16px; background: ${cssManager.bdTheme('#ffffff', '#09090b')}; border-bottom: 1px solid ${cssManager.bdTheme('#e5e7eb', '#27272a')}; display: flex; align-items: center; } .topbar .heading { font-weight: 600; font-size: 14px; font-family: 'Geist Sans', sans-serif; color: ${cssManager.bdTheme('#09090b', '#fafafa')}; } .activityContainer { position: absolute; top: 40px; bottom: 48px; width: 100%; padding: 12px 0px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: ${cssManager.bdTheme('#e5e7eb', '#27272a')} transparent; } .activityContainer::-webkit-scrollbar { width: 6px; } .activityContainer::-webkit-scrollbar-track { background: transparent; } .activityContainer::-webkit-scrollbar-thumb { background: ${cssManager.bdTheme('#e5e7eb', '#27272a')}; border-radius: 3px; } .activityContainer::-webkit-scrollbar-thumb:hover { background: ${cssManager.bdTheme('#d4d4d8', '#3f3f46')}; } .streamingIndicator { font-size: 11px; text-align: center; padding: 16px; color: ${cssManager.bdTheme('#71717a', '#71717a')}; font-family: 'Geist Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; } .streamingIndicator::before { content: ''; width: 6px; height: 6px; background: ${cssManager.bdTheme('#3b82f6', '#3b82f6')}; border-radius: 50%; animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { opacity: 0.4; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } } .streamingIndicator.bottom { padding-top: 8px; padding-bottom: 16px; } .activityentry { min-height: 36px; font-size: 13px; padding: 10px 16px; border-bottom: 1px solid ${cssManager.bdTheme('#f4f4f5', '#18181b')}; transition: all 0.15s ease; display: flex; align-items: center; gap: 8px; line-height: 1.4; animation: fadeIn 0.3s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } } .activityentry:last-of-type { border-bottom: none; } .activityentry:hover { background: ${cssManager.bdTheme('#f4f4f5', '#18181b')}; } .timestamp { color: ${cssManager.bdTheme('#71717a', '#71717a')}; font-weight: 500; font-size: 12px; font-variant-numeric: tabular-nums; flex-shrink: 0; min-width: 45px; } .activity-icon { width: 28px; height: 28px; border-radius: 6px; background: ${cssManager.bdTheme('#f4f4f5', '#18181b')}; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; } .activity-icon.login { background: ${cssManager.bdTheme('rgba(34, 197, 94, 0.1)', 'rgba(34, 197, 94, 0.1)')}; color: ${cssManager.bdTheme('#16a34a', '#22c55e')}; } .activity-icon.logout { background: ${cssManager.bdTheme('rgba(239, 68, 68, 0.1)', 'rgba(239, 68, 68, 0.1)')}; color: ${cssManager.bdTheme('#dc2626', '#ef4444')}; } .activity-icon.view { background: ${cssManager.bdTheme('rgba(59, 130, 246, 0.1)', 'rgba(59, 130, 246, 0.1)')}; color: ${cssManager.bdTheme('#2563eb', '#3b82f6')}; } .activity-icon.create { background: ${cssManager.bdTheme('rgba(168, 85, 247, 0.1)', 'rgba(168, 85, 247, 0.1)')}; color: ${cssManager.bdTheme('#9333ea', '#a855f7')}; } .activity-icon.update { background: ${cssManager.bdTheme('rgba(251, 146, 60, 0.1)', 'rgba(251, 146, 60, 0.1)')}; color: ${cssManager.bdTheme('#ea580c', '#fb923c')}; } .activity-text { flex: 1; color: ${cssManager.bdTheme('#18181b', '#e4e4e7')}; } .activity-user { font-weight: 600; color: ${cssManager.bdTheme('#09090b', '#fafafa')}; } .date-separator { padding: 12px 16px 8px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: ${cssManager.bdTheme('#71717a', '#71717a')}; background: ${cssManager.bdTheme('#f9fafb', '#09090b')}; border-bottom: 1px solid ${cssManager.bdTheme('#f4f4f5', '#18181b')}; position: sticky; top: 0; z-index: 1; } .searchbox { position: absolute; bottom: 0px; width: 100%; height: 48px; background: ${cssManager.bdTheme('#ffffff', '#09090b')}; border-top: 1px solid ${cssManager.bdTheme('#e5e7eb', '#27272a')}; padding: 8px; } .search-wrapper { position: relative; width: 100%; height: 32px; } .search-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: ${cssManager.bdTheme('#71717a', '#71717a')}; font-size: 14px; pointer-events: none; transition: color 0.15s ease; } .searchbox input { color: ${cssManager.bdTheme('#09090b', '#fafafa')}; background: ${cssManager.bdTheme('#f4f4f5', '#18181b')}; width: 100%; height: 100%; border: 1px solid ${cssManager.bdTheme('#e5e7eb', '#27272a')}; border-radius: 6px; padding: 0 12px 0 36px; font-family: 'Geist Sans', sans-serif; font-size: 13px; transition: all 0.15s ease; } .searchbox input::placeholder { color: ${cssManager.bdTheme('#71717a', '#71717a')}; } .searchbox input:focus { outline: none; border-color: ${cssManager.bdTheme('#3b82f6', '#3b82f6')}; box-shadow: 0 0 0 3px ${cssManager.bdTheme('rgba(59, 130, 246, 0.1)', 'rgba(59, 130, 246, 0.1)')}; } .searchbox input:focus ~ .search-icon, .search-wrapper:has(input:focus) .search-icon { color: ${cssManager.bdTheme('#3b82f6', '#3b82f6')}; } .bottomShadow { position: absolute; width: 100%; height: 24px; bottom: 48px; background: ${cssManager.bdTheme( 'linear-gradient(180deg, transparent 0%, #fafafa 100%)', 'linear-gradient(180deg, transparent 0%, #0a0a0a 100%)' )}; pointer-events: none; opacity: 0.8; } .topShadow { position: absolute; width: 100%; height: 24px; top: 40px; background: ${cssManager.bdTheme( 'linear-gradient(0deg, transparent 0%, #fafafa 100%)', 'linear-gradient(0deg, transparent 0%, #0a0a0a 100%)' )}; pointer-events: none; opacity: 0.8; } `, ]; public render(): TemplateResult { return html` ${domtools.elementBasic.styles}
Activity Log
Live Updates
Today
{ DeesContextmenu.openContextMenuWithOptions(eventArg, [ { name: 'Copy activity', action: async () => {}, }, { name: 'View details', action: async () => {}, }, { name: 'Filter by user', action: async () => {}, }, ]); }}> 22:20
Max Mustermann logged out
22:19
Max Mustermann approved a payment
22:18
Max Mustermann archived an invoice
22:17
Max Mustermann logged in
22:16
Max Mustermann logged out
22:15
Max Mustermann changed password
22:14
Max Mustermann added a new user
22:13
Max Mustermann contacted support
Yesterday
18:45
Max Mustermann deleted an invoice
17:30
Max Mustermann logged in
16:15
Max Mustermann logged out
14:20
Max Mustermann viewed reports
13:45
Max Mustermann sent an invoice
13:30
Max Mustermann created a new invoice
Loading History
`; } }