Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a61988f
Initial commit after Rails 6 regeneration.
ljachymczyk Mar 25, 2021
3f99e5b
Initial node package
ljachymczyk Mar 26, 2021
a6298fc
Initial working example.
ljachymczyk Mar 29, 2021
5d6ec6c
Add stimulus
marcinTichoniuk Mar 30, 2021
e6639e7
Stimulus controller setup.
ljachymczyk Mar 30, 2021
eedf844
Register
marcinTichoniuk Mar 31, 2021
edebbab
Add microbundle setup.
ljachymczyk Apr 1, 2021
470b114
Register fixes
marcinTichoniuk Apr 6, 2021
527a965
Change naming
marcinTichoniuk Apr 6, 2021
6887acf
Adjust controller name and add update method (ajax)
marcinTichoniuk Apr 6, 2021
2812892
Create tailwind kaminari theme.
ljachymczyk May 6, 2021
d5acb5d
Set up generator.
ljachymczyk May 6, 2021
8323069
Style all pages of pagination
marcinTichoniuk May 12, 2021
ea498df
Style 'pagination per page'
marcinTichoniuk May 12, 2021
5fc07bc
Adjust default pagination style
marcinTichoniuk May 13, 2021
a039a26
Add initial implementation of actions handling.
ljachymczyk May 20, 2021
9c8c326
Add actions implementation in stimulus controller
marcinTichoniuk May 24, 2021
cad754a
Refactor class definitions
marcinTichoniuk May 24, 2021
b4e91c7
Add overlay to content when request is pending
marcinTichoniuk May 25, 2021
c1a92ad
Merge branch 'feature/pagination-styling-178050813' into ng
ljachymczyk May 25, 2021
98e6b56
Merge branch 'ng' into initial_stimulus
ljachymczyk May 25, 2021
a9c1ff0
Refactor pagination.
ljachymczyk May 25, 2021
414e1dc
Add custom events
marcinTichoniuk May 26, 2021
11121aa
Refactor controller
marcinTichoniuk May 26, 2021
099d2fd
Change this.content to this.element
marcinTichoniuk May 26, 2021
12fa07c
Stimulus controller inheritance tweaks.
ljachymczyk May 27, 2021
c4026de
Separate actions
marcinTichoniuk May 27, 2021
262cb29
Pagination style tweaks
marcinTichoniuk May 27, 2021
e26ab78
Add initial in-place editing.
ljachymczyk May 28, 2021
dea30c1
Merge branch 'initial_stimulus' into ng
ljachymczyk May 28, 2021
cb3cdc5
Refactoring.
ljachymczyk Jun 7, 2021
394e527
Add dist build.
ljachymczyk Jun 8, 2021
b150000
Add 'remove' action.
ljachymczyk Jun 9, 2021
f833ddb
Tweak tailwind opacity.
ljachymczyk Jun 9, 2021
8f86cf9
Add autoload.
ljachymczyk Jun 9, 2021
5e42acf
More changes.
ljachymczyk Oct 6, 2021
a5d9d0e
Replace history state instead of push.
ljachymczyk Oct 6, 2021
30eaa94
Minor tweaks.
ljachymczyk Oct 20, 2021
0bd279b
Some tweaks
ljachymczyk Jun 13, 2022
e826149
Change the controls form
ljachymczyk Jun 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 15 additions & 32 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,34 +1,17 @@
*.rbc
*.sassc
.sass-cache
capybara-*.html
.rspec
.rvmrc
/.bundle
/vendor/bundle
/log/*
/tmp/*
/db/*.sqlite3
/public/system/*
/coverage/
/spec/tmp/*
**.orig
rerun.txt
pickle-email-*.html
.project
config/initializers/secret_token.rb
*.gem
/test/*

.ruby-version
.ruby-gemset

*.swp
*.swo
/.bundle/
/doc/
/log/*.log
/pkg/
/tmp/
/spec/dummy/db/*.sqlite3
/spec/dummy/db/*.sqlite3-*
/spec/dummy/log/*.log
/spec/dummy/storage/
/spec/dummy/tmp/
.byebug_history

spec/dummy/db/*.sqlite3
spec/dummy/log/*.log
spec/dummy/tmp/
tags
/node_modules

.byebug_history
/.ruby-version
/.ruby-gemset
/.nvmrc
116 changes: 0 additions & 116 deletions Changes.md

This file was deleted.

11 changes: 10 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
source "https://rubygems.org"
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# Specify your gem's dependencies in smart_listing.gemspec.
gemspec

group :development do
gem 'pg'
end

# To use a debugger
gem 'byebug', group: [:development, :test]
Loading