@siren-js/core
Version:
Cross-platform library of classes for generating and parsing Siren entities
55 lines (54 loc) • 2.29 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Field = void 0;
const class_validator_1 = require("class-validator");
const utils_1 = require("./utils");
/**
* Represents an input control inside an `Action`. Serialization of a `Field` depends on its `type` and its
* corresponding `Action`'s `type`.
*/
class Field {
constructor() {
/**
* Input type of the field. May include any of the [input types from HTML](https://html.spec.whatwg.org/multipage/input.html#attr-input-type).
* When missing, the default is assumed to be `text`.
*/
this.type = 'text';
}
static of(field) {
return (0, utils_1.transformAndValidate)(this, field);
}
}
__decorate([
(0, class_validator_1.IsOptional)(),
(0, class_validator_1.IsString)({ each: true }),
__metadata("design:type", Array)
], Field.prototype, "class", void 0);
__decorate([
(0, class_validator_1.IsString)(),
__metadata("design:type", String)
], Field.prototype, "name", void 0);
__decorate([
(0, class_validator_1.IsOptional)(),
(0, class_validator_1.IsString)(),
__metadata("design:type", String)
], Field.prototype, "title", void 0);
__decorate([
(0, class_validator_1.IsOptional)(),
(0, class_validator_1.IsString)(),
__metadata("design:type", String)
], Field.prototype, "type", void 0);
__decorate([
(0, class_validator_1.IsOptional)(),
__metadata("design:type", Object)
], Field.prototype, "value", void 0);
exports.Field = Field;