ship-components-ago
v0.2.1
Published
React component used for time formatting and upload
Downloads
2
Readme
ship-components-ago
Exports a component that detects how long ago an element was created or made.
Overview
There are two formats for displaying the component. The normal format which does not take in the twitter
property will show a longer version of time difference between when a snippet was posted versus the present time.
Using the twitter
prop results in a smaller version. See the image below for examples.
Examples image
Install dependencies and modules
To get started, navigate to the root directory of the project and run the following command to install the packages with npm:
$ npm install
Running
After running the command above, run the following command in and navigate to http://localhost:8080.
$ npm run start
Examples can be found in the examples/
folder.
Changelog
- 0.2.1: Remove engines requirement
- 0.2.0: Fixed package.json main path, added JA localization, and added second/minute examples.
- 0.1.0: Added basic functionality, such as regarding twitter comment shortening.
Usage
ES6/JSX (Recommended)
The component is written using ES6/JSX therefore Babel is recommended to use it. The below example is based on using webpack and babel-loader.
import React from 'react';
import Ago from 'ship-components-ago';
export default class ExampleClass extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div>
<Ago
date={date}
twitter
/>
</div>
);
}
}
Replace the prop values with accordance to your expectations for user behavior.
License
The MIT License (MIT)
Copyright (c) 2019
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.