25 lines
612 B
JavaScript
25 lines
612 B
JavaScript
|
import Serializer from './application';
|
||
|
import { PRIMARY_KEY, SLUG_KEY } from 'consul-ui/models/partition';
|
||
|
|
||
|
export default class PartitionSerializer extends Serializer {
|
||
|
primaryKey = PRIMARY_KEY;
|
||
|
slugKey = SLUG_KEY;
|
||
|
|
||
|
respondForQuery(respond, query, data, modelClass) {
|
||
|
return super.respondForQuery(
|
||
|
cb =>
|
||
|
respond((headers, body) => {
|
||
|
return cb(
|
||
|
headers,
|
||
|
body.Partitions.map(item => {
|
||
|
item.Partition = item.Name;
|
||
|
item.Namespace = '';
|
||
|
return item;
|
||
|
})
|
||
|
);
|
||
|
}),
|
||
|
query
|
||
|
);
|
||
|
}
|
||
|
}
|