s8 assignment my attempt
This commit is contained in:
parent
14320669eb
commit
6790319a8a
5
s8assignment/.babelrc
Normal file
5
s8assignment/.babelrc
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"presets": [
|
||||
["es2015", { "modules": false }]
|
||||
]
|
||||
}
|
18
s8assignment/README.md
Normal file
18
s8assignment/README.md
Normal file
@ -0,0 +1,18 @@
|
||||
# vue-cli
|
||||
|
||||
> A Vue.js project
|
||||
|
||||
## Build Setup
|
||||
|
||||
``` bash
|
||||
# install dependencies
|
||||
npm install
|
||||
|
||||
# serve with hot reload at localhost:8080
|
||||
npm run dev
|
||||
|
||||
# build for production with minification
|
||||
npm run build
|
||||
```
|
||||
|
||||
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|
13
s8assignment/index.html
Normal file
13
s8assignment/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Vue Components</title>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
</div>
|
||||
<script src="/dist/build.js"></script>
|
||||
</body>
|
||||
</html>
|
25
s8assignment/package.json
Normal file
25
s8assignment/package.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "vue-cli",
|
||||
"description": "A Vue.js project",
|
||||
"author": "Maximilian Schwarzmüller <mblacky0@gmail.com>",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
|
||||
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
|
||||
},
|
||||
"dependencies": {
|
||||
"bootstrap": "^3.3.7",
|
||||
"vue": "^2.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.0.0",
|
||||
"babel-loader": "^6.0.0",
|
||||
"babel-preset-es2015": "^6.0.0",
|
||||
"cross-env": "^3.0.0",
|
||||
"css-loader": "^0.25.0",
|
||||
"file-loader": "^0.9.0",
|
||||
"vue-loader": "^9.7.0",
|
||||
"webpack": "2.1.0-beta.25",
|
||||
"webpack-dev-server": "2.1.0-beta.0"
|
||||
}
|
||||
}
|
32
s8assignment/src/App.vue
Normal file
32
s8assignment/src/App.vue
Normal file
@ -0,0 +1,32 @@
|
||||
<template>
|
||||
<div class="container">
|
||||
<app-header></app-header>
|
||||
<hr>
|
||||
<div class="row">
|
||||
<servers></servers>
|
||||
<app-server-details></app-server-details>
|
||||
</div>
|
||||
<hr>
|
||||
<app-footer></app-footer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Header from './components/Shared/Header.vue';
|
||||
import Footer from './components/Shared/Footer.vue';
|
||||
import Servers from './components/Server/Servers.vue';
|
||||
import ServerDetails from './components/Server/ServerDetails.vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
appHeader: Header,
|
||||
Servers,
|
||||
'app-server-details': ServerDetails,
|
||||
'app-footer': Footer
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
BIN
s8assignment/src/assets/logo.png
Normal file
BIN
s8assignment/src/assets/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
13
s8assignment/src/components/Server/ServerDetails.vue
Normal file
13
s8assignment/src/components/Server/ServerDetails.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<p>Server Details are currently not updated</p>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
25
s8assignment/src/components/Server/ServerItem.vue
Normal file
25
s8assignment/src/components/Server/ServerItem.vue
Normal file
@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<div>
|
||||
Server #{{ id }} -> {{status}}
|
||||
<button @click="backToNormal">Back to Normal</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
id: Number,
|
||||
status: String
|
||||
},
|
||||
methods: {
|
||||
backToNormal(){
|
||||
this.$emit('statusChanged', this.id, 'Normal');
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
39
s8assignment/src/components/Server/Servers.vue
Normal file
39
s8assignment/src/components/Server/Servers.vue
Normal file
@ -0,0 +1,39 @@
|
||||
<template>
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<ul class="list-group">
|
||||
<li class="list-group-item" v-for="server in servers">
|
||||
<server-item :id="server.id" :status="server.status" @statusChanged="statusChanged">
|
||||
</server-item>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ServerItem from './ServerItem.vue'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
serverItem: ServerItem,
|
||||
},
|
||||
data: function(){
|
||||
return {
|
||||
servers: [
|
||||
{id: 1, status: "Normal"},
|
||||
{id: 2, status: "Critical"},
|
||||
{id: 3, status: "Unknown"},
|
||||
{id: 4, status: "Normal"},
|
||||
]
|
||||
};
|
||||
},
|
||||
methods:{
|
||||
statusChanged(id, status){
|
||||
this.servers[id-1].status = status;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
16
s8assignment/src/components/Shared/Footer.vue
Normal file
16
s8assignment/src/components/Shared/Footer.vue
Normal file
@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<footer>
|
||||
<p>All Servers are managed here</p>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
16
s8assignment/src/components/Shared/Header.vue
Normal file
16
s8assignment/src/components/Shared/Header.vue
Normal file
@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<header>
|
||||
<h1>Server Status</h1>
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
8
s8assignment/src/main.js
Normal file
8
s8assignment/src/main.js
Normal file
@ -0,0 +1,8 @@
|
||||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
|
||||
|
||||
new Vue({
|
||||
el: '#app',
|
||||
render: h => h(App)
|
||||
})
|
64
s8assignment/webpack.config.js
Normal file
64
s8assignment/webpack.config.js
Normal file
@ -0,0 +1,64 @@
|
||||
var path = require('path')
|
||||
var webpack = require('webpack')
|
||||
|
||||
module.exports = {
|
||||
entry: './src/main.js',
|
||||
output: {
|
||||
path: path.resolve(__dirname, './dist'),
|
||||
publicPath: '/dist/',
|
||||
filename: 'build.js'
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.vue$/,
|
||||
loader: 'vue',
|
||||
options: {
|
||||
// vue-loader options go here
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.js$/,
|
||||
loader: 'babel',
|
||||
exclude: /node_modules/
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpg|gif|svg)$/,
|
||||
loader: 'file',
|
||||
options: {
|
||||
name: '[name].[ext]?[hash]'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'vue$': 'vue/dist/vue'
|
||||
}
|
||||
},
|
||||
devServer: {
|
||||
historyApiFallback: true,
|
||||
noInfo: true
|
||||
},
|
||||
devtool: '#eval-source-map'
|
||||
}
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
module.exports.devtool = '#source-map'
|
||||
// http://vue-loader.vuejs.org/en/workflow/production.html
|
||||
module.exports.plugins = (module.exports.plugins || []).concat([
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': {
|
||||
NODE_ENV: '"production"'
|
||||
}
|
||||
}),
|
||||
new webpack.optimize.UglifyJsPlugin({
|
||||
compress: {
|
||||
warnings: false
|
||||
}
|
||||
}),
|
||||
new webpack.LoaderOptionsPlugin({
|
||||
minimize: true
|
||||
})
|
||||
])
|
||||
}
|
4206
s8assignment/yarn.lock
Normal file
4206
s8assignment/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user