simple-vue-timeline
A simple but customizable and reactive timeline vue component which leverages the use of common libraries:
- bootstrap vue components,
- vue-fontawesome
- and fecha date formatting.
If you find it useful, give it a star and please consider buying me a coffee.
Use github for any issue you encountered or to give me some feedback of your usage.
Getting Started
Installation
npm install --save simple-vue-timeline
import { Vue } from "vue";
import { SimpleTimelinePlugin } from 'simple-vue-timeline';
Vue.use(SimpleTimelinePlugin);
Declare third party libraries usage
Since 2.x version, third party usages are no more declared by the simple-vue-timeline itself. It is thus your responsibility to declare them in your vue project which uses simple-vue-timeline.
vue-fontawesome
Refer to vue-fontawesome documentation.
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
import { Vue } from "vue";
Vue.component('font-awesome-icon', FontAwesomeIcon);
bootstrap-vue
Refer to bootstrap-vue documentation. The following plugins must be declared:
- BadgePlugin
- ButtonPlugin
- CardPlugin
- LayoutPlugin
import { Vue } from "vue";
import { BadgePlugin, ButtonPlugin, CardPlugin, LayoutPlugin } from 'bootstrap-vue';
Vue.use(BadgePlugin);
Vue.use(ButtonPlugin);
Vue.use(CardPlugin);
Vue.use(LayoutPlugin);
Style
@import '~simple-vue-timeline/dist/simple-vue-timeline';
You must also add the bootstrap style:
@import '~bootstrap/scss/bootstrap';
Template Element
Add the element as follows:
template
<simple-timeline :items="items" dateFormat="YY/MM/DD" @timeline-edit="edit" v-on="$listeners"></simple-timeline>
Refer to the Vue Class Component Sample
section below for a complete sample.
Props
Name | Type | Description |
---|---|---|
items |
Item[] |
An item array containing your timeline items |
dateformat |
string |
The fecha pattern to use to format date |
v-on |
Listener[] |
This one must be set to $listeners to be able to react on event emitted by Control (see Controls below) |
@timeline-<xxx> |
string |
The method to be called to react on <xxx> events (see Controls below) |
items
Component expects an array of Items
Variable | Type | Description |
---|---|---|
id |
number |
An unique id for your Item |
icon |
string |
The id of the fontawesome icon to use |
status |
Status |
A field of the Status enum related to bootstrap color variant (used for icon and card). |
title |
string |
The Item title |
controls |
Control[] |
An array of control for this Item (see Controls below) |
createdDate |
Date |
Date of your Item (dateFormat used to format it) |
body |
string |
The Item content |
Controls
It allows to add buttons on your Item.
Variable | Type | Description |
---|---|---|
method |
string |
A method name used when emitting events |
icon |
string |
The id of the fontawesome icon to use |
Event
On button click, an event is emitting using the identifier timeline-<method>
.
Events are emitted with the following object as parameter
{ eventId: this.eventId }
(this.eventId
matches the id of the Item).
Example
For instance adding the following control
new Control("edit", "pencil-alt")
will generate timeline-edit
event.
To react on such event, one should provide:
- the following prop to the timeline component:
@timeline-edit="edit"`
- the associated
edit
method which will be calledpublic edit(e: any) { console.log("edit " + e["eventId"]); }
Contribute
Once cloned, you can run the following commands to serve the demo.ts entry point.
npm install
npm run serve
Commit messages
Commit messages must follow the AngularJS’s commit message convention also known as conventional-changelog. This repo is commitizen-friendly.
Local Test with npm link
You can use npm link to try the lib integration locally.
Note that you must add a vue.config.js
in the project using the lib with the following content
const path = require("path");
// npm link https://github.com/vuejs/vue-cli/issues/4271#issuecomment-585299391
module.exports = {
configureWebpack: {
resolve: {
alias: {
vue$: path.resolve("./node_modules/vue/dist/vue.runtime.esm.js")
}
}
}
};
Vue Class Component Sample
<template>
<div>
<simple-timeline
:items="items"
dateFormat="YY/MM/DD"
@timeline-edit="edit"
@timeline-copy="copy"
@timeline-trash="trash"
v-on="$listeners"
></simple-timeline>
</div>
</template>
<script lang="ts">
import Vue from "vue";
import { Control, Item, Status } from "simple-vue-timeline";
import { Component } from "vue-property-decorator";
@Component
export default class App extends Vue {
public items: Item[] = [
new Item(
0,
"calendar-alt",
Status.DANGER,
"Event Title",
[new Control("edit", "pencil-alt"), new Control("copy", "plus")],
new Date(),
"Here is the body message of item 0"
),
new Item(
1,
"tasks",
Status.INFO,
"Task Title",
[new Control("edit", "pencil-alt"), new Control("trash", "trash")],
new Date(2020, 2, 2),
"Here is the body message of item 1"
),
new Item(
2,
"home",
Status.SUCCESS,
"Another Title",
[new Control("edit", "bell")],
new Date(2019, 11, 4),
"Here is the body message of item 2"
)
];
public edit(e: any) {
console.log("edit " + e["eventId"]);
}
public copy(e: any) {
console.log("copy " + e["eventId"]);
const item: Item = this.items.find(item => item.id == e["eventId"]) as Item;
const clone = new Item(
this.items.length,
item.icon,
item.status,
item.title,
item.controls,
item.createdDate,
item.body
);
this.items.push(clone);
}
public trash(e: any) {
console.log("trash " + e["eventId"]);
this.items.pop();
}
}
</script>