weaviate-client
Version:
JS/TS client for Weaviate
56 lines (55 loc) • 2.45 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { CommandBase } from '../validation/commandBase.js';
import { isValidStringProperty } from '../validation/string.js';
import ClassGetter from './classGetter.js';
export default class VectorAdder extends CommandBase {
constructor(client) {
super(client);
this.withClassName = (className) => {
this.className = className;
return this;
};
this.withVectors = (vectors) => {
this.vectors = vectors;
return this;
};
this.validateClassName = () => {
if (!isValidStringProperty(this.className)) {
this.addError('className must be set - set with .withClassName(className)');
}
};
this.validate = () => {
this.validateClassName();
};
this.do = () => {
this.validate();
if (this.errors.length > 0) {
return Promise.reject(new Error('invalid usage: ' + this.errors.join(', ')));
}
return new ClassGetter(this.client)
.withClassName(this.className)
.do()
.then((schema) => __awaiter(this, void 0, void 0, function* () {
if (schema.vectorConfig === undefined) {
schema.vectorConfig = {};
}
for (const [key, value] of Object.entries(this.vectors)) {
if (schema.vectorConfig[key] !== undefined) {
continue;
}
schema.vectorConfig[key] = Object.assign({}, value);
}
const path = `/schema/${this.className}`;
yield this.client.put(path, schema);
}));
};
}
}