You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I spent hours trying to get 'hasMany' relationships working as intended. Since this repo is no longer maintained I figured there is no point submitting a pull request. I'll share it here.
In "/addons/serializers/firestore.js"
I modified the following function, after which hasMany relationships are working great.
import DS from 'ember-data';
// @ts-ignore
import { singularize } from 'ember-inflector';
// TODO aside from .data(), key vs. id, metadata, and subcollection this is basicly realtime-database, should refactor to reuse
export default class FirestoreSerializer extends DS.JSONSerializer {
normalizeSingleResponse(store, primaryModelClass, payload, _id, _requestType) {
if (!payload.exists) {
throw new DS.NotFoundError();
}
const meta = extractMeta(payload);
let normalized = normalize(store, primaryModelClass, payload);
this.applyTransforms(primaryModelClass, normalized.data.attributes);
return Object.assign(Object.assign({}, normalized), { meta });
}
normalizeArrayResponse(store, primaryModelClass, payload, _id, _requestType) {
const normalizedPayload = payload.docs.map(snapshot => {
let normalized = normalize(store, primaryModelClass, snapshot);
this.applyTransforms(primaryModelClass, normalized.data.attributes);
return normalized;
});
const included = new Array().concat(...normalizedPayload.map(({ included }) => included));
const meta = extractMeta(payload);
const data = normalizedPayload.map(({ data }) => data);
return { data, included, meta };
}
normalizeCreateRecordResponse(_store, _primaryModelClass, payload, id, _requestType) {
return { data: { id: id || payload.doc.id, attributes: payload.data } };
}
serializeHasMany(snapshot, json, relationship) {
const arrayOfSnapshotModels = snapshot.hasMany(relationship.name);
if(arrayOfSnapshotModels) {
const modelIds = arrayOfSnapshotModels.map( snap => snap.id );
json[relationship.name] = modelIds;
}
return json;
}
}
function isQuerySnapshot(arg) {
return arg.query !== undefined;
}
const extractMeta = (snapshot) => {
if (isQuerySnapshot(snapshot)) {
const query = snapshot.query;
return Object.assign(Object.assign({}, snapshot.metadata), { query });
}
else {
return snapshot.metadata;
}
};
const normalizeRelationships = (store, modelClass, attributes) => {
const relationships = {};
const included = [];
modelClass.eachRelationship((key, relationship) => {
const attribute = attributes.data()[key];
const payload = attributes._document && attributes._document._included && attributes._document._included[key];
if (payload) {
const modelName = singularize(relationship.key);
const modelClass = store.modelFor(modelName);
const serializer = store.serializerFor(modelName);
const { data } = relationship.kind === 'belongsTo' ? serializer.normalizeSingleResponse(store, modelClass, payload) : serializer.normalizeArrayResponse(store, modelClass, payload);
if (Array.isArray(data)) {
data.forEach((r) => {
return included.splice(-1, 0, Object.assign({ links: { self: 'emberfire' } }, r));
});
}
else {
included.splice(-1, 0, Object.assign({ links: { self: 'emberfire' } }, data));
}
}
relationships[key] = normalizeRealtionship(relationship)(store, attribute, relationship, included);
}, null);
return { relationships, included };
};
const normalizeRealtionship = (relationship) => {
if (relationship.kind == 'belongsTo') {
return normalizeBelongsTo;
}
else if (relationship.options.subcollection) {
return normalizeHasMany; // this is handled in the adapter
}
else if (relationship.options.embedded) {
return normalizeEmbedded;
}
else {
return normalizeHasMany;
}
};
const normalizeBelongsTo = (_store, id, relationship, _included) => {
if (id) {
return { data: { id, type: relationship.type } };
}
else {
return {};
}
};
const normalizeEmbedded = (store, attribute, relationship, included) => {
if (attribute) {
Object.keys(attribute).forEach(id => {
const val = attribute[id];
const snapshot = { id, data: () => val };
const model = store.modelFor(relationship.type);
const { data, included: includes } = normalize(store, model, snapshot);
included.push(data);
includes.forEach((record) => included.push(record));
});
const data = included
.filter(record => record.type == relationship.type)
.map(record => ({ id: record.id, type: record.type }));
if (data.length > 0) {
return { links: { related: 'emberfire' }, data };
}
else {
return { links: { related: 'emberfire' } };
}
}
else {
return {};
}
};
const normalizeHasMany = (_store, _payload, relationship, included) => {
/*
// debugging data
console.log("normalizeHasMany ");
console.log("normalizeHasMany relationship.parentModelName ", relationship.parentModelName, " _type: " , relationship._type);
console.log("normalizeHasMany Payload ", _payload);
console.log("normalizeHasMany included ", included);
*/
const relevantIncluded = included.filter(i => i.type == singularize(relationship.key));
let data = relevantIncluded.map((r) => ({ type: r.type, id: r.id }));
//this is the additional trick to get has many working
if(_payload) {
data = _payload.map( (key) => (
{id: key, type: (relationship._type) === '' ? relationship.meta.type : relationship._type}
) )
}
if (data.length > 0) {
return { data };
}
else {
return { links: { related: 'emberfire' } };
}
};
export const normalize = (store, modelClass, snapshot) => {
const id = snapshot.id;
const type = modelClass.modelName;
const _ref = snapshot.ref;
const attributes = Object.assign(Object.assign({}, snapshot.data()), { _ref });
const { relationships, included } = normalizeRelationships(store, modelClass, snapshot);
const data = { id, type, attributes, relationships };
return { data, included };
};
The text was updated successfully, but these errors were encountered:
Hey Everyone,
I spent hours trying to get 'hasMany' relationships working as intended. Since this repo is no longer maintained I figured there is no point submitting a pull request. I'll share it here.
In "/addons/serializers/firestore.js"
I modified the following function, after which hasMany relationships are working great.
The text was updated successfully, but these errors were encountered: