The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::BPOMUtils::NutritionFacts - Utilities related to BPOM nutrition facts

VERSION

This document describes version 0.017 of App::BPOMUtils::NutritionFacts (from Perl distribution App-BPOMUtils-NutritionFacts), released on 2023-01-10.

SYNOPSIS

DESCRIPTION

This distribution includes CLI utilities related to BPOM nutrition facts.

FUNCTIONS

bpom_show_nutrition_facts

Usage:

 bpom_show_nutrition_facts(%args) -> [$status_code, $reason, $payload, \%result_meta]

Render BPOM-compliant nutrition fact table (ING - informasi nilai gizi) in various formats.

Examples:

  • An example, in linear text format (color/emphasis is shown with markup):

     bpom_show_nutrition_facts(
       carbohydrate => 13.113,
       color => "never",
       fat => 0.223,
       output_format => "linear_text",
       package_size => 20,
       protein => 0.99,
       saturated_fat => 0.01,
       serving_size => 175,
       sodium => 0.223,
       sugar => 7.173
     );

    Result:

     [
       200,
       "OK",
       "*INFORMASI NILAI GIZI*   *JUMLAH PER KEMASAN (20 g)* : *JUMLAH PER KEMASAN (20 g*) : *Energi total 10 kkal*, Energi dari lemak 0 kkal, Energi dari lemak jenuh 0 kkal, *Lemak total 0 g (0% AKG)*, *Lemak jenuh 0 g (0% AKG)*, *Protein 0 g (0% AKG)*, *Karbohidrat total 3 g (1% AKG)*, *Gula 1 g*, *Garam (Natrium) 0 mg (0% AKG)*. /Persen AKG berdasarkan kebutuhan energi 2150 kkal. Kebutuhan energi Anda mungkin lebih tinggi atau lebih rendah./\n",
       { "cmdline.skip_format" => 1 },
     ]
  • The same example in vetical HTML table format:

     bpom_show_nutrition_facts(
       carbohydrate => 13.113,
       fat => 0.223,
       output_format => "vertical_html_table",
       package_size => 20,
       protein => 0.99,
       saturated_fat => 0.01,
       serving_size => 175,
       sodium => 0.223,
       sugar => 7.173
     );

    Result:

     [
       200,
       "OK",
       "\n<style>\n  table.vertical_html_table { border-collapse: collapse; border: 1px solid; }\n  tr.vertical_html_table.has_bottom_border { border-bottom: 1pt solid black; }\n  // td:first-child { background: red; }\n</style>\n<table class=\"vertical_html_table\"><colgroup><col style=\"width:16pt;\"><col style=\"width:200pt;\"><col style=\"width:48pt;\"><col style=\"width:48pt;\"><col style=\"width:36pt;\"></colgroup>\n<tr><td colspan=5 align=\"middle\"><b>INFORMASI NILAI GIZI</b></td></tr>\n<tbody>\n<tr><td colspan=5></td></tr>\n<tr><td colspan=5 align=\"left\"><b>JUMLAH PER KEMASAN (20 g)</b></td></tr>\n<tr><td colspan=5><b>JUMLAH PER KEMASAN (20 g</b>)</td></tr>\n<tr class=has_bottom_border><td colspan=5><b>Energi total 10 kkal</b></td></tr>\n<tr><td colspan=3></td><td colspan=2 align=\"middle\"><b>% AKG</b>*</td></tr>\n<tr><td colspan=2><b>Lemak total</b></td><td align=\"right\"><b>0 g</b></td><td align=\"right\">0 %</td><td></td></tr>\n<tr><td colspan=2><b>Lemak jenuh</b></td><td align=\"right\"><b>0 g</b></td><td align=\"right\">0 %</td><td></td></tr>\n<tr><td colspan=2><b>Protein</b></td><td align=\"right\"><b>0 g</b></td><td align=\"right\">0 %</td><td></td></tr>\n<tr><td colspan=2><b>Karbohidrat total</b></td><td align=\"right\"><b>3 g</b></td><td align=\"right\">1 %</td><td></td></tr>\n<tr><td colspan=2><b>Gula</b></td><td align=\"right\"><b>1 g</b></td><td></td><td></td></tr>\n<tr class=has_bottom_border><td colspan=2><b>Garam (Natrium)</b></td><td align=\"right\"><b>0 mg</b></td><td align=\"right\">0 %</td><td></td></tr>\n<tr><td colspan=5><i>*Persen AKG berdasarkan kebutuhan energi 2150 kkal. Kebutuhan energi Anda mungkin lebih tinggi atau lebih rendah.</i></td></tr>\n</tbody>\n</table>\n",
       { "cmdline.skip_format" => 1 },
     ]
  • The same example, in vertical text format (color/emphasis is shown with markup):

     bpom_show_nutrition_facts(
       carbohydrate => 13.113,
       color => "never",
       fat => 0.223,
       output_format => "vertical_text_table",
       package_size => 20,
       protein => 0.99,
       saturated_fat => 0.01,
       serving_size => 175,
       sodium => 0.223,
       sugar => 7.173
     );

    Result:

     [
       200,
       "OK",
       ".---------------------------------------------------------------------------------------------------------------------.\n|                                               *INFORMASI NILAI GIZI*                                                |\n|                                                                                                                     |\n| *JUMLAH PER KEMASAN (20 g)*                                                                                         |\n| *JUMLAH PER KEMASAN (20 g*)                                                                                         |\n| *Energi total 10 kkal*                                                                                              |\n+-----------------------|----------------------|-----------------------+----------------------|-----------------------+\n|                                                                      |                   *% AKG**                   |\n| *Lemak total*                                |                 *0 g* |                  0 % |                       |\n| *Lemak jenuh*                                |                 *0 g* |                  0 % |                       |\n| *Protein*                                    |                 *0 g* |                  0 % |                       |\n| *Karbohidrat total*                          |                 *3 g* |                  1 % |                       |\n| *Gula*                                       |                 *1 g* |                      |                       |\n| *Garam (Natrium)*                            |                *0 mg* |                  0 % |                       |\n+-----------------------|----------------------+-----------------------+----------------------+-----------------------+\n| /*Persen AKG berdasarkan kebutuhan energi 2150 kkal. Kebutuhan energi Anda mungkin lebih tinggi atau lebih rendah./ |\n`---------------------------------------------------------------------------------------------------------------------'\n",
       { "cmdline.skip_format" => 1 },
     ]

