import * as plugins from '../../../plugins.js'; import { customElement, DeesElement, property, html, cssManager, css, state, type TemplateResult, } from '@design.estate/dees-element'; import * as sharedStyles from '../sharedstyles.js'; import * as accountStateModule from '../../../states/accountstate.js'; import { IdpState } from '../../../states/idp.state.js'; declare global { interface HTMLElementTagNameMap { 'lele-accountview-baseview': BaseView; } } interface ISessionDisplay { id: string; deviceId: string; deviceName: string; browser: string; os: string; ip: string; lastActive: number; createdAt: number; isCurrent: boolean; } interface IActivityDisplay { id: string; data: plugins.idpInterfaces.data.IActivityLog['data']; } @customElement('lele-accountview-baseview') export class BaseView extends DeesElement { @state() accessor loading: boolean = true; @state() accessor sessions: ISessionDisplay[] = []; @state() accessor activities: IActivityDisplay[] = []; @state() accessor user: plugins.idpInterfaces.data.IUser | null = null; @state() accessor organizations: plugins.idpInterfaces.data.IOrganization[] = []; @state() accessor roles: plugins.idpInterfaces.data.IRole[] = []; public static styles = [ cssManager.defaultStyles, sharedStyles.accountDesignTokens, sharedStyles.viewBaseStyles, css` .container { max-width: 1000px; margin: 0 auto; padding: 32px 24px; } .header { margin-bottom: 32px; } h1 { font-size: 32px; font-weight: 600; margin: 0; letter-spacing: -0.02em; } .subtitle { color: #71717a; margin-top: 8px; font-size: 14px; } .dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; } @media (max-width: 768px) { .dashboard-grid { grid-template-columns: 1fr; } } .card { background: #18181b; border: 1px solid #27272a; border-radius: 12px; overflow: hidden; } .card.full-width { grid-column: 1 / -1; } .card-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid #27272a; } .card-title { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px; } .card-title dees-icon { opacity: 0.7; } .card-body { padding: 16px 20px; } .card-body.no-padding { padding: 0; } /* Profile Card */ .profile-info { display: flex; align-items: center; gap: 16px; } .avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #8b5cf6); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 600; color: white; flex-shrink: 0; } .profile-details { flex: 1; min-width: 0; } .profile-name { font-size: 18px; font-weight: 600; margin-bottom: 4px; } .profile-email { font-size: 14px; color: #71717a; word-break: break-all; } /* Organizations */ .org-list { display: flex; flex-direction: column; } .org-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #27272a; cursor: pointer; transition: background 0.15s ease; } .org-item:last-child { border-bottom: none; } .org-item:hover { background: #27272a; } .org-icon { width: 40px; height: 40px; border-radius: 10px; background: #27272a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .org-icon dees-icon { opacity: 0.7; } .org-info { flex: 1; min-width: 0; } .org-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; } .org-role { font-size: 12px; color: #71717a; } .role-badge { padding: 4px 10px; border-radius: 9999px; font-size: 11px; font-weight: 500; background: rgba(59, 130, 246, 0.1); color: #3b82f6; } .role-badge.admin { background: rgba(245, 158, 11, 0.1); color: #f59e0b; } .role-badge.owner { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; } /* Sessions */ .session-list { display: flex; flex-direction: column; } .session-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #27272a; overflow: hidden; transition: all 0.3s ease-out; opacity: 1; max-height: 100px; } .session-item.removing { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; margin: 0; border-bottom-color: transparent; } .session-item:last-child { border-bottom: none; } .session-icon { width: 40px; height: 40px; border-radius: 10px; background: #27272a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .session-icon dees-icon { opacity: 0.7; } .session-icon.current { background: rgba(34, 197, 94, 0.1); } .session-icon.current dees-icon { color: #22c55e; opacity: 1; } .session-info { flex: 1; min-width: 0; } .session-device { font-size: 14px; font-weight: 500; margin-bottom: 2px; display: flex; align-items: center; gap: 8px; } .current-badge { padding: 2px 8px; border-radius: 9999px; font-size: 10px; font-weight: 500; background: rgba(34, 197, 94, 0.1); color: #22c55e; } .session-details { font-size: 12px; color: #71717a; } .session-actions { flex-shrink: 0; } .revoke-btn { padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 500; border: 1px solid #27272a; background: transparent; color: #fafafa; cursor: pointer; transition: all 0.15s ease; } .revoke-btn:hover { background: rgba(239, 68, 68, 0.1); border-color: #ef4444; color: #ef4444; } /* Activity */ .activity-list { display: flex; flex-direction: column; } .activity-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #27272a; } .activity-item:last-child { border-bottom: none; } .activity-icon { width: 32px; height: 32px; border-radius: 8px; background: #27272a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .activity-icon dees-icon { font-size: 14px; opacity: 0.7; } .activity-icon.login { background: rgba(34, 197, 94, 0.1); } .activity-icon.login dees-icon { color: #22c55e; opacity: 1; } .activity-icon.logout { background: rgba(239, 68, 68, 0.1); } .activity-icon.logout dees-icon { color: #ef4444; opacity: 1; } .activity-info { flex: 1; min-width: 0; } .activity-description { font-size: 14px; margin-bottom: 2px; } .activity-time { font-size: 12px; color: #71717a; } /* Empty states */ .empty-state { text-align: center; padding: 32px 20px; color: #71717a; } .empty-state dees-icon { font-size: 32px; opacity: 0.5; margin-bottom: 12px; } .empty-state p { margin: 0; font-size: 14px; } /* Loading state */ .loading { display: flex; align-items: center; justify-content: center; padding: 48px; color: #71717a; } /* Create org button */ .create-org-btn { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 500; border: 1px solid #27272a; background: transparent; color: #fafafa; cursor: pointer; transition: all 0.15s ease; } .create-org-btn:hover { background: #27272a; } .create-org-btn dees-icon { font-size: 14px; } `, ]; public render(): TemplateResult { if (this.loading) { return html`
Manage your profile, organizations, and security settings
You're not a member of any organizations yet.
No active sessions found.
No recent activity.