An open API service indexing awesome lists of open source software.

https://github.com/sadespresso/moment_dart

Moment converts Dart DateTime object to human-readable text. And many more benefits
https://github.com/sadespresso/moment_dart

calendar dart dart-package date datetime momentjs time

Last synced: 6 months ago
JSON representation

Moment converts Dart DateTime object to human-readable text. And many more benefits

Awesome Lists containing this project

README

        

# moment_dart

[![pub package](https://img.shields.io/pub/v/moment_dart.svg)](https://pub.dartlang.org/packages/moment_dart)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![All Contributors](https://img.shields.io/github/all-contributors/sadespresso/moment_dart?color=ae00ff)](#contributors)

> Inspired by moment.js

## References

### [📖 Read documentation](https://dev.gege.mn/moment_dart_docs)

### [🆕 Migrate to 1.0.0](#migrate-to-100)

## Usage

### Creating instance

There are multiple ways to create an instance.

```dart
// From DateTime
final a = DateTime.now().toMoment();

final b = Moment(DateTime(...));

// This instance won't be affected by global localization!
final c = Moment(b, localization: MomentLocalizations.koKr());
```

### Setting global localization

By default, the global localization is `en_US`.

```dart
Moment.setGlobalLocalization(MomentLocalizations.fr());
```

### Relative Duration

Relative durations are rather inprecise. See [precise duration](#precise-duration)
for accuracy and flexibility.

Read about thresholds, and more on [docs](https://dev.gege.mn/moment_dart_docs/duration)

```dart
final yesterday = Moment.now() - const Duration(days: 1);
yesterday.fromNow(); // a day ago

final add5sec = Moment.now().add(const Duration(seconds: 5));
add5sec.fromNow(dropPrefixOrSuffix: true); // a few seconds
```

### Precise duration

You can create localized human-readable duration text with
abbreviation, highly-customizable units.

See more on [docs](https://dev.gege.mn/moment_dart_docs/duration/precise).
(delimiter, custom units, abbreviation...)

On `Duration` objects:

```dart
Duration(days: 67, hours: 3, minutes: 2).toDurationString(
localization: MomentLocalizations.de(),
form: Abbreviation.semi,
); // in 2 Mo. 7 Tg.
```

For `Moment`:

```dart
final epoch = Moment.fromMillisecondsSinceEpoch(0);
final now = DateTime(2023, DateTime.july, 14).toMoment();

print(epoch.fromPrecise(now)); // 53 years 7 months ago
```

### Calendar

```dart
final Moment now = Moment.now();

print(now.calendar()); // Today at 03:00 PM
```

### Other helpful methods

`moment_dart` provides numerous convenience methods. Works on both `Moment` and `DateTime`.

See all available options in the [docs](https://dev.gege.mn/moment_dart_docs/extension/)

```dart
final now = DateTime.now(); // July 19 2023 03:12 PM (UTC+8)

// ISO week, ISO week year
now.week; // 48
now.weekYear; // 2023

now.isLeapYear; // false

// Date creates new `DateTime` with hours, minutes, etc.. omitted
now.date; // July 19 2023 00:00 AM

now.clone(); // July 19 2023 03:12 PM

now.nextTuesday(); // July 25 2023 03:12 PM

// and many more!
```

## Migrate to 1.0.0

* Instead of `MomentLocalizations.ko()`, use `MomentLocalizations.koKr()`
* Replace `UnitStringForm` with:
* `UnitStringForm.short` => `Abbreviation.full`
* `UnitStringForm.mid` => `Abbreviation.semi`
* `UnitStringForm.full` => `Abbreviation.none`
* In `Moment().calendar()` calls: remove `weekStart` argument
* `DateTimeConstructors.withTimezone`: move `isUtc` argument to first position
* Replace deprecated methods

## Contributing

Contributions of any kind are welcome! Please refer to [CONTRIBUTE.md](CONTRIBUTE.md)

## Contributors



Батмэнд Ганбаатар
Батмэнд Ганбаатар

💻 🚧 🌍 📖