alan
6 years ago
36 changed files with 158 additions and 153 deletions
@ -1,9 +1,9 @@ |
|||||||
import {Vtape} from '../ui/index'; |
import {Vtape} from '../ui/index'; |
||||||
import {LinkType} from '@ui/type'; |
import {LinkType} from '@ui/type'; |
||||||
import appModel from './app.model'; |
import appModel from './app.model'; |
||||||
import title from './title/title.component'; |
import title from './title/title'; |
||||||
import linkSet from './link_set/link-set.component'; |
import linkSet from './link_set/link_set'; |
||||||
import linkStatus from './link_status/link_status.component'; |
import linkStatus from './link_status/link_status'; |
||||||
import {fetchLinkList} from '../shared/crud/crud.request'; |
import {fetchLinkList} from '../shared/crud/crud.request'; |
||||||
import './app.component.scss'; |
import './app.component.scss'; |
||||||
|
|
@ -1,6 +1,6 @@ |
|||||||
import {WidgetType, Left, Label, Icon, TextButton} from '@ui'; |
import {WidgetType, Left, Label, Icon, TextButton} from '@ui'; |
||||||
import ItemIcon from './left.item.icon.component'; |
import ItemIcon from './left_item_icon'; |
||||||
import Model from '../../link-set.model'; |
import Model from '../../link_set.model'; |
||||||
import {ACTION_COPY, ACTION_TEST, ACTION_DELETE, DEFAULT_INFO} from '@private/constants'; |
import {ACTION_COPY, ACTION_TEST, ACTION_DELETE, DEFAULT_INFO} from '@private/constants'; |
||||||
const className = 'fr.component.linkSet.left.item'; |
const className = 'fr.component.linkSet.left.item'; |
||||||
const Widget: WidgetType = { |
const Widget: WidgetType = { |
@ -1,5 +1,5 @@ |
|||||||
import {WidgetType, Icon, BubbleCombo, TextBubblePopupBarView, IconButton} from '@ui/index'; |
import {WidgetType, Icon, BubbleCombo, TextBubblePopupBarView, IconButton} from '@ui/index'; |
||||||
import Model from '../../link-set.model'; |
import Model from '../../link_set.model'; |
||||||
import {ACTION_DELETE} from '@private/constants'; |
import {ACTION_DELETE} from '@private/constants'; |
||||||
|
|
||||||
const className = 'fr.component.linkSet.left.item.icon'; |
const className = 'fr.component.linkSet.left.item.icon'; |
@ -1,8 +1,8 @@ |
|||||||
import {Htape, WidgetType, Vtape, Left} from '@ui'; |
import {Htape, WidgetType, Vtape, Left} from '@ui'; |
||||||
import LeftList from './left/left.component'; |
import LeftList from './left/left'; |
||||||
import linkSetModel from './link-set.model'; |
import linkSetModel from './link_set.model'; |
||||||
import Select from './select/select.component'; |
import Select from './select/select'; |
||||||
import Right from './right/right.component'; |
import Right from './right/right'; |
||||||
import {TAB_LINK_SET} from '@private/constants'; |
import {TAB_LINK_SET} from '@private/constants'; |
||||||
const className = 'fr.linkset'; |
const className = 'fr.linkset'; |
||||||
const Widget: WidgetType = { |
const Widget: WidgetType = { |
@ -1,9 +1,9 @@ |
|||||||
import Title from '../right_title/right.title.component'; |
import Title from '../right_title/right_title'; |
||||||
import RightShow from '../right_show/right.show.component'; |
import RightShow from '../right_show/right_show'; |
||||||
import RightShowJndi from '../right_show/right.show.jndi.component'; |
import RightShowJndi from '../right_show/right_show_jndi'; |
||||||
import RightEdit from '../right_edit/right.edit.component'; |
import RightEdit from '../right_edit/right_edit'; |
||||||
import RightEditMysql from '../right_edit/right.edit.mysql.component'; |
import RightEditMysql from '../right_edit/right_edit_mysql'; |
||||||
import RightEditJndi from '../right_edit/right.edit.jndi.component'; |
import RightEditJndi from '../right_edit/right_edit_jndi'; |
||||||
import {LinkType} from '@ui/type'; |
import {LinkType} from '@ui/type'; |
||||||
import pluginListConstant from '../../../app.constant'; |
import pluginListConstant from '../../../app.constant'; |
||||||
import {MYSQL_CONNECT, JNDI_CONNECT} from '@private/constants'; |
import {MYSQL_CONNECT, JNDI_CONNECT} from '@private/constants'; |
@ -1,6 +1,6 @@ |
|||||||
import {WidgetType, Vertical} from '@ui/index'; |
import {WidgetType, Vertical} from '@ui/index'; |
||||||
import Model from '../../link-set.model'; |
import Model from '../../link_set.model'; |
||||||
import {renderEdit} from './right.detail.service'; |
import {renderEdit} from './right_detail.service'; |
||||||
import {LinkType} from '@ui/type'; |
import {LinkType} from '@ui/type'; |
||||||
|
|
||||||
const className = 'fr.component.right.detail'; |
const className = 'fr.component.right.detail'; |
@ -1,10 +1,10 @@ |
|||||||
import {WidgetType, Vertical, MultiSelectItem, TextAreaEditor, Editor, Button, TextValueCombo} from '@ui/index'; |
import {WidgetType, Vertical, MultiSelectItem, TextAreaEditor, Editor, Button, TextValueCombo} from '@ui/index'; |
||||||
import {LinkType} from '@ui/type'; |
import {LinkType} from '@ui/type'; |
||||||
import {CONNECT_CHARSET} from '@private/constants'; |
import {CONNECT_CHARSET} from '@private/constants'; |
||||||
import Model from '../../link-set.model'; |
import Model from '../../link_set.model'; |
||||||
import FormItem from '@shared/components/form.item.component'; |
import FormItem from '@shared/components/form_item'; |
||||||
import Title from '@shared/components/title.component'; |
import Title from '@shared/components/title'; |
||||||
import {getDrivers, connectNameChecker} from './right.edit.service'; |
import {getDrivers, connectNameChecker} from './right_edit.service'; |
||||||
let ConnectionName: any = null; |
let ConnectionName: any = null; |
||||||
const className = 'fr.component.right.edit'; |
const className = 'fr.component.right.edit'; |
||||||
const Widget: WidgetType = { |
const Widget: WidgetType = { |
@ -1,5 +1,5 @@ |
|||||||
import {Vertical, Editor, TextValueCombo, TextButton, Label} from '@ui'; |
import {Vertical, Editor, TextValueCombo, TextButton, Label} from '@ui'; |
||||||
import FormItem from '@shared/components/form.item.component'; |
import FormItem from '@shared/components/form_item'; |
||||||
import {JNDI_FACTORYS, OTHER_ATTRIBUTES, CONNECT_CHARSET} from '@private/constants'; |
import {JNDI_FACTORYS, OTHER_ATTRIBUTES, CONNECT_CHARSET} from '@private/constants'; |
||||||
import {AttributeType} from '../right.typing'; |
import {AttributeType} from '../right.typing'; |
||||||
|
|
@ -1,10 +1,10 @@ |
|||||||
import {WidgetType, Vertical, MultiSelectItem, TextAreaEditor, Editor, Button, TextValueCombo} from '@ui/index'; |
import {WidgetType, Vertical, MultiSelectItem, TextAreaEditor, Editor, Button, TextValueCombo} from '@ui/index'; |
||||||
import {LinkType} from '@ui/type'; |
import {LinkType} from '@ui/type'; |
||||||
import {CONNECT_CHARSET} from '@private/constants'; |
import {CONNECT_CHARSET} from '@private/constants'; |
||||||
import Model from '../../link-set.model'; |
import Model from '../../link_set.model'; |
||||||
import FormItem from '@shared/components/form.item.component'; |
import FormItem from '@shared/components/form_item'; |
||||||
import Title from '@shared/components/title.component'; |
import Title from '@shared/components/title'; |
||||||
import {getDrivers, connectNameChecker} from './right.edit.service'; |
import {getDrivers, connectNameChecker} from './right_edit.service'; |
||||||
const className = 'fr.component.right.edit.mysql'; |
const className = 'fr.component.right.edit.mysql'; |
||||||
const Widget: WidgetType = { |
const Widget: WidgetType = { |
||||||
_store() { |
_store() { |
@ -1,7 +1,7 @@ |
|||||||
import {WidgetType, Vertical} from '@ui/index'; |
import {WidgetType, Vertical} from '@ui/index'; |
||||||
import RightShowModel from '../../link-set.model'; |
import RightShowModel from '../../link_set.model'; |
||||||
import BothSide from '@shared/components/both.side.component'; |
import BothSide from '@shared/components/both_side'; |
||||||
import Title from '@shared/components/title.component'; |
import Title from '@shared/components/title'; |
||||||
import {LinkType} from '@ui/type'; |
import {LinkType} from '@ui/type'; |
||||||
const className = 'fr.component.right.show'; |
const className = 'fr.component.right.show'; |
||||||
const Widget: WidgetType = { |
const Widget: WidgetType = { |
@ -1,5 +1,5 @@ |
|||||||
import {Vertical, TextButton, Label} from '@ui'; |
import {Vertical, TextButton, Label} from '@ui'; |
||||||
import FormItem from '@shared/components/form.item.component'; |
import FormItem from '@shared/components/form_item'; |
||||||
import {OTHER_ATTRIBUTES} from '@private/constants'; |
import {OTHER_ATTRIBUTES} from '@private/constants'; |
||||||
import {AttributeType} from '../right.typing'; |
import {AttributeType} from '../right.typing'; |
||||||
|
|
@ -1,6 +1,6 @@ |
|||||||
import {WidgetType, Combo, ButtonGroup, TextItem, Vertical} from '@ui'; |
import {WidgetType, Combo, ButtonGroup, TextItem, Vertical} from '@ui'; |
||||||
import selectModel from '../link-set.model'; |
import selectModel from '../link_set.model'; |
||||||
import {moreLink} from '../more/more.link.service'; |
import {moreLink} from '../more/more_link.service'; |
||||||
import connectList from '../../app.constant'; |
import connectList from '../../app.constant'; |
||||||
import {DATA_LINKS} from '@private/constants'; |
import {DATA_LINKS} from '@private/constants'; |
||||||
const className = 'fr.linkset.select'; |
const className = 'fr.linkset.select'; |
@ -1,7 +1,7 @@ |
|||||||
import {WidgetType, Htape, Vtape, Left, Label} from '@ui'; |
import {WidgetType, Htape, Vtape, Left, Label} from '@ui'; |
||||||
import linkStatusModel from './link_status.model'; |
import linkStatusModel from './link_status.model'; |
||||||
import LeftList from './left/left.component'; |
import LeftList from './left/left'; |
||||||
import Right from './right/right.component'; |
import Right from './right/right'; |
||||||
import {TAB_LINK_POOL} from '@private/constants'; |
import {TAB_LINK_POOL} from '@private/constants'; |
||||||
const className = 'fr.linkstatus'; |
const className = 'fr.linkstatus'; |
||||||
|
|
@ -1,5 +1,5 @@ |
|||||||
import {Left, WidgetType, IconButton} from '@ui/index'; |
import {Left, WidgetType, IconButton} from '@ui/index'; |
||||||
import TitleItem from './title_item/title_item.component'; |
import TitleItem from './title_item/title_item'; |
||||||
import {isDesigner, closeWindow} from '@shared/crud/crud.request'; |
import {isDesigner, closeWindow} from '@shared/crud/crud.request'; |
||||||
import {TAB_LINK_SET, TAB_LINK_POOL} from '@private/constants'; |
import {TAB_LINK_SET, TAB_LINK_POOL} from '@private/constants'; |
||||||
const className = 'fr.title'; |
const className = 'fr.title'; |
Loading…
Reference in new issue