javascript - 如何使排序表与 Firebase 中的 Angular 8 + 数据一起使用?

标签 javascript angular firebase google-cloud-firestore angularfire2

我有一个 Angular PWA,其中包含来自 firebase 的数据的 Material 表,显示了数据并且分页器正在工作,但我也想对其数据进行排序,但 mat-sort 不起作用。它显示了对数据进行排序的箭头,但单击箭头时数据未排序。

我已遵循 Angular Material 的文档。

组件模板中的表格:

        <ng-container matColumnDef="movimento">
            <th mat-header-cell *matHeaderCellDef mat-sort-header>Tipo de movimento</th>
            <td mat-cell *matCellDef="let movimento"> {{movimento.mapValue.fields.tipo_movimento.stringValue}}
            </td>
        </ng-container>

        <ng-container matColumnDef="valor">

            <th mat-header-cell *matHeaderCellDef mat-sort-header>Valor</th>
            <td mat-cell *matCellDef="let movimento">
                {{movimento.mapValue.fields.valor.doubleValue | number:'1.1-2'}}
                {{movimento.mapValue.fields.valor.integerValue}} €
            </td>
        </ng-container>

        <ng-container matColumnDef="data">
            <th mat-header-cell *matHeaderCellDef mat-sort-header>Data</th>
            <td mat-cell *matCellDef="let movimento"> {{movimento.mapValue.fields.data.timestampValue | date}}
            </td>
        </ng-container>

        <ng-container matColumnDef="desc">
            <th mat-header-cell *matHeaderCellDef mat-sort-header>Descrição</th>
            <td mat-cell *matCellDef="let movimento"> {{movimento.mapValue.fields.desc.stringValue}}</td>
        </ng-container>

        <tr mat-header-row *matHeaderRowDef="displayedColumns; sticky: true"></tr>
        <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>


    </table>
    <mat-paginator [pageSizeOptions]="[10, 20, 40]" showFirstLastButtons></mat-paginator>

组件:

@Component({
  selector: 'app-movimentar',
  templateUrl: './visualizar-movimentos.component.html',
  styleUrls: ['./visualizar-movimentos.component.css']
})
export class VisualizarMovimentosComponent implements OnInit {
  user: firebase.User;

  userData;

  displayedColumns: string[] = ['movimento', 'valor', 'data', 'desc'];

  dataSource = new MatTableDataSource<Movimentos>();


  @ViewChild(MatPaginator, { static: false })
  set paginator(value: MatPaginator) {
    this.dataSource.paginator = value;
  }

  @ViewChild(MatSort, { static: false }) sort: MatSort;


  constructor(private auth: AuthService,
    private router: Router,
    private afs: AngularFirestore) { }

  ngOnInit() {
    this.auth.getUserState()
      .subscribe(user => {
        this.user = user;

        this.getUserData();
      });

  }

  /* loadLessonsPage() {
    this.dataSource._orderData;
    debugger
  } */

  getUserData(): void {
    this.auth.getUserData(this.user.uid)
      .subscribe(user => {
        this.userData = user;

        this.dataSource = new MatTableDataSource(this.userData._document.proto.fields.movimentos.arrayValue.values);

        this.dataSource.paginator = this.paginator;
        this.dataSource.sort = this.sort;

      });


  }

  login() {
    this.router.navigate(['login']);
  }

  logout() {
    this.auth.logout();
    this.router.navigate(['inicio']);
  }

  register() {
    this.router.navigate(['/register']);
  }

  trackByUid(index, item) {
    return item.uid;
  }



}```

Thanks for the help in advance.

最佳答案

问题出在 firebase 的数据上,它与 mat 排序不兼容。要解决这个问题,您需要一张像这样的 map :

这是 map

    return data.reduce((acc, value) => {
      return [
        ...acc,
        Object.entries(value.mapValue.fields).reduce((accValue, [key, value]) => {
          return {
            ...accValue,
            [key]: Object.values(value)[0]
          }
        }, {})
      ]
    }, [])
  }

关于javascript - 如何使排序表与 Firebase 中的 Angular 8 + 数据一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59195957/

相关文章:

javascript - 我怎样才能在angularjs中一个接一个地显示表格?

javascript - 响应式侧边栏推送菜单

javascript - Meteor Facebook Messenger Bot webhook

javascript - 如何在 JavaScript 中编辑树莓派的 IP 地址?

javascript - angular 2 - ngFor 动态函数

angular - 带有动态递归模板的响应式(Reactive)表单

angular - 编译 Angular 2 和 Firebase 存储时出错

firebase - 如何安装非官方 Firebase 扩展

firebase - 如何从 Firebase 配置中获取测量 ID?

Android Firebase 奇怪的数据映射