Merge pull request #15713 from Snuffleupagus/annotation-no-appearance-cleanup
Reduce duplication when creating a fallback appearance for `MarkupAnnotation`s
This commit is contained in:
commit
748be3f702
@ -362,6 +362,10 @@ function getRgbColor(color, defaultColor = new Uint8ClampedArray(3)) {
|
||||
}
|
||||
}
|
||||
|
||||
function getPdfColorArray(color) {
|
||||
return Array.from(color, c => c / 255);
|
||||
}
|
||||
|
||||
function getQuadPoints(dict, rect) {
|
||||
if (!dict.has("QuadPoints")) {
|
||||
return null;
|
||||
@ -459,7 +463,7 @@ function getTransformMatrix(rect, bbox, matrix) {
|
||||
|
||||
class Annotation {
|
||||
constructor(params) {
|
||||
const dict = params.dict;
|
||||
const { dict, xref } = params;
|
||||
|
||||
this.setTitle(dict.get("T"));
|
||||
this.setContents(dict.get("Contents"));
|
||||
@ -514,11 +518,7 @@ class Annotation {
|
||||
}
|
||||
}
|
||||
|
||||
this.data.actions = collectActions(
|
||||
params.xref,
|
||||
dict,
|
||||
AnnotationActionEventType
|
||||
);
|
||||
this.data.actions = collectActions(xref, dict, AnnotationActionEventType);
|
||||
this.data.fieldName = this._constructFieldName(dict);
|
||||
this.data.pageIndex = params.pageIndex;
|
||||
}
|
||||
@ -1304,10 +1304,10 @@ class AnnotationBorderStyle {
|
||||
}
|
||||
|
||||
class MarkupAnnotation extends Annotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const dict = parameters.dict;
|
||||
const { dict } = params;
|
||||
|
||||
if (dict.has("IRT")) {
|
||||
const rawIRT = dict.getRaw("IRT");
|
||||
@ -1515,7 +1515,7 @@ class WidgetAnnotation extends Annotation {
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const dict = params.dict;
|
||||
const { dict, xref } = params;
|
||||
const data = this.data;
|
||||
this.ref = params.ref;
|
||||
this._needAppearances = params.needAppearances;
|
||||
@ -1525,11 +1525,7 @@ class WidgetAnnotation extends Annotation {
|
||||
data.fieldName = this._constructFieldName(dict);
|
||||
}
|
||||
if (data.actions === undefined) {
|
||||
data.actions = collectActions(
|
||||
params.xref,
|
||||
dict,
|
||||
AnnotationActionEventType
|
||||
);
|
||||
data.actions = collectActions(xref, dict, AnnotationActionEventType);
|
||||
}
|
||||
|
||||
let fieldValue = getInheritableProperty({
|
||||
@ -1584,7 +1580,7 @@ class WidgetAnnotation extends Annotation {
|
||||
acroFormResources,
|
||||
appearanceResources,
|
||||
mergedResources: Dict.merge({
|
||||
xref: params.xref,
|
||||
xref,
|
||||
dictArray: [localResources, appearanceResources, acroFormResources],
|
||||
mergeSubDicts: true,
|
||||
}),
|
||||
@ -1793,16 +1789,10 @@ class WidgetAnnotation extends Annotation {
|
||||
mk.set("R", rotation);
|
||||
}
|
||||
if (this.borderColor) {
|
||||
mk.set(
|
||||
"BC",
|
||||
Array.from(this.borderColor, c => c / 255)
|
||||
);
|
||||
mk.set("BC", getPdfColorArray(this.borderColor));
|
||||
}
|
||||
if (this.backgroundColor) {
|
||||
mk.set(
|
||||
"BG",
|
||||
Array.from(this.backgroundColor, c => c / 255)
|
||||
);
|
||||
mk.set("BG", getPdfColorArray(this.backgroundColor));
|
||||
}
|
||||
return mk.size > 0 ? mk : null;
|
||||
}
|
||||
@ -3147,6 +3137,7 @@ class ChoiceWidgetAnnotation extends WidgetAnnotation {
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
// Determine the options. The options array may consist of strings or
|
||||
// arrays. If the array consists of arrays, then the first element of
|
||||
// each array is the export value and the second element of each array is
|
||||
@ -3158,9 +3149,8 @@ class ChoiceWidgetAnnotation extends WidgetAnnotation {
|
||||
// inherit the options from a parent annotation (issue 8094).
|
||||
this.data.options = [];
|
||||
|
||||
const options = getInheritableProperty({ dict: params.dict, key: "Opt" });
|
||||
const options = getInheritableProperty({ dict, key: "Opt" });
|
||||
if (Array.isArray(options)) {
|
||||
const xref = params.xref;
|
||||
for (let i = 0, ii = options.length; i < ii; i++) {
|
||||
const option = xref.fetchIfRef(options[i]);
|
||||
const isOptionArray = Array.isArray(option);
|
||||
@ -3389,12 +3379,12 @@ class SignatureWidgetAnnotation extends WidgetAnnotation {
|
||||
}
|
||||
|
||||
class TextAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
constructor(params) {
|
||||
const DEFAULT_ICON_SIZE = 22; // px
|
||||
|
||||
super(parameters);
|
||||
super(params);
|
||||
|
||||
const dict = parameters.dict;
|
||||
const { dict } = params;
|
||||
this.data.annotationType = AnnotationType.TEXT;
|
||||
|
||||
if (this.data.hasAppearance) {
|
||||
@ -3439,12 +3429,13 @@ class LinkAnnotation extends Annotation {
|
||||
}
|
||||
|
||||
class PopupAnnotation extends Annotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict } = params;
|
||||
this.data.annotationType = AnnotationType.POPUP;
|
||||
|
||||
let parentItem = parameters.dict.get("Parent");
|
||||
let parentItem = dict.get("Parent");
|
||||
if (!parentItem) {
|
||||
warn("Popup annotation has a missing or invalid parent annotation.");
|
||||
return;
|
||||
@ -3453,7 +3444,7 @@ class PopupAnnotation extends Annotation {
|
||||
const parentSubtype = parentItem.get("Subtype");
|
||||
this.data.parentType =
|
||||
parentSubtype instanceof Name ? parentSubtype.name : null;
|
||||
const rawParent = parameters.dict.getRaw("Parent");
|
||||
const rawParent = dict.getRaw("Parent");
|
||||
this.data.parentId = rawParent instanceof Ref ? rawParent.toString() : null;
|
||||
|
||||
const parentRect = parentItem.getArray("Rect");
|
||||
@ -3508,16 +3499,15 @@ class PopupAnnotation extends Annotation {
|
||||
}
|
||||
|
||||
class FreeTextAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { xref } = params;
|
||||
this.data.annotationType = AnnotationType.FREETEXT;
|
||||
this.setDefaultAppearance(parameters);
|
||||
this.setDefaultAppearance(params);
|
||||
|
||||
if (!this.appearance && this._isOffscreenCanvasSupported) {
|
||||
const fakeUnicodeFont = new FakeUnicodeFont(
|
||||
parameters.xref,
|
||||
"sans-serif"
|
||||
);
|
||||
const fakeUnicodeFont = new FakeUnicodeFont(xref, "sans-serif");
|
||||
const fontData = this.data.defaultAppearanceData;
|
||||
this.appearance = fakeUnicodeFont.createAppearance(
|
||||
this._contents.str,
|
||||
@ -3687,10 +3677,10 @@ class FreeTextAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class LineAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict } = parameters;
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.LINE;
|
||||
|
||||
const lineCoordinates = dict.getArray("L");
|
||||
@ -3701,21 +3691,13 @@ class LineAnnotation extends MarkupAnnotation {
|
||||
|
||||
if (!this.appearance) {
|
||||
// The default stroke color is black.
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
: [0, 0, 0];
|
||||
const strokeColor = this.color ? getPdfColorArray(this.color) : [0, 0, 0];
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
const interiorColor = getRgbColor(dict.getArray("IC"), null);
|
||||
// The default fill color is transparent. Setting the fill colour is
|
||||
// necessary if/when we want to add support for non-default line endings.
|
||||
let fillColor = null,
|
||||
interiorColor = dict.getArray("IC");
|
||||
if (interiorColor) {
|
||||
interiorColor = getRgbColor(interiorColor, null);
|
||||
fillColor = interiorColor
|
||||
? Array.from(interiorColor, c => c / 255)
|
||||
: null;
|
||||
}
|
||||
const fillColor = interiorColor ? getPdfColorArray(interiorColor) : null;
|
||||
const fillAlpha = fillColor ? strokeAlpha : null;
|
||||
|
||||
const borderWidth = this.borderStyle.width || 1,
|
||||
@ -3734,7 +3716,7 @@ class LineAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: `${borderWidth} w`,
|
||||
strokeColor,
|
||||
fillColor,
|
||||
@ -3759,27 +3741,20 @@ class LineAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class SquareAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.SQUARE;
|
||||
|
||||
if (!this.appearance) {
|
||||
// The default stroke color is black.
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
: [0, 0, 0];
|
||||
const strokeAlpha = parameters.dict.get("CA");
|
||||
const strokeColor = this.color ? getPdfColorArray(this.color) : [0, 0, 0];
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
const interiorColor = getRgbColor(dict.getArray("IC"), null);
|
||||
// The default fill color is transparent.
|
||||
let fillColor = null,
|
||||
interiorColor = parameters.dict.getArray("IC");
|
||||
if (interiorColor) {
|
||||
interiorColor = getRgbColor(interiorColor, null);
|
||||
fillColor = interiorColor
|
||||
? Array.from(interiorColor, c => c / 255)
|
||||
: null;
|
||||
}
|
||||
const fillColor = interiorColor ? getPdfColorArray(interiorColor) : null;
|
||||
const fillAlpha = fillColor ? strokeAlpha : null;
|
||||
|
||||
if (this.borderStyle.width === 0 && !fillColor) {
|
||||
@ -3788,7 +3763,7 @@ class SquareAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: `${this.borderStyle.width} w`,
|
||||
strokeColor,
|
||||
fillColor,
|
||||
@ -3813,27 +3788,20 @@ class SquareAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class CircleAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.CIRCLE;
|
||||
|
||||
if (!this.appearance) {
|
||||
// The default stroke color is black.
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
: [0, 0, 0];
|
||||
const strokeAlpha = parameters.dict.get("CA");
|
||||
const strokeColor = this.color ? getPdfColorArray(this.color) : [0, 0, 0];
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
const interiorColor = getRgbColor(dict.getArray("IC"), null);
|
||||
// The default fill color is transparent.
|
||||
let fillColor = null;
|
||||
let interiorColor = parameters.dict.getArray("IC");
|
||||
if (interiorColor) {
|
||||
interiorColor = getRgbColor(interiorColor, null);
|
||||
fillColor = interiorColor
|
||||
? Array.from(interiorColor, c => c / 255)
|
||||
: null;
|
||||
}
|
||||
const fillColor = interiorColor ? getPdfColorArray(interiorColor) : null;
|
||||
const fillAlpha = fillColor ? strokeAlpha : null;
|
||||
|
||||
if (this.borderStyle.width === 0 && !fillColor) {
|
||||
@ -3847,7 +3815,7 @@ class CircleAnnotation extends MarkupAnnotation {
|
||||
const controlPointsDistance = (4 / 3) * Math.tan(Math.PI / (2 * 4));
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: `${this.borderStyle.width} w`,
|
||||
strokeColor,
|
||||
fillColor,
|
||||
@ -3884,10 +3852,10 @@ class CircleAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class PolylineAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict } = parameters;
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.POLYLINE;
|
||||
this.data.vertices = [];
|
||||
|
||||
@ -3913,9 +3881,7 @@ class PolylineAnnotation extends MarkupAnnotation {
|
||||
|
||||
if (!this.appearance) {
|
||||
// The default stroke color is black.
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
: [0, 0, 0];
|
||||
const strokeColor = this.color ? getPdfColorArray(this.color) : [0, 0, 0];
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
const borderWidth = this.borderStyle.width || 1,
|
||||
@ -3935,7 +3901,7 @@ class PolylineAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: `${borderWidth} w`,
|
||||
strokeColor,
|
||||
strokeAlpha,
|
||||
@ -3955,34 +3921,34 @@ class PolylineAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class PolygonAnnotation extends PolylineAnnotation {
|
||||
constructor(parameters) {
|
||||
constructor(params) {
|
||||
// Polygons are specific forms of polylines, so reuse their logic.
|
||||
super(parameters);
|
||||
super(params);
|
||||
|
||||
this.data.annotationType = AnnotationType.POLYGON;
|
||||
}
|
||||
}
|
||||
|
||||
class CaretAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
this.data.annotationType = AnnotationType.CARET;
|
||||
}
|
||||
}
|
||||
|
||||
class InkAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.INK;
|
||||
this.data.inkLists = [];
|
||||
|
||||
const rawInkLists = parameters.dict.getArray("InkList");
|
||||
const rawInkLists = dict.getArray("InkList");
|
||||
if (!Array.isArray(rawInkLists)) {
|
||||
return;
|
||||
}
|
||||
const xref = parameters.xref;
|
||||
for (let i = 0, ii = rawInkLists.length; i < ii; ++i) {
|
||||
// The raw ink lists array contains arrays of numbers representing
|
||||
// the alternating horizontal and vertical coordinates, respectively,
|
||||
@ -3999,10 +3965,8 @@ class InkAnnotation extends MarkupAnnotation {
|
||||
|
||||
if (!this.appearance) {
|
||||
// The default stroke color is black.
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
: [0, 0, 0];
|
||||
const strokeAlpha = parameters.dict.get("CA");
|
||||
const strokeColor = this.color ? getPdfColorArray(this.color) : [0, 0, 0];
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
const borderWidth = this.borderStyle.width || 1,
|
||||
borderAdjust = 2 * borderWidth;
|
||||
@ -4023,7 +3987,7 @@ class InkAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: `${borderWidth} w`,
|
||||
strokeColor,
|
||||
strokeAlpha,
|
||||
@ -4141,14 +4105,13 @@ class InkAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class HighlightAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.HIGHLIGHT;
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(
|
||||
parameters.dict,
|
||||
null
|
||||
));
|
||||
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(dict, null));
|
||||
if (quadPoints) {
|
||||
const resources =
|
||||
this.appearance && this.appearance.dict.get("Resources");
|
||||
@ -4162,13 +4125,11 @@ class HighlightAnnotation extends MarkupAnnotation {
|
||||
warn("HighlightAnnotation - ignoring built-in appearance stream.");
|
||||
}
|
||||
// Default color is yellow in Acrobat Reader
|
||||
const fillColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
: [1, 1, 0];
|
||||
const fillAlpha = parameters.dict.get("CA");
|
||||
const fillColor = this.color ? getPdfColorArray(this.color) : [1, 1, 0];
|
||||
const fillAlpha = dict.get("CA");
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
fillColor,
|
||||
blendMode: "Multiply",
|
||||
fillAlpha,
|
||||
@ -4191,24 +4152,23 @@ class HighlightAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class UnderlineAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.UNDERLINE;
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(
|
||||
parameters.dict,
|
||||
null
|
||||
));
|
||||
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(dict, null));
|
||||
if (quadPoints) {
|
||||
if (!this.appearance) {
|
||||
// Default color is black
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
? getPdfColorArray(this.color)
|
||||
: [0, 0, 0];
|
||||
const strokeAlpha = parameters.dict.get("CA");
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: "[] 0 d 1 w",
|
||||
strokeColor,
|
||||
strokeAlpha,
|
||||
@ -4229,25 +4189,23 @@ class UnderlineAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class SquigglyAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.SQUIGGLY;
|
||||
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(
|
||||
parameters.dict,
|
||||
null
|
||||
));
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(dict, null));
|
||||
if (quadPoints) {
|
||||
if (!this.appearance) {
|
||||
// Default color is black
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
? getPdfColorArray(this.color)
|
||||
: [0, 0, 0];
|
||||
const strokeAlpha = parameters.dict.get("CA");
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: "[] 0 d 1 w",
|
||||
strokeColor,
|
||||
strokeAlpha,
|
||||
@ -4275,25 +4233,23 @@ class SquigglyAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class StrikeOutAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const { dict, xref } = params;
|
||||
this.data.annotationType = AnnotationType.STRIKEOUT;
|
||||
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(
|
||||
parameters.dict,
|
||||
null
|
||||
));
|
||||
const quadPoints = (this.data.quadPoints = getQuadPoints(dict, null));
|
||||
if (quadPoints) {
|
||||
if (!this.appearance) {
|
||||
// Default color is black
|
||||
const strokeColor = this.color
|
||||
? Array.from(this.color, c => c / 255)
|
||||
? getPdfColorArray(this.color)
|
||||
: [0, 0, 0];
|
||||
const strokeAlpha = parameters.dict.get("CA");
|
||||
const strokeAlpha = dict.get("CA");
|
||||
|
||||
this._setDefaultAppearance({
|
||||
xref: parameters.xref,
|
||||
xref,
|
||||
extra: "[] 0 d 1 w",
|
||||
strokeColor,
|
||||
strokeAlpha,
|
||||
@ -4316,18 +4272,18 @@ class StrikeOutAnnotation extends MarkupAnnotation {
|
||||
}
|
||||
|
||||
class StampAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
this.data.annotationType = AnnotationType.STAMP;
|
||||
}
|
||||
}
|
||||
|
||||
class FileAttachmentAnnotation extends MarkupAnnotation {
|
||||
constructor(parameters) {
|
||||
super(parameters);
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
const file = new FileSpec(parameters.dict.get("FS"), parameters.xref);
|
||||
const file = new FileSpec(params.dict.get("FS"), params.xref);
|
||||
|
||||
this.data.annotationType = AnnotationType.FILEATTACHMENT;
|
||||
this.data.file = file.serializable;
|
||||
|
Loading…
Reference in New Issue
Block a user