mirror of
https://github.com/status-im/consul.git
synced 2025-02-08 11:54:12 +00:00
We use a `<DataSource @src={{url}} />` component throughout our UI for when we want to load data from within our components. The URL specified as the `@src` is used to map/lookup what is used in to retrieve data, for example we mostly use our repository methods wrapped with our Promise backed `EventSource` implementation, but DataSource URLs can also be mapped to EventTarget backed `EventSource`s and native `EventSource`s or `WebSockets` if we ever need to use those (for example these are options for potential streaming support with the Consul backend). The URL to function/method mapping previous to this PR used a very naive humongous `switch` statement which was a temporary 'this is fine for the moment' solution, although we'd always wanted to replace with something more manageable. Here we add `wayfarer` as a dependency - a very small (1kb), very fast, radix trie based router, and use that to perform the URL to function/method mapping. This essentially turns every `DataSource` into a very small SPA - change its URL and the view of data changes. When the data itself changes, either the yielded view of data changes or the `onchange` event is fired with the changed data, making the externally sourced view of data completely reactive. ```javascript // use the new decorator a service somewhere to annotate/decorate // a method with the URL that can be used to access this method @dataSource('/:ns/:dc/services') async findAllByDatacenter(params) { // get the data } // can use with JS in a route somewhere async model() { return this.data.source(uri => uri`/${nspace}/${dc}/services`) } ``` ```hbs {{!-- or just straight in a template using the component --}} <DataSource @src="/default/dc1/services" @onchange="" /> ``` This also uses a new `container` Service to automatically execute/import certain services yet not execute them. This new service also provides a lookup that supports both standard ember DI lookup plus Class based lookup or these specific services. Lastly we also provide another debug function called DataSourceRoutes() which can be called from console which gives you a list of URLs and their mappings.
70 lines
2.3 KiB
JavaScript
70 lines
2.3 KiB
JavaScript
import RepositoryService from 'consul-ui/services/repository';
|
|
import { inject as service } from '@ember/service';
|
|
import { set } from '@ember/object';
|
|
import { ACCESS_READ } from 'consul-ui/abilities/base';
|
|
import dataSource from 'consul-ui/decorators/data-source';
|
|
|
|
const modelName = 'service-instance';
|
|
export default class ServiceInstanceService extends RepositoryService {
|
|
@service('repository/proxy') proxyRepo;
|
|
getModelName() {
|
|
return modelName;
|
|
}
|
|
|
|
@dataSource('/:ns/:dc/service-instances/for-service/:id')
|
|
async findByService(params, configuration = {}) {
|
|
if (typeof configuration.cursor !== 'undefined') {
|
|
params.index = configuration.cursor;
|
|
params.uri = configuration.uri;
|
|
}
|
|
return this.authorizeBySlug(
|
|
async () => this.store.query(this.getModelName(), params),
|
|
ACCESS_READ,
|
|
params
|
|
);
|
|
}
|
|
|
|
@dataSource('/:ns/:dc/service-instance/:serviceId/:node/:id')
|
|
async findBySlug(params, configuration = {}) {
|
|
if (typeof configuration.cursor !== 'undefined') {
|
|
params.index = configuration.cursor;
|
|
params.uri = configuration.uri;
|
|
}
|
|
return this.authorizeBySlug(
|
|
async () => this.store.queryRecord(this.getModelName(), params),
|
|
ACCESS_READ,
|
|
params
|
|
);
|
|
}
|
|
|
|
@dataSource('/:ns/:dc/proxy-service-instance/:serviceId/:node/:id')
|
|
async findProxyBySlug(params, configuration = {}) {
|
|
const instance = await this.findBySlug(...arguments);
|
|
let proxy = this.store.peekRecord('proxy', instance.uid);
|
|
// Currently, we call the proxy endpoint before this endpoint
|
|
// therefore proxy is never undefined. If we ever call this endpoint
|
|
// first we'll need to do something like the following
|
|
// if(typeof proxy === 'undefined') {
|
|
// await proxyRepo.create({})
|
|
// }
|
|
|
|
// Copy over all the things to the ProxyServiceInstance
|
|
['Service', 'Node', 'meta'].forEach(prop => {
|
|
set(proxy, prop, instance[prop]);
|
|
});
|
|
['Checks'].forEach(prop => {
|
|
// completely wipe out any previous values so we don't accumulate things
|
|
// eternally
|
|
proxy.set(prop, []);
|
|
instance[prop].forEach(item => {
|
|
if (typeof item !== 'undefined') {
|
|
proxy[prop].addFragment(item.copy());
|
|
}
|
|
});
|
|
});
|
|
// delete the ServiceInstance record as we now have a ProxyServiceInstance
|
|
instance.unloadRecord();
|
|
return proxy;
|
|
}
|
|
}
|