Merge branch 'master' into 'production'
Master See merge request Romulus21/portal!45
This commit is contained in:
43
resources/js/components/CheckBoxField.vue
Normal file
43
resources/js/components/CheckBoxField.vue
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<template>
|
||||||
|
<label class="custom-label flex">
|
||||||
|
<div :class="'bg-white shadow w-6 h-6 p-1 flex justify-center items-center mr-2' + classes">
|
||||||
|
<input type="checkbox" class="hidden" :checked="checkIt" @click="checkThis">
|
||||||
|
<div class="hidden check rounded-sm w-4 h-4 bg-gray-700 pointer-events-none"></div>
|
||||||
|
</div>
|
||||||
|
<span class="select-none ml-1">{{ label }}</span>
|
||||||
|
</label>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'CheckBoxField',
|
||||||
|
props: {
|
||||||
|
checkIt: {
|
||||||
|
type: Boolean,
|
||||||
|
},
|
||||||
|
classes: String,
|
||||||
|
label: String,
|
||||||
|
required: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data: function () {
|
||||||
|
return {
|
||||||
|
check: this.checkIt,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
checkThis() {
|
||||||
|
this.check = !this.check
|
||||||
|
this.$emit('update:field', this.check)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.custom-label input:checked + .check {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -33,7 +33,28 @@
|
|||||||
<label class="mb-1">Test label</label>
|
<label class="mb-1">Test label</label>
|
||||||
<input type="text" placeholder="Test placeholder" class="mb-1">
|
<input type="text" placeholder="Test placeholder" class="mb-1">
|
||||||
<input type="number" class="mb-1">
|
<input type="number" class="mb-1">
|
||||||
|
<div>
|
||||||
<input type="checkbox" class="mb-1">
|
<input type="checkbox" class="mb-1">
|
||||||
|
<label>Check me !</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label class="custom-label flex">
|
||||||
|
<div class="bg-white shadow w-6 h-6 p-1 flex justify-center items-center mr-2">
|
||||||
|
<input type="checkbox" class="hidden" checked>
|
||||||
|
<div class="hidden check rounded-sm w-4 h-4 bg-gray-700 pointer-events-none"></div>
|
||||||
|
</div>
|
||||||
|
<span class="select-none"> This is a sample checkbox. All the text will toggle the state</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label class="custom-label flex">
|
||||||
|
<div class="bg-white shadow w-6 h-6 p-1 flex justify-center items-center mr-2">
|
||||||
|
<input type="checkbox" class="hidden" checked>
|
||||||
|
<svg class="hidden w-4 h-4 text-green-600 pointer-events-none" viewBox="0 0 172 172"><g fill="none" stroke-width="none" stroke-miterlimit="10" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode:normal"><path d="M0 172V0h172v172z"/><path d="M145.433 37.933L64.5 118.8658 33.7337 88.0996l-10.134 10.1341L64.5 139.1341l91.067-91.067z" fill="currentColor" stroke-width="1"/></g></svg>
|
||||||
|
</div>
|
||||||
|
<span class="select-none"> This is a sample checkbox. All the text will toggle the state</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
<select class="mb-1">
|
<select class="mb-1">
|
||||||
<option>test 1</option>
|
<option>test 1</option>
|
||||||
<option>test 2</option>
|
<option>test 2</option>
|
||||||
@@ -50,3 +71,13 @@ export default {
|
|||||||
name: 'CssTesteur'
|
name: 'CssTesteur'
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.custom-label input:checked + .check {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-label input:checked + svg {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="!edit" class="flex items-center flex-1 todo">
|
<div v-if="!edit" class="flex items-center flex-1 todo">
|
||||||
<input type="checkbox" :checked="toDo.data.attributes.data.checked_at" @click="checkedIt" class="block mr-1">
|
<CheckBoxField :check-it="!!(checked)"
|
||||||
|
@update:field="checked = $event"
|
||||||
|
class="block mr-1" />
|
||||||
<span v-bind:class="{ 'line-through' : toDo.data.attributes.data.checked_at }" class="border border-transparent flex-1 pl-1">{{ toDo.data.attributes.data.name }}</span>
|
<span v-bind:class="{ 'line-through' : toDo.data.attributes.data.checked_at }" class="border border-transparent flex-1 pl-1">{{ toDo.data.attributes.data.name }}</span>
|
||||||
<span @click="edit = !edit" >
|
<span @click="edit = !edit" >
|
||||||
<svg-vue icon="edit" class="edit-icon w-4 block cursor-pointer mx-2" />
|
<svg-vue icon="edit" class="edit-icon w-4 block cursor-pointer mx-2" />
|
||||||
@@ -19,8 +21,13 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import CheckBoxField from '../../components/CheckBoxField'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ToDo',
|
name: 'ToDo',
|
||||||
|
components: {
|
||||||
|
CheckBoxField
|
||||||
|
},
|
||||||
props: {
|
props: {
|
||||||
toDo: {
|
toDo: {
|
||||||
type: Object,
|
type: Object,
|
||||||
@@ -34,6 +41,7 @@ export default {
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
edit: false,
|
edit: false,
|
||||||
|
checked: !!(this.toDo.data.attributes.data.checked_at),
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -48,17 +56,20 @@ export default {
|
|||||||
console.log('Internal Error, Unable to delete list.' + errorRes)
|
console.log('Internal Error, Unable to delete list.' + errorRes)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
checkedIt: function () {
|
},
|
||||||
|
watch: {
|
||||||
|
checked: function (val) {
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
axios.patch('/api/to-do-lists/' + this.idList + '/to-do/' + this.toDo.data.to_do_id + '/check')
|
axios.patch('/api/to-do-lists/' + this.idList + '/to-do/' + this.toDo.data.to_do_id + '/check')
|
||||||
.then(res => {
|
.then(res => {
|
||||||
// this.toDoList.data.attributes.data.to_dos.data[position].data.attributes.data.checked_at = res.data.data.attributes.data.checked_at
|
// this.toDoList.data.attributes.data.to_dos.data[position].data.attributes.data.checked_at = res.data.data.attributes.data.checked_at
|
||||||
this.toDo.data.attributes.data.checked_at = res.data.data.attributes.data.checked_at
|
this.toDo.data.attributes.data.checked_at = res.data.data.attributes.data.checked_at
|
||||||
|
this.checked = val
|
||||||
})
|
})
|
||||||
.catch(errorRes => {
|
.catch(errorRes => {
|
||||||
console.log('Internal Error, Unable to delete contact.' + errorRes)
|
console.log('Internal Error, Unable to delete contact.' + errorRes)
|
||||||
})
|
})
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="p-2">
|
<div class="p-4">
|
||||||
<div v-if="modal" class="modal-container" @click="modal = ! modal"></div>
|
<div v-if="modal" class="modal-container" @click="modal = ! modal"></div>
|
||||||
<div v-if="modal" class="modal px-2">
|
<div v-if="modal" class="modal px-2">
|
||||||
<p class="m-2 text-center">Add a new to-do list ?</p>
|
<p class="m-2 text-center">Add a new to-do list ?</p>
|
||||||
|
|||||||
4
resources/sass/components/_btn.scss
vendored
4
resources/sass/components/_btn.scss
vendored
@@ -1,7 +1,7 @@
|
|||||||
// Button
|
// Button
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
@apply border border-transparent bg-gray-600 text-white font-semibold py-2 px-4 shadow-sm rounded cursor-pointer;
|
@apply border border-transparent inline-block bg-gray-600 text-white font-semibold whitespace-no-wrap py-2 px-4 shadow-sm rounded cursor-pointer;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@apply text-white bg-gray-800 transition-all duration-300;
|
@apply text-white bg-gray-800 transition-all duration-300;
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.svg {
|
&.svg {
|
||||||
@apply px-2;
|
@apply px-2 inline;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
@apply mr-0;
|
@apply mr-0;
|
||||||
|
|||||||
90
resources/sass/pages/memos.scss
vendored
90
resources/sass/pages/memos.scss
vendored
@@ -1,89 +1,3 @@
|
|||||||
/*
|
|
||||||
.memo {
|
|
||||||
|
|
||||||
&-list {
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 2.2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:nth-child(even) {
|
|
||||||
background-color: $light;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: $mediumLight;
|
|
||||||
|
|
||||||
.memo-date {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-date {
|
|
||||||
opacity: 0.6;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-change {
|
|
||||||
text-align: right;
|
|
||||||
background: $greyLight;
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-title {
|
|
||||||
color: $white;
|
|
||||||
text-shadow: 1px 1px 2px $dark;
|
|
||||||
background-image: linear-gradient(transparent, rgba(0,0,0,0.7));
|
|
||||||
}
|
|
||||||
|
|
||||||
&-cover {
|
|
||||||
height: calc(100% - 5px);
|
|
||||||
top: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.memo-edit {
|
|
||||||
|
|
||||||
.memo-text-area textarea {
|
|
||||||
height: 50vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.memo-style {
|
|
||||||
p {
|
|
||||||
margin: 0.25rem 0 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
code,
|
|
||||||
pre {
|
|
||||||
background-color: $greyLight;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
padding: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: $mediumDark;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
.memo-style {
|
.memo-style {
|
||||||
|
|
||||||
@@ -135,4 +49,8 @@
|
|||||||
ol {
|
ol {
|
||||||
@apply list-decimal ml-8;
|
@apply list-decimal ml-8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="checkbox"] {
|
||||||
|
width: 2rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user