mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-12-02 05:19:12 -06:00
22 lines
573 B
JavaScript
22 lines
573 B
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import { DiagramModel } from '@projectstorm/react-diagrams';
|
|
import _ from 'lodash';
|
|
|
|
export default class ERDModel extends DiagramModel {
|
|
constructor(options) {
|
|
super(options);
|
|
}
|
|
|
|
getNodesDict() {
|
|
return _.fromPairs(this.getNodes().map(node => [node.getID(), node]));
|
|
}
|
|
}
|