mirror of
https://github.com/status-im/consul.git
synced 2025-02-08 03:43:34 +00:00
5d1ce1e120
* Add uri identifiers to all data source things and make them the same 1. Add uri identitifer to data-source service 2. Make <EventSource /> and <DataSource /> as close as possible 3. Add extra `.closed` method to get a list of inactive/closed/closing data-sources from elsewhere * Make the connections cleanup the least worst connection when required * Pass the uri/request id through all the things * Better user erroring * Make event sources close on error * Allow <DataLoader /> data slot to be configurable * Allow the <DataWriter /> removed state to be configurable * Don't error if meta is undefined * Stitch together all the repositories into the data-source/sink * Use data.source over repositories * Add missing <EventSource /> components * Fix up the views/templates * Disable all the old route based blocking query things * We still need the repo for the mixin for the moment * Don't default to default, default != ''
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import Route from '@ember/routing/route';
|
|
import { inject as service } from '@ember/service';
|
|
import { hash } from 'rsvp';
|
|
|
|
export default Route.extend({
|
|
data: service('data-source/service'),
|
|
queryParams: {
|
|
search: {
|
|
as: 'filter',
|
|
replace: true,
|
|
},
|
|
// temporary support of old style status
|
|
status: {
|
|
as: 'status',
|
|
},
|
|
},
|
|
model: function(params) {
|
|
let terms = params.s || '';
|
|
// we check for the old style `status` variable here
|
|
// and convert it to the new style filter=status:critical
|
|
let status = params.status;
|
|
if (status) {
|
|
status = `status:${status}`;
|
|
if (terms.indexOf(status) === -1) {
|
|
terms = terms
|
|
.split('\n')
|
|
.concat(status)
|
|
.join('\n')
|
|
.trim();
|
|
}
|
|
}
|
|
const nspace = this.modelFor('nspace').nspace.substr(1);
|
|
const dc = this.modelFor('dc').dc.Name;
|
|
return hash({
|
|
nspace: nspace,
|
|
dc: dc,
|
|
terms: terms !== '' ? terms.split('\n') : [],
|
|
items: this.data.source(uri => uri`/${nspace}/${dc}/services`),
|
|
});
|
|
},
|
|
setupController: function(controller, model) {
|
|
controller.setProperties(model);
|
|
},
|
|
});
|