import { LabelDTO } from './labelData' import { CreateLabelCommand } from './labelCommand'; import { LabelRepository } from '~/domain/models/label/labelRepository' import { LabelItem } from '~/domain/models/label/label' export class LabelApplicationService { constructor( private readonly repository: LabelRepository ) {} public async list(id: string): Promise { const items = await this.repository.list(id) return items.map(item => new LabelDTO(item)) } public async findById(projectId: string, labelId: number): Promise { const item = await this.repository.findById(projectId, labelId) return new LabelDTO(item) } public async create(projectId: string, item: CreateLabelCommand): Promise { // Todo: use auto mapping. const label = new LabelItem() label.text = item.text label.prefixKey = item.prefixKey label.suffixKey = item.suffixKey label.backgroundColor = item.backgroundColor label.textColor = item.textColor const created = await this.repository.create(projectId, label) return new LabelDTO(created) } public async update(projectId: string, item: LabelDTO): Promise { // Todo: use auto mapping. const label = new LabelItem() label.id = item.id label.text = item.text label.prefixKey = item.prefixKey label.suffixKey = item.suffixKey label.backgroundColor = item.backgroundColor label.textColor = item.textColor const updated = await this.repository.update(projectId, label) return new LabelDTO(updated) } public bulkDelete(projectId: string, items: LabelDTO[]): Promise { const ids = items.map(item => item.id) return this.repository.bulkDelete(projectId, ids) } public async export(projectId: string) { const items = await this.repository.list(projectId) const labels = items.map(item => new LabelDTO(item)) const url = window.URL.createObjectURL(new Blob([JSON.stringify(labels, null, 2)])) const link = document.createElement('a') link.href = url link.setAttribute('download', `label_config.json`) document.body.appendChild(link) link.click() } async upload(projectId: string, file: File) { const formData = new FormData() formData.append('file', file) const config = { headers: { 'Content-Type': 'multipart/form-data' } } await this.repository.uploadFile(projectId, formData) } }