Toolbar and routing

This commit is contained in:
Geomitron
2020-02-04 19:29:25 -05:00
parent aebba4e9bc
commit 8f20311f68
12 changed files with 267 additions and 27 deletions

View File

@@ -1,31 +1,11 @@
import { Component, OnInit } from '@angular/core'
import { ElectronService } from './core/services/electron.service'
import { Component } from '@angular/core'
@Component({
selector: 'app-root',
template: `
<!--The content below is only a placeholder and can be replaced.-->
<div style="text-align:center" class="content">
<h1>
{{title}}
</h1>
<span style="display: block">{{ title }} app is running!</span>
<img width="300" alt="Angular Logo" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg==">
</div>
<h2>Here are some links to help you start: </h2>
<button class="ui button">Fomantic UI test</button>
<router-outlet></router-outlet>
`,
templateUrl: './app.component.html',
styles: []
})
export class AppComponent implements OnInit {
title = 'Loading title...'
export class AppComponent {
constructor(private electronService: ElectronService) { }
async ngOnInit() {
const response = await this.electronService.invoke('test-event-A', { value1: 'AAAAA', value2: 42 })
this.title = response
}
constructor() { }
}