22 changed files with 186 additions and 75 deletions
@ -0,0 +1,22 @@ |
|||
import hashlib |
|||
import os |
|||
import sys |
|||
from json import loads |
|||
import uuid |
|||
|
|||
def uuid_from_string(string:str): |
|||
hex_string = hashlib.md5(string.encode("utf8")).hexdigest() |
|||
return uuid.UUID(hex=hex_string) |
|||
|
|||
def app_dir(): |
|||
return os.path.dirname(os.path.abspath(__file__)) |
|||
|
|||
def load_config(config_name): |
|||
try: |
|||
path = os.path.join(app_dir(), config_name) |
|||
print("Looking config file", path) |
|||
with open(path, "r", encoding="utf8") as f: |
|||
return loads(f.read()) |
|||
except Exception as e: |
|||
print("cannot find or parse config.json", e) |
|||
sys.exit(1) |
@ -1,20 +1,30 @@ |
|||
<ng-container> |
|||
<mat-drawer-container style="height: 100%"> |
|||
<mat-drawer mode="side" opened> |
|||
<h1>DVRIP Клиент</h1> |
|||
<mat-toolbar style="border-bottom: black 1px solid"> |
|||
<span>DVRIP Клиент</span> |
|||
<mat-spinner *ngIf="loading" [diameter]="50"></mat-spinner> |
|||
<span class="spacer"></span> |
|||
<ng-container *ngIf="!loading"> |
|||
<mat-form-field *ngIf="availble_channels.length>0"> |
|||
<mat-select [(value)]="selected_channel"> |
|||
<mat-option *ngFor="let r of availble_channels" [value]="availble_channels.indexOf(r)">{{r}}</mat-option> |
|||
</mat-select> |
|||
</mat-form-field> |
|||
<p *ngIf="availble_channels.length==0">Нет доступных каналов</p> |
|||
<span class="spacer"></span> |
|||
<mat-form-field *ngIf="availble_recorders.length>0"> |
|||
<mat-label>Выбранный рекордер</mat-label> |
|||
<mat-select [(value)]="selected_recorder" (valueChange)="getChannels(selected_recorder)"> |
|||
<mat-option *ngFor="let r of availble_recorders" [value]="availble_recorders.indexOf(r)">{{r}}</mat-option> |
|||
</mat-select> |
|||
</mat-form-field> |
|||
<mat-list> |
|||
<mat-list-item *ngFor="let c of availble_channels"><a [routerLink]="['history', selected_recorder, availble_channels.indexOf(c)]">{{c}}</a></mat-list-item> |
|||
</mat-list> |
|||
<h5 *ngIf="availble_recorders.length==0">Нет доступных DVR</h5> |
|||
</mat-drawer> |
|||
<mat-drawer-content> |
|||
<router-outlet></router-outlet> |
|||
</mat-drawer-content> |
|||
</mat-drawer-container> |
|||
<p *ngIf="availble_recorders.length==0">Нет доступных рекордеров</p> |
|||
</ng-container> |
|||
</mat-toolbar> |
|||
<mat-toolbar *ngIf="!loading && availble_channels.length>0 && availble_recorders.length>0" style="border-bottom: black 1px solid"> |
|||
<button mat-button [routerLink]="['about', selected_recorder, selected_channel]">Обзор</button> |
|||
<span class="spacer"></span> |
|||
<button mat-button [routerLink]="['history', selected_recorder, selected_channel]">История обнаружений</button> |
|||
<span class="spacer"></span> |
|||
<button mat-button>Бибки</button> |
|||
</mat-toolbar> |
|||
</ng-container> |
|||
<router-outlet></router-outlet> |
|||
|
@ -0,0 +1 @@ |
|||
<p>about works!</p> |
@ -0,0 +1,23 @@ |
|||
import { ComponentFixture, TestBed } from '@angular/core/testing'; |
|||
|
|||
import { AboutComponent } from './about.component'; |
|||
|
|||
describe('AboutComponent', () => { |
|||
let component: AboutComponent; |
|||
let fixture: ComponentFixture<AboutComponent>; |
|||
|
|||
beforeEach(async () => { |
|||
await TestBed.configureTestingModule({ |
|||
declarations: [ AboutComponent ] |
|||
}) |
|||
.compileComponents(); |
|||
|
|||
fixture = TestBed.createComponent(AboutComponent); |
|||
component = fixture.componentInstance; |
|||
fixture.detectChanges(); |
|||
}); |
|||
|
|||
it('should create', () => { |
|||
expect(component).toBeTruthy(); |
|||
}); |
|||
}); |
@ -0,0 +1,15 @@ |
|||
import { Component, OnInit } from '@angular/core'; |
|||
|
|||
@Component({ |
|||
selector: 'app-about', |
|||
templateUrl: './about.component.html', |
|||
styleUrls: ['./about.component.css'] |
|||
}) |
|||
export class AboutComponent implements OnInit { |
|||
|
|||
constructor() { } |
|||
|
|||
ngOnInit(): void { |
|||
} |
|||
|
|||
} |
@ -0,0 +1,11 @@ |
|||
.converted { |
|||
color: green; |
|||
} |
|||
|
|||
.not-converted { |
|||
color: red; |
|||
} |
|||
|
|||
.raw { |
|||
color: black; |
|||
} |
@ -1,4 +1,2 @@ |
|||
<mat-toolbar> |
|||
<span>Wow it's shit must work "maybe"</span> |
|||
</mat-toolbar> |
|||
<p>main works!</p> |
|||
<p style="text-align: center">Добро пожаловать в альтернативный клиент для просмотра истории с рекодреров для видео записи</p> |
|||
<mat-icon>home</mat-icon> |
|||
|
@ -1 +1,28 @@ |
|||
@import "@angular/material/prebuilt-themes/deeppurple-amber.css"; |
|||
|
|||
@font-face { |
|||
font-family: 'Material Icons'; |
|||
font-style: normal; |
|||
font-weight: 400; |
|||
src: url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2'); |
|||
} |
|||
|
|||
.material-icons { |
|||
font-family: 'Material Icons'; |
|||
font-weight: normal; |
|||
font-style: normal; |
|||
font-size: 24px; |
|||
line-height: 1; |
|||
letter-spacing: normal; |
|||
text-transform: none; |
|||
display: inline-block; |
|||
white-space: nowrap; |
|||
word-wrap: normal; |
|||
direction: ltr; |
|||
-webkit-font-feature-settings: 'liga'; |
|||
-webkit-font-smoothing: antialiased; |
|||
} |
|||
|
|||
.spacer { |
|||
flex: 1 1 auto; |
|||
} |
|||
|
Loading…
Reference in new issue