mirror of https://github.com/Squidex/squidex.git
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.
64 lines
1.3 KiB
64 lines
1.3 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { Injectable } from '@angular/core';
|
|
|
|
import { LocalStoreService, Version } from '@app/framework';
|
|
|
|
export declare type AutoSaveKey = { schemaId: string, schemaVersion: Version, contentId?: string };
|
|
|
|
@Injectable()
|
|
export class AutoSaveService {
|
|
constructor(
|
|
private readonly localStore: LocalStoreService
|
|
) {
|
|
}
|
|
|
|
public get(key: AutoSaveKey): object | null {
|
|
if (!key) {
|
|
return null;
|
|
}
|
|
|
|
const value = this.localStore.get(getKey(key));
|
|
|
|
if (value) {
|
|
return JSON.parse(value);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public set(key: AutoSaveKey, content: object) {
|
|
if (!key || !content) {
|
|
return;
|
|
}
|
|
|
|
const json = JSON.stringify(content);
|
|
|
|
this.localStore.set(getKey(key), json);
|
|
}
|
|
|
|
public remove(key: AutoSaveKey) {
|
|
if (!key) {
|
|
return;
|
|
}
|
|
|
|
this.localStore.remove(getKey(key));
|
|
}
|
|
}
|
|
|
|
function getKey(key: AutoSaveKey) {
|
|
let { contentId, schemaId, schemaVersion } = key;
|
|
|
|
if (!contentId) {
|
|
contentId = '';
|
|
} else {
|
|
contentId = `.${contentId}`;
|
|
}
|
|
|
|
return `autosave.${schemaId}-${schemaVersion.value}${contentId}`;
|
|
}
|