Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Jopyth/MMM-Trello
This an extension for the MagicMirror. It provides a very simple Trello integration, by displaying cards in a list.
https://github.com/Jopyth/MMM-Trello
magic-mirror-modules magicmirror trello trello-api
Last synced: 3 months ago
JSON representation
This an extension for the MagicMirror. It provides a very simple Trello integration, by displaying cards in a list.
- Host: GitHub
- URL: https://github.com/Jopyth/MMM-Trello
- Owner: Jopyth
- Created: 2016-07-09T14:45:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-05T12:41:47.000Z (over 1 year ago)
- Last Synced: 2024-06-29T09:34:48.344Z (5 months ago)
- Topics: magic-mirror-modules, magicmirror, trello, trello-api
- Language: JavaScript
- Homepage:
- Size: 55.7 KB
- Stars: 53
- Watchers: 5
- Forks: 25
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mmm - **MMM-Trello**
README
# Module: Trello
The `Trello` module displays all cards in a specific [Trello](https://trello.com/) list, in a style similar to the [Newsfeed](https://github.com/MichMich/MagicMirror/tree/master/modules/default/newsfeed) (showing one card at a time).
Applications can be: displaying a TODO list, showing notes, or important information which needs to be shared between roommates.![Your card on trello.com](/.github/trellocard.png?raw=true)
![Your card on the mirror](/.github/mirrorcard.png?raw=true)## Installation
1\. Execute the following commands from your `MagicMirror/modules` folder:
```bash
git clone https://github.com/Jopyth/MMM-Trello.git # clone this repository
cd MMM-Trello # navigate into the folder
npm install # install dependencies
```
2\. Add the module to your `config/config.js` file (see below for details).## Using the module
To use this module you will need a trello API Key, an access token, and your list identifier.
Get your required API Key and Token [here](https://trello.com/app-key), or see 'Configuration Options' for more details.
Also find your list id as described [here](https://developers.trello.com/get-started/start-building#create) below *Finding a List ID*.Then, add it to the modules array in the `config/config.js` file:
````javascript
{
module: 'MMM-Trello',
position: 'bottom_center', // This can be any of the regions, best results in center regions.
config: {
// See 'Configuration options' for more information.
api_key: "INSERT_YOUR_API_KEY",
token: "INSERT_YOUR_TOKEN",
list: "INSERT_YOUR_LIST_ID"
}
},
````## Configuration options
The following properties can be configured:
Option
Description
api_key
Your trello API key, get it here.
This value is REQUIRED
token
Your trello token, get it via this link (replaceAPI_KEY
with your API key!):https://trello.com/1/authorize?expiration=never&scope=read&response_type=token&name=Server%20Token&key=API_KEY
.
This value is REQUIRED
list
The id of the list you want to display, check out the section Finding a List ID.
This value is REQUIRED
reloadInterval
How often does the content need to be fetched (in ms)?
Possible values: anyint
orfloat
Default value:5 * 60 * 1000
(every 10 minutes)
updateInterval
How long should a card be displayed, before switching to the next one (in ms)?
Possible values: anyint
orfloat
Default value:10 * 1000
(every 10 seconds)
animationSpeed
Duration of the fade in and fade out effect in ms.
Possible values: anyint
orfloat
Default value:2.5 * 1000
(2.5 seconds)
showTitle
Whether to show the title of the card.
Possible values:true
orfalse
Default value:true
showDescription
Whether to show the description of the card.
Possible values:true
orfalse
Default value:true
isCompleted
If list symbolizes a set of completed tasks then
enabling this option will strike-out titles.
Possible values:true
orfalse
Default value:false
showLineBreaks
Display line breaks in the description? Needs more space if true.
Possible values:true
orfalse
Default value:false
showDueDate
Whether to show the due date of cards, if they have one.
Possible values:true
orfalse
Default value:true
showChecklists
Whether to show checklists of cards.
Possible values:true
orfalse
Default value:true
showChecklistTitle
Whether to show the title of each checklist before the actual check list.
Possible values:true
orfalse
Default value:false
wholeList
For Trello list containing only simple title only cards, it may be more appropriate to see the full list of cards rather than one at a time. SettingwholeList
totrue
will show all cards in the list at the same time. This will be ugly for complex cards.
Possible values:true
orfalse
Default value:false
## Finding a List ID
Copied from the [Trello API docs](https://developers.trello.com/get-started/start-building):
> One of the trickier parts of using the Trello API for simple use cases is finding a List ID that belongs to a user. There are a few ways of doing this depending on your skillsets. One such way is to use the Chrome Dev Tools to watch network traffic from the official client.
>
> To try to make this easy, we'll be dumping the JSON from a known Card. Open the official Trello web client and find a Card from a list that you want to use as your target.
>
> It should have a short URL that looks like
>
> https://trello.com/c/DcqBrqdx/1-target-card
> Take that URL and add .json to the end as follows:
>
> https://trello.com/c/DcqBrqdx/1-target-card.json
> Within the raw JSON dump you get when pulling up this new URL, you will see a field called **idList**.Make sure you get the id after **idList** (use the search function of your browser - usually accessible with CTRL + F).
The first **id** in the *.json* is not the id of the list you are searching for, it is the id of the card.## FAQ:
### I have a weird error, what should I do?
Please check below if this is a known error, if not, feel free to post in the [Troubleshooting Section](https://forum.magicmirror.builders/category/29/troubleshooting) of the Forum.
|Error|Possible Solution|
|-----|-----|
| Error 404(Not Found): model not found | This can happen when you accidentally take the wrong id. Go through **Finding a list id** [here](#finding-a-list-id) again. Make sure to look for the cryptic number after **idList**, and do not take the first id (that is the card id) in the *.json*. |
| Error 400(api_key is empty) | Enter your api_key (see Configuration Options). |
| Error 400(Bad Request) invalid id | Your list id is not correct. Maybe you forgot a symbol? |
| Error 401(Unauthorized) unauthorized board permission requested | Something is wrong with your token (see [Configuration Options](#configuration-options)). |The MIT License (MIT)
=====================Copyright © 2016 Joseph Bethge
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.**