-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add active search example #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d6e19aa
create routes for active search
luke-dcz cf80208
create handler
luke-dcz 48fcc37
add templ page with active search
luke-dcz 65c2d1f
move logic for handling search to handler
luke-dcz fc8ae68
Merge branch 'main' into add-active-search-example
luke-dcz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| package activesearch | ||
|
|
||
| import ( | ||
| "net/http" | ||
| "strings" | ||
|
|
||
| "github.com/a-h/templ" | ||
| "github.com/gofs-cli/template/internal/ui" | ||
| "github.com/gofs-cli/template/internal/ui/components/header" | ||
| ) | ||
|
|
||
| func Index() http.Handler { | ||
| return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
| templ.Handler(ui.IndexPage(layout(header.Header(), body()))).ServeHTTP(w, r) | ||
| }) | ||
| } | ||
|
|
||
| var rows = []Row{ | ||
| { | ||
| FirstName: "Rick", | ||
| LastName: "Grimes", | ||
| Email: "rick.grimes@email.com", | ||
| }, | ||
| { | ||
| FirstName: "Thomas", | ||
| LastName: "Shelby", | ||
| Email: "thomas.shelby@email.com", | ||
| }, | ||
| { | ||
| FirstName: "Harvey", | ||
| LastName: "Specter", | ||
| Email: "harvey.specter@email.com", | ||
| }, | ||
| { | ||
| FirstName: "Rick", | ||
| LastName: "Astley", | ||
| Email: "rick.astley@email.com", | ||
| }, | ||
| { | ||
| FirstName: "Thomas", | ||
| LastName: "cook", | ||
| Email: "thomas.cook@email.com", | ||
| }, | ||
| } | ||
|
|
||
| func Search() http.Handler { | ||
| return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
| searchQuery := strings.ToLower(r.PostFormValue("search")) | ||
| filteredRows := []Row{} | ||
| for _, v := range rows { | ||
| if contains(v.FirstName, searchQuery) || contains(v.LastName, searchQuery) || contains(v.Email, searchQuery) { | ||
| filteredRows = append(filteredRows, v) | ||
| } | ||
| } | ||
| templ.Handler(searchResults(filteredRows)).ServeHTTP(w, r) | ||
| }) | ||
| } | ||
|
|
||
| func contains(str, substr string) bool { | ||
| return strings.Contains(strings.ToLower(str), substr) | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| package activesearch | ||
|
|
||
| type Row struct { | ||
| FirstName string | ||
| LastName string | ||
| Email string | ||
| } | ||
|
|
||
| css classLayout() { | ||
| display: grid; | ||
| } | ||
|
|
||
| templ layout(header, body templ.Component) { | ||
| <main class={ classLayout() }> | ||
| <div> | ||
| @header | ||
| </div> | ||
| <div> | ||
| @body | ||
| </div> | ||
| </main> | ||
| } | ||
|
|
||
| templ body() { | ||
| <h2>Active Search:</h2> | ||
| <h3> | ||
| Search Contacts | ||
| <span class="htmx-indicator"> | ||
| <img src="/img/bars.svg"/> Searching... | ||
| </span> | ||
| </h3> | ||
| <input | ||
| type="search" | ||
| name="search" | ||
| placeholder="Begin Typing To Search Users..." | ||
| hx-post="/active-search/search" | ||
| hx-trigger="input changed delay:500ms, keyup[key=='Enter'], load" | ||
| hx-target="#search-results" | ||
| hx-indicator=".htmx-indicator" | ||
| /> | ||
| <table class="table"> | ||
| <thead> | ||
| <tr> | ||
| <th>First Name</th> | ||
| <th>Last Name</th> | ||
| <th>Email</th> | ||
| </tr> | ||
| </thead> | ||
| <tbody id="search-results"></tbody> | ||
| </table> | ||
| } | ||
|
|
||
| templ searchResults(rows []Row) { | ||
| for _, v := range rows { | ||
| <tr> | ||
| <td>{ v.FirstName }</td> | ||
| <td>{ v.LastName }</td> | ||
| <td>{ v.Email }</td> | ||
| </tr> | ||
| } | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.