mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
Merge branch 'dev' of gitlab.corp.qunar.com:mfe/yapi into dev
This commit is contained in:
commit
4a989aaf49
0
.eslintrc.js
Normal file → Executable file
0
.eslintrc.js
Normal file → Executable file
0
.eslintrc.json
Normal file → Executable file
0
.eslintrc.json
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
.vscode/settings.json
vendored
Normal file → Executable file
0
.vscode/settings.json
vendored
Normal file → Executable file
0
client/.eslintrc.js
Normal file → Executable file
0
client/.eslintrc.js
Normal file → Executable file
0
client/Application.js
Normal file → Executable file
0
client/Application.js
Normal file → Executable file
0
client/common.js
Normal file → Executable file
0
client/common.js
Normal file → Executable file
0
client/components/AuthenticatedComponent.js
Normal file → Executable file
0
client/components/AuthenticatedComponent.js
Normal file → Executable file
0
client/components/Breadcrumb/Breadcrumb.js
Normal file → Executable file
0
client/components/Breadcrumb/Breadcrumb.js
Normal file → Executable file
2
client/components/Breadcrumb/Breadcrumb.scss
Normal file → Executable file
2
client/components/Breadcrumb/Breadcrumb.scss
Normal file → Executable file
@ -5,7 +5,7 @@
|
||||
font-size: 16px;
|
||||
float: left;
|
||||
color: #fff;
|
||||
padding-left: 40px;
|
||||
padding-left: 64px;
|
||||
}
|
||||
.ant-breadcrumb a {
|
||||
color: #fff;
|
||||
|
0
client/components/ErrMsg/ErrMsg.js
Normal file → Executable file
0
client/components/ErrMsg/ErrMsg.js
Normal file → Executable file
0
client/components/ErrMsg/ErrMsg.scss
Normal file → Executable file
0
client/components/ErrMsg/ErrMsg.scss
Normal file → Executable file
0
client/components/Footer/Footer.js
Normal file → Executable file
0
client/components/Footer/Footer.js
Normal file → Executable file
0
client/components/Footer/Footer.scss
Normal file → Executable file
0
client/components/Footer/Footer.scss
Normal file → Executable file
20
client/components/Header/Header.js
Normal file → Executable file
20
client/components/Header/Header.js
Normal file → Executable file
@ -9,11 +9,11 @@ import { changeMenuItem } from '../../reducer/modules/menu'
|
||||
import { withRouter } from 'react-router';
|
||||
import Srch from './Search/Search'
|
||||
const { Header } = Layout;
|
||||
import { logoSVG, betaSVG } from '../../common.js';
|
||||
import { logoSVG } from '../../common.js';
|
||||
import Breadcrumb from '../Breadcrumb/Breadcrumb.js'
|
||||
|
||||
const MenuUser = (props) => (
|
||||
<Menu className="user-menu" >
|
||||
<Menu theme="dark" className="user-menu" >
|
||||
<Menu.Item key="0">
|
||||
<Link to={`/user/profile/${props.uid}`} onClick={props.relieveLink}><Icon type="user"/>个人中心</Link>
|
||||
</Menu.Item>
|
||||
@ -36,6 +36,13 @@ const ToolUser = (props)=> (
|
||||
<li className="toolbar-li item-search">
|
||||
<Srch groupList={props.groupList}/>
|
||||
</li>
|
||||
<Link to="/follow">
|
||||
<Tooltip placement="bottom" title={'我的关注'}>
|
||||
<li className="toolbar-li">
|
||||
<Icon className="dropdown-link" style={{ fontSize: 16 }} type="star" />
|
||||
</li>
|
||||
</Tooltip>
|
||||
</Link>
|
||||
<Link to="/add-project">
|
||||
<Tooltip placement="bottom" title={'新建项目'}>
|
||||
<li className="toolbar-li">
|
||||
@ -49,6 +56,7 @@ const ToolUser = (props)=> (
|
||||
</li>
|
||||
</Tooltip>
|
||||
<li className="toolbar-li">
|
||||
|
||||
<Dropdown
|
||||
placement = "bottomRight"
|
||||
overlay={
|
||||
@ -63,10 +71,11 @@ const ToolUser = (props)=> (
|
||||
<a className="dropdown-link">
|
||||
<Avatar src={`/api/user/avatar?uid=${props.uid}`} />
|
||||
{/*<img style={{width:24,height:24}} src={`/api/user/avatar?uid=${props.uid}`} />*/}
|
||||
<span className="name">{props.user}</span>
|
||||
|
||||
{/*<span className="name">{props.user}</span>*/}
|
||||
<span className="name"><Icon type="down-circle-o" /></span>
|
||||
</a>
|
||||
</Dropdown>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
);
|
||||
@ -168,7 +177,8 @@ export default class HeaderCom extends Component {
|
||||
<div className="content g-row">
|
||||
<div className="logo">
|
||||
<Link to="/group" onClick={this.relieveLink} className="href">
|
||||
<span className="img">{logoSVG('32px')}</span><span className="logo-name">YAPI<span className="ui-badge">{betaSVG}</span></span>
|
||||
<span className="img">{logoSVG('32px')}</span>
|
||||
{/*<span className="logo-name">YApi<span className="ui-badge">{betaSVG}</span></span>*/}
|
||||
</Link>
|
||||
</div>
|
||||
<Breadcrumb />
|
||||
|
41
client/components/Header/Header.scss
Normal file → Executable file
41
client/components/Header/Header.scss
Normal file → Executable file
@ -14,6 +14,7 @@
|
||||
float: left;
|
||||
line-height: .56rem;
|
||||
height: .56rem;
|
||||
|
||||
.href {
|
||||
text-decoration: none;
|
||||
}
|
||||
@ -44,24 +45,24 @@
|
||||
from { background-position: 0px; }
|
||||
to { background-position: -240px; }
|
||||
}
|
||||
&:before, &:after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 2px;
|
||||
height: .56rem;
|
||||
background-color: #222;
|
||||
border-left: 1px solid #575D67;
|
||||
position: relative;
|
||||
top: 0;
|
||||
}
|
||||
&:before {
|
||||
float: left;
|
||||
left: -.08rem;
|
||||
}
|
||||
&:after {
|
||||
float: right;
|
||||
right: -.27rem;
|
||||
}
|
||||
// &:before, &:after {
|
||||
// content: '';
|
||||
// display: block;
|
||||
// width: 2px;
|
||||
// height: .56rem;
|
||||
// background-color: #222;
|
||||
// border-left: 1px solid #575D67;
|
||||
// position: relative;
|
||||
// top: 0;
|
||||
// }
|
||||
// &:before {
|
||||
// float: left;
|
||||
// left: -.08rem;
|
||||
// }
|
||||
// &:after {
|
||||
// float: right;
|
||||
// right: -.27rem;
|
||||
// }
|
||||
}
|
||||
|
||||
.nav-toolbar {
|
||||
@ -69,7 +70,9 @@
|
||||
float: left;
|
||||
|
||||
}
|
||||
|
||||
.user-menu{
|
||||
margin-top: 20px;
|
||||
}
|
||||
.user-toolbar{
|
||||
float: right;
|
||||
height: .54rem;
|
||||
|
0
client/components/Header/Search/Search.js
Normal file → Executable file
0
client/components/Header/Search/Search.js
Normal file → Executable file
0
client/components/Header/Search/Search.scss
Normal file → Executable file
0
client/components/Header/Search/Search.scss
Normal file → Executable file
0
client/components/Intro/Intro.js
Normal file → Executable file
0
client/components/Intro/Intro.js
Normal file → Executable file
0
client/components/Intro/Intro.scss
Normal file → Executable file
0
client/components/Intro/Intro.scss
Normal file → Executable file
0
client/components/Loading/Loading.js
Normal file → Executable file
0
client/components/Loading/Loading.js
Normal file → Executable file
0
client/components/Loading/Loading.scss
Normal file → Executable file
0
client/components/Loading/Loading.scss
Normal file → Executable file
0
client/components/MockDoc/MockDoc.js
Normal file → Executable file
0
client/components/MockDoc/MockDoc.js
Normal file → Executable file
0
client/components/MockDoc/MockDoc.scss
Normal file → Executable file
0
client/components/MockDoc/MockDoc.scss
Normal file → Executable file
0
client/components/Postman/Postman.js
Normal file → Executable file
0
client/components/Postman/Postman.js
Normal file → Executable file
0
client/components/Postman/Postman.scss
Normal file → Executable file
0
client/components/Postman/Postman.scss
Normal file → Executable file
0
client/components/ProjectCard/ProjectCard.js
Normal file → Executable file
0
client/components/ProjectCard/ProjectCard.js
Normal file → Executable file
0
client/components/ProjectCard/ProjectCard.scss
Normal file → Executable file
0
client/components/ProjectCard/ProjectCard.scss
Normal file → Executable file
0
client/components/Subnav/Subnav.js
Normal file → Executable file
0
client/components/Subnav/Subnav.js
Normal file → Executable file
0
client/components/Subnav/Subnav.scss
Normal file → Executable file
0
client/components/Subnav/Subnav.scss
Normal file → Executable file
0
client/components/UsernameAutoComplete/UsernameAutoComplete.js
Normal file → Executable file
0
client/components/UsernameAutoComplete/UsernameAutoComplete.js
Normal file → Executable file
0
client/components/index.js
Normal file → Executable file
0
client/components/index.js
Normal file → Executable file
0
client/constants/variable.js
Normal file → Executable file
0
client/constants/variable.js
Normal file → Executable file
0
client/containers/AddProject/AddProject.js
Normal file → Executable file
0
client/containers/AddProject/AddProject.js
Normal file → Executable file
0
client/containers/AddProject/Addproject.scss
Normal file → Executable file
0
client/containers/AddProject/Addproject.scss
Normal file → Executable file
0
client/containers/DevTools/DevTools.js
Normal file → Executable file
0
client/containers/DevTools/DevTools.js
Normal file → Executable file
6
client/containers/Follows/Follows.js
Normal file → Executable file
6
client/containers/Follows/Follows.js
Normal file → Executable file
@ -5,7 +5,7 @@ import { connect } from 'react-redux';
|
||||
import { Row, Col } from 'antd';
|
||||
import { getFollowList } from '../../reducer/modules/follow';
|
||||
import { setBreadcrumb } from '../../reducer/modules/user';
|
||||
import Subnav from '../../components/Subnav/Subnav.js';
|
||||
// import Subnav from '../../components/Subnav/Subnav.js';
|
||||
import ProjectCard from '../../components/ProjectCard/ProjectCard.js';
|
||||
import ErrMsg from '../../components/ErrMsg/ErrMsg.js';
|
||||
|
||||
@ -60,7 +60,7 @@ class Follows extends Component {
|
||||
const data = this.state.data;
|
||||
return (
|
||||
<div>
|
||||
<Subnav
|
||||
{/*<Subnav
|
||||
default={'我的关注'}
|
||||
data={[{
|
||||
name: '项目广场',
|
||||
@ -68,7 +68,7 @@ class Follows extends Component {
|
||||
}, {
|
||||
name: '我的关注',
|
||||
path: '/follow'
|
||||
}]}/>
|
||||
}]}/>*/}
|
||||
<div className="g-row">
|
||||
<Row gutter={24} className="follow-box card-panel pannel-without-tab">
|
||||
{data.length ? data.map((item, index) => {
|
||||
|
1
client/containers/Follows/Follows.scss
Normal file → Executable file
1
client/containers/Follows/Follows.scss
Normal file → Executable file
@ -5,6 +5,7 @@
|
||||
.follow-box{
|
||||
padding: 24px;
|
||||
background-color: #fff;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
.card-panel {
|
||||
|
8
client/containers/Group/Group.js
Normal file → Executable file
8
client/containers/Group/Group.js
Normal file → Executable file
@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
||||
import GroupList from './GroupList/GroupList.js';
|
||||
import ProjectList from './ProjectList/ProjectList.js';
|
||||
import MemberList from './MemberList/MemberList.js';
|
||||
import Subnav from '../../components/Subnav/Subnav.js';
|
||||
// import Subnav from '../../components/Subnav/Subnav.js';
|
||||
import { Route, Switch, Redirect } from 'react-router-dom';
|
||||
import { Row, Col, Tabs } from 'antd';
|
||||
const TabPane = Tabs.TabPane;
|
||||
@ -32,8 +32,8 @@ export default class Group extends Component {
|
||||
</div>
|
||||
)
|
||||
return (
|
||||
<div>
|
||||
<Subnav
|
||||
<div className='projectGround'>
|
||||
{/*<Subnav
|
||||
default={'项目广场'}
|
||||
data={[{
|
||||
name: '项目广场',
|
||||
@ -41,7 +41,7 @@ export default class Group extends Component {
|
||||
}, {
|
||||
name: '我的关注',
|
||||
path: '/follow'
|
||||
}]}/>
|
||||
}]}/>*/}
|
||||
<Switch>
|
||||
<Redirect exact from='/group' to='/group/0' />
|
||||
<Route path="/group/:groupId" render={() => GroupContent} />
|
||||
|
3
client/containers/Group/Group.scss
Normal file → Executable file
3
client/containers/Group/Group.scss
Normal file → Executable file
@ -4,3 +4,6 @@
|
||||
@include row-width-limit;
|
||||
margin: 0 auto .24rem;
|
||||
}
|
||||
.projectGround{
|
||||
padding-top: 32px;
|
||||
}
|
0
client/containers/Group/GroupList/GroupList.js
Normal file → Executable file
0
client/containers/Group/GroupList/GroupList.js
Normal file → Executable file
2
client/containers/Group/GroupList/GroupList.scss
Normal file → Executable file
2
client/containers/Group/GroupList/GroupList.scss
Normal file → Executable file
@ -18,7 +18,7 @@
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 150px;
|
||||
max-width: 140px;
|
||||
font-weight: 200;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
0
client/containers/Group/MemberList/MemberList.js
Normal file → Executable file
0
client/containers/Group/MemberList/MemberList.js
Normal file → Executable file
0
client/containers/Group/MemberList/MemberList.scss
Normal file → Executable file
0
client/containers/Group/MemberList/MemberList.scss
Normal file → Executable file
0
client/containers/Group/ProjectList/ProjectList.js
Normal file → Executable file
0
client/containers/Group/ProjectList/ProjectList.js
Normal file → Executable file
0
client/containers/Group/ProjectList/ProjectList.scss
Normal file → Executable file
0
client/containers/Group/ProjectList/ProjectList.scss
Normal file → Executable file
0
client/containers/Group/ProjectList/UpDateModal.js
Normal file → Executable file
0
client/containers/Group/ProjectList/UpDateModal.js
Normal file → Executable file
0
client/containers/Home/Home.js
Normal file → Executable file
0
client/containers/Home/Home.js
Normal file → Executable file
0
client/containers/Home/Home.scss
Normal file → Executable file
0
client/containers/Home/Home.scss
Normal file → Executable file
0
client/containers/Login/Login.js
Normal file → Executable file
0
client/containers/Login/Login.js
Normal file → Executable file
0
client/containers/Login/Login.scss
Normal file → Executable file
0
client/containers/Login/Login.scss
Normal file → Executable file
0
client/containers/Login/LoginContainer.js
Normal file → Executable file
0
client/containers/Login/LoginContainer.js
Normal file → Executable file
0
client/containers/Login/LoginWrap.js
Normal file → Executable file
0
client/containers/Login/LoginWrap.js
Normal file → Executable file
0
client/containers/Login/Reg.js
Normal file → Executable file
0
client/containers/Login/Reg.js
Normal file → Executable file
0
client/containers/News/News.js
Normal file → Executable file
0
client/containers/News/News.js
Normal file → Executable file
0
client/containers/News/News.scss
Normal file → Executable file
0
client/containers/News/News.scss
Normal file → Executable file
0
client/containers/News/NewsList/NewsList.js
Normal file → Executable file
0
client/containers/News/NewsList/NewsList.js
Normal file → Executable file
0
client/containers/News/NewsTimeline/NewsTimeline.js
Normal file → Executable file
0
client/containers/News/NewsTimeline/NewsTimeline.js
Normal file → Executable file
0
client/containers/Project/Activity/Activity.js
Normal file → Executable file
0
client/containers/Project/Activity/Activity.js
Normal file → Executable file
0
client/containers/Project/Activity/Activity.scss
Normal file → Executable file
0
client/containers/Project/Activity/Activity.scss
Normal file → Executable file
0
client/containers/Project/Activity/Timeline/Timeline.js
Normal file → Executable file
0
client/containers/Project/Activity/Timeline/Timeline.js
Normal file → Executable file
0
client/containers/Project/Interface/Interface.js
Normal file → Executable file
0
client/containers/Project/Interface/Interface.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceCaseContent.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceCaseContent.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceColContent.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceColContent.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceColMenu.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceColMenu.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceColMenu.scss
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceCol/InterfaceColMenu.scss
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/AddInterfaceCatForm.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/AddInterfaceCatForm.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/AddInterfaceForm.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/AddInterfaceForm.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Edit.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Edit.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Edit.scss
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Edit.scss
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/InterfaceContent.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/InterfaceContent.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/InterfaceEditForm.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/InterfaceEditForm.js
Normal file → Executable file
16
client/containers/Project/Interface/InterfaceList/InterfaceList.js
Normal file → Executable file
16
client/containers/Project/Interface/InterfaceList/InterfaceList.js
Normal file → Executable file
@ -15,7 +15,8 @@ import './Edit.scss';
|
||||
state => {
|
||||
return {
|
||||
curData: state.inter.curdata,
|
||||
curProject: state.project.currProject
|
||||
curProject: state.project.currProject,
|
||||
catList: state.inter.list
|
||||
}
|
||||
},{
|
||||
fetchInterfaceList
|
||||
@ -36,6 +37,7 @@ class InterfaceList extends Component {
|
||||
|
||||
static propTypes = {
|
||||
curData: PropTypes.object,
|
||||
catList: PropTypes.array,
|
||||
match: PropTypes.object,
|
||||
curProject: PropTypes.object,
|
||||
history: PropTypes.object,
|
||||
@ -151,15 +153,21 @@ class InterfaceList extends Component {
|
||||
}],
|
||||
onFilter: (value, record) => record.status.indexOf(value) === 0
|
||||
}]
|
||||
|
||||
let intername = '';
|
||||
if(this.props.curProject.cat){
|
||||
for(let i = 0;i<this.props.curProject.cat.length;i++){
|
||||
if(this.props.curProject.cat[i]._id === this.state.catid){
|
||||
intername = this.props.curProject.cat[i].name;
|
||||
}
|
||||
}
|
||||
}
|
||||
const data = this.state.data.map(item => {
|
||||
item.key = item._id;
|
||||
return item;
|
||||
});
|
||||
|
||||
return (
|
||||
<div style={{ padding: '16px' }}>
|
||||
<h2 style={{ display: 'inline-block'}}>接口列表</h2>
|
||||
<h2 style={{ display: 'inline-block'}}>{intername?intername:'全部接口'}</h2>
|
||||
<Button style={{float: 'right'}} type="primary" onClick={() => this.setState({ visible: true })}>添加接口</Button>
|
||||
<Table className="table-interfacelist" pagination={false} columns={columns} onChange={this.handleChange} dataSource={data} />
|
||||
<Modal
|
||||
|
0
client/containers/Project/Interface/InterfaceList/InterfaceMenu.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/InterfaceMenu.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Run/AddColModal.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Run/AddColModal.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Run/Run.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Run/Run.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Run/Run.scss
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/Run/Run.scss
Normal file → Executable file
6
client/containers/Project/Interface/InterfaceList/View.js
Normal file → Executable file
6
client/containers/Project/Interface/InterfaceList/View.js
Normal file → Executable file
@ -65,7 +65,7 @@ class View extends Component {
|
||||
key: i,
|
||||
name: item.name,
|
||||
value: item.desc,
|
||||
required: item.required?"是":"否",
|
||||
required: item.required==0?"否":"是",
|
||||
type: item.type
|
||||
})
|
||||
})
|
||||
@ -129,7 +129,7 @@ class View extends Component {
|
||||
key: i,
|
||||
name: item.name,
|
||||
value: item.desc,
|
||||
required: item.required?"是":"否"
|
||||
required: item.required==0?"否":"是"
|
||||
})
|
||||
})
|
||||
}
|
||||
@ -189,7 +189,7 @@ class View extends Component {
|
||||
dataSource.push({
|
||||
key: i,
|
||||
name: item.name,
|
||||
required: item.required?"是":"否",
|
||||
required: item.required==0?"否":"是",
|
||||
value: item.value,
|
||||
desc: item.desc
|
||||
})
|
||||
|
0
client/containers/Project/Interface/InterfaceList/View.scss
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/View.scss
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/mockEditor.js
Normal file → Executable file
0
client/containers/Project/Interface/InterfaceList/mockEditor.js
Normal file → Executable file
0
client/containers/Project/Interface/interface.scss
Normal file → Executable file
0
client/containers/Project/Interface/interface.scss
Normal file → Executable file
0
client/containers/Project/Project.js
Normal file → Executable file
0
client/containers/Project/Project.js
Normal file → Executable file
0
client/containers/Project/Setting/ProjectData/ProjectData.js
Normal file → Executable file
0
client/containers/Project/Setting/ProjectData/ProjectData.js
Normal file → Executable file
0
client/containers/Project/Setting/ProjectData/ProjectData.scss
Normal file → Executable file
0
client/containers/Project/Setting/ProjectData/ProjectData.scss
Normal file → Executable file
0
client/containers/Project/Setting/ProjectMember/ProjectMember.js
Normal file → Executable file
0
client/containers/Project/Setting/ProjectMember/ProjectMember.js
Normal file → Executable file
0
client/containers/Project/Setting/ProjectMessage/ProjectMessage.js
Normal file → Executable file
0
client/containers/Project/Setting/ProjectMessage/ProjectMessage.js
Normal file → Executable file
0
client/containers/Project/Setting/Setting.js
Normal file → Executable file
0
client/containers/Project/Setting/Setting.js
Normal file → Executable file
0
client/containers/Project/Setting/Setting.scss
Normal file → Executable file
0
client/containers/Project/Setting/Setting.scss
Normal file → Executable file
0
client/containers/User/Profile.js
Normal file → Executable file
0
client/containers/User/Profile.js
Normal file → Executable file
0
client/containers/User/index.scss
Normal file → Executable file
0
client/containers/User/index.scss
Normal file → Executable file
0
client/containers/index.js
Normal file → Executable file
0
client/containers/index.js
Normal file → Executable file
0
client/images/loading.gif
Normal file → Executable file
0
client/images/loading.gif
Normal file → Executable file
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
0
client/index.js
Normal file → Executable file
0
client/index.js
Normal file → Executable file
0
client/plugin.js
Normal file → Executable file
0
client/plugin.js
Normal file → Executable file
0
client/reducer/create.js
Normal file → Executable file
0
client/reducer/create.js
Normal file → Executable file
0
client/reducer/middleware/messageMiddleware.js
Normal file → Executable file
0
client/reducer/middleware/messageMiddleware.js
Normal file → Executable file
0
client/reducer/modules/addInterface.js
Normal file → Executable file
0
client/reducer/modules/addInterface.js
Normal file → Executable file
0
client/reducer/modules/follow.js
Normal file → Executable file
0
client/reducer/modules/follow.js
Normal file → Executable file
0
client/reducer/modules/group.js
Normal file → Executable file
0
client/reducer/modules/group.js
Normal file → Executable file
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user