@azurapi/azurapi
Version:
Open Source Azur Lane Local Database
116 lines • 4.12 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Ships = void 0;
const api_1 = __importStar(require("./api"));
/**
* Special ships class for extended functionality
*/
class Ships extends api_1.default {
/**
* Constructor
* @param client An AzurAPI instance
*/
constructor(client) {
super(client, [
'names.en',
'names.cn',
'names.jp',
'names.kr',
'names.code',
'id',
]);
}
/**
* Get by id
* @param id String of number
*/
id(id) {
for (let item of this.raw)
if (api_1.normalize(item.id.toUpperCase()) === api_1.normalize(id.toUpperCase()))
return item;
return undefined;
}
/**
* Get ship by name
* @param name Ship name
* @param languages Language to search
*/
name(name, languages = ['en', 'cn', 'jp', 'kr']) {
return this.raw.filter((ship) => languages.some((lang) => ship.names[lang] &&
api_1.normalize(ship.names[lang].toUpperCase()) ===
api_1.normalize(name.toUpperCase())));
}
/**
* Get ship by hull
* @param hull Hull name
*/
hull(hull) {
return this.raw.filter((ship) => (ship.hullType &&
api_1.normalize(ship.hullType.toUpperCase()) ===
api_1.normalize(hull.toUpperCase())) ||
(ship.retrofitHullType &&
api_1.normalize(ship.retrofitHullType.toUpperCase()) ===
api_1.normalize(hull.toUpperCase())));
}
/**
* Get ship by nationality
* @param nationality Nationality name
*/
nationality(nationality) {
let results = [];
nationality =
Object.keys(api_1.NATIONS).find((key) => api_1.NATIONS[key].includes(nationality.toLowerCase())) || nationality;
for (let ship of this.raw)
if (api_1.normalize(ship.nationality.toUpperCase()) ===
api_1.normalize(nationality.toUpperCase()))
results.push(ship);
return results;
}
/**
* Get ship using name in any language or id
* @param query Ship name in any language or ship id
*/
get(query) {
let fuzeResult = this.fuze(query).sort((a, b) => (b.score || 0) - (a.score || 0))[0];
return (this.id(query) ||
this.name(query)[0] ||
(fuzeResult ? fuzeResult.item : undefined));
}
/**
* Get ship using everything
* @param query basically anyting i guess
*/
all(query) {
let results = [];
results.push(this.id(query));
results.push(...this.name(query).filter((i) => i));
results.push(...this.fuze(query).map((i) => i.item));
return results
.filter((value) => value !== null && value !== undefined)
.filter((elem, index, self) => index === self.findIndex((el) => el.id === elem.id));
}
getShipIdByName(name, language = 'en') {
return this.name(name)[0].id;
}
}
exports.Ships = Ships;
//# sourceMappingURL=api_ship.js.map