mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Add 'times-circle' as right icon to search etc.
This commit is contained in:
parent
5c178394ee
commit
780ff65254
3
.gitignore
vendored
3
.gitignore
vendored
@ -79,3 +79,6 @@ static/uploads
|
|||||||
|
|
||||||
cypress/videos
|
cypress/videos
|
||||||
cypress/screenshots/
|
cypress/screenshots/
|
||||||
|
|
||||||
|
# Apple macOS folder attribute file
|
||||||
|
.DS_Store
|
||||||
|
|||||||
@ -6,19 +6,19 @@
|
|||||||
:class="{ 'is-active': isActive }"
|
:class="{ 'is-active': isActive }"
|
||||||
>
|
>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<div class="control has-icons-left has-icons-right">
|
<div class="control">
|
||||||
<ds-input
|
<ds-input
|
||||||
:id="id"
|
:id="id"
|
||||||
ref="input"
|
ref="input"
|
||||||
v-model="searchValue"
|
v-model="searchValue"
|
||||||
v-focus="focus"
|
|
||||||
class="input"
|
class="input"
|
||||||
name="search"
|
name="search"
|
||||||
type="text"
|
type="search"
|
||||||
icon="search"
|
icon="search"
|
||||||
|
icon-right="times-circle"
|
||||||
:placeholder="$t('search.placeholder')"
|
:placeholder="$t('search.placeholder')"
|
||||||
@keyup.exact="onInput"
|
@input="handleInput"
|
||||||
@keyup.enter="onEnter"
|
@keyup.native.enter="onEnter"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -43,22 +43,20 @@ export default {
|
|||||||
delay: {
|
delay: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 700
|
default: 700
|
||||||
},
|
|
||||||
focus: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
// #: Bind to input text.
|
||||||
searchValue: '',
|
searchValue: '',
|
||||||
// #: Returned ID value of the timer given by "setTimeout()".
|
// #: Returned ID value of the timer given by "setTimeout()".
|
||||||
searchProcess: null,
|
searchProcess: null,
|
||||||
// #!: Seems to be unused (unquestioned).
|
// #!: Seems to be unused (unquestioned).
|
||||||
searching: false
|
typing: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
// #: Unused at the moment?
|
||||||
isActive() {
|
isActive() {
|
||||||
return !isEmpty(this.searchValue)
|
return !isEmpty(this.searchValue)
|
||||||
}
|
}
|
||||||
@ -82,10 +80,10 @@ export default {
|
|||||||
this.searchValue = this.value.toString()
|
this.searchValue = this.value.toString()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onInput() {
|
handleInput() {
|
||||||
// #: Prevent "setTimeout()" to call parameter function after "delay".
|
// #: Prevent "setTimeout()" to call parameter function after "delay".
|
||||||
clearTimeout(this.searchProcess)
|
clearTimeout(this.searchProcess)
|
||||||
this.searching = true
|
this.typing = true
|
||||||
// skip on less then three letters
|
// skip on less then three letters
|
||||||
if (this.searchValue && this.searchValue.toString().length < 3) {
|
if (this.searchValue && this.searchValue.toString().length < 3) {
|
||||||
return
|
return
|
||||||
@ -96,7 +94,7 @@ export default {
|
|||||||
}
|
}
|
||||||
// #: Calls function in first parameter after a delay of "this.delay" milliseconds.
|
// #: Calls function in first parameter after a delay of "this.delay" milliseconds.
|
||||||
this.searchProcess = setTimeout(() => {
|
this.searchProcess = setTimeout(() => {
|
||||||
this.searching = false
|
this.typing = false
|
||||||
//-- avoid querying for dev -- this.$emit('search', this.searchValue.toString())
|
//-- avoid querying for dev -- this.$emit('search', this.searchValue.toString())
|
||||||
}, this.delay)
|
}, this.delay)
|
||||||
},
|
},
|
||||||
@ -108,13 +106,14 @@ export default {
|
|||||||
// #: Prevent "setTimeout()" to call parameter function after "delay".
|
// #: Prevent "setTimeout()" to call parameter function after "delay".
|
||||||
clearTimeout(this.searchProcess)
|
clearTimeout(this.searchProcess)
|
||||||
})
|
})
|
||||||
this.searching = false
|
this.typing = false
|
||||||
//-- avoid querying for dev -- this.$emit('search', this.searchValue.toString())
|
//-- avoid querying for dev -- this.$emit('search', this.searchValue.toString())
|
||||||
|
console.log('Enter !!!!')
|
||||||
},
|
},
|
||||||
clear() {
|
clear() {
|
||||||
// #: Prevent "setTimeout()" to call parameter function after "delay".
|
// #: Prevent "setTimeout()" to call parameter function after "delay".
|
||||||
clearTimeout(this.searchProcess)
|
clearTimeout(this.searchProcess)
|
||||||
this.searching = false
|
this.typing = false
|
||||||
this.searchValue = ''
|
this.searchValue = ''
|
||||||
if (this.value !== this.searchValue) {
|
if (this.value !== this.searchValue) {
|
||||||
//-- avoid querying for dev -- this.$emit('search', '')
|
//-- avoid querying for dev -- this.$emit('search', '')
|
||||||
@ -187,14 +186,4 @@ export default {
|
|||||||
color: hsl(0, 0%, 71%);
|
color: hsl(0, 0%, 71%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.input,
|
|
||||||
.has-icons-left,
|
|
||||||
.has-icons-right {
|
|
||||||
.icon,
|
|
||||||
i {
|
|
||||||
// color: lighten($grey-light, 15%);
|
|
||||||
transition: color 150ms ease-out !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -26,7 +26,7 @@
|
|||||||
"commented": "Kommentiert"
|
"commented": "Kommentiert"
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"placeholder": "Suchen …"
|
"placeholder": "Suchen"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"name": "Einstellungen",
|
"name": "Einstellungen",
|
||||||
|
|||||||
@ -26,7 +26,7 @@
|
|||||||
"commented": "Commented"
|
"commented": "Commented"
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"placeholder": "Search …"
|
"placeholder": "Search"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"name": "Settings",
|
"name": "Settings",
|
||||||
|
|||||||
5
styleguide/src/system/icons/svg/times-circle.svg
Normal file
5
styleguide/src/system/icons/svg/times-circle.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<!-- Generated by IcoMoon.io -->
|
||||||
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||||
|
<title>times-circle</title>
|
||||||
|
<path d="M16 3c7.168 0 13 5.832 13 13s-5.832 13-13 13-13-5.832-13-13 5.832-13 13-13zM16 5c-6.087 0-11 4.913-11 11s4.913 11 11 11 11-4.913 11-11-4.913-11-11-11zM12.219 10.781l3.781 3.781 3.781-3.781 1.438 1.438-3.781 3.781 3.781 3.781-1.438 1.438-3.781-3.781-3.781 3.781-1.438-1.438 3.781-3.781-3.781-3.781z"></path>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 482 B |
Loading…
x
Reference in New Issue
Block a user