This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Xaver Maierhofer 51caf94846 [BUGFIX] No new nodes list error 2016-11-03 21:45:15 +01:00
assets [TASK] Adjust to new sass-lint rule 2016-07-12 21:18:13 +02:00
doc README: add screenshots 2015-04-01 17:07:50 +02:00
html [BUGFIX] i* devices landscape zoom 2016-06-24 17:28:25 +02:00
lib [BUGFIX] No new nodes list error 2016-11-03 21:45:15 +01:00
scss [TASK] Add layer modes and night example 2016-07-23 16:15:47 +02:00
tasks [TASK] Add layer modes and night example 2016-07-23 16:15:47 +02:00
.editorconfig add .editorconfig (#25) 2016-05-22 12:30:44 +02:00
.eslintrc [TASK] Eslint - console.log replace error with warning 2016-06-22 02:55:46 +02:00
.gitignore [BUGFIX] Add config.json to build process 2016-06-02 01:10:44 +02:00
.sass-lint.yml [TASK] Improve cross browser support 2016-06-03 19:44:09 +02:00
.travis.yml [!!!][TASK] Update to eslint v3 2016-07-12 20:52:27 +02:00
CHANGELOG.md Update changelog for v4 2015-09-04 14:56:21 +02:00
Gruntfile.js [TASK] Support comments in config.json 2016-06-16 20:51:07 +02:00
LICENSE change LICENSE to AGPL 3 2015-04-11 13:40:15 +02:00
README.md [TASK] Add layer modes and night example 2016-07-23 16:15:47 +02:00
app.js [TASK] Inject config.json inline 2016-06-01 22:25:52 +02:00
bower.json [TASK] RequireJs update 2016-09-17 19:57:19 +02:00
config.json [TASK] Add nodeZoom level 2016-06-23 04:15:54 +02:00
package.json [TASK] Update grunt modules 2016-11-03 21:44:37 +01:00

README.md

Build Status

Main differences to https://github.com/ffnord/meshviewer

Some features are maybe merged

  • Add modes - For example add a night layer and style
  • Updates selected node or list (incl. image stats cache-breaker) - not only overview tables
  • Zoom level if you click a node (nodeZoom) - Zoom level 22 available, bit it is to close for a click
  • Formatted Code
  • Grunt inline for some css and js - less requests
  • Icon font with only needed icons
  • Upgrade to grunt v1.x (NodeJS 4 - 6.3+ compatible)
    • Inline some css and js
  • Bower update all components
    • Load only german locale from 101 languages from moment.js
  • Right click open layermenu
  • Remove ruby dependency
  • FixedCenter is required
  • Rewrite Scss, SASS lint and variables for easy customization/adjustments
  • Improved cross browser/device support THX@BrowserStack
  • Leaflet with patch to avoid IE/Edge crashes
  • A lot more in commit history

Demo (embedded):

https://regensburg.freifunk.net/netz/karte/

Screenshots

TODO new uptodate images

Dependencies

  • npm
  • bower
  • grunt-cli

Installing dependencies

Install npm package-manager. On Debian-like systems run:

sudo apt-get install npm

Execute these commands on your server as a normal user to prepare the dependencies:

git clone https://github.com/ffrgb/meshviewer.git
cd meshviewer
npm install
npm install grunt-cli

Building

Just run the following command from the meshviewer directory:

node_modules/.bin/grunt

This will generate build/ containing all required files.

Development

Use grunt serve for development.

Support/Help

  • IRC: irc.hackint.org #freifunkRGB
  • Feel free to open an issue for a problem or a idea.

Configure

Change config.jsonto match your community.

Customize style

Start your development and edit files in scss/custom/. Additional information in comments.

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. Don't forget the trailing slash! Also, proxying the data through a webserver will allow GZip and thus will greatly reduce bandwidth consumption. It may help with firewall problems too.

siteName (string)

Change this to match your communities' name. It will be used in various places.

showContact (bool)

Setting this to false will hide contact information for nodes.

maxAge (integer)

Nodes being online for less than maxAge days are considered "new". Likewise, nodes being offline for more than than maxAge days are considered "lost".

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. Interesting if one of configured map provider has zoom-level under 18.

mapLayers (List)

A list of objects describing map layers. Each object has at least name property and optionally url and config properties. If no url is supplied name is assumed to name a Leaflet-provider.

fixedCenter (array, optional)

This option allows to fix the map at one specific coordinate depending on following case-sensitive parameters:

  • lat latitude of the center point
  • lng longitude of the center point
  • radius visible radius around the center in km

Examples for fixedCenter:

"fixedCenter": {
  "lat": 50.80,
  "lng": 12.07,
  "radius": 30
}

nodeInfos (array, optional)

This option allows to show node statistics depending on following case-sensitive parameters:

  • name caption of statistics segment in infobox
  • href absolute or relative URL to statistics image
  • thumbnail absolute or relative URL to thumbnail image, can be the same like href
  • caption is shown, if thumbnail is not present (no thumbnail in infobox)

To insert current node-id in either href, thumbnail or caption you can use the case-sensitive template string {NODE_ID}, {NODE_NAME} and {TIME} as cache-breaker.

Examples for nodeInfos:

"nodeInfos": [

  { "name": "Clientstatistik",
    "href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
    "thumbnail": "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}",
    "caption": "Knoten {NODE_ID}"
  },
  { "name": "Uptime",
    "href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
    "thumbnail": "stats/render/dashboard-solo/db/node-byid?panelId=2&fullscreen&theme=light&width=600&height=300&var-nodeid={NODE_ID}&_t={TIME}",
    "caption": "Knoten {NODE_ID}"
  }
]

In order to have statistics images available, you have to set up an instance of each Prometheus and Grafana.

globalInfos (array, optional)

This option allows to show global statistics on statistics page depending on following case-sensitive parameters:

  • name caption of statistics segment in infobox
  • href absolute or relative URL to statistics image
  • thumbnail absolute or relative URL to thumbnail image, can be the same like href
  • caption is shown, if thumbnail is not present (no thumbnail in infobox)

In contrast to nodeInfos there is no template substitution in href, thumbnail or caption.

Examples for globalInfos using Grafana server rendering:

"globalInfos": [
  { "name": "Wochenstatistik",
    "href": "stats/render/render/dashboard-solo/db/global?panelId=1&fullscreen&theme=light&width=600&height=300",
    "thumbnail": "nodes/globalGraph.png",
    "caption": "Bild mit Wochenstatistik"
  }
]

linkInfos (array, optional)

This option allows to show link statistics depending on the following case-sensitive parameters:

  • name caption of statistics segment in infobox
  • href absolute or relative URL to statistics image
  • thumbnail absolute or relative URL to thumbnail image, can be the same like href
  • caption is shown, if thumbnail is not present (no thumbnail in infobox)

To insert the source or target node-id in either href, thumbnail or caption you can use the case-sensitive template strings {SOURCE}, {TARGET} and {TIME} as cache-breaker.

"linkInfos": [
  { "href": "stats/dashboard/db/links?var-source={SOURCE}&var-target={TARGET}",
    "thumbnail": "stats/render/dashboard-solo/db/links?panelId=1&fullscreen&theme=light&width=800&height=600&var-source={SOURCE}&var-target={TARGET}&_t={TIME}"
  }
]

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:

  • site the site code
  • name the defined written name for this site code

If neither siteNames nor showSites are set, site statistics and node info won't be displayed

Example for siteNames:

"siteNames": [
  { "site": "ffhl", "name": "Lübeck" },
  { "site": "ffeh", "name": "Entenhausen" ),
  { "site": "ffgt", "name": "Gothamcity" },
  { "site": "ffal", "name": "Atlantis" }
]

Sponsoring / Supporting

  • BrowserStack for providing a awesome testing service for hundreds of browsers
  • Travis CI for testing every push and pull request

These tools need a lot of infrastructure behind and don't charge open source software