[DOC] Update README
This commit is contained in:
parent
c7b9192e5a
commit
16368addfa
172
README.md
172
README.md
@ -1,48 +1,57 @@
|
|||||||
[![Build Status](https://travis-ci.org/ffrgb/meshviewer.svg?branch=develop&style=flat-square)](https://travis-ci.org/ffrgb/meshviewer)
|
# Meshviewer
|
||||||
|
[![Build Status](https://img.shields.io/travis/ffrgb/meshviewer/develop.svg?style=flat-square)](https://travis-ci.org/ffrgb/meshviewer)
|
||||||
|
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/ffrgb/meshviewer/develop.svg?style=flat-square)](https://scrutinizer-ci.com/g/ffrgb/meshviewer/?branch=develop)
|
||||||
|
[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg?style=flat-square)](https://www.gnu.org/licenses/agpl-3.0)
|
||||||
|
|
||||||
### Main differences to https://github.com/ffnord/meshviewer
|
Web-app to visualize nodes and links on a map for Freifunk open mesh network.
|
||||||
#### Some features are maybe merged
|
|
||||||
|
|
||||||
- Add modes - For example add a night layer and style
|
#### Main differences to https://github.com/ffnord/meshviewer
|
||||||
- Updates selected node or list (incl. image stats cache-breaker) - not only overview tables
|
_Some similar features might have been implemented/merged_
|
||||||
|
|
||||||
|
- Map layer modes (Allow to set a default layer based on time combined with a stylesheet)
|
||||||
|
- Updates for selected node or list (incl. image stats cache-breaker)
|
||||||
- Node filter is implemented
|
- Node filter is implemented
|
||||||
- Zoom level if you click a node (`nodeZoom`) - Zoom level 22 available, but it is to close for a click
|
- Zoom level for a node (`nodeZoom`) - Zoom level 22 available, but it is to close for a click
|
||||||
- Formatted Code
|
- Formatted Code
|
||||||
- Translation support - https://crowdin.com/project/meshviewer - Contact us for new languages
|
- Translation support - https://crowdin.com/project/meshviewer - Contact us for new languages
|
||||||
|
- Currently available: en, de & fr
|
||||||
- Grunt inline for some css and js - less requests
|
- Grunt inline for some css and js - less requests
|
||||||
- Icon font with only needed icons
|
- Icon font with needed icons only
|
||||||
- Upgrade to grunt v1.x (Tested with Node.js 4 LTS,6 LTS,7 Linux,OSX,W**)
|
- Upgrade to Grunt v1.x (Tested with Node.js 4/6 LTS, 7 on Linux, 7 OSX & W**)
|
||||||
- Inline some css and js
|
- Moved css and some js inline
|
||||||
- Remove bower in favour of npm/yarn
|
- Remove bower in favour of npm/yarn
|
||||||
- Load only moment.js without languages - Languages included in translations
|
- Load only moment.js without languages (Languages are included in translations)
|
||||||
- Remove unneeded components (es6-shim, tablesort, numeraljs, leaflet-providers, jshashes)
|
- Remove unneeded components (es6-shim, tablesort, numeraljs, leaflet-providers, jshashes)
|
||||||
- Rbush v2 - performance boost in last versions. (Positions labels and clients on the map)
|
- RBush v2 - performance boost in last versions (Positions labels and clients on the map)
|
||||||
- Right click open layermenu
|
|
||||||
- Remove ruby dependency
|
- Remove ruby dependency
|
||||||
- FixedCenter is required
|
- FixedCenter is required
|
||||||
- Rewrite Scss, SASS lint and variables for easy customization/adjustments
|
- Rewrite scss, sass-lint and variables for easy customization/adjustments
|
||||||
- Improved cross browser/device support THX@BrowserStack
|
- Improved cross browser/device support THX@BrowserStack
|
||||||
- Leaflet with patch to avoid IE/Edge crashes
|
- Leaflet with patch to avoid IE/Edge crashes
|
||||||
- Add yarn package manager in favor of npm (npm still works)
|
- Yarn package manager in favor of npm (npm still works)
|
||||||
- Configurable reverse geocoding server
|
- Configurable reverse geocoding server
|
||||||
- [A lot more in commit history](https://github.com/ffrgb/meshviewer/commits/develop)
|
- [A lot more in the commit history](https://github.com/ffrgb/meshviewer/commits/develop)
|
||||||
|
|
||||||
# Demo (embedded):
|
## Demo:
|
||||||
|
|
||||||
https://regensburg.freifunk.net/netz/karte/
|
Embedded: https://regensburg.freifunk.net/netz/karte/<br>
|
||||||
|
Standalone: https://regensburg.freifunk.net/meshviewer/
|
||||||
|
|
||||||
# Screenshots
|
## Known instances
|
||||||
|
|
||||||
> TODO new uptodate images
|
| Community | Instance | Repo GitHub |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| Freifunk Bremen | https://map.bremen.freifunk.net/ | [FreifunkBremen/meshviewer-ffrgb](https://github.com/FreifunkBremen/meshviewer-ffrgb) |
|
||||||
|
|
||||||
# Dependencies
|
|
||||||
|
|
||||||
- yarn
|
## Dependencies
|
||||||
|
|
||||||
|
- yarn (npm fallback)
|
||||||
- grunt-cli
|
- grunt-cli
|
||||||
|
|
||||||
# Installing dependencies
|
### Installing dependencies
|
||||||
|
|
||||||
### npm is still possible, but yarn is much faster https://yarnpkg.com/
|
_npm is still possible to use, but yarn is much faster https://yarnpkg.com/_
|
||||||
|
|
||||||
Install yarn package-manager:
|
Install yarn package-manager:
|
||||||
|
|
||||||
@ -50,17 +59,21 @@ Install yarn package-manager:
|
|||||||
|
|
||||||
Execute these commands on your server as a normal user to prepare the dependencies:
|
Execute these commands on your server as a normal user to prepare the dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
git clone https://github.com/ffrgb/meshviewer.git
|
git clone https://github.com/ffrgb/meshviewer.git
|
||||||
cd meshviewer
|
cd meshviewer
|
||||||
yarn
|
yarn
|
||||||
# Only needed when no global grunt exists
|
# Only needed when no global grunt is installed
|
||||||
yarn global add grunt-cli
|
yarn global add grunt-cli
|
||||||
|
```
|
||||||
|
|
||||||
# Building
|
## Building
|
||||||
|
|
||||||
Just run the following command from the meshviewer directory:
|
Just run the following command from the meshviewer directory:
|
||||||
|
|
||||||
|
```bash
|
||||||
grunt
|
grunt
|
||||||
|
```
|
||||||
|
|
||||||
This will generate `build/` containing all required files.
|
This will generate `build/` containing all required files.
|
||||||
|
|
||||||
@ -70,69 +83,68 @@ Use `grunt serve` for development.
|
|||||||
|
|
||||||
## Support/Help
|
## Support/Help
|
||||||
|
|
||||||
- IRC: irc.hackint.org #freifunkRGB
|
- IRC on irc.hackint.org
|
||||||
- Feel free to open an issue for a problem or a idea.
|
- [#freifunkRGB](irc://irc.hackint.org/freifunkRGB)
|
||||||
|
- [#meshviewer](irc://irc.hackint.org/meshviewer) (development-channel)
|
||||||
# Configure
|
- Feel free to open an [issue](https://github.com/ffrgb/meshviewer/issues/new) for a problem or an idea.
|
||||||
|
|
||||||
Change `config.json`to match your community.
|
|
||||||
|
|
||||||
|
|
||||||
## Customize style
|
## Customize style
|
||||||
|
|
||||||
Start your development and edit files in `scss/custom/`. Additional information in comments.
|
Start your development and edit files in `scss/custom/`. Additional information in file comments.
|
||||||
|
|
||||||
## dataPath (string/array)
|
## Configure
|
||||||
|
|
||||||
|
Change `config.json`to match your community.
|
||||||
|
|
||||||
|
### dataPath (string/array)
|
||||||
|
|
||||||
`dataPath` can be either a string containing the address of a Nodes.json v2 compatible backend (e.g. ffmap backend) or an array containing multiple addresses.
|
`dataPath` can be either a string containing the address of a Nodes.json v2 compatible backend (e.g. ffmap backend) or an array containing multiple addresses.
|
||||||
Don't forget the trailing slash!
|
Don't forget the trailing slash!
|
||||||
Also, proxying the data through a webserver will allow GZip and thus will greatly reduce bandwidth consumption.
|
Also, proxying the data through a webserver will allow GZip and thus will greatly reduce bandwidth consumption.
|
||||||
It may help with firewall problems too.
|
It may help with firewall problems too.
|
||||||
|
|
||||||
## siteName (string)
|
### siteName (string)
|
||||||
|
|
||||||
Change this to match your communities' name. It will be used in various places.
|
Change this to match your communities' name. It will be used in various places.
|
||||||
|
|
||||||
## maxAge (integer)
|
### maxAge (integer)
|
||||||
|
|
||||||
Nodes being online for less than maxAge days are considered "new". Likewise,
|
Nodes being online for less than maxAge days are considered "new". Likewise,
|
||||||
nodes being offline for more than than maxAge days are considered "lost".
|
nodes being offline for more than than maxAge days are considered "lost".
|
||||||
|
|
||||||
## maxAgeAlert (integer)
|
### maxAgeAlert (integer)
|
||||||
|
|
||||||
Nodes being offline for more than than maxAge days are considered "lost".
|
Nodes being offline for more than than maxAge days are considered "lost".
|
||||||
Lost will be splitted in alert and lost.
|
Lost will be splitted in alert and lost.
|
||||||
|
|
||||||
## nodeZoom (integer)
|
### nodeZoom (integer)
|
||||||
|
|
||||||
Max level to be applied by clicking a node or open a node. With value `18` near by buildings and streets should be visible.
|
Max level to be applied by clicking a node or open a node. With value `18` near by buildings and streets should be visible.
|
||||||
Interesting if one of configured map provider has zoom-level under `18`.
|
Interesting if one of configured map provider has zoom-level under `18`.
|
||||||
|
|
||||||
## labelZoom (integer)
|
### labelZoom (integer)
|
||||||
|
|
||||||
Min. level for node labels shown on the map. Labels aren't shown in first zoom levels and need performance.
|
Min. level for node labels shown on the map. Labels aren't shown in first zoom levels and need performance.
|
||||||
|
|
||||||
## clientZoom (integer)
|
### clientZoom (integer)
|
||||||
|
|
||||||
Min. level to set starting layer for client dots on map.
|
Min. level to set starting layer for client dots on map.
|
||||||
|
|
||||||
## nodeInfobox
|
### nodeInfobox
|
||||||
|
|
||||||
#### contact (bool)
|
#### contact (bool, optional)
|
||||||
|
|
||||||
Setting this to `false` will hide contact information for nodes.
|
Setting this to `false` will hide contact information for nodes.
|
||||||
|
|
||||||
#### hardwareUsage (bool)
|
#### hardwareUsage (bool, optional)
|
||||||
|
|
||||||
Setting this to `false` will hide bars of memory usage and load avg for nodes.
|
Setting this to `false` will hide bars of memory usage and load avg for nodes.
|
||||||
|
|
||||||
## mapLayers (List)
|
### mapLayers (List)
|
||||||
|
|
||||||
A list of objects describing map layers. Each object has at least `name`, `url` and `config` properties. [Example layers and configuration](http://leaflet-extras.github.io/leaflet-providers/preview/) (map against config.json).
|
A list of objects describing map layers. Each object has at least `name`, `url` and `config` properties. [Example layers and configuration](http://leaflet-extras.github.io/leaflet-providers/preview/) (map against config.json).
|
||||||
|
|
||||||
### Additional arguments
|
#### mode (string, optional)
|
||||||
|
|
||||||
#### mode (string)
|
|
||||||
|
|
||||||
Allows to load a additional style for a night mode or similar use case. Possible are inline style or link.
|
Allows to load a additional style for a night mode or similar use case. Possible are inline style or link.
|
||||||
Inline avoids re-rendering and maybe issues with label-layer update. Important are class "css-mode mode-name" and media "not".
|
Inline avoids re-rendering and maybe issues with label-layer update. Important are class "css-mode mode-name" and media "not".
|
||||||
@ -151,20 +163,21 @@ or
|
|||||||
</style>
|
</style>
|
||||||
```
|
```
|
||||||
|
|
||||||
#### start (integer)
|
#### start (integer, optional)
|
||||||
|
|
||||||
Start a time range to put this mapLayer on first position.
|
Start a time range to put this mapLayer on first position.
|
||||||
|
|
||||||
#### end (integer)
|
#### end (integer, optional)
|
||||||
|
|
||||||
End a time range for first map. Stops sort this mapLayer.
|
End a time range for first map. Stops sort this mapLayer.
|
||||||
|
|
||||||
## fixedCenter (array[array, array])
|
### fixedCenter (array[array, array])
|
||||||
|
|
||||||
Choose a rectangle that must be displayed on the map. Set 2 Locations and everything between will displayed.
|
Choose a rectangle that must be displayed on the map. Set 2 Locations and everything between will displayed.
|
||||||
|
|
||||||
Examples for `fixedCenter`:
|
Examples for `fixedCenter`:
|
||||||
|
|
||||||
|
```json
|
||||||
// Set a visible frame
|
// Set a visible frame
|
||||||
"fixedCenter": [
|
"fixedCenter": [
|
||||||
[
|
[
|
||||||
@ -176,8 +189,9 @@ Examples for `fixedCenter`:
|
|||||||
12.8917
|
12.8917
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
```
|
||||||
|
|
||||||
## nodeInfos (array, optional)
|
### nodeInfos (array, optional)
|
||||||
|
|
||||||
This option allows to show node statistics depending on following case-sensitive parameters:
|
This option allows to show node statistics depending on following case-sensitive parameters:
|
||||||
|
|
||||||
@ -192,23 +206,26 @@ you can use the case-sensitive template string `{NODE_ID}`, `{NODE_NAME}`, `{LOC
|
|||||||
|
|
||||||
Examples for `nodeInfos`:
|
Examples for `nodeInfos`:
|
||||||
|
|
||||||
|
```json
|
||||||
"nodeInfos": [
|
"nodeInfos": [
|
||||||
|
{
|
||||||
{ "name": "Clientstatistik",
|
"name": "Clientstatistik",
|
||||||
"href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
|
"href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
|
||||||
"image": "stats/render/dashboard-solo/db/node-byid?panelId=1&fullscreen&theme=light&width=600&height=300&var-nodeid={NODE_ID}&var-host={NODE_NAME}&_t={TIME}",
|
"image": "stats/render/dashboard-solo/db/node-byid?panelId=1&fullscreen&theme=light&width=600&height=300&var-nodeid={NODE_ID}&var-host={NODE_NAME}&_t={TIME}",
|
||||||
"title": "Knoten {NODE_ID}"
|
"title": "Knoten {NODE_ID}"
|
||||||
},
|
},
|
||||||
{ "name": "Uptime",
|
{
|
||||||
|
"name": "Uptime",
|
||||||
"href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
|
"href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
|
||||||
"image": "stats/render/dashboard-solo/db/node-byid?panelId=2&fullscreen&theme=light&width=600&height=300&var-nodeid={NODE_ID}&_t={TIME}",
|
"image": "stats/render/dashboard-solo/db/node-byid?panelId=2&fullscreen&theme=light&width=600&height=300&var-nodeid={NODE_ID}&_t={TIME}",
|
||||||
"title": "Knoten {NODE_ID}"
|
"title": "Knoten {NODE_ID}"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
```
|
||||||
|
|
||||||
In order to have statistics images available, you have to set up an instance of each [Prometheus](http://prometheus.io/) and [Grafana](http://grafana.org/).
|
In order to have statistics images available, you have to set up an instance of each [Prometheus](http://prometheus.io/) and [Grafana](http://grafana.org/).
|
||||||
|
|
||||||
## globalInfos (array, optional)
|
### globalInfos (array, optional)
|
||||||
|
|
||||||
This option allows to show global statistics on statistics page depending on following case-sensitive parameters:
|
This option allows to show global statistics on statistics page depending on following case-sensitive parameters:
|
||||||
|
|
||||||
@ -222,15 +239,18 @@ In contrast to `nodeInfos` there is no template substitution in `href`, `image`
|
|||||||
|
|
||||||
Examples for `globalInfos` using Grafana server rendering:
|
Examples for `globalInfos` using Grafana server rendering:
|
||||||
|
|
||||||
|
```json
|
||||||
"globalInfos": [
|
"globalInfos": [
|
||||||
{ "name": "Wochenstatistik",
|
{
|
||||||
|
"name": "Wochenstatistik",
|
||||||
"href": "stats/render/render/dashboard-solo/db/global?panelId=1&fullscreen&theme=light&width=600&height=300",
|
"href": "stats/render/render/dashboard-solo/db/global?panelId=1&fullscreen&theme=light&width=600&height=300",
|
||||||
"image": "nodes/globalGraph.png",
|
"image": "nodes/globalGraph.png",
|
||||||
"title": "Bild mit Wochenstatistik"
|
"title": "Bild mit Wochenstatistik"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
```
|
||||||
|
|
||||||
## linkInfos (array, optional)
|
### linkInfos (array, optional)
|
||||||
|
|
||||||
This option allows to show link statistics depending on the following case-sensitive parameters:
|
This option allows to show link statistics depending on the following case-sensitive parameters:
|
||||||
|
|
||||||
@ -243,15 +263,18 @@ This option allows to show link statistics depending on the following case-sensi
|
|||||||
To insert the source or target variable in either `href`, `image` or `title`
|
To insert the source or target variable in either `href`, `image` or `title`
|
||||||
you can use the case-sensitive template strings `{SOURCE_ID}`, `{TARGET_ID}`, `{SOURCE_NAME}`, `{TARGET_NAME}`, `{LOCALE}` and `{TIME}` as cache-breaker.
|
you can use the case-sensitive template strings `{SOURCE_ID}`, `{TARGET_ID}`, `{SOURCE_NAME}`, `{TARGET_NAME}`, `{LOCALE}` and `{TIME}` as cache-breaker.
|
||||||
|
|
||||||
|
```json
|
||||||
"linkInfos": [
|
"linkInfos": [
|
||||||
{ "name": "Linkstatistik",
|
{
|
||||||
|
"name": "Linkstatistik",
|
||||||
"href": "stats/dashboard/db/links?var-source={SOURCE_ID}&var-target={TARGET_ID}",
|
"href": "stats/dashboard/db/links?var-source={SOURCE_ID}&var-target={TARGET_ID}",
|
||||||
"image": "stats/render/dashboard-solo/db/links?panelId=1&fullscreen&theme=light&width=800&height=600&var-source={SOURCE_ID}&var-target={TARGET_ID}&_t={TIME}",
|
"image": "stats/render/dashboard-solo/db/links?panelId=1&fullscreen&theme=light&width=800&height=600&var-source={SOURCE_ID}&var-target={TARGET_ID}&_t={TIME}",
|
||||||
"title": "Bild mit Linkstatistik"
|
"title": "Bild mit Linkstatistik"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
```
|
||||||
|
|
||||||
## siteNames (array, optional)
|
### siteNames (array, optional)
|
||||||
|
|
||||||
In this array name definitions for site statistics and node info can be saved. This requires one object for each site code. This object must contain:
|
In this array name definitions for site statistics and node info can be saved. This requires one object for each site code. This object must contain:
|
||||||
|
|
||||||
@ -262,35 +285,44 @@ If neither `siteNames` nor `showSites` are set, site statistics and node info wo
|
|||||||
|
|
||||||
Example for `siteNames`:
|
Example for `siteNames`:
|
||||||
|
|
||||||
|
```json
|
||||||
"siteNames": [
|
"siteNames": [
|
||||||
{ "site": "ffhl", "name": "Lübeck" },
|
{
|
||||||
{ "site": "ffeh", "name": "Entenhausen" ),
|
"site": "ffrgb",
|
||||||
{ "site": "ffgt", "name": "Gothamcity" },
|
"name": "Regensburg"
|
||||||
{ "site": "ffal", "name": "Atlantis" }
|
},
|
||||||
]
|
{
|
||||||
|
"site": "ffrgb-dummy",
|
||||||
|
"name": "Regensburg Test"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## supportedLocale (array)
|
### supportedLocale (array)
|
||||||
|
|
||||||
Add supported locale (with matching language file in locales/*.json) and it will be matched against the browser language setting. Fallback is the first language in the array.
|
Add supported locale (with matching language file in locales/*.json) and it will be matched against the browser language setting. Fallback is the first language in the array.
|
||||||
|
|
||||||
Example for `supportedLocale`:
|
Example for `supportedLocale`:
|
||||||
|
|
||||||
|
```json
|
||||||
"supportedLocale": [
|
"supportedLocale": [
|
||||||
"en",
|
"en",
|
||||||
"de",
|
"de",
|
||||||
"fr"
|
"fr"
|
||||||
]
|
]
|
||||||
|
```
|
||||||
|
|
||||||
## cacheBreaker (string)
|
### cacheBreaker (string)
|
||||||
|
|
||||||
Will be replaced in every build to avoid missing or outdated language strings, because language.json isn't up to date.
|
Will be replaced in every build to avoid missing or outdated language strings, because language.json isn't up to date.
|
||||||
|
|
||||||
_Fixed value (y0z)._
|
_Fixed value (y0z)._
|
||||||
|
|
||||||
## Sponsoring / Supporting
|
## Sponsoring / Supporting
|
||||||
- [BrowserStack](https://www.browserstack.com/) for providing a awesome testing service for hundreds of browsers
|
- [BrowserStack](https://www.browserstack.com/) for providing an awesome testing service for hundreds of browsers
|
||||||
- [Travis CI](https://travis-ci.org/) for testing every push and pull request
|
- [Travis CI](https://travis-ci.org/) for building meshviewer on every push and pull request
|
||||||
- [Crowdin](https://crowdin.com/) for providing easy non-developer translation environment
|
- [Scrutinizer CI](https://scrutinizer-ci.com/g/ffrgb/meshviewer/) for testing code quality on every push and pull request
|
||||||
|
- [Crowdin](https://crowdin.com/) for providing an easy non-developer translation environment
|
||||||
|
|
||||||
These tools need a lot of infrastructure behind and don't charge open source software
|
These tools need a lot of infrastructure and provide a free account for open source software.
|
||||||
|
Loading…
Reference in New Issue
Block a user