interactive-mining/interactive-mining-angular-...
Konstantinos Triantafyllou 8d56c669f8 Update types/node to version 16 2023-10-06 15:32:55 +03:00
..
e2e John fouf feedback 2018-03-22 23:32:33 +02:00
src Merge remote-tracking branch 'origin/angular-14' into angular-16 2023-08-23 18:35:34 +03:00
.browserslistrc Update to angular 10 2021-06-14 16:29:53 +03:00
.gitignore Add .angular folder to gitingore 2022-09-23 17:01:13 +03:00
README.md Update readme 2021-06-14 18:30:02 +03:00
angular.json Update angular core and cli to version 14 2022-09-23 17:00:23 +03:00
karma.conf.js 1. Change front-end to angular7. 2019-05-30 11:39:35 +03:00
ng-package.json Move ng2-nouislider to project and remove dependency. Fix some issues regarding EventTarget and ng2-nouislider 2022-09-26 10:49:50 +03:00
package.json Update types/node to version 16 2023-10-06 15:32:55 +03:00
protractor.conf.js John fouf feedback 2018-03-22 23:32:33 +02:00
tsconfig.json Migrate angular core and cli to version 15 and update dependencies to be compatible with the newer version. 2023-08-04 11:11:42 +03:00

README.md

Interactivemining v3

This project was generated with Angular CLI version 1.3.0 and updated to version 11.2.14

Import

Import Module

import {InteractiveMiningModule} from 'interactiveminingv3';

Place these files in your angular.json

"scripts": [
  "../node_modules/jquery/dist/jquery.min.js",
  "../node_modules/uikit/dist/js/uikit.min.js",
  "../node_modules/uikit/dist/js/uikit-icons.min.js",
  "../node_modules/interactiveminingv3/assets/js/ResizeSensor.js",
  "../node_modules/interactiveminingv3/assets/js/jquery.sticky-sidebar.js"
]

Import this css files on your specific scss file. E.g

@use "sass:meta";
@import "~interactiveminingv3/assets/css/variables.css";

.mining {
  
  @include meta.load-css("node_modules/interactiveminingv3/assets/css/interactive-mining.css");
  @include meta.load-css("node_modules/interactiveminingv3/assets/css/animations.css");
}

Store to LocalStorage the Username and the Backend

localStorage.setItem('user_id', this._userid);
localStorage.setItem('mining_backend_address', this._backendserveraddress);

Usage

Navigate to http://.../mining with your project's router

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor. Before running the tests make sure you are serving the app via ng serve.