ui: Slight refactor 'name deciding' for `request` > `rpc` (#6850)

During the refactor of the data layer we had a method that you can use
to do a request/response call i.e. adapter.request > serializer.respond

We weren't sure what to name this but eventually wanted it to live on
the HTTPAdapter itself (see removed comments in the changeset)

We've decided `rpc` is a good name and we've moved this to where we want
it. We've deprecated the old `request` method name but not removed it as
yet. There's also opportunity now to reduce the 'read/write' functions
further as they essentially do the same thing. Again we've left this for
the moment, but we are hoping to get the code for our custom Adapter down
to less than 100 LoC.
pull/7857/head
John Cowen 5 years ago committed by John Cowen
parent 770fa971d4
commit 7bca634087

@ -17,45 +17,9 @@ export default Adapter.extend({
[DATACENTER_QUERY_PARAM]: dc, [DATACENTER_QUERY_PARAM]: dc,
}; };
}, },
// TODO: kinda protected for the moment // TODO: Deprecated, remove `request` usage from everywhere and replace with
// decide where this should go either read/write from http // `HTTPAdapter.rpc`
// should somehow use this or vice versa
request: function(req, resp, obj, modelName) { request: function(req, resp, obj, modelName) {
const client = this.client; return this.rpc(...arguments);
const store = this.store;
const adapter = this;
let unserialized, serialized;
const serializer = store.serializerFor(modelName);
// workable way to decide whether this is a snapshot
// essentially 'is attributable'.
// Snapshot is private so we can't do instanceof here
// and using obj.constructor.name gets changed/minified
// during compilation so you can't rely on it
// checking for `attributes` being a function is more
// reliable as that is the thing we need to call
if (typeof obj.attributes === 'function') {
unserialized = obj.attributes();
serialized = serializer.serialize(obj, {});
} else {
unserialized = obj;
serialized = unserialized;
}
return client
.request(function(request) {
return req(adapter, request, serialized, unserialized);
})
.catch(function(e) {
return adapter.error(e);
})
.then(function(respond) {
// TODO: When HTTPAdapter:responder changes, this will also need to change
return resp(serializer, respond, serialized, unserialized);
});
// TODO: Potentially add specific serializer errors here
// .catch(function(e) {
// return Promise.reject(e);
// });
}, },
}); });

@ -1,3 +1,4 @@
import { inject as service } from '@ember/service';
import Adapter from 'ember-data/adapter'; import Adapter from 'ember-data/adapter';
import AdapterError from '@ember-data/adapter/error'; import AdapterError from '@ember-data/adapter/error';
import { import {
@ -10,46 +11,75 @@ import {
ConflictError, ConflictError,
InvalidError, InvalidError,
} from 'ember-data/adapters/errors'; } from 'ember-data/adapters/errors';
// TODO: This is a little skeleton cb function
// is to be replaced soon with something slightly more involved // TODO These are now exactly the same, apart from the fact that one uses
const responder = function(response) { // `serialized, unserialized` and the other just `query`
return response; // they could actually be one function now, but would be nice to think about
}; // the naming of things (serialized vs query etc)
const read = function(adapter, serializer, client, type, query) { const read = function(adapter, modelName, type, query = {}) {
return client return adapter.rpc(
.request(function(request) { function(adapter, request, query) {
return adapter[`requestFor${type}`](request, query); return adapter[`requestFor${type}`](request, query);
}) },
.catch(function(e) { function(serializer, respond, query) {
return adapter.error(e); return serializer[`respondFor${type}`](respond, query);
}) },
.then(function(response) { query,
return serializer[`respondFor${type}`](responder(response), query); modelName
}); );
// TODO: Potentially add specific serializer errors here
// .catch(function(e) {
// return Promise.reject(e);
// });
}; };
const write = function(adapter, serializer, client, type, snapshot) { const write = function(adapter, modelName, type, snapshot) {
const unserialized = snapshot.attributes(); return adapter.rpc(
const serialized = serializer.serialize(snapshot, {}); function(adapter, request, serialized, unserialized) {
return client
.request(function(request) {
return adapter[`requestFor${type}`](request, serialized, unserialized); return adapter[`requestFor${type}`](request, serialized, unserialized);
}) },
.catch(function(e) { function(serializer, respond, serialized, unserialized) {
return adapter.error(e); return serializer[`respondFor${type}`](respond, serialized, unserialized);
}) },
.then(function(response) { snapshot,
return serializer[`respondFor${type}`](responder(response), serialized, unserialized); modelName
}); );
// TODO: Potentially add specific serializer errors here
// .catch(function(e) {
// return Promise.reject(e);
// });
}; };
export default Adapter.extend({ export default Adapter.extend({
client: service('client/http'),
rpc: function(req, resp, obj, modelName) {
const client = this.client;
const store = this.store;
const adapter = this;
let unserialized, serialized;
const serializer = store.serializerFor(modelName);
// workable way to decide whether this is a snapshot
// essentially 'is attributable'.
// Snapshot is private so we can't do instanceof here
// and using obj.constructor.name gets changed/minified
// during compilation so you can't rely on it
// checking for `attributes` being a function is more
// reliable as that is the thing we need to call
if (typeof obj.attributes === 'function') {
unserialized = obj.attributes();
serialized = serializer.serialize(obj, {});
} else {
unserialized = obj;
serialized = unserialized;
}
return client
.request(function(request) {
return req(adapter, request, serialized, unserialized);
})
.catch(function(e) {
return adapter.error(e);
})
.then(function(respond) {
// TODO: When HTTPAdapter:responder changes, this will also need to change
return resp(serializer, respond, serialized, unserialized);
});
// TODO: Potentially add specific serializer errors here
// .catch(function(e) {
// return Promise.reject(e);
// });
},
error: function(err) { error: function(err) {
const errors = [ const errors = [
{ {
@ -97,21 +127,21 @@ export default Adapter.extend({
throw error; throw error;
}, },
query: function(store, type, query) { query: function(store, type, query) {
return read(this, store.serializerFor(type.modelName), this.client, 'Query', query); return read(this, type.modelName, 'Query', query);
}, },
queryRecord: function(store, type, query) { queryRecord: function(store, type, query) {
return read(this, store.serializerFor(type.modelName), this.client, 'QueryRecord', query); return read(this, type.modelName, 'QueryRecord', query);
}, },
findAll: function(store, type) { findAll: function(store, type) {
return read(this, store.serializerFor(type.modelName), this.client, 'FindAll'); return read(this, type.modelName, 'FindAll');
}, },
createRecord: function(store, type, snapshot) { createRecord: function(store, type, snapshot) {
return write(this, store.serializerFor(type.modelName), this.client, 'CreateRecord', snapshot); return write(this, type.modelName, 'CreateRecord', snapshot);
}, },
updateRecord: function(store, type, snapshot) { updateRecord: function(store, type, snapshot) {
return write(this, store.serializerFor(type.modelName), this.client, 'UpdateRecord', snapshot); return write(this, type.modelName, 'UpdateRecord', snapshot);
}, },
deleteRecord: function(store, type, snapshot) { deleteRecord: function(store, type, snapshot) {
return write(this, store.serializerFor(type.modelName), this.client, 'DeleteRecord', snapshot); return write(this, type.modelName, 'DeleteRecord', snapshot);
}, },
}); });

Loading…
Cancel
Save