feat: adds table view

feat: adds table view
This commit is contained in:
2022-12-23 10:22:05 +01:00
parent e9472972cd
commit 75b20dc508
18 changed files with 229 additions and 27 deletions

View File

@@ -1,8 +1,6 @@
import {Component, isDevMode} from '@angular/core';
import {select, Store} from "@ngrx/store";
import {Store} from "@ngrx/store";
import {MastodonApiActions} from "./shared/state/store/actions";
import {Observable, tap} from "rxjs";
import {selectLoadingPercentage} from "./shared/state/store/selectors";
import {PersistentStore} from "./shared/state/persistent/persistent-store.service";
@Component({
@@ -16,8 +14,9 @@ export class AppComponent {
navigationItems = [
{title: 'Authorize', link: '/auth'},
{title: 'Stats', link: '/sync'},
{title: 'List view', link: '/followings'},
{title: 'List view', link: '/list'},
{title: 'Matrix View', link: '/matrix'},
{title: 'Table View', link: '/table'},
];
constructor(private store: Store, private persistentStore: PersistentStore) {