├── .bowerrc ├── .cfignore ├── .env ├── .gitignore ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.core.resources.prefs ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── .snyk ├── LICENSE ├── README.md ├── app └── analytics_bkg.jpg ├── bower.json ├── config.js ├── gulpfile.js ├── manifest.yml ├── package.json ├── repository.yaml ├── server.js ├── server ├── dashboard │ ├── App.jsx │ ├── dashboard.js │ ├── mozaik-ext-sparkTwitterComponents.js │ ├── sparkTwitterApiClient.js │ ├── sparkTwitterStats.jsx │ ├── sparkTwitterToneBreakdown.jsx │ ├── sparkTwitterTopHashTags.jsx │ ├── styl │ │ ├── _banner.css │ │ ├── _c3.css │ │ ├── _movessidebar.css │ │ ├── _roundpattern.css │ │ ├── _winsovertime.css │ │ └── index.styl │ └── templates │ │ └── index.html └── messageHubBridge.js └── themes └── analytics ├── _clock.styl ├── _vars.styl └── index.styl /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/.bowerrc -------------------------------------------------------------------------------- /.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/.cfignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | # Put your env vars here -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/.snyk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app/analytics_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/app/analytics_bkg.jpg -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/bower.json -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/config.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/gulpfile.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/repository.yaml -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server.js -------------------------------------------------------------------------------- /server/dashboard/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/App.jsx -------------------------------------------------------------------------------- /server/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/dashboard.js -------------------------------------------------------------------------------- /server/dashboard/mozaik-ext-sparkTwitterComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/mozaik-ext-sparkTwitterComponents.js -------------------------------------------------------------------------------- /server/dashboard/sparkTwitterApiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/sparkTwitterApiClient.js -------------------------------------------------------------------------------- /server/dashboard/sparkTwitterStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/sparkTwitterStats.jsx -------------------------------------------------------------------------------- /server/dashboard/sparkTwitterToneBreakdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/sparkTwitterToneBreakdown.jsx -------------------------------------------------------------------------------- /server/dashboard/sparkTwitterTopHashTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/sparkTwitterTopHashTags.jsx -------------------------------------------------------------------------------- /server/dashboard/styl/_banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/styl/_banner.css -------------------------------------------------------------------------------- /server/dashboard/styl/_c3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/styl/_c3.css -------------------------------------------------------------------------------- /server/dashboard/styl/_movessidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/styl/_movessidebar.css -------------------------------------------------------------------------------- /server/dashboard/styl/_roundpattern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/styl/_roundpattern.css -------------------------------------------------------------------------------- /server/dashboard/styl/_winsovertime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/styl/_winsovertime.css -------------------------------------------------------------------------------- /server/dashboard/styl/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/styl/index.styl -------------------------------------------------------------------------------- /server/dashboard/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/dashboard/templates/index.html -------------------------------------------------------------------------------- /server/messageHubBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/server/messageHubBridge.js -------------------------------------------------------------------------------- /themes/analytics/_clock.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/themes/analytics/_clock.styl -------------------------------------------------------------------------------- /themes/analytics/_vars.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibm-watson-data-lab/Spark-Twitter-Watson-Dashboard/HEAD/themes/analytics/_vars.styl -------------------------------------------------------------------------------- /themes/analytics/index.styl: -------------------------------------------------------------------------------- 1 | @import '_clock' 2 | --------------------------------------------------------------------------------