2015-08-12 16:37:58 +02:00
# Timestring
2012-12-15 23:37:13 +01:00
2015-08-12 16:37:58 +02:00
[![Version ](https://img.shields.io/npm/v/timestring.svg?style=flat-square )](https://www.npmjs.com/package/timestring)
2015-05-02 21:49:19 +02:00
[![Build Status ](https://img.shields.io/travis/mike182uk/timestring.svg?style=flat-square )](http://travis-ci.org/mike182uk/timestring)
2015-07-09 17:19:42 +02:00
[![Code Climate ](https://img.shields.io/codeclimate/github/mike182uk/timestring.svg?style=flat-square )](https://codeclimate.com/github/mike182uk/timestring)
2015-05-05 12:39:03 +02:00
[![Coveralls ](https://img.shields.io/coveralls/mike182uk/timestring/master.svg?style=flat-square )](https://coveralls.io/r/mike182uk/timestring)
2015-05-02 21:49:19 +02:00
[![npm ](https://img.shields.io/npm/dm/timestring.svg?style=flat-square )](https://www.npmjs.com/package/timestring)
[![License ](https://img.shields.io/github/license/mike182uk/timestring.svg?style=flat-square )](https://www.npmjs.com/package/timestring)
2014-07-18 22:14:09 +02:00
2015-05-02 21:49:19 +02:00
Parse a human readable time string into a time based value.
2012-12-15 23:37:13 +01:00
2015-11-11 13:14:54 +01:00
## Installation
2015-11-11 13:21:02 +01:00
```bash
npm install --save timestring
```
2015-11-11 13:14:54 +01:00
## Usage
### Overview
2012-12-15 23:37:13 +01:00
```js
var str = '1h 15m';
2012-12-22 18:17:43 +01:00
var time = str.parseTime();
2012-12-15 23:37:13 +01:00
console.log(time); // will log 4500
```
2014-05-27 21:45:04 +02:00
In the example above `str` is just a plain old `String` object. A new method is added to the `String` objects prototype named `parseTime` . This method parses the string and returns a time based value.
2012-12-15 23:37:13 +01:00
**By default the returned time value will be in seconds.**
The time string can contain as many time groups as needed:
```js
var str = '1d 3h 25m 18s';
2012-12-22 18:17:43 +01:00
var time = str.parseTime();
2012-12-15 23:37:13 +01:00
console.log(time); // will log 98718
```
and can be as messy as you like:
```js
2012-12-31 01:02:49 +01:00
var str = '1 d 3HOurS 25 min 1 8s';
2012-12-22 18:17:43 +01:00
var time = str.parseTime();
2012-12-15 23:37:13 +01:00
console.log(time); // will log 98718
```
As well as using the `String` objects `parseTime` method you can create a `Timestring` object and parse the string manually:
```js
var str = '1h 15m';
var time = (new Timestring()).parse(str);
console.log(time); // will log 4500
```
2015-11-11 13:14:54 +01:00
### Keywords
2012-12-15 23:37:13 +01:00
2014-05-27 21:45:04 +02:00
Timestring will parse the following keywords into time values:
2012-12-15 23:37:13 +01:00
1. `s, sec, secs, second, seconds` - will parse to seconds
2. `m, min, mins, minute, minutes` - will parse to minutes
3. `h, hr, hrs, hour, hours` - will parse to hours
4. `d, day, days` - will parse to days
5. `w, week, weeks` - will parse to weeks
2012-12-15 23:44:39 +01:00
6. `mth, mths, month, months` - will parse to months
7. `y, yr, yrs, year, years` - will parse to years
2012-12-15 23:37:13 +01:00
Keywords can be used interchangeably:
```js
var str = '1day 15h 20minutes 15s';
var time = str.parseTime();
console.log(time); // will log 141615
```
2015-11-11 13:14:54 +01:00
### Return Time Value
2012-12-15 23:37:13 +01:00
By default the return time value will be in seconds. This can be changed by passing one of the following strings as an argument to `String.parseTime` or `Timestring.parse` :
1. `s` - Seconds
2. `m` - Minutes
3. `h` - Hours
4. `d` - Days
5. `w` - Weeks
6. `mth` - Months
7. `y` - Years
```js
var str = '22h 16m';
2012-12-22 18:17:43 +01:00
var hours = str.parseTime('h'); // 22.266666666666666
var days = str.parseTime('d'); // 0.9277777777777778
2012-12-15 23:37:13 +01:00
var weeks = str.parseTime('w'); // 0.13253968253968254
// or
2012-12-22 18:17:43 +01:00
var hours = (new Timestring()).parse(str, 'h'); // 22.266666666666666
var days = (new Timestring()).parse(str, 'd'); // 0.9277777777777778
2012-12-15 23:44:39 +01:00
var weeks = (new Timestring()).parse(str, 'w'); // 0.13253968253968254
2012-12-15 23:37:13 +01:00
```
2015-11-11 13:14:54 +01:00
### Optional Configuration
2012-12-15 23:37:13 +01:00
2012-12-24 14:29:05 +01:00
A few assumptions are made by default:
2012-12-15 23:37:13 +01:00
1. There are 24 hours per day
2. There are 7 days per week
3. There are 4 weeks per month
4. There are 12 months per year
These settings can be changed by passing a settings object as an argument to `String.parseTime` or to the `Timestring` objects constructor.
The following settings are configurable:
1. `hoursPerDay`
2. `daysPerWeek`
3. `weeksPerMonth`
4. `monthsPerYear`
```js
var str = '1d';
var settings = {
hoursPerDay: 1
}
var time = str.parseTime('h', settings);
2012-12-22 18:17:43 +01:00
// or
2012-12-15 23:37:13 +01:00
var time = (new Timestring(settings)).parse(str, 'h');
2012-12-22 18:17:43 +01:00
console.log(time); // will log 1
2012-12-15 23:37:13 +01:00
```
2014-05-27 21:45:04 +02:00
In the example above `hoursPerDay` is being set to `1` . When the time string is being parsed, the return value is being specified as hours. Normally `1d` would parse to `24` hours (as by deafult there are 24 hours in a day) but because `hoursPerDay` has been set to `1` , `1d` will now only parse to `1` hour.
2012-12-15 23:37:13 +01:00
2012-12-22 18:17:43 +01:00
This would be useful for specific application needs.
2012-12-15 23:37:13 +01:00
2012-12-15 23:44:39 +01:00
*Example - Employees of my company work 7.5 hours a day, and only work 5 days a week. In my time tracking app, when they type `1d` i want 7.5 hours to be tracked. When they type `1w` i want 5 days to be tracked etc.*
2012-12-15 23:37:13 +01:00
```js
var settings = {
hoursPerDay: 7.5,
daysPerWeek: 5
}
// get time values from form input
2012-12-15 23:44:39 +01:00
var today = document.querySelector('time-input').value, // '1d'
2012-12-22 18:17:43 +01:00
thisWeek = document.querySelector('time-input').value; // '1w'
2012-12-15 23:37:13 +01:00
// parse times
var hoursToday = today.parseTime('h', settings),
daysThisWeek = thisWeek.parseTime('d', settings);
2012-12-22 18:17:43 +01:00
// or
2012-12-15 23:37:13 +01:00
var hoursToday = (new Timestring(settings)).parse(today, 'h'),
2012-12-22 18:17:43 +01:00
daysThisWeek = (new Timestring(settings)).parse(thisWeek, 'd');
2012-12-15 23:37:13 +01:00
2012-12-22 18:17:43 +01:00
console.log(hoursToday); // will log 7.5
console.log(daysThisWeek); // will log 5
```