31 lines
863 B
JavaScript
31 lines
863 B
JavaScript
"use strict";
|
|
|
|
const api = require("../api.js");
|
|
const uri = require("../util/uri.js");
|
|
const AbstractList = require("./abstract_list.js");
|
|
const Snapshot = require("./snapshot.js");
|
|
|
|
class SnapshotList extends AbstractList {
|
|
static search(text, offset, limit) {
|
|
return api
|
|
.get(
|
|
uri.formatApiLink("snapshots", {
|
|
query: text,
|
|
offset: offset,
|
|
limit: limit,
|
|
})
|
|
)
|
|
.then((response) => {
|
|
return Promise.resolve(
|
|
Object.assign({}, response, {
|
|
results: SnapshotList.fromResponse(response.results),
|
|
})
|
|
);
|
|
});
|
|
}
|
|
}
|
|
|
|
SnapshotList._itemClass = Snapshot;
|
|
SnapshotList._itemName = "snapshot";
|
|
|
|
module.exports = SnapshotList;
|