Compare commits
96 Commits
feature/wo
...
928efb659e
| Author | SHA1 | Date | |
|---|---|---|---|
| 928efb659e | |||
| 88025347ec | |||
| 67e1f8bd0c | |||
| 042c2558ae | |||
| ad0487943a | |||
| 56050d0a49 | |||
| bb51af68cd | |||
| 5ee9781463 | |||
| 00a5427950 | |||
| fada5f475b | |||
| d307012aca | |||
| 755f5e5c24 | |||
| f40ee2b6d2 | |||
| d011d5738f | |||
| e5de38b9d9 | |||
| f37ce410eb | |||
| 124a30ad8c | |||
| 52a0cde401 | |||
| 5fbcfbae68 | |||
| 74c6f99fa5 | |||
| 60e1fb2e74 | |||
| 520d0be595 | |||
| 8121f3d751 | |||
| 436edaf3f2 | |||
| 797c88f946 | |||
| 1f427749cf | |||
| 153ca835cb | |||
| 8e79bee1c4 | |||
| 66dc29be92 | |||
| fb620f582f | |||
| 57e1c18a7f | |||
| 050270e890 | |||
| 541fd96a45 | |||
| 93272d5894 | |||
| 7e6cc36750 | |||
| 285ab197e8 | |||
| c92fb73e91 | |||
| 748e3b8c38 | |||
| d2cca5107b | |||
| 9b522866ea | |||
| 6e74f6aea5 | |||
| 95afad4003 | |||
| 7a2706f8fd | |||
| fac3629d14 | |||
| 0c8a17febe | |||
| 4e5de730c5 | |||
| 9ca7888189 | |||
| 1d5a51f79a | |||
| 1430566c6c | |||
| fb3af9507b | |||
| fc35397883 | |||
| 1728b2a922 | |||
| 3d13e19b0b | |||
| 491c765d7e | |||
| 9b4efcbfb5 | |||
| a5559d9113 | |||
| 5aa9e72ab0 | |||
| f8662894b3 | |||
| 330adb4b9f | |||
| 6300e9cfc7 | |||
| efac03a1c7 | |||
| 92d9281c35 | |||
| 594328525e | |||
| 3867d9513f | |||
| b307b88ef1 | |||
| 6e323c39c7 | |||
| f0fce02e06 | |||
| b362ddf8c0 | |||
| 66a1cd12e0 | |||
| 9e81d42cb3 | |||
| 39d7f5f556 | |||
| 60877540f7 | |||
| 3876a45c28 | |||
| cd21d3bdb1 | |||
| 8fd9466fb1 | |||
| ab493346a5 | |||
| 4cb5dc44e3 | |||
| 6611667a49 | |||
| 597d9b64ed | |||
| b420f32838 | |||
| ae76f916ae | |||
| b772584c56 | |||
| fcceb69aa4 | |||
| 8b59396e2c | |||
| 3c8654ceaa | |||
| 8024d44061 | |||
| cf48487a03 | |||
| b88a873635 | |||
| 7a1a1c7c17 | |||
| e0f17c24b8 | |||
| e4cf58528a | |||
| 20ca082d9d | |||
| ab792b6e63 | |||
| cb934b20b7 | |||
| 778fb2d701 | |||
| 6034b79749 |
18
.gitignore
vendored
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
node_modules/
|
||||||
|
.vscode/
|
||||||
|
/es-albums.json
|
||||||
|
/es-artists.json
|
||||||
|
/es-songs.json
|
||||||
|
/iTunesLibrary.xml
|
||||||
|
|
||||||
|
# Working files
|
||||||
|
*.txt
|
||||||
|
*.code-workspace
|
||||||
|
|
||||||
|
# Snippets for tests
|
||||||
|
snippet.py
|
||||||
|
snippet.js
|
||||||
|
dashboard/resultToStudy.json
|
||||||
|
sand_box.py
|
||||||
|
rating_test.py
|
||||||
|
iTunesGraphParser.my.py
|
||||||
26
check_id.py
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import json
|
||||||
|
|
||||||
|
files = ['es-songs.json', 'es-artists.json', 'es-albums.json']
|
||||||
|
|
||||||
|
ids = []
|
||||||
|
bad_lines = {}
|
||||||
|
|
||||||
|
for file in files:
|
||||||
|
with open(file) as fp:
|
||||||
|
line = fp.readline()
|
||||||
|
|
||||||
|
while line:
|
||||||
|
content = json.loads(line)
|
||||||
|
if 'index' in content:
|
||||||
|
id = content['index']['_id']
|
||||||
|
if id in ids:
|
||||||
|
bad_lines[id] = content
|
||||||
|
else:
|
||||||
|
ids.append(id)
|
||||||
|
line = fp.readline()
|
||||||
|
|
||||||
|
if not bad_lines:
|
||||||
|
print("No duplicate ID's found, everything's fine!!")
|
||||||
|
else:
|
||||||
|
print('KO')
|
||||||
|
print(bad_lines)
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
||||||
"project": {
|
|
||||||
"name": "dashboard"
|
|
||||||
},
|
|
||||||
"apps": [
|
|
||||||
{
|
|
||||||
"root": "src",
|
|
||||||
"outDir": "dist",
|
|
||||||
"assets": [
|
|
||||||
"assets",
|
|
||||||
"favicon.ico"
|
|
||||||
],
|
|
||||||
"index": "index.html",
|
|
||||||
"main": "main.ts",
|
|
||||||
"polyfills": "polyfills.ts",
|
|
||||||
"test": "test.ts",
|
|
||||||
"tsconfig": "tsconfig.app.json",
|
|
||||||
"testTsconfig": "tsconfig.spec.json",
|
|
||||||
"prefix": "app",
|
|
||||||
"styles": [
|
|
||||||
"styles.css",
|
|
||||||
"../node_modules/bootstrap/dist/css/bootstrap.min.css"
|
|
||||||
],
|
|
||||||
"scripts": [],
|
|
||||||
"environmentSource": "environments/environment.ts",
|
|
||||||
"environments": {
|
|
||||||
"dev": "environments/environment.ts",
|
|
||||||
"prod": "environments/environment.prod.ts"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"e2e": {
|
|
||||||
"protractor": {
|
|
||||||
"config": "./protractor.conf.js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"lint": [
|
|
||||||
{
|
|
||||||
"project": "src/tsconfig.app.json",
|
|
||||||
"exclude": "**/node_modules/**"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"project": "src/tsconfig.spec.json",
|
|
||||||
"exclude": "**/node_modules/**"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"project": "e2e/tsconfig.e2e.json",
|
|
||||||
"exclude": "**/node_modules/**"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"test": {
|
|
||||||
"karma": {
|
|
||||||
"config": "./karma.conf.js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaults": {
|
|
||||||
"styleExt": "css",
|
|
||||||
"component": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
27
dashboard/README.md
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# Dashboard
|
||||||
|
|
||||||
|
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.0.4.
|
||||||
|
|
||||||
|
## 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.
|
||||||
|
|
||||||
|
## Code scaffolding
|
||||||
|
|
||||||
|
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
||||||
|
|
||||||
|
## 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](https://karma-runner.github.io).
|
||||||
|
|
||||||
|
## Running end-to-end tests
|
||||||
|
|
||||||
|
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
|
||||||
|
|
||||||
|
## Further help
|
||||||
|
|
||||||
|
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
||||||
132
dashboard/angular.json
Normal file
@@ -0,0 +1,132 @@
|
|||||||
|
{
|
||||||
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||||||
|
"version": 1,
|
||||||
|
"newProjectRoot": "projects",
|
||||||
|
"projects": {
|
||||||
|
"dashboard": {
|
||||||
|
"projectType": "application",
|
||||||
|
"schematics": {},
|
||||||
|
"root": "",
|
||||||
|
"sourceRoot": "src",
|
||||||
|
"prefix": "app",
|
||||||
|
"architect": {
|
||||||
|
"build": {
|
||||||
|
"builder": "@angular-devkit/build-angular:browser",
|
||||||
|
"options": {
|
||||||
|
"outputPath": "dist/dashboard",
|
||||||
|
"index": "src/index.html",
|
||||||
|
"main": "src/main.ts",
|
||||||
|
"tsConfig": "tsconfig.app.json",
|
||||||
|
"polyfills": "src/polyfills.ts",
|
||||||
|
"assets": [
|
||||||
|
"src/assets",
|
||||||
|
"src/favicon.ico"
|
||||||
|
],
|
||||||
|
"styles": [
|
||||||
|
"src/styles.css",
|
||||||
|
"node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
],
|
||||||
|
"scripts": [],
|
||||||
|
"vendorChunk": true,
|
||||||
|
"extractLicenses": false,
|
||||||
|
"buildOptimizer": false,
|
||||||
|
"sourceMap": true,
|
||||||
|
"optimization": false,
|
||||||
|
"namedChunks": true
|
||||||
|
},
|
||||||
|
"configurations": {
|
||||||
|
"production": {
|
||||||
|
"fileReplacements": [
|
||||||
|
{
|
||||||
|
"replace": "src/environments/environment.ts",
|
||||||
|
"with": "src/environments/environment.prod.ts"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"optimization": true,
|
||||||
|
"outputHashing": "all",
|
||||||
|
"sourceMap": false,
|
||||||
|
"namedChunks": false,
|
||||||
|
"extractLicenses": true,
|
||||||
|
"vendorChunk": false,
|
||||||
|
"buildOptimizer": true,
|
||||||
|
"budgets": [
|
||||||
|
{
|
||||||
|
"type": "initial",
|
||||||
|
"maximumWarning": "2mb",
|
||||||
|
"maximumError": "5mb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "anyComponentStyle",
|
||||||
|
"maximumWarning": "6kb",
|
||||||
|
"maximumError": "10kb"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultConfiguration": ""
|
||||||
|
},
|
||||||
|
"serve": {
|
||||||
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||||||
|
"options": {
|
||||||
|
"browserTarget": "dashboard:build"
|
||||||
|
},
|
||||||
|
"configurations": {
|
||||||
|
"production": {
|
||||||
|
"browserTarget": "dashboard:build:production"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"extract-i18n": {
|
||||||
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||||
|
"options": {
|
||||||
|
"browserTarget": "dashboard:build"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"test": {
|
||||||
|
"builder": "@angular-devkit/build-angular:karma",
|
||||||
|
"options": {
|
||||||
|
"main": "src/test.ts",
|
||||||
|
"polyfills": "src/polyfills.ts",
|
||||||
|
"tsConfig": "tsconfig.spec.json",
|
||||||
|
"karmaConfig": "karma.conf.js",
|
||||||
|
"assets": [
|
||||||
|
"src/assets",
|
||||||
|
"src/favicon.ico"
|
||||||
|
],
|
||||||
|
"styles": [
|
||||||
|
"src/styles.css",
|
||||||
|
"node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||||
|
],
|
||||||
|
"scripts": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"builder": "@angular-devkit/build-angular:tslint",
|
||||||
|
"options": {
|
||||||
|
"tsConfig": [
|
||||||
|
"tsconfig.app.json",
|
||||||
|
"tsconfig.spec.json",
|
||||||
|
"e2e/tsconfig.json"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"**/node_modules/**"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"e2e": {
|
||||||
|
"builder": "@angular-devkit/build-angular:protractor",
|
||||||
|
"options": {
|
||||||
|
"protractorConfig": "e2e/protractor.conf.js",
|
||||||
|
"devServerTarget": "dashboard:serve"
|
||||||
|
},
|
||||||
|
"configurations": {
|
||||||
|
"production": {
|
||||||
|
"devServerTarget": "dashboard:serve:production"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultProject": "dashboard"
|
||||||
|
}
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
import { AppPage } from './app.po';
|
|
||||||
|
|
||||||
describe('dashboard App', () => {
|
|
||||||
let page: AppPage;
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
page = new AppPage();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should display welcome message', () => {
|
|
||||||
page.navigateTo();
|
|
||||||
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import { browser, by, element } from 'protractor';
|
|
||||||
|
|
||||||
export class AppPage {
|
|
||||||
navigateTo() {
|
|
||||||
return browser.get('/');
|
|
||||||
}
|
|
||||||
|
|
||||||
getParagraphText() {
|
|
||||||
return element(by.css('app-root h1')).getText();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
23
dashboard/e2e/src/app.e2e-spec.ts
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import { AppPage } from './app.po';
|
||||||
|
import { browser, logging } from 'protractor';
|
||||||
|
|
||||||
|
describe('workspace-project App', () => {
|
||||||
|
let page: AppPage;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
page = new AppPage();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should display welcome message', async () => {
|
||||||
|
await page.navigateTo();
|
||||||
|
expect(await page.getTitleText()).toEqual('dashboard app is running!');
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(async () => {
|
||||||
|
// Assert that there are no errors emitted from the browser
|
||||||
|
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
|
||||||
|
expect(logs).not.toContain(jasmine.objectContaining({
|
||||||
|
level: logging.Level.SEVERE,
|
||||||
|
} as logging.Entry));
|
||||||
|
});
|
||||||
|
});
|
||||||
11
dashboard/e2e/src/app.po.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import { browser, by, element } from 'protractor';
|
||||||
|
|
||||||
|
export class AppPage {
|
||||||
|
async navigateTo(): Promise<unknown> {
|
||||||
|
return browser.get(browser.baseUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
async getTitleText(): Promise<string> {
|
||||||
|
return element(by.css('app-root .content span')).getText();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,13 +1,12 @@
|
|||||||
|
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "../out-tsc/e2e",
|
"outDir": "../out-tsc/e2e",
|
||||||
"baseUrl": "./",
|
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"target": "es5",
|
"target": "es2018",
|
||||||
"types": [
|
"types": [
|
||||||
"jasmine",
|
"jasmine",
|
||||||
"jasminewd2",
|
|
||||||
"node"
|
"node"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,23 +4,33 @@
|
|||||||
module.exports = function (config) {
|
module.exports = function (config) {
|
||||||
config.set({
|
config.set({
|
||||||
basePath: '',
|
basePath: '',
|
||||||
frameworks: ['jasmine', '@angular/cli'],
|
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
||||||
plugins: [
|
plugins: [
|
||||||
require('karma-jasmine'),
|
require('karma-jasmine'),
|
||||||
require('karma-chrome-launcher'),
|
require('karma-chrome-launcher'),
|
||||||
require('karma-jasmine-html-reporter'),
|
require('karma-jasmine-html-reporter'),
|
||||||
require('karma-coverage-istanbul-reporter'),
|
require('karma-coverage'),
|
||||||
require('@angular/cli/plugins/karma')
|
require('@angular-devkit/build-angular/plugins/karma')
|
||||||
],
|
],
|
||||||
client:{
|
client: {
|
||||||
|
jasmine: {
|
||||||
|
// you can add configuration options for Jasmine here
|
||||||
|
// the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
|
||||||
|
// for example, you can disable the random execution with `random: false`
|
||||||
|
// or set a specific seed with `seed: 4321`
|
||||||
|
},
|
||||||
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
||||||
},
|
},
|
||||||
coverageIstanbulReporter: {
|
jasmineHtmlReporter: {
|
||||||
reports: [ 'html', 'lcovonly' ],
|
suppressAll: true // removes the duplicated traces
|
||||||
fixWebpackSourcePaths: true
|
|
||||||
},
|
},
|
||||||
angularCli: {
|
coverageReporter: {
|
||||||
environment: 'dev'
|
dir: require('path').join(__dirname, './coverage/dashboard'),
|
||||||
|
subdir: '.',
|
||||||
|
reporters: [
|
||||||
|
{ type: 'html' },
|
||||||
|
{ type: 'text-summary' }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
reporters: ['progress', 'kjhtml'],
|
reporters: ['progress', 'kjhtml'],
|
||||||
port: 9876,
|
port: 9876,
|
||||||
@@ -28,6 +38,7 @@ module.exports = function (config) {
|
|||||||
logLevel: config.LOG_INFO,
|
logLevel: config.LOG_INFO,
|
||||||
autoWatch: true,
|
autoWatch: true,
|
||||||
browsers: ['Chrome'],
|
browsers: ['Chrome'],
|
||||||
singleRun: false
|
singleRun: false,
|
||||||
|
restartOnFileChange: true
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
34371
dashboard/package-lock.json
generated
Normal file
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dashboard",
|
"name": "dashboard",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"license": "MIT",
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
@@ -12,39 +11,39 @@
|
|||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^4.2.4",
|
"@angular/animations": "~12.2.2",
|
||||||
"@angular/common": "^4.2.4",
|
"@angular/common": "~12.2.2",
|
||||||
"@angular/compiler": "^4.2.4",
|
"@angular/compiler": "~12.2.2",
|
||||||
"@angular/core": "^4.2.4",
|
"@angular/core": "~12.2.2",
|
||||||
"@angular/forms": "^4.2.4",
|
"@angular/forms": "~12.2.2",
|
||||||
"@angular/http": "^4.2.4",
|
"@angular/localize": "~12.2.2",
|
||||||
"@angular/platform-browser": "^4.2.4",
|
"@angular/platform-browser": "~12.2.2",
|
||||||
"@angular/platform-browser-dynamic": "^4.2.4",
|
"@angular/platform-browser-dynamic": "~12.2.2",
|
||||||
"@angular/router": "^4.2.4",
|
"@angular/router": "~12.2.2",
|
||||||
"core-js": "^2.4.1",
|
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
|
||||||
"rxjs": "^5.4.2",
|
"bootstrap": "^3.3.7",
|
||||||
"zone.js": "^0.8.14",
|
"rxjs": "~6.6.0",
|
||||||
"bootstrap": "3.3.7"
|
"tslib": "^2.0.0",
|
||||||
|
"zone.js": "~0.11.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular/cli": "1.3.2",
|
"@angular-devkit/build-angular": "~12.2.2",
|
||||||
"@angular/compiler-cli": "^4.2.4",
|
"@angular/cli": "~12.2.2",
|
||||||
"@angular/language-service": "^4.2.4",
|
"@angular/compiler-cli": "~12.2.2",
|
||||||
"@types/jasmine": "~2.5.53",
|
"@angular/localize": "^12.2.2",
|
||||||
"@types/jasminewd2": "~2.0.2",
|
"@types/jasmine": "~3.6.0",
|
||||||
"@types/node": "~6.0.60",
|
"@types/node": "^12.11.1",
|
||||||
"codelyzer": "~3.1.1",
|
"codelyzer": "^6.0.0",
|
||||||
"jasmine-core": "~2.6.2",
|
"jasmine-core": "~3.6.0",
|
||||||
"jasmine-spec-reporter": "~4.1.0",
|
"jasmine-spec-reporter": "~5.0.0",
|
||||||
"karma": "~1.7.0",
|
"karma": "~6.3.4",
|
||||||
"karma-chrome-launcher": "~2.1.1",
|
"karma-chrome-launcher": "~3.1.0",
|
||||||
"karma-cli": "~1.0.1",
|
"karma-coverage": "~2.0.3",
|
||||||
"karma-coverage-istanbul-reporter": "^1.2.1",
|
"karma-jasmine": "~4.0.0",
|
||||||
"karma-jasmine": "~1.1.0",
|
"karma-jasmine-html-reporter": "^1.5.0",
|
||||||
"karma-jasmine-html-reporter": "^0.2.2",
|
"protractor": "~7.0.0",
|
||||||
"protractor": "~5.1.2",
|
"ts-node": "~8.3.0",
|
||||||
"ts-node": "~3.2.0",
|
"tslint": "~6.1.0",
|
||||||
"tslint": "~5.3.2",
|
"typescript": "~4.3.5"
|
||||||
"typescript": "~2.3.3"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
// Protractor configuration file, see link for more information
|
|
||||||
// https://github.com/angular/protractor/blob/master/lib/config.ts
|
|
||||||
|
|
||||||
const { SpecReporter } = require('jasmine-spec-reporter');
|
|
||||||
|
|
||||||
exports.config = {
|
|
||||||
allScriptsTimeout: 11000,
|
|
||||||
specs: [
|
|
||||||
'./e2e/**/*.e2e-spec.ts'
|
|
||||||
],
|
|
||||||
capabilities: {
|
|
||||||
'browserName': 'chrome'
|
|
||||||
},
|
|
||||||
directConnect: true,
|
|
||||||
baseUrl: 'http://localhost:4200/',
|
|
||||||
framework: 'jasmine',
|
|
||||||
jasmineNodeOpts: {
|
|
||||||
showColors: true,
|
|
||||||
defaultTimeoutInterval: 30000,
|
|
||||||
print: function() {}
|
|
||||||
},
|
|
||||||
onPrepare() {
|
|
||||||
require('ts-node').register({
|
|
||||||
project: 'e2e/tsconfig.e2e.json'
|
|
||||||
});
|
|
||||||
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
/* Thank to https://codyhouse.co/gem/back-to-top/ */
|
|
||||||
|
|
||||||
.btn-top {
|
|
||||||
display: inline-block;
|
|
||||||
height: 40px;
|
|
||||||
width: 40px;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 20px;
|
|
||||||
right: 20px;
|
|
||||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
|
|
||||||
/* image replacement properties */
|
|
||||||
/*overflow: hidden;*/
|
|
||||||
/*text-indent: 100%;*/
|
|
||||||
/*white-space: nowrap;*/
|
|
||||||
/*background: rgba(232, 98, 86, 0.8);*/
|
|
||||||
/*background: #ff9000;*/
|
|
||||||
visibility: hidden;
|
|
||||||
opacity: 0;
|
|
||||||
-webkit-transition: opacity .3s 0s, visibility 0s .3s;
|
|
||||||
-moz-transition: opacity .3s 0s, visibility 0s .3s;
|
|
||||||
transition: opacity .3s 0s, visibility 0s .3s;
|
|
||||||
}
|
|
||||||
.btn-top.btn-top-is-visible, .no-touch .btn-top:hover {
|
|
||||||
-webkit-transition: opacity .3s 0s, visibility 0s 0s;
|
|
||||||
-moz-transition: opacity .3s 0s, visibility 0s 0s;
|
|
||||||
transition: opacity .3s 0s, visibility 0s 0s;
|
|
||||||
}
|
|
||||||
.btn-top.btn-top-is-visible {
|
|
||||||
/* the button becomes visible */
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-sort {
|
|
||||||
bottom: 20px;
|
|
||||||
right: 70px;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row cardAdmin">
|
<div class="row cardAdmin">
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-yellow">
|
<div class="panel panel-yellow">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-green">
|
<div class="panel panel-green">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-purple">
|
<div class="panel panel-purple">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-blue">
|
<div class="panel panel-blue">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -84,38 +84,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table class="table table-striped" (window:scroll)="onScroll($event)">
|
<app-song-table [songs]=songs (atBottom)=loadSongs()></app-song-table>
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th></th>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Artist</th>
|
|
||||||
<th>Album</th>
|
|
||||||
<th>Album Artist</th>
|
|
||||||
<th>Play Count</th>
|
|
||||||
<th>Genre</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr *ngFor="let song of songs | sortBy : 'Track Number'">
|
|
||||||
<td>{{song['Track Number'] ? (("0" + song['Track Number']).slice(-2)) : "--"}}</td>
|
|
||||||
<td>{{song.Name}}</td>
|
|
||||||
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
|
|
||||||
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
|
|
||||||
<td>{{song['Album Artist']}}</td>
|
|
||||||
<td>{{song['Play Count']}}</td>
|
|
||||||
<td><a [routerLink]="['/genre', song.Genre]">{{song.Genre}}</a></td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<button type="button" *ngIf="moreDataAvailable" class="btn btn-default" aria-label="More" (click)="loadSongs()">
|
<button type="button" *ngIf="moreDataAvailable" class="btn btn-default" aria-label="More" (click)="loadSongs()">
|
||||||
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> More...
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> More...
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<!-- Go to Top Button-->
|
|
||||||
<button type="button" class="btn btn-warning btn-top" [class.btn-top-is-visible]="atBottom"
|
|
||||||
aria-label="Top" (click)="scrollTop()">
|
|
||||||
<span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,23 +1,28 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||||
import { ActivatedRoute, Params } from '@angular/router';
|
import { ActivatedRoute, Params } from '@angular/router';
|
||||||
import { Location } from '@angular/common';
|
import { Location } from '@angular/common';
|
||||||
|
|
||||||
import { ElsService } from './../els.service';
|
import { ElsService } from './../els.service';
|
||||||
import { Song } from './../object/song';
|
import { Song } from './../model/song';
|
||||||
import { Album } from './../object/album';
|
import { Album } from './../model/album';
|
||||||
|
import { SongTableComponent } from '../song-table/song-table.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-album',
|
selector: 'app-album',
|
||||||
templateUrl: './album.component.html',
|
templateUrl: './album.component.html',
|
||||||
styleUrls: [ './album.component.css', './../dashboard.component.css' ]
|
styleUrls: [ './album.component.css', './../dashboard/dashboard.component.css' ]
|
||||||
})
|
})
|
||||||
|
|
||||||
export class AlbumComponent implements OnInit {
|
export class AlbumComponent implements OnInit {
|
||||||
|
@ViewChild(SongTableComponent) private songtable: SongTableComponent;
|
||||||
|
|
||||||
albumName = '';
|
albumName = '';
|
||||||
songs: Array<Song> = [];
|
songs: Array<Song> = [];
|
||||||
album: Album = new Album(); // If album not found, will be replaced by 'undefined'
|
album: Album = new Album(); // If album not found, will be replaced by 'undefined'
|
||||||
moreDataAvailable = false;
|
|
||||||
atBottom = false;
|
// Prevent useless data load + activate button in interface var
|
||||||
|
moreDataAvailable = true;
|
||||||
|
lockLoadData = false;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private elsService: ElsService,
|
private elsService: ElsService,
|
||||||
@@ -35,6 +40,16 @@ export class AlbumComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
loadSongs(): void {
|
loadSongs(): void {
|
||||||
|
if (this.lockLoadData) {
|
||||||
|
console.log('Loading data locked');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!this.moreDataAvailable) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.lockLoadData = true;
|
||||||
this.elsService.getAlbumSongs(this.albumName, this.songs.length).subscribe(
|
this.elsService.getAlbumSongs(this.albumName, this.songs.length).subscribe(
|
||||||
data => {
|
data => {
|
||||||
this.moreDataAvailable = data.length === ElsService.DEFAULT_SIZE;
|
this.moreDataAvailable = data.length === ElsService.DEFAULT_SIZE;
|
||||||
@@ -44,37 +59,14 @@ export class AlbumComponent implements OnInit {
|
|||||||
if (this.songs.length === 0) {
|
if (this.songs.length === 0) {
|
||||||
this.songs = data;
|
this.songs = data;
|
||||||
} else {
|
} else {
|
||||||
|
this.songtable.setSortable(true);
|
||||||
data.forEach(song => {
|
data.forEach(song => {
|
||||||
this.songs.push(song);
|
this.songs.push(song);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
console.log('Unlock load data');
|
||||||
|
this.lockLoadData = false;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
scrollTop(): void {
|
|
||||||
window.scrollTo(0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle scroll:
|
|
||||||
* - load data if at bottom of screen (if needed)
|
|
||||||
* - hide/show "go to top" button
|
|
||||||
*
|
|
||||||
* @param event scroll event
|
|
||||||
*/
|
|
||||||
onScroll(event: any) {
|
|
||||||
if (this.moreDataAvailable &&
|
|
||||||
(window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
|
|
||||||
this.loadSongs();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window.scrollY > window.innerHeight) {
|
|
||||||
this.atBottom = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window.scrollY === 0) {
|
|
||||||
this.atBottom = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
34
dashboard/src/app/albums/albums.component.css
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
/*** BOTTOM BUTTON PART ***/
|
||||||
|
/* Thank to https://codyhouse.co/gem/back-to-top/ */
|
||||||
|
.btn-top {
|
||||||
|
display: inline-block;
|
||||||
|
height: 40px;
|
||||||
|
width: 40px;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 20px;
|
||||||
|
right: 20px;
|
||||||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
|
||||||
|
/* image replacement properties */
|
||||||
|
/*overflow: hidden;*/
|
||||||
|
/*text-indent: 100%;*/
|
||||||
|
/*white-space: nowrap;*/
|
||||||
|
/*background: rgba(232, 98, 86, 0.8);*/
|
||||||
|
/*background: #ff9000;*/
|
||||||
|
visibility: hidden;
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transition: opacity .3s 0s, visibility 0s .3s;
|
||||||
|
-moz-transition: opacity .3s 0s, visibility 0s .3s;
|
||||||
|
transition: opacity .3s 0s, visibility 0s .3s;
|
||||||
|
}
|
||||||
|
.btn-top.btn-top-is-visible, .no-touch .btn-top:hover {
|
||||||
|
-webkit-transition: opacity .3s 0s, visibility 0s 0s;
|
||||||
|
-moz-transition: opacity .3s 0s, visibility 0s 0s;
|
||||||
|
transition: opacity .3s 0s, visibility 0s 0s;
|
||||||
|
}
|
||||||
|
.btn-top.btn-top-is-visible {
|
||||||
|
/* the button becomes visible */
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*** END BOTTOM BUTTON PART ***/
|
||||||
74
dashboard/src/app/albums/albums.component.html
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
<div class="container">
|
||||||
|
<h1>Albums - {{this.albums.length}}</h1>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
|
<table class="table table-striped" style="white-space: nowrap;">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Album</th>
|
||||||
|
<th>Track Count</th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
<th>Artist/Album Artist</th>
|
||||||
|
<th>Avg Bit Rate (min)</th>
|
||||||
|
<th>Play Count</th>
|
||||||
|
<th>Rating</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let album of albums">
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/album', album.Album]">{{album.Album}}</a>
|
||||||
|
<span class="glyphicon glyphicon-remove-circle" style="cursor:pointer;color:red;" (click)="exlude('Album', album)"></span>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>{{album['Track Count']}}</td>
|
||||||
|
|
||||||
|
<ng-template [ngIf]="album['Album Artist']" [ngIfElse]="artistSection">
|
||||||
|
<td>
|
||||||
|
<span class="glyphicon glyphicon-ban-circle" style="cursor:pointer;color:red;" (click)="exlude('Album Artist', album)"></span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span class="glyphicon glyphicon-zoom-in" style="cursor:pointer;" (click)="select('Album Artist', album)"></span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/artist', album['Album Artist']]">{{album['Album Artist']}}</a>
|
||||||
|
</td>
|
||||||
|
</ng-template>
|
||||||
|
|
||||||
|
<ng-template #artistSection>
|
||||||
|
<td>
|
||||||
|
<span class="glyphicon glyphicon-ban-circle" style="cursor:pointer;color:red;" (click)="exlude('Artist', album)"></span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span class="glyphicon glyphicon-zoom-in" style="cursor:pointer;" (click)="select('Artist', album)"></span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/artist', album.Artist[0]]">{{album.Artist}}</a>
|
||||||
|
</td>
|
||||||
|
</ng-template>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
{{album['Avg Bit Rate']}}
|
||||||
|
<span *ngIf="album['Avg Bit Rate'] != album['Min Bit Rate']">({{album['Min Bit Rate']}})</span>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
{{album['Play Count']}} ({{album['Play Count']/album['Track Count'] | number:'1.0-0'}}/songs)
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td class="star" [title]="(album['Album Rating Computed']?'Computed Rating: ':'Rating: ') + album['Album Rating']">
|
||||||
|
<span *ngFor="let item of numberToArray(album['Album Rating'], 20)">
|
||||||
|
<span class="glyphicon" [ngClass]="album['Album Rating Computed']?'glyphicon-star-empty':'glyphicon-star'"></span>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button type="button" class="btn btn-danger btn-top" [class.btn-top-is-visible]="queryEdited"
|
||||||
|
aria-label="Reset filters" (click)="resetQuery()" title="Reset filters and reload datas">
|
||||||
|
<span class="glyphicon glyphicon-refresh" aria-hidden="true"></span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
25
dashboard/src/app/albums/albums.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { AlbumsComponent } from './albums.component';
|
||||||
|
|
||||||
|
describe('AlbumsComponent', () => {
|
||||||
|
let component: AlbumsComponent;
|
||||||
|
let fixture: ComponentFixture<AlbumsComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
declarations: [ AlbumsComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(AlbumsComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
71
dashboard/src/app/albums/albums.component.ts
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
import { ElsAlbumService } from '../els-album.service';
|
||||||
|
|
||||||
|
import { Album } from '../model/album';
|
||||||
|
|
||||||
|
import { Utils } from '../utils';
|
||||||
|
|
||||||
|
enum query_edit_type {
|
||||||
|
exclude = 'must_not',
|
||||||
|
select = 'must'
|
||||||
|
}
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-albums',
|
||||||
|
templateUrl: './albums.component.html',
|
||||||
|
styleUrls: ['./albums.component.css']
|
||||||
|
})
|
||||||
|
export class AlbumsComponent implements OnInit {
|
||||||
|
numberToArray = Utils.numberToArray;
|
||||||
|
albums: Album[] = [];
|
||||||
|
filterQuery = Object.assign({}, ElsAlbumService.GET_ALBUMS_DEFAULT_QUERY);
|
||||||
|
queryEdited = false;
|
||||||
|
|
||||||
|
constructor(private elsService : ElsAlbumService) { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.loadData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private editQuery(field: string, value: Album, type: query_edit_type): void {
|
||||||
|
// TODO Move this method to a service
|
||||||
|
if (value[field] instanceof Array) {
|
||||||
|
value[field] = value[field][0]
|
||||||
|
}
|
||||||
|
|
||||||
|
// If firt edit, add needed fields in ELS Query
|
||||||
|
if (!this.filterQuery['query']) {
|
||||||
|
this.filterQuery['query']['bool'][type].push({ 'must': [] })
|
||||||
|
this.filterQuery['query']['bool'][type].push({ 'must_not': [] })
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
this.filterQuery['query']['bool'][type].push({
|
||||||
|
'match_phrase': {
|
||||||
|
[field]: value[field]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
this.queryEdited = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
exlude(field: string, value: Album): void {
|
||||||
|
this.editQuery(field, value, query_edit_type.exclude)
|
||||||
|
this.loadData()
|
||||||
|
}
|
||||||
|
|
||||||
|
select(field: string, value: Album): void {
|
||||||
|
this.editQuery(field, value, query_edit_type.select)
|
||||||
|
this.loadData()
|
||||||
|
}
|
||||||
|
|
||||||
|
resetQuery(): void {
|
||||||
|
this.filterQuery = Object.assign({}, ElsAlbumService.GET_ALBUMS_DEFAULT_QUERY);
|
||||||
|
this.loadData();
|
||||||
|
}
|
||||||
|
|
||||||
|
loadData(): void {
|
||||||
|
// console.log(JSON.stringify(this.filterQuery))
|
||||||
|
this.elsService.getAlbums(this.filterQuery).subscribe(data => this.albums = data);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,17 +1,23 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { RouterModule, Routes } from '@angular/router';
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
|
|
||||||
import { DashboardComponent } from './dashboard.component';
|
import { DashboardComponent } from './dashboard/dashboard.component';
|
||||||
import { AlbumComponent } from './album/album.component';
|
import { AlbumComponent } from './album/album.component';
|
||||||
import { ArtistComponent } from './artist/artist.component';
|
import { ArtistComponent } from './artist/artist.component';
|
||||||
import { GenreComponent } from './genre/genre.component';
|
import { GenreComponent } from './genre/genre.component';
|
||||||
|
import { TopPlayedComponent } from './top-played/top-played.component';
|
||||||
|
import { AlbumsComponent } from './albums/albums.component';
|
||||||
|
import { ToSortComponent } from './to-sort/to-sort.component';
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' },
|
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' },
|
||||||
{ path: 'dashboard', component: DashboardComponent },
|
{ path: 'dashboard', component: DashboardComponent },
|
||||||
{ path: 'album/:name', component: AlbumComponent },
|
{ path: 'album/:name', component: AlbumComponent },
|
||||||
|
{ path: 'album', component: AlbumsComponent },
|
||||||
{ path: 'artist/:name', component: ArtistComponent },
|
{ path: 'artist/:name', component: ArtistComponent },
|
||||||
{ path: 'genre/:name', component: GenreComponent }
|
{ path: 'genre/:name', component: GenreComponent },
|
||||||
|
{ path: 'top-played', component: TopPlayedComponent },
|
||||||
|
{ path: 'to-sort', component: ToSortComponent }
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
|||||||
@@ -36,7 +36,8 @@ nav a.active {
|
|||||||
|
|
||||||
/* FIXME Code Repetition */
|
/* FIXME Code Repetition */
|
||||||
.btn-top {
|
.btn-top {
|
||||||
display: inline-block;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
-webkit-transition: opacity .3s 0s, visibility 0s 0s;
|
-webkit-transition: opacity .3s 0s, visibility 0s 0s;
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
<nav>
|
<nav>
|
||||||
<a class="btn-top" routerLink="/dashboard" routerLinkActive="active"><span class="glyphicon glyphicon-home"></span></a>
|
<div class="btn-top">
|
||||||
|
<a routerLink="/dashboard" routerLinkActive="active"><span class="glyphicon glyphicon-home"></span></a><br />
|
||||||
|
<a routerLink="/album" routerLinkActive="active"><span class="glyphicon glyphicon-cd"></span></a>
|
||||||
|
<a routerLink="/to-sort" routerLinkActive="active"><span class="glyphicon glyphicon-sort"></span></a>
|
||||||
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
|
|||||||
@@ -1,37 +1,58 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { HttpModule } from '@angular/http';
|
import { HttpClientModule } from '@angular/common/http';
|
||||||
|
import { FormsModule } from '@angular/forms'; // <-- NgModel lives here
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
import { DashboardComponent } from './dashboard.component';
|
import { DashboardComponent } from './dashboard/dashboard.component';
|
||||||
import { AlbumComponent } from './album/album.component';
|
import { AlbumComponent } from './album/album.component';
|
||||||
import { ArtistComponent } from './artist/artist.component';
|
import { ArtistComponent } from './artist/artist.component';
|
||||||
import { GenreComponent } from './genre/genre.component';
|
import { GenreComponent } from './genre/genre.component';
|
||||||
|
import { SongTableComponent } from './song-table/song-table.component';
|
||||||
|
import { TopPlayedComponent } from './top-played/top-played.component';
|
||||||
|
|
||||||
import { ElsService } from './els.service';
|
import { ElsService } from './els.service';
|
||||||
|
import { ElsAlbumService } from './els-album.service';
|
||||||
|
|
||||||
import { AppRoutingModule } from './app-routing.module';
|
import { AppRoutingModule } from './app-routing.module';
|
||||||
|
|
||||||
import { ConvertMsPipe } from './convertms.pipe';
|
import { ConvertMsPipe } from './pipes/convertms.pipe';
|
||||||
import { SortByPipe } from './sort-by.pipe';
|
import { ConvertMoreExactPipe } from './pipes/convert-more-exact.pipe';
|
||||||
|
import { SortByPipe } from './pipes/sort-by.pipe';
|
||||||
|
import { ConvertSizeToStringPipe } from './pipes/convert-size-to-string.pipe';
|
||||||
|
import { RoundPipe } from './pipes/round.pipe';
|
||||||
|
import { AlbumsComponent } from './albums/albums.component';
|
||||||
|
import { ToSortComponent } from './to-sort/to-sort.component';
|
||||||
|
|
||||||
|
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
BrowserModule,
|
BrowserModule,
|
||||||
HttpModule,
|
HttpClientModule,
|
||||||
AppRoutingModule
|
FormsModule,
|
||||||
|
AppRoutingModule,
|
||||||
|
NgbModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
AppComponent,
|
AppComponent,
|
||||||
DashboardComponent,
|
DashboardComponent,
|
||||||
AlbumComponent,
|
AlbumComponent,
|
||||||
|
AlbumsComponent,
|
||||||
ArtistComponent,
|
ArtistComponent,
|
||||||
GenreComponent,
|
GenreComponent,
|
||||||
|
SongTableComponent,
|
||||||
ConvertMsPipe,
|
ConvertMsPipe,
|
||||||
SortByPipe
|
ConvertMoreExactPipe,
|
||||||
|
SortByPipe,
|
||||||
|
ConvertSizeToStringPipe,
|
||||||
|
TopPlayedComponent,
|
||||||
|
RoundPipe,
|
||||||
|
ToSortComponent
|
||||||
],
|
],
|
||||||
providers: [
|
providers: [
|
||||||
ElsService
|
ElsService,
|
||||||
|
ElsAlbumService
|
||||||
],
|
],
|
||||||
bootstrap: [ AppComponent ]
|
bootstrap: [ AppComponent ]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,14 +3,18 @@
|
|||||||
|
|
||||||
<div class="alert alert-warning">
|
<div class="alert alert-warning">
|
||||||
<h3>Debug Zone</h3>
|
<h3>Debug Zone</h3>
|
||||||
Returned song: {{songs.length}}<br />
|
Returned song: {{songs.length}}<br />
|
||||||
Theorical song: {{ artist ? artist['Track Count'] : "" }}
|
Theorical song: {{ artist ? artist['Track Count'] : "" }}
|
||||||
<span *ngIf="artist && (songs.length == artist['Track Count'])" class="glyphicon glyphicon-ok" style="color:green"></span>
|
<span *ngIf="artist && (songs.length == artist['Track Count'])" class="glyphicon glyphicon-ok" style="color:green"></span>
|
||||||
<span *ngIf="artist && (songs.length != artist['Track Count'])" class="glyphicon glyphicon-remove" style="color:red"></span>
|
<span *ngIf="artist && (songs.length != artist['Track Count'])" class="glyphicon glyphicon-remove" style="color:red"></span>
|
||||||
|
<br />
|
||||||
|
Artist song:   {{countSong}}
|
||||||
|
<span *ngIf="artist && (songs.length == countSong)" class="glyphicon glyphicon-ok" style="color:green"></span>
|
||||||
|
<span *ngIf="artist && (songs.length != countSong)" class="glyphicon glyphicon-remove" style="color:red"></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row cardAdmin">
|
<div class="row cardAdmin">
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-yellow">
|
<div class="panel panel-yellow">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -28,7 +32,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-blue">
|
<div class="panel panel-blue">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -46,7 +50,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-green">
|
<div class="panel panel-green">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -64,7 +68,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-3 col-md-3">
|
<div class="col-lg-3 col-md-3 col-sm-6">
|
||||||
<div class="panel panel-purple">
|
<div class="panel panel-purple">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -85,44 +89,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table class="table table-striped" (window:scroll)="onScroll($event)">
|
<app-song-table [songs]=songs (atBottom)=loadSongs()></app-song-table>
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th></th>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Album</th>
|
|
||||||
<th>Year</th>
|
|
||||||
<th>Artist</th>
|
|
||||||
<th>Album Artist</th>
|
|
||||||
<th>Play Count</th>
|
|
||||||
<th>Genre</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr *ngFor="let song of songs | sortBy : 'Year':'Album':'Track Number'">
|
|
||||||
<td>{{song['Track Number'] ? (("0" + song['Track Number']).slice(-2)) : "--"}}</td>
|
|
||||||
<td>{{song.Name}}</td>
|
|
||||||
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
|
|
||||||
<td>{{song.Year}}</td>
|
|
||||||
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
|
|
||||||
<td>{{song['Album Artist'] ? song['Album Artist'] : "-" }}</td>
|
|
||||||
<td>{{song['Play Count']}}</td>
|
|
||||||
<td><a [routerLink]="['/genre', song.Genre]">{{song.Genre}}</a></td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<button type="button" *ngIf="moreDataAvailable" class="btn btn-default" aria-label="More" (click)="loadSongs()">
|
<button type="button" *ngIf="moreDataAvailable" class="btn btn-default" aria-label="More" (click)="loadSongs()">
|
||||||
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> More...
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> More...
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<!-- Go to Top Button-->
|
|
||||||
<button type="button" class="btn btn-warning btn-top" [class.btn-top-is-visible]="atBottom"
|
|
||||||
aria-label="Top" (click)="scrollTop()" title="Go back to Top!">
|
|
||||||
<span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span>
|
|
||||||
</button>
|
|
||||||
<button type="button" class="btn btn-primary btn-top btn-sort" [class.btn-top-is-visible]="sortable"
|
|
||||||
aria-label="Top" (click)="sort()" title="Sort by Album & Track Number">
|
|
||||||
<span class="glyphicon glyphicon-sort-by-attributes" aria-hidden="true"></span>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,29 +1,30 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||||
import { ActivatedRoute, Params } from '@angular/router';
|
import { ActivatedRoute, Params } from '@angular/router';
|
||||||
import { Location } from '@angular/common';
|
import { Location } from '@angular/common';
|
||||||
|
|
||||||
import { ElsService } from './../els.service';
|
import { ElsService } from './../els.service';
|
||||||
import { Song } from './../object/song';
|
import { Song } from './../model/song';
|
||||||
import { Artist } from './../object/artist';
|
import { Artist } from './../model/artist';
|
||||||
|
import { SongTableComponent } from '../song-table/song-table.component';
|
||||||
import { SortByPipe } from './../sort-by.pipe';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-artist',
|
selector: 'app-artist',
|
||||||
templateUrl: './artist.component.html',
|
templateUrl: './artist.component.html',
|
||||||
styleUrls: [ './../album/album.component.css', './../dashboard.component.css' ]
|
styleUrls: [ './../album/album.component.css', './../dashboard/dashboard.component.css', './artist.component.css' ]
|
||||||
})
|
})
|
||||||
|
|
||||||
export class ArtistComponent implements OnInit {
|
export class ArtistComponent implements OnInit {
|
||||||
|
// Interacte with table to set sortable
|
||||||
|
@ViewChild(SongTableComponent) songtable: SongTableComponent;
|
||||||
|
|
||||||
|
// Prevent useless data load + activate button in interface var
|
||||||
|
moreDataAvailable = true;
|
||||||
|
|
||||||
artistName = '';
|
artistName = '';
|
||||||
songs: Array<Song> = [];
|
songs: Array<Song> = [];
|
||||||
artist: Artist = new Artist();
|
artist: Artist = new Artist();
|
||||||
// To activate button in interface var
|
|
||||||
moreDataAvailable = false;
|
|
||||||
atBottom = false;
|
|
||||||
sortable = false;
|
|
||||||
|
|
||||||
lockLoadData = false;
|
lockLoadData = false;
|
||||||
|
countSong: number;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private elsService: ElsService,
|
private elsService: ElsService,
|
||||||
@@ -35,6 +36,9 @@ export class ArtistComponent implements OnInit {
|
|||||||
this.route.params.subscribe((params: Params) => this.artistName = params['name']);
|
this.route.params.subscribe((params: Params) => this.artistName = params['name']);
|
||||||
|
|
||||||
this.elsService.getArtist(this.artistName).subscribe(data => this.artist = data);
|
this.elsService.getArtist(this.artistName).subscribe(data => this.artist = data);
|
||||||
|
|
||||||
|
this.elsService.getCountArtistSong(this.artistName).subscribe(data => this.countSong = data);
|
||||||
|
|
||||||
this.loadSongs();
|
this.loadSongs();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,6 +49,10 @@ export class ArtistComponent implements OnInit {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!this.moreDataAvailable) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.lockLoadData = true;
|
this.lockLoadData = true;
|
||||||
this.elsService.getArtistSongs(this.artistName, this.songs.length).subscribe(
|
this.elsService.getArtistSongs(this.artistName, this.songs.length).subscribe(
|
||||||
data => {
|
data => {
|
||||||
@@ -55,7 +63,7 @@ export class ArtistComponent implements OnInit {
|
|||||||
if (this.songs.length === 0) {
|
if (this.songs.length === 0) {
|
||||||
this.songs = data;
|
this.songs = data;
|
||||||
} else {
|
} else {
|
||||||
this.sortable = true;
|
this.songtable.setSortable(true);
|
||||||
data.forEach(song => {
|
data.forEach(song => {
|
||||||
this.songs.push(song);
|
this.songs.push(song);
|
||||||
});
|
});
|
||||||
@@ -65,35 +73,4 @@ export class ArtistComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
scrollTop(): void {
|
|
||||||
window.scrollTo(0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle scroll:
|
|
||||||
* - load data if at bottom of screen (if needed)
|
|
||||||
* - hide/show "go to top" button
|
|
||||||
*
|
|
||||||
* @param event scroll event
|
|
||||||
*/
|
|
||||||
onScroll(event: any) {
|
|
||||||
if (this.moreDataAvailable &&
|
|
||||||
(window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
|
|
||||||
this.loadSongs();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window.scrollY > window.innerHeight) {
|
|
||||||
this.atBottom = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window.scrollY === 0) {
|
|
||||||
this.atBottom = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sort(): void {
|
|
||||||
this.songs = new SortByPipe().transform(this.songs, 'Year', 'Album', 'Track Number', 'Play Count');
|
|
||||||
this.sortable = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
import { ConvertmsPipe } from './convertms.pipe';
|
|
||||||
|
|
||||||
describe('ConvertmsPipe', () => {
|
|
||||||
it('create an instance', () => {
|
|
||||||
const pipe = new ConvertmsPipe();
|
|
||||||
expect(pipe).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
import { Pipe, PipeTransform } from '@angular/core';
|
|
||||||
|
|
||||||
@Pipe({
|
|
||||||
name: 'convertMs'
|
|
||||||
})
|
|
||||||
export class ConvertMsPipe implements PipeTransform {
|
|
||||||
|
|
||||||
transform(timeMs: number): string {
|
|
||||||
let x = timeMs / 1000;
|
|
||||||
|
|
||||||
const seconds = Math.round(x % 60);
|
|
||||||
x /= 60;
|
|
||||||
|
|
||||||
let minutes = 0;
|
|
||||||
if (x > 1) { minutes = Math.round(x % 60); }
|
|
||||||
x /= 60;
|
|
||||||
|
|
||||||
let hours = 0;
|
|
||||||
if (x > 1) { hours = Math.round(x % 24); }
|
|
||||||
// TODO Enable/disable day
|
|
||||||
x /= 24;
|
|
||||||
const days = Math.round(x);
|
|
||||||
|
|
||||||
// Final string
|
|
||||||
let ret = '';
|
|
||||||
if (days > 0) { ret += ('0' + days).slice(-2) + ':'; }
|
|
||||||
if (hours > 0) { ret += ('0' + hours).slice(-2) + ':'; }
|
|
||||||
if (minutes > 0) { ret += ('0' + minutes).slice(-2) + ':'; }
|
|
||||||
if (seconds > 0) { ret += ('0' + seconds).slice(-2); }
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
// return ('0' + days).slice(-2) + ':' + ('0' + hours).slice(-2) + ':' + ('0' + minutes).slice(-2) + ':' + ('0' + seconds).slice(-2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
.panel-stat {
|
|
||||||
min-height: 102px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-green {
|
|
||||||
background-color: #16a085;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
.panel-yellow {
|
|
||||||
background-color: #f1c40f;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-red {
|
|
||||||
background-color: #d9534f;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-purple {
|
|
||||||
background-color: #9b59b6;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel-blue {
|
|
||||||
background-color: #3498db;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stats_icon {
|
|
||||||
font-size: 3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.circle {
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: #9b59b6;
|
|
||||||
margin: 0 auto;
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
|
||||||
|
|
||||||
import { ElsService } from './els.service';
|
|
||||||
import { Song } from './object/song';
|
|
||||||
import { Bucket } from './object/bucket';
|
|
||||||
import { Album } from './object/album';
|
|
||||||
import { Artist } from './object/artist';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-dashboard',
|
|
||||||
templateUrl: './dashboard.component.html',
|
|
||||||
styleUrls: [ './dashboard.component.css' ]
|
|
||||||
})
|
|
||||||
|
|
||||||
export class DashboardComponent implements OnInit {
|
|
||||||
totalTime = 0;
|
|
||||||
totalSize = 0;
|
|
||||||
totalSizeSt = '';
|
|
||||||
trackCountSong = 0;
|
|
||||||
trackCountArtist = 0;
|
|
||||||
trackCountAlbum = 0;
|
|
||||||
neverListenSong = 0;
|
|
||||||
|
|
||||||
albumArtistCount = 0;
|
|
||||||
|
|
||||||
topGenres: Bucket[] = [];
|
|
||||||
bottomGenres: Bucket[] = [];
|
|
||||||
|
|
||||||
mostPlayedSongs: Song[] = [];
|
|
||||||
|
|
||||||
lastAddedAlbums: Bucket[] = [];
|
|
||||||
albumArtists = [];
|
|
||||||
|
|
||||||
constructor(private elsService: ElsService) { }
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
|
||||||
this.elsService.getTime().then(result => {
|
|
||||||
this.totalTime = result;
|
|
||||||
});
|
|
||||||
|
|
||||||
this.elsService.getSize().then(result => {
|
|
||||||
this.totalSize = result;
|
|
||||||
this.totalSizeSt = this.convertSizeToString(result);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.elsService.getCountSong('song')
|
|
||||||
.then(result => this.trackCountSong = result);
|
|
||||||
this.elsService.getCountSong('artist')
|
|
||||||
.then(result => this.trackCountArtist = result);
|
|
||||||
this.elsService.getCountSong('album')
|
|
||||||
.then(result => this.trackCountAlbum = result);
|
|
||||||
|
|
||||||
this.elsService.getCountNeverListenSong()
|
|
||||||
.then(result => this.neverListenSong = result);
|
|
||||||
|
|
||||||
this.elsService.getMostPlayedTrack().subscribe(
|
|
||||||
data => this.mostPlayedSongs = data
|
|
||||||
);
|
|
||||||
|
|
||||||
this.elsService.getGenres().subscribe(data => this.topGenres = data);
|
|
||||||
this.elsService.getGenres('asc').subscribe(data => this.bottomGenres = data);
|
|
||||||
// this.elsService.getGenreCount().subscribe(data => console.log(data));
|
|
||||||
|
|
||||||
this.elsService.getLastAddedAlbums(6).subscribe(buckets => {
|
|
||||||
this.lastAddedAlbums = buckets;
|
|
||||||
buckets.forEach(bucket => this.getArtistName(bucket));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private getArtistName(albumBucket: Bucket) {
|
|
||||||
// For each bucket.key (album name), search artist.
|
|
||||||
// Use track count to compare
|
|
||||||
this.elsService.getArtistFromAlbumName(albumBucket.key).subscribe(albums => {
|
|
||||||
if (albums.length > 1) {
|
|
||||||
// More than one result for an album name
|
|
||||||
// Search good artist by track count
|
|
||||||
albums.forEach(album => {
|
|
||||||
if (album['Track Count'] === albumBucket.doc_count) {
|
|
||||||
this.albumArtists[album.Name] = album.Artist.toString();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// Just one artistresult for album name
|
|
||||||
this.albumArtists[albums[0].Name] = albums[0].Artist.toString();
|
|
||||||
}
|
|
||||||
if (this.albumArtists[albums[0].Name].length > 50) {
|
|
||||||
this.albumArtists[albums[0].Name] = this.albumArtists[albums[0].Name].substring(0, 50) + '...';
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* UTILS FUNCTION - TODO MOVE
|
|
||||||
*/
|
|
||||||
|
|
||||||
convertSizeToString(size: number) {
|
|
||||||
const units = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB'];
|
|
||||||
|
|
||||||
if (size === 0) {
|
|
||||||
return '0 Byte';
|
|
||||||
}
|
|
||||||
|
|
||||||
const i = Math.floor(Math.log(size) / Math.log(1024));
|
|
||||||
let calcSize = size / Math.pow(1024, i);
|
|
||||||
calcSize = Math.round(calcSize * 100) / 100;
|
|
||||||
|
|
||||||
return calcSize + ' ' + units[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
77
dashboard/src/app/dashboard/dashboard.component.css
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
.panel-stat {
|
||||||
|
min-height: 102px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-green {
|
||||||
|
background-color: #16a085;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
.panel-yellow {
|
||||||
|
background-color: #f1c40f;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-red {
|
||||||
|
background-color: #d9534f;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-purple {
|
||||||
|
background-color: #9b59b6;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-blue {
|
||||||
|
background-color: #3498db;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stats_icon {
|
||||||
|
font-size: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #9b59b6;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Style for autocompletion */
|
||||||
|
/* Stolen from https://ng-bootstrap.github.io/#/components/typeahead/examples */
|
||||||
|
::ng-deep .dropdown-item {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
padding: .25rem 1.5rem;
|
||||||
|
clear: both;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #212529;
|
||||||
|
text-align: inherit;
|
||||||
|
white-space: nowrap;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dropdown-item:focus,
|
||||||
|
::ng-deep .dropdown-item:hover {
|
||||||
|
color: #16181b;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #f8f9fa
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dropdown-item.active,
|
||||||
|
::ng-deep .dropdown-item:active {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #007bff
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dropdown-item.disabled,
|
||||||
|
::ng-deep .dropdown-item:disabled {
|
||||||
|
color: #6c757d;
|
||||||
|
pointer-events: none;
|
||||||
|
background-color: transparent
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dropdown-menu.show {
|
||||||
|
display: block
|
||||||
|
}
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
<h3 *ngIf="!totalTime"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
<h3 *ngIf="!totalTime"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
||||||
<h3 *ngIf="totalTime">{{totalTime | convertMs}}</h3>
|
<h3 *ngIf="totalTime">{{totalTime | convertMs}}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div><br>Total time</div>
|
<div><br>Total time ({{totalTime | convertMoreExact}})</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -30,8 +30,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-xs-9 text-right">
|
<div class="col-xs-9 text-right">
|
||||||
<div>
|
<div>
|
||||||
<h3 *ngIf="!totalSizeSt"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
<h3 *ngIf="!totalSize"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
||||||
<h3 *ngIf="totalSizeSt">{{totalSizeSt}}</h3>
|
<h3 *ngIf="totalSize">{{totalSize | convertSizeToString}}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div><br>Total size</div>
|
<div><br>Total size</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
<h3 *ngIf="!neverListenSong"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
<h3 *ngIf="!neverListenSong"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
||||||
<h3 *ngIf="neverListenSong">{{neverListenSong}}</h3>
|
<h3 *ngIf="neverListenSong">{{neverListenSong}}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div><br>Never list. songs</div>
|
<div><br>Never list. songs (~{{neverListenSong / trackCountSong * 100 | round}}%)</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -77,13 +77,37 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-12">
|
<ng-template #rt let-r="result" let-t="term">
|
||||||
<h3>Last added albums</h3>
|
<!-- glyphicon glyphicon-cd -->
|
||||||
|
<span *ngIf="r.type == 'artist'" class="glyphicon glyphicon-user"></span>
|
||||||
|
<span *ngIf="r.type == 'album'" class="glyphicon glyphicon-cd"></span>
|
||||||
|
<ngb-highlight [result]="r.name" [term]="t"></ngb-highlight>
|
||||||
|
</ng-template>
|
||||||
|
|
||||||
|
|
||||||
|
<form class="navbar-form">
|
||||||
|
<div class="form-group" style="display:inline;">
|
||||||
|
<div class="input-group" style="display:table;">
|
||||||
|
<span class="input-group-addon" style="width:1%;">
|
||||||
|
<span class="glyphicon glyphicon-search"></span>
|
||||||
|
</span>
|
||||||
|
<input class="form-control" type="text" name="search" placeholder="Search Here" autocomplete="off" autofocus="autofocus"
|
||||||
|
id="searchSuggest"
|
||||||
|
[(ngModel)]="searchTerm"
|
||||||
|
[ngbTypeahead]="search"
|
||||||
|
[resultTemplate]="rt"
|
||||||
|
(selectItem)="onSelectSearch($event)">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Album</th>
|
<th>Album</th>
|
||||||
|
<th>Track Count</th>
|
||||||
|
<th>Album Artist</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -96,25 +120,30 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<input type="button" class="btn btn-primary btn-lg btn-block" value="All Albums" routerLink="/album">
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
<h3>Top Played Songs</h3>
|
<h3>Top Played Songs</h3>
|
||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Track Name</th>
|
<th>Track Name</th>
|
||||||
<th>Artist</th>
|
<th>Artist</th>
|
||||||
<th>Album</th>
|
<th>Album</th>
|
||||||
<th>Play Count</th>
|
<th>Play Count</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let song of mostPlayedSongs">
|
<tr *ngFor="let song of mostPlayedSongs">
|
||||||
<td><b>{{song.Name}}</b></td>
|
<td><b>{{song.Name}}</b></td>
|
||||||
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
|
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
|
||||||
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
|
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
|
||||||
<td>{{song['Play Count']}}</td>
|
<td>{{song['Play Count']}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<h3><a [routerLink]="['/top-played']">Top Played page</a></h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h3>Top Genres</h3>
|
<h3>Top Genres</h3>
|
||||||
144
dashboard/src/app/dashboard/dashboard.component.ts
Normal file
@@ -0,0 +1,144 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
import { Router } from '@angular/router';
|
||||||
|
|
||||||
|
import { ElsService } from './../els.service';
|
||||||
|
import { Song } from './../model/song';
|
||||||
|
import { Bucket } from './../model/bucket';
|
||||||
|
import { Suggested } from '../model/suggested';
|
||||||
|
|
||||||
|
import {Observable, of, OperatorFunction} from 'rxjs';
|
||||||
|
import {catchError, debounceTime, distinctUntilChanged, map, tap, switchMap} from 'rxjs/operators';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-dashboard',
|
||||||
|
templateUrl: './dashboard.component.html',
|
||||||
|
styleUrls: [ './dashboard.component.css' ]
|
||||||
|
})
|
||||||
|
export class DashboardComponent implements OnInit {
|
||||||
|
totalTime = 0;
|
||||||
|
totalSize = 0;
|
||||||
|
trackCountSong = 0;
|
||||||
|
trackCountArtist = 0;
|
||||||
|
trackCountAlbum = 0;
|
||||||
|
neverListenSong = 0;
|
||||||
|
|
||||||
|
albumArtistCount = 0;
|
||||||
|
|
||||||
|
topGenres: Bucket[] = [];
|
||||||
|
bottomGenres: Bucket[] = [];
|
||||||
|
|
||||||
|
mostPlayedSongs: Song[] = [];
|
||||||
|
|
||||||
|
lastAddedAlbums: Bucket[] = [];
|
||||||
|
albumArtists = [];
|
||||||
|
|
||||||
|
searchTerm = ''
|
||||||
|
suggested : Suggested[] = []
|
||||||
|
|
||||||
|
constructor(private elsService: ElsService, private route: Router) { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.elsService.getTime().then(result => {
|
||||||
|
this.totalTime = result;
|
||||||
|
});
|
||||||
|
|
||||||
|
this.elsService.getSize().then(result => this.totalSize = result);
|
||||||
|
|
||||||
|
this.elsService.getCountSong(ElsService.SONG_INDEX_NAME)
|
||||||
|
.then(result => this.trackCountSong = result);
|
||||||
|
// TODO: Unused information
|
||||||
|
// this.elsService.getCountSong(ElsService.ARTIST_INDEX_NAME)
|
||||||
|
// .then(result => this.trackCountArtist = result);
|
||||||
|
// this.elsService.getCountSong(ElsService.ALBUM_INDEX_NAME)
|
||||||
|
// .then(result => this.trackCountAlbum = result);
|
||||||
|
|
||||||
|
this.elsService.getCountNeverListenSong()
|
||||||
|
.then(result => this.neverListenSong = result);
|
||||||
|
|
||||||
|
this.elsService.getMostPlayedTrack().subscribe(
|
||||||
|
data => this.mostPlayedSongs = data
|
||||||
|
);
|
||||||
|
|
||||||
|
this.elsService.getGenres().subscribe(data => this.topGenres = data);
|
||||||
|
this.elsService.getGenres('asc').subscribe(data => this.bottomGenres = data);
|
||||||
|
// this.elsService.getGenreCount().subscribe(data => console.log(data));
|
||||||
|
|
||||||
|
const lastAddedAlbumsTemp: Bucket[] = [];
|
||||||
|
const BreakException = {};
|
||||||
|
this.elsService.getLastAddedAlbums(6).subscribe(buckets => {
|
||||||
|
buckets.forEach(bucket => {
|
||||||
|
// console.log(bucket);
|
||||||
|
|
||||||
|
if (lastAddedAlbumsTemp.length === 0) {
|
||||||
|
lastAddedAlbumsTemp.push(bucket);
|
||||||
|
} else {
|
||||||
|
let found = false;
|
||||||
|
lastAddedAlbumsTemp.forEach(element => {
|
||||||
|
if (element.key === bucket.key) {
|
||||||
|
element.doc_count += bucket.doc_count;
|
||||||
|
found = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (!found) {
|
||||||
|
lastAddedAlbumsTemp.push(bucket);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// console.log("alors");
|
||||||
|
// console.log(lastAddedAlbumsTemp);
|
||||||
|
|
||||||
|
this.lastAddedAlbums = lastAddedAlbumsTemp;
|
||||||
|
this.lastAddedAlbums.forEach(bucket => this.getArtistName(bucket));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private getArtistName(albumBucket: Bucket) {
|
||||||
|
// For each bucket.key (album name), search artist.
|
||||||
|
// Use track count to compare
|
||||||
|
this.elsService.getArtistFromAlbumName(albumBucket.key).subscribe(albums => {
|
||||||
|
// Identification of the good album
|
||||||
|
let goodAlbum;
|
||||||
|
if (albums.length > 1) {
|
||||||
|
// More than one result for an album name: search good by track count
|
||||||
|
albums.forEach(album => {
|
||||||
|
if (album['Track Count'] === albumBucket.doc_count) {
|
||||||
|
goodAlbum = album;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// Just one result for album name
|
||||||
|
goodAlbum = albums[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
this.albumArtists[goodAlbum.Name] = goodAlbum['Album Artist'] ? goodAlbum['Album Artist'].toString() : goodAlbum.Artist.toString();
|
||||||
|
|
||||||
|
// If an album with multiple artist doesn't have 'Album Artist' field - this case should not happen
|
||||||
|
if (this.albumArtists[goodAlbum.Name].length > 50) {
|
||||||
|
this.albumArtists[goodAlbum.Name] = this.albumArtists[goodAlbum.Name].substring(0, 50) + '...';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
onSelectSearch($event) {
|
||||||
|
this.route.navigate(['/' + $event.item.type + '/' + $event.item.name])
|
||||||
|
}
|
||||||
|
|
||||||
|
searching = false;
|
||||||
|
searchFailed = false;
|
||||||
|
|
||||||
|
search: OperatorFunction<string, readonly string[]> = (text$: Observable<string>) =>
|
||||||
|
text$.pipe(
|
||||||
|
debounceTime(300),
|
||||||
|
distinctUntilChanged(),
|
||||||
|
tap(() => this.searching = true),
|
||||||
|
switchMap(term =>
|
||||||
|
this.elsService.getSuggest(term).pipe(
|
||||||
|
tap(() => this.searchFailed = false),
|
||||||
|
catchError(() => {
|
||||||
|
this.searchFailed = true;
|
||||||
|
return of([]);
|
||||||
|
}))
|
||||||
|
),
|
||||||
|
tap(() => this.searching = false)
|
||||||
|
)
|
||||||
|
}
|
||||||
16
dashboard/src/app/els-album.service.spec.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { ElsAlbumService } from './els-album.service';
|
||||||
|
|
||||||
|
describe('ElsAlbumService', () => {
|
||||||
|
let service: ElsAlbumService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({});
|
||||||
|
service = TestBed.inject(ElsAlbumService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
96
dashboard/src/app/els-album.service.ts
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpClient, HttpHeaders } from '@angular/common/http'
|
||||||
|
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { map, catchError } from 'rxjs/operators';
|
||||||
|
|
||||||
|
import { Album } from './model/album';
|
||||||
|
import { ElsService } from './els.service';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class ElsAlbumService extends ElsService {
|
||||||
|
public static readonly GET_ALBUMS_DEFAULT_QUERY = {
|
||||||
|
'query': {
|
||||||
|
'bool': {
|
||||||
|
'must': [],
|
||||||
|
'must_not': [],
|
||||||
|
'filter': [
|
||||||
|
{ 'range': { 'Avg Bit Rate': { 'lte': '128'}}}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'sort': [ {
|
||||||
|
'_script' : {
|
||||||
|
'type' : 'number',
|
||||||
|
'script' : {
|
||||||
|
'lang': 'painless',
|
||||||
|
'source': 'doc[\'Play Count\'].value / doc[\'Track Count\'].value'
|
||||||
|
},
|
||||||
|
'order' : 'desc'
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
'Avg Bit Rate': {
|
||||||
|
'order': 'asc'
|
||||||
|
}
|
||||||
|
} ],
|
||||||
|
'size': 500
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(protected http: HttpClient) {
|
||||||
|
super(http);
|
||||||
|
}
|
||||||
|
|
||||||
|
getAlbums(query: any): Observable<Album[]> {
|
||||||
|
console.info('getAlbums');
|
||||||
|
console.info(query);
|
||||||
|
return this.http
|
||||||
|
.post(this.elsUrl + ElsService.ALBUM_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify(query), {headers: this.headers})
|
||||||
|
.pipe(
|
||||||
|
map(res => this.responseToAlbums(res)),
|
||||||
|
catchError(error => this.handleError(error, 'getAlbums'))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
getAlbumsFiltered(size: number): Observable<Album[]> {
|
||||||
|
// http://localhost:9200/itunes-albums/_search
|
||||||
|
console.info('getAlbums');
|
||||||
|
return this.http
|
||||||
|
.post(this.elsUrl + ElsService.ALBUM_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify({
|
||||||
|
'sort': [ {
|
||||||
|
'Avg Bit Rate': {
|
||||||
|
'order': 'asc'
|
||||||
|
}
|
||||||
|
} ],
|
||||||
|
'size': size,
|
||||||
|
'query': {
|
||||||
|
'bool': {
|
||||||
|
'must': [],
|
||||||
|
'filter': [
|
||||||
|
{
|
||||||
|
'match_all': {}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
'should': [],
|
||||||
|
'must_not': [
|
||||||
|
{
|
||||||
|
'match_phrase': {
|
||||||
|
'Artist': 'François Pérusse'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'match_phrase': {
|
||||||
|
'Album Artist': 'Comédiens'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.pipe(
|
||||||
|
map(res => this.responseToAlbums(res)),
|
||||||
|
catchError(error => this.handleError(error, 'getAlbums'))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
16
dashboard/src/app/els-sort.service.spec.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { ElsSortService } from './els-sort.service';
|
||||||
|
|
||||||
|
describe('ElsSortService', () => {
|
||||||
|
let service: ElsSortService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({});
|
||||||
|
service = TestBed.inject(ElsSortService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
147
dashboard/src/app/els-sort.service.ts
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { map, catchError } from 'rxjs/operators';
|
||||||
|
import { ElsService } from './els.service';
|
||||||
|
import { Album } from './model/album';
|
||||||
|
import { Bucket } from './model/bucket';
|
||||||
|
import { Song } from './model/song';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root'
|
||||||
|
})
|
||||||
|
export class ElsSortService extends ElsService {
|
||||||
|
|
||||||
|
constructor(protected http: HttpClient) {
|
||||||
|
super(http);
|
||||||
|
}
|
||||||
|
|
||||||
|
getTime(): Promise<number> {
|
||||||
|
return this.http
|
||||||
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify({
|
||||||
|
query: {
|
||||||
|
bool: {
|
||||||
|
must_not: [
|
||||||
|
{
|
||||||
|
term: {
|
||||||
|
"Location.tree": "/F:/Musique"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
aggs: {
|
||||||
|
sum_time: {
|
||||||
|
sum: { field: 'Total Time'}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'size': 0
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.toPromise()
|
||||||
|
.then(res => res.aggregations.sum_time.value as number)
|
||||||
|
.catch(error => this.handleError(error, 'getTime()'));
|
||||||
|
}
|
||||||
|
|
||||||
|
getSize(): Promise<number> {
|
||||||
|
return this.http
|
||||||
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify({
|
||||||
|
query: {
|
||||||
|
bool: {
|
||||||
|
must_not: [
|
||||||
|
{
|
||||||
|
term: {
|
||||||
|
"Location.tree": "/F:/Musique"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
aggs: {
|
||||||
|
sum_time: {
|
||||||
|
sum: { field: 'Size' }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'size': 0
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.toPromise()
|
||||||
|
.then(res => res.aggregations.sum_time.value as number)
|
||||||
|
.catch(error => this.handleError(error, 'getSize()'));
|
||||||
|
}
|
||||||
|
|
||||||
|
getCountSong(): Promise<number> {
|
||||||
|
return this.http
|
||||||
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_COUNT,
|
||||||
|
JSON.stringify({
|
||||||
|
query: {
|
||||||
|
bool: {
|
||||||
|
must_not: [
|
||||||
|
{
|
||||||
|
term: {
|
||||||
|
"Location.tree": "/F:/Musique"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.toPromise()
|
||||||
|
.then(res => res.count as number)
|
||||||
|
.catch(error => this.handleError(error, 'getCountSong()'));
|
||||||
|
}
|
||||||
|
|
||||||
|
getCountNeverListenSong(): Promise<number> {
|
||||||
|
return this.http
|
||||||
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_COUNT,
|
||||||
|
JSON.stringify({
|
||||||
|
'query': {
|
||||||
|
'bool': {
|
||||||
|
'must_not': [
|
||||||
|
{
|
||||||
|
'exists': { 'field': 'Play Count'}
|
||||||
|
}, {
|
||||||
|
term: {
|
||||||
|
"Location.tree": "/F:/Musique"
|
||||||
|
} }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.toPromise()
|
||||||
|
.then(res => res.count as number)
|
||||||
|
.catch(error => this.handleError(error, 'getCountNeverListenSong()'));
|
||||||
|
}
|
||||||
|
|
||||||
|
getAlbums(): Observable<Bucket[]> {
|
||||||
|
return this.http
|
||||||
|
.post(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify({
|
||||||
|
query: {
|
||||||
|
bool: {
|
||||||
|
must_not: [
|
||||||
|
{
|
||||||
|
term: {
|
||||||
|
"Location.tree": "/F:/Musique"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'size': 0,
|
||||||
|
'aggs': {
|
||||||
|
'albums' : {
|
||||||
|
'terms': {
|
||||||
|
'field' : 'Album.raw',
|
||||||
|
'order': { '_term': 'asc' },
|
||||||
|
'size': 50
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.pipe(
|
||||||
|
map(res => this.responseAggregationToBucket(res, "albums")),
|
||||||
|
catchError(error => this.handleError(error, 'getAlbums'))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,31 +1,34 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Headers, Http } from '@angular/http';
|
import { HttpClient, HttpHeaders } from '@angular/common/http'
|
||||||
|
|
||||||
import { Observable } from 'rxjs/Observable';
|
import { Observable } from 'rxjs';
|
||||||
import 'rxjs/add/operator/toPromise';
|
import { map, catchError } from 'rxjs/operators';
|
||||||
import 'rxjs/add/operator/map';
|
|
||||||
|
|
||||||
import { Song } from './object/song';
|
import { Song } from './model/song';
|
||||||
import { Album } from './object/album';
|
import { Album } from './model/album';
|
||||||
import { Artist } from './object/artist';
|
import { Artist } from './model/artist';
|
||||||
import { Bucket } from './object/bucket';
|
import { Bucket } from './model/bucket';
|
||||||
|
import { Suggested } from './model/suggested';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class ElsService {
|
export class ElsService {
|
||||||
public static readonly DEFAULT_SIZE: number = 50;
|
public static readonly DEFAULT_SIZE: number = 50;
|
||||||
private static readonly INDEX_NAME = 'itunessongs';
|
public static readonly SONG_INDEX_NAME = '/itunes-songs';
|
||||||
|
public static readonly ARTIST_INDEX_NAME = '/itunes-artists';
|
||||||
|
public static readonly ALBUM_INDEX_NAME = '/itunes-albums';
|
||||||
|
public static readonly SUGGEST_INDEX_NAME = '/itunes-suggest';
|
||||||
|
|
||||||
private static readonly ACTION_SEARCH = '/_search';
|
protected static readonly ACTION_SEARCH = '/_search';
|
||||||
private static readonly ACTION_COUNT = '/_count';
|
protected static readonly ACTION_COUNT = '/_count';
|
||||||
|
|
||||||
private elsUrl = 'http://localhost:9200/' + ElsService.INDEX_NAME + '/';
|
protected elsUrl = 'http://localhost:9200';
|
||||||
private headers = new Headers({'Content-Type': 'application/json'});
|
protected headers = new HttpHeaders({'Content-Type': 'application/json'});
|
||||||
|
|
||||||
constructor(private http: Http) { }
|
constructor(protected http: HttpClient) { }
|
||||||
|
|
||||||
getTime(): Promise<number> {
|
getTime(): Promise<number> {
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
aggs: {
|
aggs: {
|
||||||
sum_time: {
|
sum_time: {
|
||||||
@@ -35,19 +38,13 @@ export class ElsService {
|
|||||||
'size': 0
|
'size': 0
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.toPromise()
|
.toPromise()
|
||||||
.then(res => res.json().aggregations.sum_time.value as number)
|
.then(res => res.aggregations.sum_time.value as number)
|
||||||
.catch(this.handleError);
|
.catch(error => this.handleError(error, 'getTime()'));
|
||||||
}
|
|
||||||
|
|
||||||
getTimeSlowly(): Promise<number> {
|
|
||||||
return new Promise(resolve => {
|
|
||||||
setTimeout(() => resolve(this.getTime()), 2000);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getSize(): Promise<number> {
|
getSize(): Promise<number> {
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + ElsService.ACTION_SEARCH,
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
aggs: {
|
aggs: {
|
||||||
sum_time: {
|
sum_time: {
|
||||||
@@ -57,27 +54,21 @@ export class ElsService {
|
|||||||
'size': 0
|
'size': 0
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.toPromise()
|
.toPromise()
|
||||||
.then(res => res.json().aggregations.sum_time.value as number)
|
.then(res => res.aggregations.sum_time.value as number)
|
||||||
.catch(this.handleError);
|
.catch(error => this.handleError(error, 'getSize()'));
|
||||||
}
|
}
|
||||||
|
|
||||||
getSizeSlowly(): Promise<number> {
|
getCountSong(index: string): Promise<number> {
|
||||||
return new Promise(resolve => {
|
|
||||||
setTimeout(() => resolve(this.getSize()), 2000);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
getCountSong(type: string): Promise<number> {
|
|
||||||
return this.http
|
return this.http
|
||||||
.get(this.elsUrl + type + ElsService.ACTION_COUNT)
|
.get<any>(this.elsUrl + index + ElsService.ACTION_COUNT)
|
||||||
.toPromise()
|
.toPromise()
|
||||||
.then(res => res.json().count as number)
|
.then(res => res.count as number)
|
||||||
.catch(this.handleError);
|
.catch(error => this.handleError(error, 'getCountSong(' + index + ')'));
|
||||||
}
|
}
|
||||||
|
|
||||||
getCountNeverListenSong(): Promise<number> {
|
getCountNeverListenSong(): Promise<number> {
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_COUNT,
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_COUNT,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'bool': {
|
'bool': {
|
||||||
@@ -88,23 +79,15 @@ export class ElsService {
|
|||||||
}
|
}
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.toPromise()
|
.toPromise()
|
||||||
.then(res => res.json().count as number)
|
.then(res => res.count as number)
|
||||||
.catch(this.handleError);
|
.catch(error => this.handleError(error, 'getCountNeverListenSong()'));
|
||||||
}
|
|
||||||
|
|
||||||
getTrackCountSlowly(type: string): Promise<number> {
|
|
||||||
return new Promise(resolve => {
|
|
||||||
setTimeout(() => resolve(this.getCountSong(type)), 2000);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getMostPlayedTrack(): Observable<Song[]> {
|
getMostPlayedTrack(): Observable<Song[]> {
|
||||||
// Thank to http://chariotsolutions.com/blog/post/angular2-observables-http-separating-services-components/
|
// Thank to http://chariotsolutions.com/blog/post/angular2-observables-http-separating-services-components/
|
||||||
// for the map part
|
// for the map part
|
||||||
|
|
||||||
// Could be shorter but I think it's more readable like this.
|
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'sort': [ {
|
'sort': [ {
|
||||||
'Play Count': {
|
'Play Count': {
|
||||||
@@ -113,30 +96,86 @@ export class ElsService {
|
|||||||
} ],
|
} ],
|
||||||
'size': 5
|
'size': 5
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => {
|
.pipe(
|
||||||
return res.json().hits.hits;
|
map(res => this.responseToSongs(res)),
|
||||||
})
|
catchError(error => this.handleError(error, 'getMostPlayedTrack()'))
|
||||||
.map((hits: Array<any>) => {
|
);
|
||||||
const result: Array<Song> = [];
|
}
|
||||||
hits.forEach((hit) => {
|
|
||||||
result.push(hit._source);
|
/**
|
||||||
});
|
* A basic get of albums ordered by 'Play Count' field.
|
||||||
return result;
|
*/
|
||||||
});
|
getMostPlayedAlbumNaive(): Promise<Album[]> {
|
||||||
// Shorter way:
|
return this.http
|
||||||
// .map(res => {
|
.get(this.elsUrl + ElsService.ALBUM_INDEX_NAME + ElsService.ACTION_SEARCH + '?sort=Play Count:desc&size=20')
|
||||||
// let result: Array<Song> = [];
|
.toPromise()
|
||||||
// res.json().hits.hits.forEach(element => {
|
.then(res => this.responseToAlbums(res))
|
||||||
// result.push(element._source);
|
.catch(error => this.handleError(error, 'getMostPlayedAlbumNaive'));
|
||||||
// });
|
// TODO Excluse 'Divers' + compilation
|
||||||
// return result;
|
}
|
||||||
// });
|
|
||||||
|
/**
|
||||||
|
* More complicated query to calculate Avg. Play and get top ordrered by this results.
|
||||||
|
* Result is in '.hits.hits[].sort' field - not casted by conversion method
|
||||||
|
*/
|
||||||
|
getMostPlayedAlbum(): Observable<Album[]> {
|
||||||
|
return this.http
|
||||||
|
.post(this.elsUrl + ElsService.ALBUM_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify({
|
||||||
|
'sort': [
|
||||||
|
{
|
||||||
|
'_script': {
|
||||||
|
'type': 'number',
|
||||||
|
'script': {
|
||||||
|
'inline': 'doc[\'Play Count\'].value / doc[\'Track Count\'].value'
|
||||||
|
},
|
||||||
|
'order': 'desc'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.pipe(
|
||||||
|
map(res => this.responseToAlbums(res)),
|
||||||
|
catchError(error => this.handleError(error, 'getMostPlayedAlbum()'))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
getMostPlayedArtistNaive(): Promise<Artist[]> {
|
||||||
|
return this.http
|
||||||
|
.get(this.elsUrl + ElsService.ARTIST_INDEX_NAME + ElsService.ACTION_SEARCH + '?sort=Play Count:desc&size=20')
|
||||||
|
.toPromise()
|
||||||
|
.then(res => this.responseToAlbums(res))
|
||||||
|
.catch(error => this.handleError(error, 'getMostPlayedArtistNaive'));
|
||||||
|
// TODO Excluse 'Divers' + compilation
|
||||||
|
}
|
||||||
|
|
||||||
|
getMostPlayedArtist(): Observable<Artist[]> {
|
||||||
|
return this.http
|
||||||
|
.post(this.elsUrl + ElsService.ARTIST_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify({
|
||||||
|
'sort': [
|
||||||
|
{
|
||||||
|
'_script': {
|
||||||
|
'type': 'number',
|
||||||
|
'script': {
|
||||||
|
'inline': 'doc[\'Play Count\'].value / doc[\'Track Count\'].value'
|
||||||
|
},
|
||||||
|
'order': 'desc'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'size': 100
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.pipe(
|
||||||
|
map(res => this.responseToArtists(res)),
|
||||||
|
catchError(error => this.handleError(error, 'getMostPlayedArtist()'))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
getAlbumSongs(albumName: string, from: number = 0): Observable<Song[]> {
|
getAlbumSongs(albumName: string, from: number = 0): Observable<Song[]> {
|
||||||
console.info('getAlbumSongs- Album name: ' + albumName + ' - from: ' + from);
|
console.info('getAlbumSongs- Album name: ' + albumName + ' - from: ' + from);
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
.post(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'match_phrase': { 'Album': albumName }
|
'match_phrase': { 'Album': albumName }
|
||||||
@@ -144,23 +183,17 @@ export class ElsService {
|
|||||||
'size': ElsService.DEFAULT_SIZE,
|
'size': ElsService.DEFAULT_SIZE,
|
||||||
'from': from
|
'from': from
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => {
|
.pipe(
|
||||||
return res.json().hits.hits;
|
map(res => this.responseToSongs(res)),
|
||||||
})
|
catchError(error => this.handleError(error, 'getAlbumSongs(' + albumName + ',' + from + ')'))
|
||||||
.map((hits: Array<any>) => {
|
);
|
||||||
const result: Array<Song> = [];
|
|
||||||
hits.forEach((hit) => {
|
|
||||||
result.push(hit._source);
|
|
||||||
});
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getGenreSongs(genreName: string, from: number = 0): Observable<Song[]> {
|
getGenreSongs(genreName: string, from: number = 0): Observable<Song[]> {
|
||||||
console.info('getGenreSongs- Genre name: ' + genreName + ' - from: ' + from);
|
console.info('getGenreSongs- Genre name: ' + genreName + ' - from: ' + from);
|
||||||
// TODO Code repetition => to refactor
|
// TODO Code repetition => to refactor
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
.post(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'match_phrase': { 'Genre': genreName }
|
'match_phrase': { 'Genre': genreName }
|
||||||
@@ -168,22 +201,16 @@ export class ElsService {
|
|||||||
'size': ElsService.DEFAULT_SIZE,
|
'size': ElsService.DEFAULT_SIZE,
|
||||||
'from': from
|
'from': from
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => {
|
.pipe(
|
||||||
return res.json().hits.hits;
|
map(res => this.responseToSongs(res)),
|
||||||
})
|
catchError(error => this.handleError(error, 'getAlbumSongs(' + genreName + ',' + from + ')'))
|
||||||
.map((hits: Array<any>) => {
|
);
|
||||||
const result: Array<Song> = [];
|
|
||||||
hits.forEach((hit) => {
|
|
||||||
result.push(hit._source);
|
|
||||||
});
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getArtistSongs(artistName: string, from: number = 0): Observable<Song[]> {
|
getArtistSongs(artistName: string, from: number = 0): Observable<Song[]> {
|
||||||
console.info('getArtistSongs- Artist name: ' + artistName + ' - from: ' + from);
|
console.info('getArtistSongs- Artist name: ' + artistName + ' - from: ' + from);
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
.post(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'bool': {
|
'bool': {
|
||||||
@@ -196,75 +223,52 @@ export class ElsService {
|
|||||||
'size': ElsService.DEFAULT_SIZE,
|
'size': ElsService.DEFAULT_SIZE,
|
||||||
'from': from
|
'from': from
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => {
|
.pipe(
|
||||||
return res.json().hits.hits;
|
map(res => this.responseToSongs(res)),
|
||||||
})
|
catchError(error => this.handleError(error, 'getArtistSongs(' + artistName + ',' + from + ')'))
|
||||||
.map((hits: Array<any>) => {
|
);
|
||||||
const result: Array<Song> = [];
|
|
||||||
hits.forEach((hit) => {
|
|
||||||
result.push(hit._source);
|
|
||||||
});
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getAlbum(albumName: string): Observable<Album> {
|
getAlbum(albumName: string): Observable<Album> {
|
||||||
|
// TODO Why this is used on album pages?
|
||||||
|
// When it's commented, the album information goes up correctly */
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'album' + ElsService.ACTION_SEARCH,
|
.post(this.elsUrl + ElsService.ALBUM_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'match_phrase': { 'Album': albumName }
|
'match_phrase': { 'Album': albumName }
|
||||||
},
|
},
|
||||||
'size': ElsService.DEFAULT_SIZE
|
'size': ElsService.DEFAULT_SIZE
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => {
|
.pipe(
|
||||||
return res.json().hits.hits;
|
map(res => this.responseToOneTypedResult<Album>(res, albumName)),
|
||||||
})
|
catchError(error => this.handleError(error, 'getAlbum(' + albumName + ')'))
|
||||||
.map((hits: Array<any>) => {
|
);
|
||||||
if (hits.length < 1) {
|
|
||||||
console.info('No album "' + albumName + '" found.');
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
if (hits.length > 1) {
|
|
||||||
console.error('More than one album "' + albumName + '" found (' + hits.length + '), return the first.');
|
|
||||||
}
|
|
||||||
return hits[0]._source;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getArtist(artistName: string): Observable<Artist> {
|
getArtist(artistName: string): Observable<Artist> {
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'artist' + ElsService.ACTION_SEARCH,
|
.post(this.elsUrl + ElsService.ARTIST_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'match_phrase': { 'Artist': artistName }
|
'match_phrase': { 'Artist': artistName }
|
||||||
},
|
},
|
||||||
'size': ElsService.DEFAULT_SIZE
|
'size': ElsService.DEFAULT_SIZE
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => res.json().hits.hits)
|
.pipe(
|
||||||
.map((hits: Array<any>) => {
|
map(res => this.responseToOneTypedResult<Artist>(res, artistName)),
|
||||||
// Theorically, my script prevent to found two documents with this query.
|
catchError(error => this.handleError(error, 'getArtist(' + artistName + ')'))
|
||||||
// But Prevention is better than cure as Shakespeare said
|
);
|
||||||
if (hits.length < 1) {
|
|
||||||
console.info('No artist "' + artistName + '" found.');
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
if (hits.length > 1) {
|
|
||||||
console.error('More than one artist "' + artistName + '" found (' + hits.length + '), return the first.');
|
|
||||||
console.error('This is not normal!');
|
|
||||||
}
|
|
||||||
return hits[0]._source;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getGenres(ordering: string = 'desc'): Observable<Bucket[]> {
|
getGenres(ordering: string = 'desc'): Observable<Bucket[]> {
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
.post(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'aggs' : {
|
'aggs' : {
|
||||||
'genres' : {
|
'genres' : {
|
||||||
'terms' : {
|
'terms' : {
|
||||||
'field' : 'Genre.original',
|
'field' : 'Genre',
|
||||||
'size' : 10,
|
'size' : 10,
|
||||||
'missing': 'N/A',
|
'missing': 'N/A',
|
||||||
'order': { '_count' : ordering }
|
'order': { '_count' : ordering }
|
||||||
@@ -273,57 +277,71 @@ export class ElsService {
|
|||||||
},
|
},
|
||||||
'size': 0
|
'size': 0
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => res.json().aggregations.genres.buckets)
|
.pipe(
|
||||||
.map((hits: Array<any>) => this.hitsToBuckets(hits));
|
map(res => this.responseAggregationToBucket(res, 'genres')),
|
||||||
|
catchError(error => this.handleError(error, 'getGenres(' + ordering + ')'))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
getGenreCount(): Observable<number> {
|
// getGenreCount(): Observable<number> {
|
||||||
return this.http
|
// return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
// .post<any>(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
// JSON.stringify({
|
||||||
'aggs' : {
|
// 'aggs' : {
|
||||||
'genres' : {
|
// 'genres' : {
|
||||||
'cardinality' : {
|
// 'cardinality' : {
|
||||||
'field' : 'Genre.original',
|
// 'field' : 'Genre.original',
|
||||||
'missing': 'N/A',
|
// 'missing': 'N/A',
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
},
|
// },
|
||||||
'size': 0
|
// 'size': 0
|
||||||
}), {headers: this.headers})
|
// }), {headers: this.headers})
|
||||||
.map(res => res.json().aggregations.genres.value);
|
// .pipe(
|
||||||
}
|
// map(res => res.aggregations.genres.value)
|
||||||
|
// );
|
||||||
|
// }
|
||||||
|
|
||||||
getLastAddedAlbums(month: number): Observable<Bucket[]> {
|
getLastAddedAlbums(month: number): Observable<Bucket[]> {
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'song' + ElsService.ACTION_SEARCH,
|
.post(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'range' : {
|
'range' : {
|
||||||
'Date Added' : {
|
'Date Added' : {
|
||||||
'gte' : 'now-' + month + 'M/d',
|
'gte' : 'now-' + month + 'M/d',
|
||||||
'lte' : 'now/d'
|
'lte' : 'now/d'
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
'aggs' : {
|
},
|
||||||
'album' : {
|
'size': 0,
|
||||||
'terms' : {
|
'aggs': {
|
||||||
'field' : 'Album.original',
|
'date' : {
|
||||||
'size': 10
|
'terms': {
|
||||||
|
'field' : 'Date Added',
|
||||||
|
'order': { '_term': 'desc' },
|
||||||
|
'size': 20
|
||||||
|
},
|
||||||
|
'aggs': {
|
||||||
|
'album': {
|
||||||
|
'terms': {
|
||||||
|
'field': 'Album.raw'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
'size': 0
|
}
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => res.json().aggregations.album.buckets)
|
.pipe(
|
||||||
|
map(res => this.responseSubAggregationToBucket(res, 'date')),
|
||||||
|
catchError(error => this.handleError(error, 'getLastAddedAlbums(' + month + ')' ))
|
||||||
|
);
|
||||||
// TODO Take in consideration "sum_other_doc_count"
|
// TODO Take in consideration "sum_other_doc_count"
|
||||||
.map((hits: Array<any>) => this.hitsToBuckets(hits));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getArtistFromAlbumName(albumname: string): Observable<Album[]> {
|
getArtistFromAlbumName(albumname: string): Observable<Album[]> { // TODO Rename ?
|
||||||
return this.http
|
return this.http
|
||||||
.post(this.elsUrl + 'album' + ElsService.ACTION_SEARCH,
|
.post<any>(this.elsUrl + ElsService.ALBUM_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
'query': {
|
'query': {
|
||||||
'match_phrase' : {
|
'match_phrase' : {
|
||||||
@@ -331,27 +349,168 @@ export class ElsService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}), {headers: this.headers})
|
}), {headers: this.headers})
|
||||||
.map(res => res.json().hits.hits)
|
.pipe(
|
||||||
.map((hits: Array<any>) => {
|
map(res => res.hits.hits),
|
||||||
// TODO Use a method (duplicated code ?)
|
map((hits: Array<any>) => {
|
||||||
const result: Array<Album> = [];
|
// TODO Use a method (duplicated code ?)
|
||||||
hits.forEach((hit) => {
|
const result: Array<Album> = [];
|
||||||
result.push(hit._source);
|
hits.forEach((hit) => {
|
||||||
});
|
result.push(hit._source);
|
||||||
return result;
|
});
|
||||||
});
|
return result;
|
||||||
|
}),
|
||||||
|
catchError(error => this.handleError(error, 'getArtistFromAlbumName' + albumname + ')'))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private hitsToBuckets(hits: Array<any>): Bucket[] {
|
getCountArtistSong(artistName: string): Observable<number> {
|
||||||
const result: Array<Bucket> = [];
|
console.log('artistname: ' + artistName);
|
||||||
hits.forEach((bucket) => {
|
return this.http
|
||||||
result.push(bucket);
|
.post<any>(this.elsUrl + ElsService.SONG_INDEX_NAME + ElsService.ACTION_COUNT,
|
||||||
});
|
JSON.stringify({
|
||||||
return result;
|
'query': {
|
||||||
|
'bool': {
|
||||||
|
'should': [
|
||||||
|
{'match_phrase' : { 'Album Artist' : artistName }},
|
||||||
|
{'match_phrase' : { 'Artist' : artistName }}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.pipe(
|
||||||
|
map(res => res.count as number),
|
||||||
|
catchError(error => this.handleError(error, 'getCountArtistSong' + artistName + ')'))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private handleError(error: any): Promise<any> {
|
getSuggest(text: string): Observable<Suggested[]> {
|
||||||
console.error('An error occurred', error); // for demo purposes only
|
console.log('search sugget: ' + text);
|
||||||
|
return this.http
|
||||||
|
.post<any>(this.elsUrl + ElsService.SUGGEST_INDEX_NAME + ElsService.ACTION_SEARCH,
|
||||||
|
JSON.stringify({
|
||||||
|
'_source': ['album', 'artist'],
|
||||||
|
'suggest': {
|
||||||
|
'album-suggest': {
|
||||||
|
'prefix': text,
|
||||||
|
'completion': {
|
||||||
|
'field': 'album_suggest'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'artist-suggest': {
|
||||||
|
'prefix': text,
|
||||||
|
'completion': {
|
||||||
|
'field': 'artist_suggest'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}), {headers: this.headers})
|
||||||
|
.pipe(
|
||||||
|
map(res => this.responseSuggesterToSuggested(res, 'album-suggest', 'artist-suggest')),
|
||||||
|
catchError(error => this.handleError(error, 'getSuggest(' + text + ')'))
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Process a result to return just one result.
|
||||||
|
* Used to get an album or an artist.
|
||||||
|
* Take a name to put in console output if no result or more than one result.
|
||||||
|
*
|
||||||
|
* @param res Response to process
|
||||||
|
* @param name The searched name - for console output
|
||||||
|
*/
|
||||||
|
private responseToOneTypedResult<T>(res: any, name: string): T {
|
||||||
|
const hits = res.hits.hits;
|
||||||
|
|
||||||
|
if (hits.length < 1) {
|
||||||
|
console.info('No result found for name: "' + name);
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
if (hits.length > 1) {
|
||||||
|
// TODO Cumul results (for album)
|
||||||
|
console.error('More than one result for name: "' + name + '". Found (' + hits.length + '), return the first.');
|
||||||
|
}
|
||||||
|
return hits[0]._source;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Process a response to a array of songs.
|
||||||
|
*
|
||||||
|
* @param res Response to process
|
||||||
|
*/
|
||||||
|
protected responseToSongs(res: any): Song[] {
|
||||||
|
const result: Array<Song> = [];
|
||||||
|
res.hits.hits.forEach((hit) => {
|
||||||
|
result.push(hit._source);
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Process a response to a array of songs.
|
||||||
|
*
|
||||||
|
* @param res Response to process
|
||||||
|
*/
|
||||||
|
protected responseToAlbums(res: any): Album[] {
|
||||||
|
const result: Array<Album> = [];
|
||||||
|
res.hits.hits.forEach((hit) => {
|
||||||
|
result.push(hit._source);
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Process a response to a array of songs.
|
||||||
|
*
|
||||||
|
* @param res Response to process
|
||||||
|
*/
|
||||||
|
private responseToArtists(res: any): Artist[] {
|
||||||
|
const result: Array<Artist> = [];
|
||||||
|
res.hits.hits.forEach((hit) => {
|
||||||
|
result.push(hit._source);
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** Process an aggregation response to an array of Bucket.
|
||||||
|
*
|
||||||
|
* @param res Response to process
|
||||||
|
* @param name Name of aggregation
|
||||||
|
*/
|
||||||
|
protected responseAggregationToBucket(res: any, name: string): Bucket[] {
|
||||||
|
const result: Array<Bucket> = [];
|
||||||
|
res.aggregations[name].buckets.forEach((bucket) => {
|
||||||
|
result.push(bucket);
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private responseSubAggregationToBucket(res: any, name: string): Bucket[] {
|
||||||
|
const result: Array<Bucket> = [];
|
||||||
|
res.aggregations[name].buckets.forEach((bucket) => {
|
||||||
|
bucket['album'].buckets.forEach((subBucket) => {
|
||||||
|
result.push(subBucket);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected responseSuggesterToSuggested(res: any, ...suggestName: string[]): Suggested[] {
|
||||||
|
const result: Array<Suggested> = []
|
||||||
|
suggestName.forEach(sname => {
|
||||||
|
res['suggest'][sname][0]['options'].forEach(option => {
|
||||||
|
let suggest = new Suggested()
|
||||||
|
// TODO If more than one key, raise exception
|
||||||
|
suggest.type = String(Object.keys(option['_source']))
|
||||||
|
suggest.name = option['_source'][suggest.type]
|
||||||
|
result.push(suggest)
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected handleError(error: any, origin: string): Promise<any> {
|
||||||
|
console.error('An error occurred!');
|
||||||
|
console.error('Origin function: ', origin);
|
||||||
|
console.error('An error occurred!', error); // for demo purposes only
|
||||||
|
console.error(error); // for demo purposes only
|
||||||
return Promise.reject(error.message || error);
|
return Promise.reject(error.message || error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,28 +1,5 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>{{genreName}}</h1>
|
<h1>{{genreName}}</h1>
|
||||||
|
|
||||||
<table class="table table-striped">
|
<app-song-table [songs]=songs (atBottom)=loadSongs()></app-song-table>
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th></th>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Artist</th>
|
|
||||||
<th>Album</th>
|
|
||||||
<th>Album Artist</th>
|
|
||||||
<th>Play Count</th>
|
|
||||||
<th>Genre</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr *ngFor="let song of songs | sortBy : 'Track Number'">
|
|
||||||
<td>{{song['Track Number'] ? (("0" + song['Track Number']).slice(-2)) : "--"}}</td>
|
|
||||||
<td>{{song.Name}}</td>
|
|
||||||
<td><a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a></td>
|
|
||||||
<td><a [routerLink]="['/album', song.Album]">{{song.Album}}</a></td>
|
|
||||||
<td>{{song['Album Artist']}}</td>
|
|
||||||
<td>{{song['Play Count']}}</td>
|
|
||||||
<td>{{song.Genre}}</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||||
import { ActivatedRoute, Params } from '@angular/router';
|
import { ActivatedRoute, Params } from '@angular/router';
|
||||||
|
|
||||||
import { ElsService } from '../els.service';
|
import { ElsService } from '../els.service';
|
||||||
|
import { SongTableComponent } from '../song-table/song-table.component';
|
||||||
|
|
||||||
import { Song } from '../object/song';
|
import { Song } from '../model/song';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-genre',
|
selector: 'app-genre',
|
||||||
@@ -11,6 +12,7 @@ import { Song } from '../object/song';
|
|||||||
styleUrls: ['./genre.component.css']
|
styleUrls: ['./genre.component.css']
|
||||||
})
|
})
|
||||||
export class GenreComponent implements OnInit {
|
export class GenreComponent implements OnInit {
|
||||||
|
@ViewChild(SongTableComponent) songtable: SongTableComponent;
|
||||||
genreName = '';
|
genreName = '';
|
||||||
songs: Array<Song> = [];
|
songs: Array<Song> = [];
|
||||||
|
|
||||||
@@ -37,6 +39,7 @@ export class GenreComponent implements OnInit {
|
|||||||
this.songs = data;
|
this.songs = data;
|
||||||
} else {
|
} else {
|
||||||
data.forEach(song => {
|
data.forEach(song => {
|
||||||
|
this.songtable.setSortable(true);
|
||||||
this.songs.push(song);
|
this.songs.push(song);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,4 +10,5 @@ export class Album {
|
|||||||
'Album Rating Computed': boolean;
|
'Album Rating Computed': boolean;
|
||||||
'Play Count': number;
|
'Play Count': number;
|
||||||
'Total Time': number;
|
'Total Time': number;
|
||||||
|
'Album Artist': string;
|
||||||
}
|
}
|
||||||
@@ -4,4 +4,5 @@ export class Song {
|
|||||||
'Play Count': number;
|
'Play Count': number;
|
||||||
Album: string;
|
Album: string;
|
||||||
'Track Number': number; // TODO Default property
|
'Track Number': number; // TODO Default property
|
||||||
|
'Disc Number': number;
|
||||||
}
|
}
|
||||||
4
dashboard/src/app/model/suggested.ts
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
export class Suggested {
|
||||||
|
name: string;
|
||||||
|
type: string;
|
||||||
|
}
|
||||||
8
dashboard/src/app/pipes/convert-more-exact.pipe.spec.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import { ConvertMoreExactPipe } from './convert-more-exact.pipe';
|
||||||
|
|
||||||
|
describe('ConvertMoreExactPipe', () => {
|
||||||
|
it('create an instance', () => {
|
||||||
|
const pipe = new ConvertMoreExactPipe();
|
||||||
|
expect(pipe).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
56
dashboard/src/app/pipes/convert-more-exact.pipe.ts
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
|
|
||||||
|
@Pipe({
|
||||||
|
name: 'convertMoreExact'
|
||||||
|
})
|
||||||
|
export class ConvertMoreExactPipe implements PipeTransform {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert milliseconds to rounded time e.g. ~84d
|
||||||
|
* @param timeMs time in milliseconds
|
||||||
|
*/
|
||||||
|
transform(timeMs: number): string {
|
||||||
|
let x = timeMs / 1000;
|
||||||
|
|
||||||
|
const seconds = Math.floor(x % 60);
|
||||||
|
x /= 60;
|
||||||
|
|
||||||
|
let minutes = 0;
|
||||||
|
if (x > 1) { minutes = Math.floor(x % 60); }
|
||||||
|
x /= 60;
|
||||||
|
|
||||||
|
let hours = 0;
|
||||||
|
if (x > 1) { hours = Math.floor(x % 24); }
|
||||||
|
// TODO Enable/disable day
|
||||||
|
x /= 24;
|
||||||
|
const days = Math.floor(x);
|
||||||
|
|
||||||
|
// Final string
|
||||||
|
let ret = '~';
|
||||||
|
if (days > 0) {
|
||||||
|
return '~' + (days + (hours > 12 ? 1 : 0)) + 'd';
|
||||||
|
}
|
||||||
|
if (hours > 0) {
|
||||||
|
if (minutes > 45) {
|
||||||
|
ret += (hours + 1) + 'h';
|
||||||
|
} else if (minutes < 15) {
|
||||||
|
ret += hours + 'h';
|
||||||
|
} else {
|
||||||
|
ret += hours + 'h 1/2';
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
if (minutes > 0) {
|
||||||
|
ret += (minutes + (seconds > 35 ? 1 : 0)) + 'min';
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
if (seconds > 0) {
|
||||||
|
if (seconds > 35) {
|
||||||
|
return '~1min';
|
||||||
|
} else {
|
||||||
|
return seconds + 's';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
import { ConvertSizeToStringPipe } from './convert-size-to-string.pipe';
|
||||||
|
|
||||||
|
describe('ConvertSizeToStringPipe', () => {
|
||||||
|
it('create an instance', () => {
|
||||||
|
const pipe = new ConvertSizeToStringPipe();
|
||||||
|
expect(pipe).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
26
dashboard/src/app/pipes/convert-size-to-string.pipe.ts
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
|
|
||||||
|
@Pipe({
|
||||||
|
name: 'convertSizeToString'
|
||||||
|
})
|
||||||
|
export class ConvertSizeToStringPipe implements PipeTransform {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert size to human readable size
|
||||||
|
* @param size size in byte
|
||||||
|
*/
|
||||||
|
transform(size: number): any {
|
||||||
|
const units = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB'];
|
||||||
|
|
||||||
|
if (size === 0) {
|
||||||
|
return '0 Byte';
|
||||||
|
}
|
||||||
|
|
||||||
|
const i = Math.floor(Math.log(size) / Math.log(1024));
|
||||||
|
let calcSize = size / Math.pow(1024, i);
|
||||||
|
calcSize = Math.round(calcSize * 100) / 100;
|
||||||
|
|
||||||
|
return calcSize + ' ' + units[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
8
dashboard/src/app/pipes/convertms.pipe.spec.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import { ConvertMsPipe } from './convertms.pipe';
|
||||||
|
|
||||||
|
describe('ConvertMsPipe', () => {
|
||||||
|
it('create an instance', () => {
|
||||||
|
const pipe = new ConvertMsPipe();
|
||||||
|
expect(pipe).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
38
dashboard/src/app/pipes/convertms.pipe.ts
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
|
|
||||||
|
@Pipe({
|
||||||
|
name: 'convertMs'
|
||||||
|
})
|
||||||
|
export class ConvertMsPipe implements PipeTransform {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert milliseconds to "readable" duration e.g. 1d21h35m24s
|
||||||
|
* @param timeMs time in milliseconds
|
||||||
|
*/
|
||||||
|
transform(timeMs: number): string {
|
||||||
|
let x = timeMs / 1000;
|
||||||
|
|
||||||
|
const seconds = Math.floor(x % 60);
|
||||||
|
x /= 60;
|
||||||
|
|
||||||
|
let minutes = 0;
|
||||||
|
if (x > 1) { minutes = Math.floor(x % 60); }
|
||||||
|
x /= 60;
|
||||||
|
|
||||||
|
let hours = 0;
|
||||||
|
if (x > 1) { hours = Math.floor(x % 24); }
|
||||||
|
// TODO Enable/disable day
|
||||||
|
x /= 24;
|
||||||
|
const days = Math.floor(x);
|
||||||
|
|
||||||
|
// Final string
|
||||||
|
let ret = '';
|
||||||
|
if (days > 0) { ret += parseInt('0' + days) + 'd'; }
|
||||||
|
if (hours > 0) { ret += ('0' + hours).slice(-2) + 'h'; }
|
||||||
|
if (minutes > 0) { ret += ('0' + minutes).slice(-2) + 'm'; }
|
||||||
|
if (seconds > 0) { ret += ('0' + seconds).slice(-2) + 's'; }
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
// return ('0' + days).slice(-2) + ':' + ('0' + hours).slice(-2) + ':' + ('0' + minutes).slice(-2) + ':' + ('0' + seconds).slice(-2);
|
||||||
|
}
|
||||||
|
}
|
||||||
8
dashboard/src/app/pipes/round.pipe.spec.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import { RoundPipe } from './round.pipe';
|
||||||
|
|
||||||
|
describe('RoundPipe', () => {
|
||||||
|
it('create an instance', () => {
|
||||||
|
const pipe = new RoundPipe();
|
||||||
|
expect(pipe).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
21
dashboard/src/app/pipes/round.pipe.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
|
|
||||||
|
@Pipe({
|
||||||
|
name: 'round'
|
||||||
|
})
|
||||||
|
export class RoundPipe implements PipeTransform {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Round a value
|
||||||
|
* @param value value to round
|
||||||
|
* @param precision number of numbers to keep after coma - 1 if unspecified
|
||||||
|
*/
|
||||||
|
transform(value: number, precision?: number): number {
|
||||||
|
if (precision === undefined) {
|
||||||
|
precision = 1;
|
||||||
|
}
|
||||||
|
const factor = Math.pow(10, precision);
|
||||||
|
return Math.round(value * factor) / factor;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
40
dashboard/src/app/pipes/sort-by.pipe.ts
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
|
|
||||||
|
@Pipe({
|
||||||
|
name: 'sortBy'
|
||||||
|
})
|
||||||
|
export class SortByPipe implements PipeTransform {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sort an array by multiple elements.
|
||||||
|
*
|
||||||
|
* Example to sort an array respectively by Year, Album, Disc Number, etc.
|
||||||
|
* Typescript usage:
|
||||||
|
* <pre>
|
||||||
|
* new SortByPipe().transform(this.songs, 'Year', 'Album', 'Disc Number', 'Track Number', 'Play Count');
|
||||||
|
* </pre>
|
||||||
|
* In HTML usage:
|
||||||
|
* <pre>
|
||||||
|
* <tr *ngFor="let song of songs | sortBy : 'Year':'Album':'Disc Number':'Track Number'">
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @param array array to sort
|
||||||
|
* @param args elements used to sort in oder
|
||||||
|
*/
|
||||||
|
transform(array: Array<any>, ...args: any[]): Array<any> {
|
||||||
|
array.sort((a: any, b: any) => {
|
||||||
|
for (let i = 0; i < args.length; i++) {
|
||||||
|
const arg = args[i];
|
||||||
|
|
||||||
|
if (a[arg] === undefined && b[arg] !== undefined) { return -1; }
|
||||||
|
if (a[arg] !== undefined && b[arg] === undefined) { return 1; }
|
||||||
|
|
||||||
|
if (a[arg] < b[arg]) { return -1; }
|
||||||
|
if (a[arg] > b[arg]) { return 1; }
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
return array;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
106
dashboard/src/app/song-table/song-table.component.css
Normal file
55
dashboard/src/app/song-table/song-table.component.html
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
<table class="table table-striped" (window:scroll)="onScroll($event)">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th></th>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Album</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Artist</th>
|
||||||
|
<th>Album Artist</th>
|
||||||
|
<th>Play Count</th>
|
||||||
|
<th>Genre</th>
|
||||||
|
<th>Bit Rate</th>
|
||||||
|
<th>Rating</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let song of songs | sortBy : 'Year':'Album':'Disc Number':'Track Number'">
|
||||||
|
<td>{{song['Track Number'] ? (("0" + song['Track Number']).slice(-2)) : "--"}}</td>
|
||||||
|
<td>{{song.Name}}</td>
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/album', song.Album]">{{song.Album}}</a>
|
||||||
|
</td>
|
||||||
|
<td>{{song.Year}}</td>
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/artist', song.Artist]">{{song.Artist}}</a>
|
||||||
|
</td>
|
||||||
|
<td>{{song['Album Artist'] ? song['Album Artist'] : "-" }}</td>
|
||||||
|
<td>{{song['Play Count']}}</td>
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/genre', song.Genre]">{{song.Genre}}</a>
|
||||||
|
</td>
|
||||||
|
<td [title]="song['Bit Rate']">
|
||||||
|
<span [class]="'signal signal-' + roundBitRate(song['Bit Rate'])"></span>
|
||||||
|
</td>
|
||||||
|
<td class="star" [title]="(song['Rating Computed']?'Computed Rating: ':'Rating: ') + song.Rating">
|
||||||
|
<span *ngFor="let item of numberToArray(song.Rating, 20)">
|
||||||
|
<span class="glyphicon" [ngClass]="song['Rating Computed']?'glyphicon-star-empty':'glyphicon-star'"></span>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
<td *ngIf="song.Loved" class="loved">
|
||||||
|
<span class="glyphicon glyphicon-heart heart"></span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<!-- Go to Top Button-->
|
||||||
|
<button type="button" class="btn btn-warning btn-top" [class.btn-top-is-visible]="bottomReached" aria-label="Top" (click)="scrollTop()"
|
||||||
|
title="Go back to Top!">
|
||||||
|
<span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span>
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-primary btn-top btn-sort" [class.btn-top-is-visible]="sortable" aria-label="Top" (click)="sort()"
|
||||||
|
title="Sort by Album & Track Number">
|
||||||
|
<span class="glyphicon glyphicon-sort-by-attributes" aria-hidden="true"></span>
|
||||||
|
</button>
|
||||||
25
dashboard/src/app/song-table/song-table.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { SongTableComponent } from './song-table.component';
|
||||||
|
|
||||||
|
describe('SongTableComponent', () => {
|
||||||
|
let component: SongTableComponent;
|
||||||
|
let fixture: ComponentFixture<SongTableComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ SongTableComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(SongTableComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
61
dashboard/src/app/song-table/song-table.component.ts
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||||||
|
import { Utils } from '../utils';
|
||||||
|
|
||||||
|
import { Song } from './../model/song';
|
||||||
|
import { SortByPipe } from './../pipes/sort-by.pipe';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-song-table',
|
||||||
|
templateUrl: './song-table.component.html',
|
||||||
|
styleUrls: ['./song-table.component.css']
|
||||||
|
})
|
||||||
|
export class SongTableComponent {
|
||||||
|
numberToArray = Utils.numberToArray;
|
||||||
|
@Input() songs: Array<Song> = [];
|
||||||
|
@Output() private atBottom = new EventEmitter();
|
||||||
|
|
||||||
|
// To activate button in interface var
|
||||||
|
bottomReached = false;
|
||||||
|
sortable: boolean;
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle scroll:
|
||||||
|
* - load data if at bottom of screen (if needed)
|
||||||
|
* - hide/show "go to top" button
|
||||||
|
*
|
||||||
|
* @param event scroll event
|
||||||
|
*/
|
||||||
|
onScroll(event: any) {
|
||||||
|
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
|
||||||
|
this.atBottom.emit();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show/hide 'at top' button
|
||||||
|
if (window.scrollY > window.innerHeight) {
|
||||||
|
this.bottomReached = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (window.scrollY === 0) {
|
||||||
|
this.bottomReached = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scrollTop(): void {
|
||||||
|
window.scrollTo(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
roundBitRate(bitRate: number) {
|
||||||
|
return Math.round(bitRate / 64);
|
||||||
|
}
|
||||||
|
|
||||||
|
sort(): void {
|
||||||
|
this.songs = new SortByPipe().transform(this.songs, 'Year', 'Album', 'Disc Number', 'Track Number', 'Play Count');
|
||||||
|
this.sortable = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
setSortable(sortable: boolean) {
|
||||||
|
this.sortable = sortable;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
import { Pipe, PipeTransform } from '@angular/core';
|
|
||||||
|
|
||||||
@Pipe({
|
|
||||||
name: 'sortBy'
|
|
||||||
})
|
|
||||||
export class SortByPipe implements PipeTransform {
|
|
||||||
|
|
||||||
transform(array: Array<any>, ...args: any[]): Array<any> {
|
|
||||||
array.sort((a: any, b: any) => {
|
|
||||||
for (let i = 0; i < array.length; i++) {
|
|
||||||
const arg = args[i];
|
|
||||||
|
|
||||||
if (a[arg] === undefined && b[arg] !== undefined) { return -1; }
|
|
||||||
if (a[arg] !== undefined && b[arg] === undefined) { return 1; }
|
|
||||||
|
|
||||||
if (a[arg] < b[arg]) { return -1; }
|
|
||||||
if (a[arg] > b[arg]) { return 1; }
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
});
|
|
||||||
return array;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
38
dashboard/src/app/to-sort/to-sort.component.css
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
.panel-stat {
|
||||||
|
min-height: 102px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-green {
|
||||||
|
background-color: #16a085;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
.panel-yellow {
|
||||||
|
background-color: #f1c40f;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-red {
|
||||||
|
background-color: #d9534f;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-purple {
|
||||||
|
background-color: #9b59b6;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-blue {
|
||||||
|
background-color: #3498db;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stats_icon {
|
||||||
|
font-size: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #9b59b6;
|
||||||
|
margin: 0 auto;
|
||||||
|
|
||||||
|
}
|
||||||
130
dashboard/src/app/to-sort/to-sort.component.html
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
<div class="container">
|
||||||
|
<h1>To sort Songs - </h1>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div class="row cardAdmin">
|
||||||
|
<div class="col-lg-3 col-md-3">
|
||||||
|
<div class="panel panel-blue">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-3">
|
||||||
|
<span class="glyphicon glyphicon-time stats_icon"></span>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-9 text-right">
|
||||||
|
<div>
|
||||||
|
<h3 *ngIf="!totalTime"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
||||||
|
<h3 *ngIf="totalTime">{{totalTime | convertMs}}</h3>
|
||||||
|
</div>
|
||||||
|
<div><br>Total time ({{totalTime | convertMoreExact}})</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-3">
|
||||||
|
<div class="panel panel-green">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-3">
|
||||||
|
<span class="glyphicon glyphicon-hdd stats_icon"></span>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-9 text-right">
|
||||||
|
<div>
|
||||||
|
<h3 *ngIf="!totalSize"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
||||||
|
<h3 *ngIf="totalSize">{{totalSize | convertSizeToString}}</h3>
|
||||||
|
</div>
|
||||||
|
<div><br>Total size</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-3">
|
||||||
|
<div class="panel panel-yellow">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-3">
|
||||||
|
<span class="glyphicon glyphicon-play stats_icon"></span>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-9 text-right">
|
||||||
|
<div>
|
||||||
|
<h3 *ngIf="!trackCountSong"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
||||||
|
<h3 *ngIf="trackCountSong">{{trackCountSong}}</h3>
|
||||||
|
</div>
|
||||||
|
<div><br>Total Songs</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-md-3">
|
||||||
|
<div class="panel panel-red">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-3">
|
||||||
|
<span class="glyphicon glyphicon-stop stats_icon"></span>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-9 text-right">
|
||||||
|
<div>
|
||||||
|
<h3 *ngIf="!neverListenSong"><span class="glyphicon glyphicon-refresh loading"></span></h3>
|
||||||
|
<h3 *ngIf="neverListenSong">{{neverListenSong}}</h3>
|
||||||
|
</div>
|
||||||
|
<div><br>Never list. songs (~{{neverListenSong / trackCountSong * 100 | round}}%)</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
|
<table class="table table-striped" style="white-space: nowrap;">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Album</th>
|
||||||
|
<th>Track Count</th>
|
||||||
|
<th>Artist/Album Artist</th>
|
||||||
|
<th>Play Count</th>
|
||||||
|
<th>Rating</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let album of toSortAlbum">
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/album', album.key]">{{album.key}}</a>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>{{albums[album.key]['Track Count']}}</td>
|
||||||
|
|
||||||
|
<ng-template [ngIf]="albums[album.key]['Album Artist']" [ngIfElse]="artistSection">
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/artist', albums[album.key]['Album Artist']]">{{albums[album.key]['Album Artist']}}</a>
|
||||||
|
</td>
|
||||||
|
</ng-template>
|
||||||
|
|
||||||
|
<ng-template #artistSection>
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/artist', albums[album.key].Artist[0]]">{{albums[album.key].Artist}}</a>
|
||||||
|
</td>
|
||||||
|
</ng-template>
|
||||||
|
|
||||||
|
<ng-template #artistSection>
|
||||||
|
<td>
|
||||||
|
<a [routerLink]="['/artist', albums[album.key].Artist[0]]">{{albums[album.key].Artist}}</a>
|
||||||
|
</td>
|
||||||
|
</ng-template>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
{{albums[album.key]['Play Count']}} ({{albums[album.key]['Play Count']/albums[album.key]['Track Count'] | number:'1.0-0'}}/songs)
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td class="star" [title]="(albums[album.key]['Album Rating Computed']?'Computed Rating: ':'Rating: ') + albums[album.key]['Album Rating']">
|
||||||
|
<span *ngFor="let item of numberToArray(albums[album.key]['Album Rating'], 20)">
|
||||||
|
<span class="glyphicon" [ngClass]="albums[album.key]['Album Rating Computed']?'glyphicon-star-empty':'glyphicon-star'"></span>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
25
dashboard/src/app/to-sort/to-sort.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { ToSortComponent } from './to-sort.component';
|
||||||
|
|
||||||
|
describe('ToSortComponent', () => {
|
||||||
|
let component: ToSortComponent;
|
||||||
|
let fixture: ComponentFixture<ToSortComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
declarations: [ ToSortComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(ToSortComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
89
dashboard/src/app/to-sort/to-sort.component.ts
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
import { ElsSortService } from '../els-sort.service';
|
||||||
|
import { Album } from '../model/album';
|
||||||
|
import { Bucket } from '../model/bucket';
|
||||||
|
import { Song } from '../model/song';
|
||||||
|
|
||||||
|
import { Utils } from '../utils';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-to-sort',
|
||||||
|
templateUrl: './to-sort.component.html',
|
||||||
|
styleUrls: ['./to-sort.component.css']
|
||||||
|
})
|
||||||
|
export class ToSortComponent implements OnInit {
|
||||||
|
numberToArray = Utils.numberToArray;
|
||||||
|
// Stats var
|
||||||
|
totalTime = 0;
|
||||||
|
totalSize = 0;
|
||||||
|
trackCountSong = 0;
|
||||||
|
neverListenSong = 0;
|
||||||
|
|
||||||
|
// Global var
|
||||||
|
toSortAlbum: Bucket[] = [];
|
||||||
|
albums = []
|
||||||
|
|
||||||
|
constructor(private elsService: ElsSortService) { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
// **** GET STATS ****//
|
||||||
|
this.elsService.getTime().then(result => this.totalTime = result);
|
||||||
|
this.elsService.getSize().then(result => this.totalSize = result);
|
||||||
|
this.elsService.getCountSong().then(result => this.trackCountSong = result);
|
||||||
|
this.elsService.getCountNeverListenSong().then(result => this.neverListenSong = result);
|
||||||
|
|
||||||
|
// **** GET ALBUMS ****//
|
||||||
|
const tmpToSortAlbums: Bucket[] = [];
|
||||||
|
this.elsService.getAlbums().subscribe(buckets => {
|
||||||
|
buckets.forEach(bucket => {
|
||||||
|
if (tmpToSortAlbums.length === 0) {
|
||||||
|
tmpToSortAlbums.push(bucket);
|
||||||
|
} else {
|
||||||
|
let found = false;
|
||||||
|
tmpToSortAlbums.forEach(element => {
|
||||||
|
if (element.key === bucket.key) {
|
||||||
|
element.doc_count += bucket.doc_count;
|
||||||
|
found = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (!found) {
|
||||||
|
tmpToSortAlbums.push(bucket);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.toSortAlbum = tmpToSortAlbums;
|
||||||
|
this.toSortAlbum.forEach(bucket => this.getAlbum(bucket));
|
||||||
|
// console.log(this.toSortAlbum)
|
||||||
|
// console.log(this.albums)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private getAlbum(albumBucket: Bucket) {
|
||||||
|
// For each bucket.key (album name), get Album document
|
||||||
|
// Use track count to compare
|
||||||
|
this.elsService.getArtistFromAlbumName(albumBucket.key).subscribe(albums => {
|
||||||
|
// Identification of the good album
|
||||||
|
let goodAlbum;
|
||||||
|
if (albums.length > 1) {
|
||||||
|
// More than one result for an album name: search good by track count
|
||||||
|
albums.forEach(album => {
|
||||||
|
if (album['Track Count'] === albumBucket.doc_count) {
|
||||||
|
goodAlbum = album;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// Just one result for album name
|
||||||
|
goodAlbum = albums[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO Crap security if no good album found
|
||||||
|
if (goodAlbum == undefined) {
|
||||||
|
goodAlbum = albums[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
this.albums[albumBucket.key] = goodAlbum;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
111
dashboard/src/app/top-played/top-played.component.html
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
<div class="container">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h3>Top Played Album (Naive Way)</h3>
|
||||||
|
<div class="alert alert-info">
|
||||||
|
<strong>Caution:</strong> In this list, albums with more than 10 artists are ignored.
|
||||||
|
</div>
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Album</th>
|
||||||
|
<th>Artist Name</th>
|
||||||
|
<th>Track Count</th>
|
||||||
|
<th>Play Count</th>
|
||||||
|
<th>Average Play</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let album of mostPlayedAlbumsNaive">
|
||||||
|
<td>
|
||||||
|
<b>{{album.Name}}</b>
|
||||||
|
</td>
|
||||||
|
<td>{{album['Album Artist'] ? album['Album Artist'] : album.Artist}}</td>
|
||||||
|
<td>{{album['Track Count']}}</td>
|
||||||
|
<td>{{album['Play Count']}}</td>
|
||||||
|
<td>{{album['Play Count'] / album['Track Count'] | round}}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h3>Top Played Album (avg. play way)</h3>
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Album</th>
|
||||||
|
<th>Artist Name</th>
|
||||||
|
<th>Track Count</th>
|
||||||
|
<th>Play Count</th>
|
||||||
|
<th>Average Play</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let album of mostPlayedAlbums">
|
||||||
|
<td>
|
||||||
|
<b>{{album.Name}}</b>
|
||||||
|
</td>
|
||||||
|
<td>{{album['Album Artist'] ? album['Album Artist'] : album.Artist}}</td>
|
||||||
|
<td>{{album['Track Count']}}</td>
|
||||||
|
<td>{{album['Play Count']}}</td>
|
||||||
|
<td>{{album['Play Count'] / album['Track Count'] | round}}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h3>Top Played Artist (Naive Way)</h3>
|
||||||
|
<!-- <div class="alert alert-info"> -->
|
||||||
|
<!-- <strong>Caution:</strong> In this list, artist with more than 10 artists are ignored. -->
|
||||||
|
<!-- </div> -->
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Artist</th>
|
||||||
|
<th>Album Count</th>
|
||||||
|
<th>Track Count</th>
|
||||||
|
<th>Play Count</th>
|
||||||
|
<th>Average Play</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let artist of mostPlayedArtistsNaive">
|
||||||
|
<td>
|
||||||
|
<b>{{artist.Name}}</b>
|
||||||
|
</td>
|
||||||
|
<td>{{artist.Album.length}}</td>
|
||||||
|
<td>{{artist['Track Count']}}</td>
|
||||||
|
<td>{{artist['Play Count']}}</td>
|
||||||
|
<td>{{artist['Play Count'] / artist['Track Count'] | round}}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h3>Top Played Artist (avg. play way)</h3>
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Artist</th>
|
||||||
|
<th>Album Count</th>
|
||||||
|
<th>Track Count</th>
|
||||||
|
<th>Play Count</th>
|
||||||
|
<th>Average Play</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr *ngFor="let artist of mostPlayedArtists">
|
||||||
|
<td>
|
||||||
|
<b>{{artist.Name}}</b>
|
||||||
|
</td>
|
||||||
|
<td>{{artist.Album.length}}</td>
|
||||||
|
<td>{{artist['Track Count']}}</td>
|
||||||
|
<td>{{artist['Play Count']}}</td>
|
||||||
|
<td>{{artist['Play Count'] / artist['Track Count'] | round}}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
25
dashboard/src/app/top-played/top-played.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { TopPlayedComponent } from './top-played.component';
|
||||||
|
|
||||||
|
describe('TopPlayedComponent', () => {
|
||||||
|
let component: TopPlayedComponent;
|
||||||
|
let fixture: ComponentFixture<TopPlayedComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ TopPlayedComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(TopPlayedComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
65
dashboard/src/app/top-played/top-played.component.ts
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
import { ElsService } from '../els.service';
|
||||||
|
import { Album } from '../model/album';
|
||||||
|
import { Artist } from '../model/artist';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-top-played',
|
||||||
|
templateUrl: './top-played.component.html',
|
||||||
|
styleUrls: ['./top-played.component.css']
|
||||||
|
})
|
||||||
|
export class TopPlayedComponent implements OnInit {
|
||||||
|
mostPlayedAlbumsNaive: Album[] = [];
|
||||||
|
mostPlayedAlbums: Album[] = [];
|
||||||
|
mostPlayedArtistsNaive: Artist[] = [];
|
||||||
|
mostPlayedArtists: Artist[] = [];
|
||||||
|
|
||||||
|
constructor(private elsService: ElsService) { }
|
||||||
|
|
||||||
|
ngOnInit() {
|
||||||
|
this.elsService.getMostPlayedAlbumNaive()
|
||||||
|
.then(result => {
|
||||||
|
result.forEach(album => {
|
||||||
|
if (album.Artist.length <= 10) {
|
||||||
|
this.mostPlayedAlbumsNaive.push(album);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.mostPlayedAlbumsNaive.sort((a: any, b: any) => this.sortByAveragePlay(a, b)).splice(10);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.elsService.getMostPlayedAlbum().subscribe(result => {
|
||||||
|
this.mostPlayedAlbums = result;
|
||||||
|
|
||||||
|
this.mostPlayedAlbums.sort((a: any, b: any) => this.sortByAveragePlay(a, b)).splice(10);
|
||||||
|
// TODO Load more! (Use a )
|
||||||
|
});
|
||||||
|
|
||||||
|
this.elsService.getMostPlayedArtistNaive()
|
||||||
|
.then(result => {
|
||||||
|
this.mostPlayedArtistsNaive = result;
|
||||||
|
|
||||||
|
this.mostPlayedArtistsNaive.sort((a: any, b: any) => this.sortByAveragePlay(a, b)).splice(10);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.elsService.getMostPlayedArtist().subscribe(result => {
|
||||||
|
result.forEach(artist => {
|
||||||
|
if (artist['Track Count'] > 10) {
|
||||||
|
this.mostPlayedArtists.push(artist);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.mostPlayedArtists.sort((a: any, b: any) => this.sortByAveragePlay(a, b)).splice(10);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
sortByAveragePlay(a: any, b: any) {
|
||||||
|
if ((a['Play Count'] / a['Track Count']) < (b['Play Count'] / b['Track Count'])) {
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
7
dashboard/src/app/utils.spec.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { Utils } from './utils';
|
||||||
|
|
||||||
|
describe('Utils', () => {
|
||||||
|
it('should create an instance', () => {
|
||||||
|
expect(new Utils()).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
16
dashboard/src/app/utils.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
export class Utils {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert a number to an array.
|
||||||
|
* Mainly used for rating: need to convert the number to use a ngFor
|
||||||
|
* @param n number to convert on a array of n cases
|
||||||
|
* @param d if you want to divide number, e.g. by 20 for rating (rating is one value out of one hundred)
|
||||||
|
*/
|
||||||
|
public static numberToArray(n: number, d: number = 1): any[] {
|
||||||
|
if (!n) {
|
||||||
|
return Array(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
return Array(n / d);
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
dashboard/src/assets/icons_signal/carre-high/0.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
1
dashboard/src/assets/icons_signal/carre-high/0.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><rect x="45" y="5" display="inline" width="10" height="10"></rect><rect x="45" y="45" display="inline" width="10" height="10"></rect><rect x="35" y="35" display="inline" width="10" height="10"></rect><rect x="25" y="25" display="inline" width="10" height="10"></rect><rect x="55" y="35" display="inline" width="10" height="10"></rect><rect x="65" y="15" display="inline" width="10" height="10"></rect><rect x="35" y="5" display="inline" width="10" height="10"></rect><rect x="15" y="15" display="inline" width="10" height="10"></rect><rect x="5" y="45" display="inline" width="10" height="10"></rect><rect x="5" y="55" display="inline" width="10" height="10"></rect><rect x="5" y="35" display="inline" width="10" height="10"></rect><rect x="15" y="65" display="inline" width="10" height="10"></rect><rect x="15" y="75" display="inline" width="10" height="10"></rect><rect x="25" y="75" display="inline" width="10" height="10"></rect><rect x="45" y="85" display="inline" width="10" height="10"></rect><rect x="35" y="85" display="inline" width="10" height="10"></rect><rect x="55" y="85" display="inline" width="10" height="10"></rect><rect x="65" y="75" display="inline" width="10" height="10"></rect><rect x="75" y="65" display="inline" width="10" height="10"></rect><rect x="75" y="75" display="inline" width="10" height="10"></rect><rect x="85" y="45" display="inline" width="10" height="10"></rect><rect x="85" y="55" display="inline" width="10" height="10"></rect><rect x="85" y="35" display="inline" width="10" height="10"></rect><rect x="75" y="25" display="inline" width="10" height="10"></rect><rect x="75" y="15" display="inline" width="10" height="10"></rect><rect x="55" y="5" display="inline" width="10" height="10"></rect></g><g><path d="M5.675,93.515h9V61.651h-9V93.515z M6.675,62.651h7v29.864h-7V62.651z"></path><path d="M18.175,93.515h9V52.803h-9V93.515z M19.175,53.803h7v38.712h-7V53.803z"></path><path d="M30.675,93.515h9v-47.06h-9V93.515z M31.675,47.455h7v45.06h-7V47.455z"></path><path d="M43.175,93.515h9V37.607h-9V93.515z M44.175,38.607h7v53.908h-7V38.607z"></path><path d="M55.675,93.515h9V28.759h-9V93.515z M56.675,29.759h7v62.756h-7V29.759z"></path><path d="M68.175,17.411v76.104h9V17.411H68.175z M76.175,92.515h-7V18.411h7V92.515z"></path></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.4 KiB |
BIN
dashboard/src/assets/icons_signal/carre-high/1.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
1
dashboard/src/assets/icons_signal/carre-high/1.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><rect x="25" y="25" display="inline" width="10" height="10"></rect><rect x="75" y="75" display="inline" width="10" height="10"></rect><rect x="85" y="75" display="inline" width="10" height="10"></rect><rect x="35" y="15" display="inline" width="10" height="10"></rect><rect x="45" y="5" display="inline" width="10" height="10"></rect><rect x="55" y="15" display="inline" width="10" height="10"></rect><rect x="5" y="65" display="inline" width="10" height="10"></rect><rect x="15" y="55" display="inline" width="10" height="10"></rect><rect x="15" y="45" display="inline" width="10" height="10"></rect><rect x="25" y="35" display="inline" width="10" height="10"></rect><rect x="65" y="25" display="inline" width="10" height="10"></rect><rect x="65" y="35" display="inline" width="10" height="10"></rect><rect x="75" y="45" display="inline" width="10" height="10"></rect><rect x="75" y="55" display="inline" width="10" height="10"></rect><rect x="85" y="65" display="inline" width="10" height="10"></rect><rect x="65" y="75" display="inline" width="10" height="10"></rect><rect x="55" y="75" display="inline" width="10" height="10"></rect><rect x="45" y="75" display="inline" width="10" height="10"></rect><rect x="45" y="85" display="inline" width="10" height="10"></rect><rect x="35" y="75" display="inline" width="10" height="10"></rect><rect x="25" y="75" display="inline" width="10" height="10"></rect><rect x="15" y="75" display="inline" width="10" height="10"></rect><rect x="5" y="75" display="inline" width="10" height="10"></rect></g><g><polygon points="5.675,93.515 14.675,93.515 14.675,93.015 14.675,62.152 14.675,61.652 5.675,61.652 "></polygon><path d="M18.175,93.515h9V52.804h-9V93.515z M19.175,53.804h7v38.711h-7V53.804z"></path><path d="M30.675,93.515h9v-47.06h-9V93.515z M31.675,47.456h7v45.06h-7V47.456z"></path><path d="M43.175,93.515h9V37.607h-9V93.515z M44.175,38.607h7v53.908h-7V38.607z"></path><path d="M55.675,93.515h9V28.759h-9V93.515z M56.675,29.759h7v62.756h-7V29.759z"></path><path d="M68.175,93.515h9V17.412h-9V93.515z M69.175,18.412h7v74.104h-7V18.412z"></path></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
BIN
dashboard/src/assets/icons_signal/carre-high/2.png
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
1
dashboard/src/assets/icons_signal/carre-high/2.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><rect x="85" y="25" display="inline" width="10" height="10"></rect><rect x="65" y="35" display="inline" width="10" height="10"></rect><rect x="75" y="35" display="inline" width="10" height="10"></rect><rect x="55" y="45" display="inline" width="10" height="10"></rect><rect x="45" y="45" display="inline" width="10" height="10"></rect><rect x="35" y="45" display="inline" width="10" height="10"></rect><rect x="35" y="55" display="inline" width="10" height="10"></rect><rect x="35" y="65" display="inline" width="10" height="10"></rect><rect x="35" y="75" display="inline" width="10" height="10"></rect><rect x="25" y="75" display="inline" width="10" height="10"></rect><rect x="15" y="75" display="inline" width="10" height="10"></rect><rect x="5" y="75" display="inline" width="10" height="10"></rect><rect x="5" y="65" display="inline" width="10" height="10"></rect><rect x="5" y="55" display="inline" width="10" height="10"></rect><rect x="5" y="45" display="inline" width="10" height="10"></rect><rect x="15" y="45" display="inline" width="10" height="10"></rect><rect x="25" y="45" display="inline" width="10" height="10"></rect></g><g><polygon points="5.675,93.516 14.675,93.516 14.675,93.016 14.675,62.151 14.675,61.651 5.675,61.651 "></polygon><polygon points="18.175,93.516 27.175,93.516 27.175,93.016 27.175,53.304 27.175,52.804 18.175,52.804 "></polygon><path d="M30.675,93.516h9v-47.06h-9V93.516z M31.675,47.456h7v45.06h-7V47.456z"></path><path d="M43.175,93.516h9V37.607h-9V93.516z M44.175,38.607h7v53.908h-7V38.607z"></path><path d="M55.675,93.516h9V28.76h-9V93.516z M56.675,29.76h7v62.756h-7V29.76z"></path><path d="M68.175,93.516h9V17.412h-9V93.516z M69.175,18.412h7v74.104h-7V18.412z"></path></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
BIN
dashboard/src/assets/icons_signal/carre-high/3.png
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
1
dashboard/src/assets/icons_signal/carre-high/3.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><rect x="45" y="5" display="inline" width="10" height="10"></rect><rect x="45" y="45" display="inline" width="10" height="10"></rect><rect x="35" y="5" display="inline" width="10" height="10"></rect><rect x="25" y="15" display="inline" width="10" height="10"></rect><rect x="15" y="15" display="inline" width="10" height="10"></rect><rect x="15" y="25" display="inline" width="10" height="10"></rect><rect x="5" y="45" display="inline" width="10" height="10"></rect><rect x="5" y="55" display="inline" width="10" height="10"></rect><rect x="5" y="35" display="inline" width="10" height="10"></rect><rect x="15" y="65" display="inline" width="10" height="10"></rect><rect x="15" y="75" display="inline" width="10" height="10"></rect><rect x="25" y="75" display="inline" width="10" height="10"></rect><rect x="45" y="85" display="inline" width="10" height="10"></rect><rect x="35" y="85" display="inline" width="10" height="10"></rect><rect x="55" y="85" display="inline" width="10" height="10"></rect><rect x="65" y="75" display="inline" width="10" height="10"></rect><rect x="75" y="65" display="inline" width="10" height="10"></rect><rect x="75" y="75" display="inline" width="10" height="10"></rect><rect x="85" y="45" display="inline" width="10" height="10"></rect><rect x="85" y="55" display="inline" width="10" height="10"></rect><rect x="85" y="35" display="inline" width="10" height="10"></rect><rect x="75" y="25" display="inline" width="10" height="10"></rect><rect x="65" y="15" display="inline" width="10" height="10"></rect><rect x="75" y="15" display="inline" width="10" height="10"></rect><rect x="55" y="5" display="inline" width="10" height="10"></rect></g><g><polygon points="5.427,93.516 14.427,93.516 14.427,93.016 14.427,62.151 14.427,61.651 5.427,61.651 "></polygon><polygon points="17.927,93.516 26.927,93.516 26.927,93.016 26.927,53.304 26.927,52.804 17.927,52.804 "></polygon><polygon points="30.427,93.516 39.427,93.516 39.427,93.016 39.427,46.956 39.427,46.456 30.427,46.456 "></polygon><path d="M42.927,93.516h9V37.607h-9V93.516z M43.927,38.607h7v53.908h-7V38.607z"></path><path d="M55.427,93.516h9V28.76h-9V93.516z M56.427,29.76h7v62.756h-7V29.76z"></path><path d="M67.927,93.516h9V17.412h-9V93.516z M68.927,18.412h7v74.104h-7V18.412z"></path></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.4 KiB |
BIN
dashboard/src/assets/icons_signal/carre-high/4.png
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
1
dashboard/src/assets/icons_signal/carre-high/4.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><rect x="15" y="15" display="inline" width="10" height="10"></rect><rect x="25" y="15" display="inline" width="10" height="10"></rect><rect x="35" y="15" display="inline" width="10" height="10"></rect><rect x="45" y="15" display="inline" width="10" height="10"></rect><rect x="55" y="15" display="inline" width="10" height="10"></rect><rect x="65" y="15" display="inline" width="10" height="10"></rect><rect x="75" y="15" display="inline" width="10" height="10"></rect><rect x="85" y="25" display="inline" width="10" height="10"></rect><rect x="85" y="35" display="inline" width="10" height="10"></rect><rect x="85" y="45" display="inline" width="10" height="10"></rect><rect x="85" y="55" display="inline" width="10" height="10"></rect><rect x="85" y="65" display="inline" width="10" height="10"></rect><rect x="75" y="75" display="inline" width="10" height="10"></rect><rect x="65" y="75" display="inline" width="10" height="10"></rect><rect x="55" y="75" display="inline" width="10" height="10"></rect><rect x="45" y="75" display="inline" width="10" height="10"></rect><rect x="35" y="75" display="inline" width="10" height="10"></rect><rect x="25" y="75" display="inline" width="10" height="10"></rect><rect x="15" y="75" display="inline" width="10" height="10"></rect><rect x="5" y="65" display="inline" width="10" height="10"></rect><rect x="5" y="55" display="inline" width="10" height="10"></rect><rect x="5" y="45" display="inline" width="10" height="10"></rect><rect x="5" y="35" display="inline" width="10" height="10"></rect><rect x="5" y="25" display="inline" width="10" height="10"></rect></g><g><polygon points="4,94.5 13,94.5 13,94 13,63.136 13,62.636 4,62.636 "></polygon><polygon points="16.5,94.5 25.5,94.5 25.5,94 25.5,54.288 25.5,53.788 16.5,53.788 "></polygon><polygon points="29,94.5 38,94.5 38,94 38,47.94 38,47.44 29,47.44 "></polygon><polygon points="41.5,94.5 50.5,94.5 50.5,94 50.5,39.092 50.5,38.592 41.5,38.592 "></polygon><path d="M54,94.5h9V29.744h-9V94.5z M55,30.744h7V93.5h-7V30.744z"></path><path d="M66.5,94.5h9V18.396h-9V94.5z M67.5,19.396h7V93.5h-7V19.396z"></path></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
BIN
dashboard/src/assets/icons_signal/carre-high/5.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
1
dashboard/src/assets/icons_signal/carre-high/5.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><circle display="inline" fill="#000000" cx="50" cy="50" r="45"></circle></g><g display="none"><rect x="45" y="5" display="inline" width="10" height="10"></rect><rect x="35" y="5" display="inline" width="10" height="10"></rect><rect x="25" y="15" display="inline" width="10" height="10"></rect><rect x="15" y="15" display="inline" width="10" height="10"></rect><rect x="15" y="25" display="inline" width="10" height="10"></rect><rect x="5" y="45" display="inline" width="10" height="10"></rect><rect x="5" y="55" display="inline" width="10" height="10"></rect><rect x="5" y="35" display="inline" width="10" height="10"></rect><rect x="15" y="65" display="inline" width="10" height="10"></rect><rect x="15" y="75" display="inline" width="10" height="10"></rect><rect x="25" y="75" display="inline" width="10" height="10"></rect><rect x="45" y="85" display="inline" width="10" height="10"></rect><rect x="35" y="85" display="inline" width="10" height="10"></rect><rect x="55" y="85" display="inline" width="10" height="10"></rect><rect x="65" y="75" display="inline" width="10" height="10"></rect><rect x="75" y="65" display="inline" width="10" height="10"></rect><rect x="75" y="75" display="inline" width="10" height="10"></rect><rect x="85" y="45" display="inline" width="10" height="10"></rect><rect x="85" y="55" display="inline" width="10" height="10"></rect><rect x="85" y="35" display="inline" width="10" height="10"></rect><rect x="75" y="25" display="inline" width="10" height="10"></rect><rect x="65" y="15" display="inline" width="10" height="10"></rect><rect x="75" y="15" display="inline" width="10" height="10"></rect><rect x="55" y="5" display="inline" width="10" height="10"></rect></g><g><polygon points="5.675,94.5 14.675,94.5 14.675,94 14.675,63.136 14.675,62.636 5.675,62.636 "></polygon><polygon points="18.175,94.5 27.175,94.5 27.175,94 27.175,54.288 27.175,53.788 18.175,53.788 "></polygon><polygon points="30.675,94.5 39.675,94.5 39.675,94 39.675,47.94 39.675,47.44 30.675,47.44 "></polygon><polygon points="43.175,94.5 52.175,94.5 52.175,94 52.175,39.092 52.175,38.592 43.175,38.592 "></polygon><polygon points="55.675,94.5 64.675,94.5 64.675,94 64.675,30.244 64.675,29.744 55.675,29.744 "></polygon><path d="M68.175,94.5h9V18.396h-9V94.5z M69.175,19.396h7V93.5h-7V19.396z"></path></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
BIN
dashboard/src/assets/icons_signal/carre-high/6.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
1
dashboard/src/assets/icons_signal/carre-high/6.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g display="none"><rect x="45" y="25" display="inline" width="10" height="10"></rect><rect x="35" y="15" display="inline" width="10" height="10"></rect><rect x="25" y="15" display="inline" width="10" height="10"></rect><rect x="15" y="25" display="inline" width="10" height="10"></rect><rect x="5" y="35" display="inline" width="10" height="10"></rect><rect x="5" y="45" display="inline" width="10" height="10"></rect><rect x="15" y="55" display="inline" width="10" height="10"></rect><rect x="25" y="65" display="inline" width="10" height="10"></rect><rect x="35" y="75" display="inline" width="10" height="10"></rect><rect x="45" y="85" display="inline" width="10" height="10"></rect><rect x="55" y="15" display="inline" width="10" height="10"></rect><rect x="65" y="15" display="inline" width="10" height="10"></rect><rect x="75" y="25" display="inline" width="10" height="10"></rect><rect x="85" y="35" display="inline" width="10" height="10"></rect><rect x="85" y="45" display="inline" width="10" height="10"></rect><rect x="75" y="55" display="inline" width="10" height="10"></rect><rect x="65" y="65" display="inline" width="10" height="10"></rect><rect x="55" y="75" display="inline" width="10" height="10"></rect></g><g><rect x="4.895" y="64.136" width="8" height="30.864"></rect><rect x="17.395" y="55.288" width="8" height="39.712"></rect><rect x="29.895" y="48.94" width="8" height="46.06"></rect><rect x="42.395" y="40.092" width="8" height="54.908"></rect><rect x="54.895" y="31.244" width="8" height="63.756"></rect><rect x="67.395" y="19.896" width="8" height="75.104"></rect></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
BIN
dashboard/src/assets/icons_signal/carre-little/0.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
1
dashboard/src/assets/icons_signal/carre-little/0.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><path d="M18.404,83.511H5V70.106h13.404V83.511z M7,81.511h9.404v-9.404H7V81.511z"></path><path d="M37.553,83.511H24.149V56.702h13.404V83.511z M26.149,81.511h9.404V58.702h-9.404V81.511z"></path><path d="M56.702,83.511H43.298V43.298h13.404V83.511z M45.298,81.511h9.404V45.298h-9.404V81.511z"></path><path d="M75.851,83.511H62.447V29.894h13.403V83.511z M64.447,81.511h9.403V31.894h-9.403V81.511z"></path><path d="M95,83.511H81.596V16.489H95V83.511z M83.596,81.511H93V18.489h-9.404V81.511z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 692 B |
BIN
dashboard/src/assets/icons_signal/carre-little/1.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
1
dashboard/src/assets/icons_signal/carre-little/1.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><rect x="5" y="70.106" width="13.404" height="13.404"></rect><path d="M37.553,83.511H24.149V56.702h13.404V83.511z M26.149,81.511h9.404V58.702h-9.404V81.511z"></path><path d="M56.702,83.511H43.298V43.298h13.404V83.511z M45.298,81.511h9.404V45.298h-9.404V81.511z"></path><path d="M75.851,83.511H62.447V29.894h13.403V83.511z M64.447,81.511h9.403V31.894h-9.403V81.511z"></path><path d="M95,83.511H81.596V16.489H95V83.511z M83.596,81.511H93V18.489h-9.404V81.511z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 664 B |
BIN
dashboard/src/assets/icons_signal/carre-little/2.png
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
1
dashboard/src/assets/icons_signal/carre-little/2.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><rect x="5" y="70.106" width="13.404" height="13.404"></rect><rect x="24.149" y="56.702" width="13.404" height="26.809"></rect><path d="M56.702,83.511H43.298V43.298h13.404V83.511z M45.298,81.511h9.404V45.298h-9.404V81.511z"></path><path d="M75.851,83.511H62.447V29.894h13.403V83.511z M64.447,81.511h9.403V31.894h-9.403V81.511z"></path><path d="M95,83.511H81.596V16.489H95V83.511z M83.596,81.511H93V18.489h-9.404V81.511z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 626 B |
BIN
dashboard/src/assets/icons_signal/carre-little/3.png
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
1
dashboard/src/assets/icons_signal/carre-little/3.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><rect x="5" y="70.106" width="13.404" height="13.404"></rect><rect x="24.149" y="56.702" width="13.404" height="26.809"></rect><rect x="43.298" y="43.298" width="13.404" height="40.213"></rect><path d="M75.851,83.511H62.447V29.894h13.403V83.511z M64.447,81.511h9.403V31.894h-9.403V81.511z"></path><path d="M95,83.511H81.596V16.489H95V83.511z M83.596,81.511H93V18.489h-9.404V81.511z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 588 B |
BIN
dashboard/src/assets/icons_signal/carre-little/4.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
1
dashboard/src/assets/icons_signal/carre-little/4.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><rect x="5" y="70.106" width="13.404" height="13.404"></rect><rect x="24.149" y="56.702" width="13.404" height="26.809"></rect><rect x="43.298" y="43.298" width="13.404" height="40.213"></rect><rect x="62.447" y="29.894" width="13.403" height="53.617"></rect><path d="M95,83.511H81.596V16.489H95V83.511z M83.596,81.511H93V18.489h-9.404V81.511z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 550 B |
BIN
dashboard/src/assets/icons_signal/carre-little/5.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
1
dashboard/src/assets/icons_signal/carre-little/5.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><rect x="5" y="70.106" width="13.404" height="13.404"></rect><rect x="24.149" y="56.702" width="13.404" height="26.809"></rect><rect x="43.298" y="43.298" width="13.404" height="40.213"></rect><rect x="62.447" y="29.894" width="13.403" height="53.617"></rect><rect x="81.596" y="16.489" width="13.404" height="67.021"></rect></svg>
|
||||||
|
After Width: | Height: | Size: 523 B |
BIN
dashboard/src/assets/icons_signal/rounded-little/0.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
1
dashboard/src/assets/icons_signal/rounded-little/0.svg
Normal file
|
After Width: | Height: | Size: 6.4 KiB |