Files
accounted/components/ui/support-link.tsx
T
Mattsson 04dbb31d7e Salary module (#245)
* feat: implement salary module with personnummer encryption, salary entries, tax tables, and AGI tracking

- Added personnummer encryption and decryption functions for secure storage.
- Created salary entries handling for journal entries including gross salary, tax withholding, and employer contributions.
- Implemented tax table lookup functionality for calculating tax amounts based on monthly income.
- Developed SQL migration for salary module including tables for payroll configuration, tax rates, employees, salary runs, salary run employees, salary line items, and AGI declarations.
- Established row-level security policies for all new tables to ensure company-scoped access.

* feat: add salary calculation modules for 2026

- Implemented engångsskatt calculation for one-time payments with tax brackets.
- Added löneväxling functionality for salary sacrifice to pension, including employer savings and warnings.
- Created pain.001 generator for salary batch payments in compliance with Swedish banking standards.
- Developed PDF template for payslips, including detailed breakdowns and employer costs.
- Generated seed data for Swedish tax tables for 2026, including SQL insert statements.
- Implemented traktamente calculations for per diem and mileage allowances, adhering to Skatteverket regulations.
- Added seed script for populating tax tables in the database.

* feat: Update meal reduction percentages in traktamente calculation

fix: Remove obsolete seed script for 2026 tax tables

feat: Extend SalaryRunStatus type to include 'corrected' status

feat: Implement KU10 XML generation endpoint for annual employee income statements

feat: Add endpoint for creating corrections to booked salary runs

feat: Implement endpoint for sending payslip PDFs to employees

feat: Create KU10 XML generator for annual reporting

feat: Add salary transaction matcher for auto-linking bank transactions to salary entries

chore: Add database migration for salary correction support

* feat: replace select elements with custom Select component for employment and salary types

* feat: enhance salary calculations with pension entry and avgifter category support
2026-04-15 11:17:39 +02:00

177 lines
4.8 KiB
TypeScript

'use client'
import { useState, useEffect } from 'react'
import { cn } from '@/lib/utils'
import { Mail, Loader2, Send } from 'lucide-react'
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@/components/ui/dialog'
import { Button } from '@/components/ui/button'
import { Textarea } from '@/components/ui/textarea'
import { useToast } from '@/components/ui/use-toast'
interface SupportLinkProps {
variant?: 'inline' | 'muted'
subject?: string
children?: React.ReactNode
className?: string
}
export function SupportLink({
variant = 'inline',
subject,
children,
className,
}: SupportLinkProps) {
const [mounted, setMounted] = useState(false)
const [open, setOpen] = useState(false)
const [message, setMessage] = useState('')
const [isSending, setIsSending] = useState(false)
const [sent, setSent] = useState(false)
const { toast } = useToast()
useEffect(() => {
setMounted(true)
}, [])
async function handleSubmit(e: React.FormEvent) {
e.preventDefault()
if (message.trim().length < 5) return
setIsSending(true)
try {
const res = await fetch('/api/support/contact', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ subject, message: message.trim() }),
})
if (!res.ok) {
const data = await res.json()
throw new Error(data.error || 'Kunde inte skicka meddelandet')
}
setSent(true)
setTimeout(() => {
setOpen(false)
setSent(false)
setMessage('')
}, 2000)
} catch (error) {
toast({
title: 'Kunde inte skicka',
description: error instanceof Error ? error.message : 'Försök igen.',
variant: 'destructive',
})
} finally {
setIsSending(false)
}
}
function handleOpenChange(next: boolean) {
setOpen(next)
if (!next) {
setSent(false)
setMessage('')
}
}
const trigger =
variant === 'muted' ? (
<button
type="button"
className={cn(
'inline-flex items-center gap-1.5 text-xs text-muted-foreground hover:text-foreground transition-colors cursor-pointer',
className
)}
>
<Mail className="h-3 w-3" />
{children ?? 'Kontakta support'}
</button>
) : (
<button
type="button"
className={cn(
'inline-flex items-center gap-1 text-primary hover:text-primary/80 underline-offset-4 hover:underline transition-colors text-sm cursor-pointer',
className
)}
>
{children ?? 'Kontakta support'}
</button>
)
if (!mounted) {
return trigger
}
return (
<Dialog open={open} onOpenChange={handleOpenChange}>
<DialogTrigger asChild>{trigger}</DialogTrigger>
<DialogContent className="sm:max-w-md">
<DialogHeader>
<DialogTitle>Kontakta support</DialogTitle>
<DialogDescription>
Beskriv ditt ärende återkommer vi snart vi kan.
</DialogDescription>
</DialogHeader>
{sent ? (
<div className="flex flex-col items-center py-6 gap-3">
<div className="p-3 rounded-full bg-success/10">
<Send className="h-6 w-6 text-success" />
</div>
<p className="text-sm font-medium">Tack! Vi har mottagit ditt meddelande.</p>
</div>
) : (
<form onSubmit={handleSubmit}>
<Textarea
value={message}
onChange={(e) => setMessage(e.target.value)}
placeholder="Beskriv vad du behöver hjälp med..."
className="min-h-[120px] resize-none"
maxLength={5000}
disabled={isSending}
autoFocus
/>
<p className="text-xs text-muted-foreground mt-1.5">
{message.length}/5000 tecken
</p>
<DialogFooter className="mt-4">
<Button
type="button"
variant="ghost"
onClick={() => setOpen(false)}
disabled={isSending}
>
Avbryt
</Button>
<Button
type="submit"
disabled={isSending || message.trim().length < 5}
>
{isSending ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Skickar...
</>
) : (
<>
<Send className="mr-2 h-4 w-4" />
Skicka
</>
)}
</Button>
</DialogFooter>
</form>
)}
</DialogContent>
</Dialog>
)
}