Skip to content
Snippets Groups Projects
Commit 60a29fa2 authored by David Noah Donges's avatar David Noah Donges
Browse files

Merge branch '77-inmemorydb-id-generation' into 'master'

Resolve "InMemoryDB ID-Generation"

Closes #77

See merge request swtp-block-ws17/arsnova-angular-frontend!43
parents b8d75088 eccdfd23
No related merge requests found
import { InMemoryDbService } from 'angular-in-memory-web-api';
export class InMemoryDataService implements InMemoryDbService {
/**
* Gets called by the in memory db for generating ids for newly inserted entities.
* As the default genId function is only capable of generating numeric ids but we're
* using string ids (as per api) we're overwriting it relying on a stupid fallback for strings:
* append a '1' to the id of the last element
* @param {any[]} collection
* @param {string} collectionName
* @returns {any}
*/
genId(collection: any[], collectionName: string): any {
// Get the id of the last element
const lastElementId = collection[collection.length - 1].id;
if (isNaN(lastElementId)) {
// Append '1' to the string id when the id is not convertable to a number
return lastElementId + '1';
}
// Convert id to a number, add 1 and convert back to string
return (+lastElementId + 1).toString();
}
createDb() {
const rooms = [
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment