2022-01-28 05:50:34 -06:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
|
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
import jasmineEnzyme from 'jasmine-enzyme';
|
|
|
|
import React from 'react';
|
|
|
|
import pgAdmin from 'sources/pgadmin';
|
|
|
|
import SchemaView from '../../pgadmin/static/js/SchemaView';
|
2022-04-11 06:55:19 -05:00
|
|
|
import pgWindow from 'sources/window';
|
|
|
|
import fakePgAdmin from './fake_pgadmin';
|
2022-01-28 05:50:34 -06:00
|
|
|
|
|
|
|
export let getEditView = (schemaObj, getInitData)=> {
|
|
|
|
return <SchemaView
|
|
|
|
formType='dialog'
|
|
|
|
schema={schemaObj}
|
|
|
|
getInitData={getInitData}
|
|
|
|
viewHelperProps={{
|
|
|
|
mode: 'edit',
|
|
|
|
}}
|
|
|
|
onSave={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onClose={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onHelp={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onEdit={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onDataChange={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
confirmOnCloseReset={false}
|
|
|
|
hasSQL={false}
|
|
|
|
disableSqlHelp={false}
|
|
|
|
disableDialogHelp={false}
|
|
|
|
/>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export let getCreateView = (schemaObj)=> {
|
|
|
|
return <SchemaView
|
|
|
|
formType='dialog'
|
|
|
|
schema={schemaObj}
|
|
|
|
viewHelperProps={{
|
|
|
|
mode: 'create',
|
|
|
|
}}
|
|
|
|
onSave={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onClose={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onHelp={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onEdit={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onDataChange={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
confirmOnCloseReset={false}
|
|
|
|
hasSQL={false}
|
|
|
|
disableSqlHelp={false}
|
|
|
|
disableDialogHelp={false}
|
|
|
|
/>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export let getPropertiesView = (schemaObj, getInitData)=> {
|
|
|
|
return <SchemaView
|
|
|
|
formType='tab'
|
|
|
|
schema={schemaObj}
|
|
|
|
getInitData={getInitData}
|
|
|
|
viewHelperProps={{
|
|
|
|
mode: 'properties',
|
|
|
|
}}
|
|
|
|
onHelp={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
onEdit={()=>{/*This is intentional (SonarQube)*/}}
|
|
|
|
/>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export let genericBeforeEach = ()=> {
|
|
|
|
jasmineEnzyme();
|
|
|
|
/* messages used by validators */
|
2022-04-11 06:55:19 -05:00
|
|
|
pgAdmin.Browser = {
|
|
|
|
...pgAdmin.Browser,
|
|
|
|
...fakePgAdmin.Browser
|
|
|
|
};
|
|
|
|
pgWindow.pgAdmin = pgAdmin;
|
2022-01-28 05:50:34 -06:00
|
|
|
};
|