Giter Club home page Giter Club logo

localized-carbon's Introduction

Localized Carbon

See also localized documentation

Introduction

Localized Carbon is an extension of a popular Carbon package, designed specially for Laravel framework. By localization I mean its diffForHumans function, which returns a human-readable string of time interval.

Usage

This package provides a LocalizedCarbon class which inherits original Carbon, so its usage is absolutely the same as original Carbon's.

But imagine you have a Comment model for example, which has default timestamp fields (created_at and updated_at). You want to display, how much time has gone since its created_at in a human-readable format. One way to achieve may be such (in your Blade template):

{{ LocalizedCarbon::instance($comment->created_at)->diffForHumans() }}

In this case the class will output something like "5 minutes ago". Note that for just an English version of the string original Carbon would be enough. This LocalizedCarbon is used to display the message in the current application language. For example, for Russian language it will display "5 минут назад".

But also, you may substitute Laravel's Eloquent model, so the timestamps would be converted to LocalizedCarbon instead of original Carbon. So the usage could be as if your were using original Carbon:

{{ $comment->created_at->diffForHumans() }}

As in original Carbon, diffForHumans functions has an optional first argument (which is another Carbon instance). It specified the time to which difference should be calculated. By default (a missing or null value) current time is used.

Also LocalizedCarbon adds an optional second argument, in which you may specify the desired language, or directly a formatter class which is used to format the difference-string (see extending Localized Carbon). By default current application language is used. Also you may specify a Closure in the second parameter which will do formatting. For its signature refer to extending Localized Carbon section.

Supported languages

Current version of Localized Carbon ships with these localizations:

  • English (en)
  • Russian (ru)
  • Ukrainian (uk)
  • Dutch (nl)
  • Spanish (es)
  • Portuguese (pt)
  • French (fr)

But it is extendable, so you may write and use your own localization without altering the contents of the package. See extending Localized Carbon.

Installation

Add the following requirement to your composer.json: "laravelrus/localized-carbon": "1.*" and then run composer update.

Next, add package's Service Provider to app/config/app.php in providers section:

'Laravelrus\LocalizedCarbon\LocalizedCarbonServiceProvider',

After that you may want to add some Aliases (aliases section of the same config):

'LocalizedCarbon'   => 'Laravelrus\LocalizedCarbon\LocalizedCarbon',
'DiffFormatter'     => 'Laravelrus\LocalizedCarbon\DiffFactoryFacade',

Note that DiffFormatter will only be used for extending default localizations. See extending Localized Carbon.

If you want to use the power of LocalizedCarbon the same way as you did with original Carbon in your models, you may want to substitute Laravel's Eloquent model by changing the alias for Eloquent (assuming that your models extend this class):

'Eloquent'        => 'Laravelrus\LocalizedCarbon\Models\Eloquent',

Extending Localized Carbon

If needed localization is not shipped with this package, you may write your own and extend Localized Carbon with it, not even touching the vendor folder itself.

There are a couple of ways to extend Localized Carbon.

First, you may write your own DiffFormatter class for this, implementing Laravelrus\LocalizedCarbon\DiffFormatters\DiffFormatterInterface. This interface forces the class to have a single format method which looks like this:

public function format($isNow, $isFuture, $delta, $unit);

$isNow is a boolean, which is true when the time difference is calculated relevant to current time. $isFuture is boolean, which is true if the DateTime object is in the future relevant to comparable time. $delta is an integer, equals to number of units of difference. $unit is a time-"unit". It can be either: second, minute, hour, day, week, month or year.

So, your format method should return a string based on this arguments. As an example see an existing DiffFormatters in vendor\laravelrus\localized-carbon\src\Laravelrus\LocalizedCarbon\DiffFormatters directory. You can also reference a lang-files, using Lang::choice as it is done in Russian localization for example.

When your class is ready, you must register it within the Localized Carbon. For this you must call DiffFormatter::extend method from within any file which is loaded by the framework. For example, you can do it somewhere in app/start/global.php.

The extend method expects two parameters: first is the language you want to be supported (most often it would be App::getLocale() if you want just to use application's language). Next is the instance of your formatter, OR just a name of the class if it can be autoloaded. Consider these examples:

$formatter = new Acme\DiffFormatters\FrDiffFormatter;
DiffFormatter::extend('fr', $formatter);

// OR

DiffFormatter::extend('fr', 'Acme\\DiffFormatters\\FrDiffFormatter');

In the latter case the formatter will be autoloaded when it is needed using IoC. Also note that formatter is loaded only once during application life-cycle due to optimization considerations.

The second way to extend is to pass a Closure as the second parameter. It must have the same signature as the format method of DiffFormatterInterface interface. For example:

DiffFormatter::extend('fr', function($isNow, $isFuture, $delta, $unit) {
    return 'Some formatter diff string!';
});

Also, there is a possibility to add an alias for an existing language. For example, Localized Carbon is shipped with Ukranian localization, which is recognized by uk language key. But what if your application uses ua or ukr language, which still means it is Ukranian? In this case you may add an alias for uk language in this way:

DiffFormatter::alias('ukr', 'uk');

Contributing

If you've written a formatter for the language which is not supported by current version of Localized Carbon out of the box - feel free to make a pull request with it in the current version branch (1.3), but be sure to adjust your formatter for been used by the package.

The formatter should lie in src/Laravelrus/LocalizedCarbon/DiffFormatters directory, following a simple naming convention: the class name should start with the desired language in lower-case, but the first letter in upper-case. The rest part of the name should be "DiffFormatter". The file name should correspond to the class name.

For example, the formatter for fr language would lie in src/Laravelrus/LocalizedCarbon/DiffFormatters/FrDiffFormatter.php, and the class name would be FrDiffFormatter.

localized-carbon's People

Contributors

amegatron avatar freekmurze avatar montogeek avatar foxted avatar bourduard avatar awakenweb avatar ramirovarandas avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.