Object initialization, setting all the default values.
Optional
newData: anythe data to load, optional
Optional
options: anycustom options to apply; they will depend on the child resource
Usually, there is no need to implement the constructor; implicitly, it will call the load
of the child resource
and therefore loading all the resources with default values.
If needed, this is the suggested implementation:
super();
this.load(x);
// ...
The currency ISO code: EUR, USD, etc.
The currency symbol: €, $, etc.
The description of the plan, in various languages.
The plan duration.
Order with which to sort the plan when shown.
The id of the project plan.
The platforms in which the plan is enabled (and therefore visible).
The price, based on the currency set.
The string version of the price, with the currency symbol concatenated.
Project / product key.
If true, the plan is an anomaly and it needs to be threaded in special ways.
The id of the plan in the stores (aka Product ID).
The plan targets: USERS, TEAMS.
The title of the plan, in various languages.
Return an attribute in a cleaned standard that force-cast the element.
the origin attribute, to cast
the cast function, e.g. Boolean
, Number
, String
, x => new CustomClass(x)
, etc.
Optional
defaultVal: anyif set, the fallback value instead of null
cleaned attribute
Return an array in a cleaned standard that force-cast each element, keeping only the valid ones.
the origin array, to cast and check
the cast function, e.g. x => String(x)
or x => new CustomClass(x)
Optional
defaultVal: anyif set, the fallback value instead of null
cleaned array
Shortcut to Utils.isEmpty to check the emptiness of a field.
Optional
type: isEmptyFieldTypesLoad the attributes from an already existing resource.
Optional
languages: LanguagesLoad the attributes from an already existing resource and then force some attributes to assume safeData values. The function is usually used in the back-end to mix together db data with new data, without the risk of changing ids and other attributes which are managed in appositely curated scenario.
the data to load
the attributes to force to specific values
Optional
languages: LanguagesValide the object's attributes, performing all the checkings.
Optional
languages: Languageserrors if empty, the checkings are successfully passed.
Typical implementation:
const e = super.validate();
if(this.iE(this.attr)) e.push(`attr`);
// ...
return e;
Table:
idea_projects_plans
.Indexes:
project-order-index
(LSI, all).