This function is not exported by default, but exportable.

Arguments ('*' denotes required arguments):

  • browser => true

    View output HTML in browser instead of returning it.

  • carbohydrate* => ufloat

    Total carbohydrate, in g/100g.

  • color => str (default: "auto")

    (No description)

  • fat* => ufloat

    Total fat, in g/100g.

  • name => str

    (No description)

  • output_format => str (default: "vertical_text_table")

    (No description)

  • package_size* => ufloat

    Packaging size, in g.

  • protein* => ufloat

    Protein, in g/100g.

  • saturated_fat* => ufloat

    Saturated fat, in g/100g.

  • serving_size* => ufloat

    Serving size, in g.

  • sodium* => ufloat

    Sodium, in mg/100g.

  • sugar* => ufloat

    Total sugar, in g/100g.

Returns an enveloped result (an array).

First element ($status_code) is an integer containing HTTP-like status code (200 means OK, 4xx caller error, 5xx function error). Second element ($reason) is a string containing error message, or something like "OK" if status is 200. Third element ($payload) is the actual result, but usually not present when enveloped result is an error response ($status_code is not 2xx). Fourth element (%result_meta) is called result metadata and is optional, a hash that contains extra information, much like how HTTP response headers provide additional metadata.

Return value: (any)

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/App-BPOMUtils-NutritionFacts.

SOURCE

Source repository is at https://github.com/perlancar/perl-App-BPOMUtils-NutritionFacts.

SEE ALSO

https://pom.go.id

App::BPOMUtils

AUTHOR

perlancar <perlancar@cpan.org>

CONTRIBUTING

To contribute, you can send patches by email/via RT, or send pull requests on GitHub.

Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via:

 % prove -l

If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond that are considered a bug and can be reported to me.

COPYRIGHT AND LICENSE

This software is copyright (c) 2023, 2022 by perlancar <perlancar@cpan.org>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-BPOMUtils-NutritionFacts

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.