-
-
Save claudiug/5341576afa18a28fd25ebfc0121d61dc to your computer and use it in GitHub Desktop.
slim-select Stimulus controller w/ Reflex callback
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class UsersReflex < ApplicationReflex | |
def search(name) | |
users = User.where("name LIKE :prefix", prefix: "#{name}%") | |
result = users.map { |user| { text: user.name, value: user.id }} | |
cable_ready.dispatch_event(name: "data", detail: {options: result}).broadcast | |
morph :nothing | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%# no, you shouldn't do AR queries in your view %> | |
<select id="user" class="w-100" name="user" data-controller="select" data-select-reflex-value="Users#search"> | |
<% User.all.each do |user| %> | |
<option value="<%= user.id %>"><%= user.name %></option> | |
<% end %> | |
</select> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"dependencies": { | |
"slim-select": "https://github.com/leastbad/slim-select", | |
"stimulus": "^2.0.0" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ApplicationController from './application_controller' | |
import SlimSelect from 'slim-select' | |
export default class extends ApplicationController { | |
static values = { | |
limit: Number, | |
placeholder: String, | |
searchText: String, | |
searchingText: String, | |
reflex: String | |
} | |
connect () { | |
super.connect() | |
const closeOnSelect = this.single | |
const allowDeselect = !this.element.required | |
this.select = new SlimSelect({ | |
select: this.element, | |
closeOnSelect, | |
allowDeselect, | |
limit: this.limitValue, | |
placeholder: this.hasPlaceholderValue | |
? this.placeholderValue | |
: 'Select Value', | |
searchText: this.hasSearchTextValue ? this.searchTextValue : 'No Results', | |
searchingText: this.hasSearchingTextValue | |
? this.searchingTextValue | |
: 'Searching...', | |
ajax: this.hasReflexValue ? this.search : () => {}, | |
onChange: this.onChange | |
}) | |
if (this.hasReflexValue) document.addEventListener('data', this.results) | |
} | |
search = (search, callback) => | |
this.stimulate(this.reflexValue, search).then(() => callback(false)) | |
results = event => this.select.setData(event.detail.options) | |
onChange = () => { | |
if (!this.select.data.searchValue) return | |
if (this.select.selected() === undefined) | |
this.stimulate(this.reflexValue, '') | |
} | |
get single () { | |
return !this.element.multiple | |
} | |
get multi () { | |
return this.element.multiple | |
} | |
disconnect () { | |
this.select.destroy() | |
if (this.hasReflexValue) document.removeEventListener('data', this.results) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment