This package has been deprecated

Author message:

We moved all Tripetto packages to the '@tripetto' organization. Please use 'npm i @tripetto/block-calculator' instead. Full documentation available at: https://tripetto.com/sdk/docs/

tripetto-block-calculator
TypeScript icon, indicating that this package has built-in type declarations

3.2.1 • Public • Published

Tripetto

Tripetto is a full-fledged form kit. Rapidly build and run smart flowing forms and surveys. Drop the kit in your codebase and use all of it or just the parts you need. The visual builder is for form building, and the runners are for running those forms in different UI variants. It is entirely extendible and customizable. Anyone can build their own building blocks (e.g., question types) or runner UI's.

Calculator block

Status Version License Downloads Follow us on Twitter

Calculator block for Tripetto. This block can perform all sorts of calculations (see a list of supported operations below). It is a headless block, so it doesn't require a UI implementation for the runner.

Supported operations

Operation Description
INPUTS
Static number Supplies a static number to the calculator.
Recall value Supplies the value of another question block (for example from a number block, rating block or scale block) to the calculator.
Subcalculation Performs a (sub) calculation for multistep formulas and supplies the result to the calculator.
FUNCTIONS
Limiting
min Returns the input with the lowest number.
max Returns the input with the highest number.
clamp Clamps (restricts) the input between the specified minimum and maximum value (learn more).
Floating point
round Rounds a floating point number (learn more).
floor Rounds a floating point number down (learn more).
ceil Rounds a floating point number up (learn more).
trunc Removes decimals from a floating point number.
Exponentiation
Multiplies the given input by itself (learn more).
Finds the principal square root for the given input (learn more).
pow Calculates the base to the power of the given exponent (learn more).
exp Calculates e to the power of the given exponent (learn more).
ln Calculates the natural logarithm of the input (learn more).
log Calculates the base 10 logarithm of the input (learn more).
Trigonometry
sin Calculates the sine of the given angle (learn more).
cos Calculates the cosine of the given angle (learn more).
tan Calculates the tangent of the given angle (learn more).
sin⁻¹ Calculates the inverse sine (arcsine) of the given number (learn more).
cos⁻¹ Calculates the inverse cosine (arccosine) of the given number (learn more).
tan⁻¹ Calculates the inverse tangent (arctangent) of the given number (learn more).
sinh Calculates the hyperbolic sine of the given hyperbolic angle (learn more).
cosh Calculates the hyperbolic cosine of the given hyperbolic angle (learn more).
tanh Calculates the hyperbolic tangent of the given hyperbolic angle (learn more).
sinh⁻¹ Calculates the inverse hyperbolic sine (arcsine) of the given number (learn more).
cosh⁻¹ Calculates the inverse hyperbolic cosine (arccosine) of the given number (learn more).
tanh⁻¹ Calculates the inverse hyperbolic tangent (arctangent) of the given number (learn more).
Factorial
n! Calculates the factorial of a positive number (learn more).
gamma Calculates the gamma of a positive number (learn more).
Miscellaneous
abs Retrieves the absolute value (or modulus) of a number (learn more).
age Calculates the age based on the input of a date block, for example a date of birth.
year Calculates the year of a given date.
month Calculates the month of a given date.
day of month Calculates the day of the month of a given date.
day of week Calculates the day of the week of a given date.
hour Calculates the hour of a given time.
minute Calculates the minute of a given time.
second Calculates the second of a given time.
millisecond Calculates the millisecond of a given time.
count Counts the number of selected options, for example from a checkboxes block, or a picture choice block (multiple selection).
mod Calculates the remainder of a division (learn more).
score Scores options of a block (for example a dropdown block, radio buttons block or a picture choice block).
sgn Extracts the sign of a number (learn more).
% Calculates a percentage of the input (learn more).
COMPARATORS
Compare value Compares the recalled value of another block and outputs a value based on the result of the comparison.
Compare current outcome Compares the current outcome of the calculator and outputs a value based on the result of the comparison.
Compare number Compares a static number and outputs a value based on the result of the comparison.
Compare date/time Compares a date (and time) and outputs a value based on the result of the comparison.
Check selected option Checks if a certain option is checked (for example from a multiple choice block) and outputs a value based on the result of the comparison.
TEXT FUNCTIONS
Character count Counts the number of characters in a text.
Word count Counts the number of words in a text.
Line count Counts the number of lines in a text.
Count occurrences Counts the number of occurrences of a certain text or character.
Convert to number Converts a text value to a number.
CONSTANTS
π Supplies the constant value of π (pi ≈ 3.14159) to the calculator (learn more).
e Supplies the constant value of e (Euler's constant ≈ 2.71828) to the calculator (learn more).
γ Supplies the constant value of γ (Euler–Mascheroni constant ≈ 0.57722) to the calculator (learn more).
c Supplies the constant value of c (speed of light = 299792458 m/s) to the calculator (learn more).
Random value Supplies a random value (0 to less than 1) to the calculator.
UNIX time Supplies the current UNIX time (seconds since Unix Epoch) to the calculator.
Year Supplies the current year to the calculator.
Month Supplies the current month (January = 1) to the calculator.
Day of month Supplies the current day of month (1-31) to the calculator.
Day of week Supplies the current day of week (Sunday = 0) to the calculator.
Hour Supplies the current hour (0-23) to the calculator.
Minute Supplies the current minute (0-59) to the calculator.
Second Supplies the current second (0-59) to the calculator.
Millisecond Supplies the current millisecond (0-999) to the calculator.
Timezone Supplies the current timezone (in milliseconds) to the calculator.

Get started

You need to install or import this block to use it in Tripetto. If you are using the CLI version of the builder, you can find instructions here. If you are embedding the builder into your own project using the library, take a look here.

Use cases

  • Directly in your browser (add <script src="https://unpkg.com/tripetto-block-calculator"></script> to your HTML);
  • In the CLI builder (install the block using npm i tripetto-block-calculator -g and update your Tripetto config);
  • In your builder implementation (just add import "tripetto-block-calculator"; to your code);
  • In your runner implementation (simply add import "tripetto-block-calculator/runner"; to your code.

Support

Run into issues or bugs? Report them here and we'll look into them.

For general support contact us at support@tripetto.com. We're more than happy to assist you.

License

Have a blast. MIT.

Contributors

About us

If you want to learn more about Tripetto or contribute in any way, visit us at Tripetto.com.

Package Sidebar

Install

npm i tripetto-block-calculator

Weekly Downloads

19

Version

3.2.1

License

MIT

Unpacked Size

536 kB

Total Files

95

Last publish

Collaborators

  • markvandenbrink