Skip to content

Instantly share code, notes, and snippets.

@sergii
Forked from tabishiqbal/_form.html.erb
Created June 4, 2022 23:27
Show Gist options
  • Save sergii/c6b8b7fc2fa0ba6908f5f008fb52677a to your computer and use it in GitHub Desktop.
Save sergii/c6b8b7fc2fa0ba6908f5f008fb52677a to your computer and use it in GitHub Desktop.
Tom-Select Example with Stimulus
import { Controller } from "stimulus"
import TomSelect from "tom-select"
export default class extends Controller {
static values = { url: String }
connect() {
this.initTomSelect()
}
disconnect() {
if (this.select) {
this.select.destroy()
}
}
initTomSelect() {
if (this.element) {
let url = `${this.urlValue}.json`
this.select = new TomSelect(this.element, {
plugins: ['remove_button'],
valueField: 'id',
labelField: 'name',
searchField: ['name', 'email'],
maxItems: 1,
selectOnTab: true,
placeholder: "Select user",
closeAfterSelect: true,
hidePlaceholder: false,
preload: true,
create: false,
openOnFocus: true,
highlight: true,
sortField: {
field: "name",
direction: "asc"
},
searchField: 'name',
load: (search, callback) => {
fetch(url)
.then(response => response.json())
.then(json => {
callback(json);
}).catch(() => {
callback();
});
},
render: {
option: function (data, escape) {
return '<div>' +
'<span class="block">' + escape(data.name) + '</span>' +
'<span class="text-gray-400">' + escape(data.email) + '</span>' +
'</div>';
}
}
})
}
}
}
class UsersController < ApplicationController
def index
....
respond_to do |format|
...
format.json { render json: @users.map { |r| {name: r.name, id: r.id, email: r.email} } }
end
end
end
<div class="rounded-md shadow-sm">
<%= f.select :account_user_id, {}, {placeholder: "Select user"}, {class: "w-full", data: { controller: "select", select_url_value: users_path } }%>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment