mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
729 B
21 lines
729 B
import { OptionRepository } from '../../domain/models/option/optionRepository'
|
|
import { OptionItem } from '~/domain/models/option/option'
|
|
|
|
export class LocalStorageOptionRepository implements OptionRepository {
|
|
|
|
findById(projectId: string): OptionItem {
|
|
const checkpoint = this.loadCheckpoint()
|
|
return OptionItem.valueOf(checkpoint[projectId] ? checkpoint[projectId] : { page: 1 })
|
|
}
|
|
|
|
save(projectId: string, option: OptionItem): void {
|
|
const checkpoint = this.loadCheckpoint()
|
|
checkpoint[projectId] = option.toObject()
|
|
localStorage.setItem('checkpoint', JSON.stringify(checkpoint))
|
|
}
|
|
|
|
loadCheckpoint() {
|
|
const item = localStorage.getItem('checkpoint') || '{}'
|
|
return JSON.parse(item)
|
|
}
|
|
}
|