Merge remote-tracking branch 'origin/developer' into developer
This commit is contained in:
commit
c3073101b1
3
.gitignore
vendored
3
.gitignore
vendored
@ -19,3 +19,6 @@ latex-files/*.toc
|
|||||||
|
|
||||||
# config
|
# config
|
||||||
mongodb.config.js
|
mongodb.config.js
|
||||||
|
|
||||||
|
# exclude Mac-File .DS_Store
|
||||||
|
*.DS_Store
|
@ -51,12 +51,7 @@
|
|||||||
<!-- CSS_Material Design for Bootstrap fonts and icons -->
|
<!-- CSS_Material Design for Bootstrap fonts and icons -->
|
||||||
<link rel="stylesheet" href="lib/bootstrap-font-and-icons.css">
|
<link rel="stylesheet" href="lib/bootstrap-font-and-icons.css">
|
||||||
<!-- CSS_Material Design for Bootstrap minified CSS -->
|
<!-- CSS_Material Design for Bootstrap minified CSS -->
|
||||||
<link rel="stylesheet" href="lib/bootstrap-material-design.min.css">
|
<!--<link rel="stylesheet" href="lib/bootstrap-material-design.min.css">-->
|
||||||
<!-- CSS_vuetify -->
|
|
||||||
<link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons' rel="stylesheet">
|
|
||||||
<link href="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.min.css" rel="stylesheet">
|
|
||||||
<!-- CSS_Custom Design -->
|
|
||||||
<link rel="stylesheet" type="text/css" href="style/style.css">
|
|
||||||
|
|
||||||
<!-- NOTE: Call manifest.json -->
|
<!-- NOTE: Call manifest.json -->
|
||||||
<link rel="manifest" href="manifest.json">
|
<link rel="manifest" href="manifest.json">
|
||||||
@ -68,15 +63,19 @@
|
|||||||
|
|
||||||
<!-- Buefy/Vuetify -->
|
<!-- Buefy/Vuetify -->
|
||||||
<script src="lib/buefy-0.7.5.js"></script>
|
<script src="lib/buefy-0.7.5.js"></script>
|
||||||
<!-- <script src="lib/buefy-0.7.5.min.js"></script>-->
|
<!-- <script src="lib/buefy-0.7.5.min.js"></script>-->
|
||||||
|
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/2.5.94/css/materialdesignicons.min.css">
|
||||||
<link rel="stylesheet" type="text/css" href="lib/buefy-0.7.5.css">
|
<link rel="stylesheet" type="text/css" href="lib/buefy-0.7.5.css">
|
||||||
<!-- <link rel="stylesheet" type="text/css" href="lib/buefy-0.7.5.min.css">-->
|
<!--<link rel="stylesheet" type="text/css" href="lib/buefy-0.7.5.min.css">-->
|
||||||
|
|
||||||
<!-- <script src="lib/vuetify-1.5.14.js"></script>-->
|
<!-- <script src="lib/vuetify-1.5.14.js"></script>-->
|
||||||
<!-- <script src="lib/vuetify-1.5.14.min.js"></script>-->
|
<!-- <script src="lib/vuetify-1.5.14.min.js"></script>-->
|
||||||
<!-- <link rel="stylesheet" type="text/css" href="lib/vuetify-1.5.14.css">-->
|
<!-- <link rel="stylesheet" type="text/css" href="lib/vuetify-1.5.14.css">-->
|
||||||
<!-- <link rel="stylesheet" type="text/css" href="lib/vuetify-1.5.14.min.css">-->
|
<!-- <link rel="stylesheet" type="text/css" href="lib/vuetify-1.5.14.min.css">-->
|
||||||
|
|
||||||
|
<!-- CSS_Custom Design -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="style/style.css">
|
||||||
|
|
||||||
<!-- NOTE: JavaScript Libs & Files -->
|
<!-- NOTE: JavaScript Libs & Files -->
|
||||||
<script src="routes/home.js"></script>
|
<script src="routes/home.js"></script>
|
||||||
<script src="routes/files.js"></script>
|
<script src="routes/files.js"></script>
|
||||||
@ -98,7 +97,12 @@
|
|||||||
<div class="om-header">
|
<div class="om-header">
|
||||||
<a class="logo-img" href="index.html"><img src="img/app_icon.png" width=45px height=45px></a>
|
<a class="logo-img" href="index.html"><img src="img/app_icon.png" width=45px height=45px></a>
|
||||||
<form class="om-searchbar">
|
<form class="om-searchbar">
|
||||||
<input type="search" placeholder="Search...">
|
<b-field>
|
||||||
|
<b-input placeholder="Suche..."
|
||||||
|
type="search"
|
||||||
|
icon="magnify">
|
||||||
|
</b-input>
|
||||||
|
</b-field>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -108,13 +112,33 @@
|
|||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<nav class="nav nav-tabs nav-justified om-nav" v-if="$route.path !=='/createMessage' ">
|
<nav class="navbar is-fixed-bottom is-expanded is-light is-hoverable" role="navigation" aria-label="main navigation">
|
||||||
<router-link to="/home" class="nav-item nav-link"><i class="material-icons">home</i></router-link>
|
<div class="navbar-brand is-expanded">
|
||||||
<router-link to="/files" class="nav-item nav-link"><i class="material-icons">language</i></router-link>
|
<router-link to="/home" class="navbar-item is-expanded has-text-centered is-active">
|
||||||
<router-link to="/createMessage" class="nav-item nav-link outlined"><i class="material-icons">add_circle</i></router-link>
|
<i class="material-icons">home</i>
|
||||||
<router-link to="/bookmark" class="nav-item nav-link"><i class="material-icons">bookmark</i></router-link>
|
</router-link>
|
||||||
<router-link to="/profil" class="nav-item nav-link"><i class="material-icons">person</i></router-link>
|
<router-link to="/files" class="navbar-item is-expanded">
|
||||||
</nav>
|
<i class="material-icons">language</i>
|
||||||
|
</router-link>
|
||||||
|
<router-link to="/createMessage" class="navbar-item is-expanded">
|
||||||
|
<i class="material-icons">add_circle</i>
|
||||||
|
</router-link>
|
||||||
|
<router-link to="/bookmark" class="navbar-item is-expanded">
|
||||||
|
<i class="material-icons">bookmark</i>
|
||||||
|
</router-link>
|
||||||
|
<router-link to="/profil" class="navbar-item is-expanded">
|
||||||
|
<i class="material-icons">person</i>
|
||||||
|
</router-link>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!--<nav class="nav nav-tabs nav-justified om-nav" v-if="$route.path !=='/createMessage' ">
|
||||||
|
<router-link to="/home" class="navbar-item has-text-centered"><i class="material-icons">home</i></router-link>
|
||||||
|
<router-link to="/files" class="navbar-item has-text-centered"><i class="material-icons">language</i></router-link>
|
||||||
|
<router-link to="/createMessage" class="navbar-item has-text-centered outlined"><i class="material-icons">add_circle</i></router-link>
|
||||||
|
<router-link to="/bookmark" class="navbar-item has-text-centered"><i class="material-icons">bookmark</i></router-link>
|
||||||
|
<router-link to="/profil" class="navbar-item has-text-centered"><i class="material-icons">person</i></router-link>
|
||||||
|
</nav>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
File diff suppressed because it is too large
Load Diff
2
public/lib/buefy-0.7.5.min.css
vendored
2
public/lib/buefy-0.7.5.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,52 +1,48 @@
|
|||||||
|
const data=[
|
||||||
|
'#th',
|
||||||
|
'#efi',
|
||||||
|
'#wichtig',
|
||||||
|
];
|
||||||
const CreateMsgRouter = {
|
const CreateMsgRouter = {
|
||||||
template: `
|
template: `
|
||||||
<div class="card om-card">
|
<div class="content card om-card">
|
||||||
<h4>Neue Nachricht erstellen</h4>
|
<h4>Neue Nachricht erstellen</h4>
|
||||||
<form class="new-msg-form" @submit.prevent=createMsg>
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="bmd-label-floating">User*</label>
|
|
||||||
<input type="text" class="form-control" id="user">
|
|
||||||
</div>
|
|
||||||
<div class="form-group bmd-form-group">
|
|
||||||
<label class="bmd-label-floating">Betreff*</label>
|
|
||||||
<input type="text" class="form-control" id="subject">
|
|
||||||
</div>
|
|
||||||
<div class="form-group bmd-form-group">
|
|
||||||
<label class="bmd-label-floating">Tags</label>
|
|
||||||
<input type="text" class="form-control" id="tag">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
<b-field>
|
||||||
|
<b-input placeholder="User" id="user"></b-input>
|
||||||
|
</b-field>
|
||||||
|
|
||||||
|
<b-field>
|
||||||
|
<b-input placeholder="Betreff" id="subject"></b-input>
|
||||||
|
</b-field>
|
||||||
|
|
||||||
<v-combobox
|
<b-field label="Tags">
|
||||||
v-model="select"
|
<b-taginput
|
||||||
:items="items"
|
v-model="selected"
|
||||||
label="I use chips"
|
:data=items
|
||||||
multiple
|
autocomplete
|
||||||
chips
|
allow-new:false
|
||||||
></v-combobox>
|
icon="label"
|
||||||
|
placeholder="#"
|
||||||
|
@typing="getFilteredTags" id="tag">
|
||||||
|
</b-taginput>
|
||||||
|
</b-field>
|
||||||
|
|
||||||
|
<b-field>
|
||||||
|
<b-input placeholder="Nachricht" id="message" type="textarea"></b-input>
|
||||||
|
</b-field>
|
||||||
|
|
||||||
|
<b-button @click="$router.go(-1)">ABBRECHEN</b-button>
|
||||||
|
<b-button type="is-primary" @click="$router.push('/home')">SENDEN</b-button>
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="bmd-label-floating">Nachricht*</label>
|
|
||||||
<textarea class="form-control" id="message" rows="5"></textarea>
|
|
||||||
</div>
|
|
||||||
<button class="btn btn-default"><a @click="$router.go(-1)">ABBRECHEN </a></button>
|
|
||||||
<button type="submit" class="btn btn-raised om-btn"><a @click="$router.push('/home')">SENDEN</a></button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
`,
|
`,
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
select: ['Design', 'jj'],
|
selected: [],
|
||||||
items: [
|
items: data
|
||||||
'Programming',
|
|
||||||
'Design',
|
|
||||||
'Vue',
|
|
||||||
'Vuetify'
|
|
||||||
]
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -76,6 +72,14 @@ const CreateMsgRouter = {
|
|||||||
console.log(err);
|
console.log(err);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
getFilteredTags(text) {
|
||||||
|
this.items = data.filter((option) => {
|
||||||
|
return option
|
||||||
|
.toString()
|
||||||
|
.toLowerCase()
|
||||||
|
.indexOf(text.toLowerCase()) >= 0
|
||||||
|
})
|
||||||
|
},
|
||||||
},
|
},
|
||||||
mounted: function () {
|
mounted: function () {
|
||||||
if ($(this).bootstrapMaterialDesign)
|
if ($(this).bootstrapMaterialDesign)
|
||||||
|
@ -1,34 +1,64 @@
|
|||||||
Vue.component('login-panel', {
|
Vue.component('login-panel', {
|
||||||
template: `
|
template: `
|
||||||
<div class="loginModal modal" tabindex="-1" role="dialog">
|
<form action="">
|
||||||
|
<div class="modal-card" style="width: auto">
|
||||||
|
<header class="modal-card-head">
|
||||||
|
<p class="modal-card-title">Login</p>
|
||||||
|
</header>
|
||||||
|
<section class="modal-card-body">
|
||||||
|
|
||||||
|
<b-field>
|
||||||
|
<b-input
|
||||||
|
placeholder="User (Ohmportal)"
|
||||||
|
:value="user"
|
||||||
|
v-model=user
|
||||||
|
required>
|
||||||
|
</b-input>
|
||||||
|
</b-field>
|
||||||
|
<b-field>
|
||||||
|
<b-input
|
||||||
|
type="password"
|
||||||
|
placeholder="Password"
|
||||||
|
:value="pwd"
|
||||||
|
required>
|
||||||
|
</b-input>
|
||||||
|
</b-field>
|
||||||
|
<b-checkbox>Eingeloggt bleiben</b-checkbox>
|
||||||
|
</section>
|
||||||
|
<footer class="modal-card-foot">
|
||||||
|
<button class="button" type="button" @click="$parent.close()">Close</button>
|
||||||
|
<button class="button is-primary" on:click="logIn(this.Event)">Login</button>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!--<div class="loginModal modal" tabindex="-1" role="dialog">
|
||||||
<div class="modal-dialog" role="document">
|
<div class="modal-dialog" role="document">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h5 class="modal-title">Login</h5>
|
<h5 class="modal-title">Login</h5>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<form>
|
<b-field>
|
||||||
<div class="form-group">
|
<b-input placeholder="User (Ohmportal)" v-model=user></b-input>
|
||||||
<label class="bmd-label-floating"> User (Ohmportal)</label>
|
</b-field>
|
||||||
<input type="text" class="form-control" length=20 ref=userField v-model=user>
|
<b-field>
|
||||||
</div>
|
<b-input type="password" placeholder="Password"></b-input>
|
||||||
<div class="form-group">
|
</b-field>
|
||||||
<label class="bmd-label-floating">Password</label>
|
|
||||||
<input type=password class="form-control" length=20 v-model=pwd>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal" v-on:click="closeLogin(this.Event)">Login</button>
|
<b-button type="button" class="btn btn-primary" data-dismiss="modal" v-on:click="closeLogin(this.Event)">Login</b-button>
|
||||||
<button type="button" class="btn btn-secondary" data-dismiss="modal" v-on:click="closeLogin(this.Event)">Close</button>
|
<b-button type="button" class="btn btn-secondary" data-dismiss="modal" v-on:click="closeLogin(this.Event)">Close</b-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>`,
|
</div>-->`,
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
user: "",
|
user: "name",
|
||||||
pwd:"",
|
pwd:"password",
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -41,6 +71,6 @@ Vue.component('login-panel', {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted: function () {
|
mounted: function () {
|
||||||
$(".loginModal").modal ('show');
|
//$(".loginModal").modal ('show');
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -7,34 +7,31 @@ const ProfilRouter = {
|
|||||||
:key="profil.id"
|
:key="profil.id"
|
||||||
:profil="profil"
|
:profil="profil"
|
||||||
></ProfilCard>
|
></ProfilCard>
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal" v-on:click="logOut() ">Logout</button>
|
<b-button type="button" class="btn btn-primary" data-dismiss="modal" v-on:click="logOut() ">Logout</b-button>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="!isAuthentified">
|
<div v-else-if="!isAuthentified">
|
||||||
<button v-on:click="showLoginModal=true" @clicked="logIn">Login</button>
|
<button class="button is-primary is-medium" @click="isModalActive = true">
|
||||||
<v-rating v-model="rating"></v-rating>
|
Login
|
||||||
<login-panel v-if="showLoginModal" @clicked="closeModal" ></login-panel>
|
</button>
|
||||||
|
|
||||||
|
<!--<login-panel v-if="showLoginModal" @clicked="closeModal" ></login-panel>-->
|
||||||
|
|
||||||
|
<b-modal :active.sync="showLoginModal" has-modal-card>
|
||||||
|
<login-panel v-bind="formProps"></login-panel>
|
||||||
|
</b-modal>
|
||||||
</div>
|
</div>
|
||||||
</div>`,
|
</div>`,
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
|
isModalActive: false,
|
||||||
profilcard: _profilcard,
|
profilcard: _profilcard,
|
||||||
showLoginModal: false,
|
|
||||||
isAuthentified: false,
|
|
||||||
rating: 3,
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
closeModal (value) {
|
checkAuthentication (value) {
|
||||||
this.showLoginModal = value;
|
this.showLoginModal = value;
|
||||||
this.isAuthentified = !this.isAuthentified;
|
this.isAuthentified = !this.isAuthentified;
|
||||||
},
|
|
||||||
|
|
||||||
logIn (value) {
|
|
||||||
this.showLoginModal=false;
|
|
||||||
},
|
|
||||||
|
|
||||||
logOut () {
|
|
||||||
this.isAuthentified=false;
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -72,6 +72,9 @@
|
|||||||
.om-user-line i {
|
.om-user-line i {
|
||||||
margin-right: 2%;
|
margin-right: 2%;
|
||||||
}
|
}
|
||||||
|
taginput-container is-focusable:focus {
|
||||||
|
border-color: #0046a0 !important;
|
||||||
|
}
|
||||||
.bookmark-headline {
|
.bookmark-headline {
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
@ -90,6 +90,12 @@ a.nav-item.nav-link{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//createMsg
|
||||||
|
taginput-container is-focusable:focus {
|
||||||
|
border-color: @color !important;
|
||||||
|
//box-shadow: 0;
|
||||||
|
}
|
||||||
|
|
||||||
// bookmark
|
// bookmark
|
||||||
.bookmark-headline{
|
.bookmark-headline{
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user