routing and channel-service
This commit is contained in:
parent
1e38cd840b
commit
83b51e0bdd
8 changed files with 118 additions and 1393 deletions
|
@ -3,8 +3,10 @@
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@types/react-router-dom": "^4.3.1",
|
||||||
"react": "^16.8.1",
|
"react": "^16.8.1",
|
||||||
"react-dom": "^16.8.1"
|
"react-dom": "^16.8.1",
|
||||||
|
"react-router-dom": "^4.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "10.12.21",
|
"@types/node": "10.12.21",
|
||||||
|
|
13
src/App.tsx
13
src/App.tsx
|
@ -1,21 +1,20 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
|
import { BrowserRouter as Router, Route } from 'react-router-dom';
|
||||||
|
|
||||||
import Header from './components/Header/Header';
|
import Header from './components/Header/Header';
|
||||||
|
|
||||||
import './App.scss';
|
import './App.scss';
|
||||||
|
import Channellist from './components/Channel/ChannelList';
|
||||||
|
import Home from './components/Home';
|
||||||
|
|
||||||
class App extends Component {
|
class App extends Component {
|
||||||
public render() {
|
public render() {
|
||||||
const channel: Channel = {
|
|
||||||
id: 1,
|
|
||||||
name: 'test',
|
|
||||||
totalClients: -1,
|
|
||||||
neededSubscribePower: 0,
|
|
||||||
subchannels: [],
|
|
||||||
};
|
|
||||||
return (
|
return (
|
||||||
<div className='App'>
|
<div className='App'>
|
||||||
<Header />
|
<Header />
|
||||||
|
<Router>
|
||||||
|
<Route exact path='/' component={Home} />
|
||||||
|
</Router>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,8 +15,7 @@ export default class Channellist extends Component<any, any> {
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
fetch('http://haveachin.de:1888/v1/channels')
|
ChannelService.getAllChannels()
|
||||||
.then(res => res.json())
|
|
||||||
.then(data => this.setState({ channels: data, loaded: true }))
|
.then(data => this.setState({ channels: data, loaded: true }))
|
||||||
.catch(e => console.log(e));
|
.catch(e => console.log(e));
|
||||||
}
|
}
|
||||||
|
@ -29,7 +28,7 @@ export default class Channellist extends Component<any, any> {
|
||||||
return (
|
return (
|
||||||
<ul className='channelList'>
|
<ul className='channelList'>
|
||||||
{channels.map((e: Channel) => (
|
{channels.map((e: Channel) => (
|
||||||
<li>
|
<li key={e.id}>
|
||||||
<span>#{e.id} </span>
|
<span>#{e.id} </span>
|
||||||
{e.name}
|
{e.name}
|
||||||
</li>
|
</li>
|
||||||
|
|
12
src/components/Home.tsx
Normal file
12
src/components/Home.tsx
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
import React, { Component } from 'react';
|
||||||
|
import Channellist from './Channel/ChannelList';
|
||||||
|
|
||||||
|
export default class Home extends Component {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Channellist />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,10 +0,0 @@
|
||||||
.channel-view {
|
|
||||||
background-color: green;
|
|
||||||
width: 20%;
|
|
||||||
height: auto;
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.channel-view ul {
|
|
||||||
text-align: left
|
|
||||||
}
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
import './index.css';
|
|
||||||
import App from './App';
|
import App from './App';
|
||||||
|
import './index.css';
|
||||||
import * as serviceWorker from './serviceWorker';
|
import * as serviceWorker from './serviceWorker';
|
||||||
|
|
||||||
ReactDOM.render(<App />, document.getElementById('root'));
|
ReactDOM.render(<App />, document.getElementById('root'));
|
||||||
|
|
9
src/services/chanel.ts
Normal file
9
src/services/chanel.ts
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
const API_URL = 'http://haveachin.de:1888/v1/channels';
|
||||||
|
|
||||||
|
export default class ChannelService {
|
||||||
|
public static getAllChannels() {
|
||||||
|
return fetch('http://haveachin.de:1888/v1/channels').then(res =>
|
||||||
|
res.json()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue