mirror of
https://github.com/bitwarden/jslib
synced 2025-12-14 07:13:35 +00:00
* Basic proof of concept of Linked custom fields * Linked Fields for all cipher types, use dropdown * Move linkedFieldOptions to view models * Move add-edit custom fields to own component * Fix change handling if cipherType changes * Use Field.LinkedId to store linked field info * Refactor accessors in cipherView for type safety * Use map for linkedFieldOptions * Refactor: use decorators to record linkable info * Add ItemView * Use enums for linked field ids * Add union type for linkedId enums, add jsdoc comment * Use parameter properties for linkedFieldOption Co-authored-by: Matt Gibson <mgibson@bitwarden.com> * Fix type casting Co-authored-by: Matt Gibson <mgibson@bitwarden.com>
23 lines
648 B
TypeScript
23 lines
648 B
TypeScript
import { BaseResponse } from '../response/baseResponse';
|
|
|
|
import { FieldType } from '../../enums/fieldType';
|
|
import { LinkedIdType } from '../../enums/linkedIdType';
|
|
|
|
export class FieldApi extends BaseResponse {
|
|
name: string;
|
|
value: string;
|
|
type: FieldType;
|
|
linkedId: LinkedIdType;
|
|
|
|
constructor(data: any = null) {
|
|
super(data);
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
this.type = this.getResponseProperty('Type');
|
|
this.name = this.getResponseProperty('Name');
|
|
this.value = this.getResponseProperty('Value');
|
|
this.linkedId = this.getResponseProperty('linkedId');
|
|
}
|
|
}
|