Skip to content

Latest commit

 

History

History
212 lines (156 loc) · 5.23 KB

getting_started.md

File metadata and controls

212 lines (156 loc) · 5.23 KB
id title sidebar_label
getting_started
Integrating into your app
Getting started

We recommend you read the best practices for advice on how to best prepare your applications. We strongly encourage you to do so.

📦 Installing

$ composer require richarddobron/laravel-fbt

These steps are required:

  1. Publish config file:
    • We recommend setting the author and project options in /config/fbt.php.
$ php artisan vendor:publish --provider="fbt\LaravelPackage\FbtServiceProvider" --tag=fbt-config
  1. Run migrations:
$ php artisan migrate

🔧 Configuration

Options

The following options can be defined:

  • project string: (Default: website app) Project to which the text belongs
  • author string: Text author
  • preserveWhitespace bool: (Default: false)
    • FBT normally consolidates whitespace down to one space (' ').
    • Turn this off by setting this to true
  • viewerContext string: (Default: \fbt\Runtime\Shared\IntlViewerContext::class)
  • locale string: (Default: en_US) User locale.
  • fbtCommon string: (Default: []) common string's, e.g. [['text' => 'desc'], ...]
  • fbtCommonPath string: (Default: null) Path to the common string's module.

Below are the less important parameters.

  • logger bool: (Default: false) Logging of string impressions.
  • collectFbt bool: (Default: true) Collect fbt instances from the source and store them in a database or a JSON file.
  • hash_module string: (Default: md5) Hash module.
  • md5_digest string: (Default: hex) MD5 digest.
  • driver string: (Default: json) Driver.
  • path string: Cache storage path for generated translations & source strings.

🙋 IntlInterface

Optional implementation of IntlInterface on User Model.

Example code:

<?php

namespace App\Models\Auth;

use fbt\Transform\FbtTransform\Translate\IntlVariations;
use fbt\Lib\IntlViewerContextInterface;
use fbt\Runtime\Gender;

class User extends Authenticatable implements IntlViewerContextInterface
{
    public function getLocale(): string
    {
        return $this->locale;
    }

    public function getGender(): int
    {
        if ($this->gender === 'male') {
            return IntlVariations::GENDER_MALE;
        }

        if ($this->gender === 'female') {
            return IntlVariations::GENDER_FEMALE;
        }

        return IntlVariations::GENDER_UNKNOWN;
    }
}

Note: auth()->user() will be attached to viewerContext automatically.

🚀 Artisan Commands

  1. This command collects FBT strings across whole application in PHP files.
php artisan fbt:collect-fbts

Read more about FBTs extracting.

  1. This command generates the missing translation hashes from collected source strings.
php artisan fbt:generate-translations
  1. This command creates translation payloads stored in database/JSON file.
php artisan fbt:translate

Read more about translating.

📘 API

echo fbt('You just friended ' . \fbt\fbt::name('name', 'Sarah', 2 /* gender */), 'names');

🎨 Blade Directives

@fbtTransform & @endFbtTransform

@fbtTransform: This directive will turn output buffering on. While output buffering is active no output is sent from the script (other than headers), instead the output is stored in an internal buffer.

@endFbtTransform: This directive will send the contents of the topmost output buffer (if any) and turn this output buffer off.

@fbtTransform
   ...
   <fbt desc="auto-wrap example">
     Go on an
     <a href="#">
       <span>awesome</span> vacation
     </a>
   </fbt>
   ...
@endFbtTransform

// result: Go on an <a href="#"><span>awesome</span> vacation</a>

@fbt

@fbt(
 [
  'Go on an ',
  \fbt\createElement('a', \fbt\createElement('span', 'awesome'), ['href' => '#']),
  ' vacation',
 ],
 'It\'s simple',
 ['project' => "foo"]
)

// result: Go on an <a href="#"><span>awesome</span> vacation</a>
@fbt('You just friended ' . \fbt\fbt::name('name', 'Sarah', 2 /* gender */), 'names')

// result: You just friended Sarah
@fbt('A simple string', 'It\'s simple', ['project' => "foo"])

// result: A simple string

Encoding in Blade

$htmlText = \fbt('<strong>STRONG</strong> text', 'HTML text');

{{ $htmlText }}
// result: <strong>STRONG</strong> text

{!! $htmlText !!}
// result: <strong>STRONG</strong> text

PhpStorm integration

The PhpStorm IDE can recognize the custom Blade directive if is set in File > Settings > Languages & Frameworks > PHP > Blade > Directives by adding a new one with the following properties:

  • Name: fbt

  • Has parameters: yes

  • Prefix: <?php echo \fbt(

  • Suffix: ); ?>

  • Name: fbs

  • Has parameters: yes

  • Prefix: <?php echo \fbs(

  • Suffix: ); ?>

  • Name: fbtTransform

  • Has parameters: no

  • Name: endFbtTransform

  • Has parameters: no

Blade directives settings in PhpStorm