@cloudinary/url-gen
Version:
Cloudinary URL-Gen SDK ========================= [](https://app.travis-ci.com/github/cloudinary/js-url-gen) ## About The Cloudinary URL-Gen SDK allows you to quickly and eas
102 lines (98 loc) • 3.47 kB
JavaScript
'use strict';
var Action = require('./Action-34aa7481.cjs');
var QualifierValue = require('./QualifierValue-e770d619.cjs');
var Qualifier = require('./Qualifier-6633a22f.cjs');
var RectangleRegion = require('./RectangleRegion-fff99f96.cjs');
/**
* @description A class that defines how to remove objects from an asset using Generative AI
* @extends SDK.Action
* @memberOf Actions.Effect
* @see Visit {@link Actions.Effect|Effect} for an example
*/
class GenerativeRemove extends Action.Action {
constructor() {
super();
this._prompts = [];
this._regions = [];
this._detectMultiple = false;
this._actionModel.actionType = "generativeRemove";
}
prompt(...value) {
this._prompts = value;
if (this._prompts.length > 0) {
this._actionModel.prompts = this._prompts;
}
return this;
}
region(...value) {
this._regions = value;
if (this._regions.length > 0) {
this._actionModel.regions = this._regions.map((region) => region.toJson());
}
return this;
}
detectMultiple(value = true) {
this._detectMultiple = value;
if (this._detectMultiple) {
this._actionModel.detectMultiple = this._detectMultiple;
}
return this;
}
prepareQualifiers() {
const qualifierValue = new QualifierValue.QualifierValue().setDelimiter(";");
switch (true) {
case this._prompts.length > 0: {
qualifierValue.addValue(this.preparePromptValue());
break;
}
case this._regions.length > 0: {
qualifierValue.addValue(this.prepareRegionValue());
break;
}
}
this.addQualifier(new Qualifier.Qualifier("e", `gen_remove:${qualifierValue.toString()}`));
}
preparePromptValue() {
const prompts = this._prompts;
const detectMultiple = this._detectMultiple;
const qualifierValue = new QualifierValue.QualifierValue().setDelimiter(";");
if (prompts.length === 1) {
qualifierValue.addValue(`prompt_${prompts[0]}`);
if (detectMultiple) {
qualifierValue.addValue("multiple_true");
}
}
else {
qualifierValue.addValue(`prompt_(${prompts.join(";")})`);
}
return qualifierValue;
}
prepareRegionValue() {
const regions = this._regions;
const qualifierValue = new QualifierValue.QualifierValue();
if (regions.length === 1) {
const singleRegion = regions[0].toString();
qualifierValue.addValue(`region_${singleRegion}`);
}
else {
const regionList = regions.map((region) => region.toString());
qualifierValue.addValue(`region_(${regionList.join(";")})`);
}
return qualifierValue;
}
static fromJson(actionModel) {
const { prompts, regions, detectMultiple } = actionModel;
const result = new this();
if (regions) {
result.region(...regions.map(({ x, y, width, height }) => new RectangleRegion.RectangleRegion(x, y, width, height)));
}
if (prompts) {
result.prompt(...prompts);
}
if (detectMultiple) {
result.detectMultiple(detectMultiple);
}
return result;
}
}
exports.GenerativeRemove = GenerativeRemove;