Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
efdb5c1
Rutgers Hack4Impact Event Feature Addition
mv5903 Apr 21, 2025
10fdd2b
Fix name error uninitialized constant
aliciapaz Apr 24, 2025
b8b90d2
Update nokogiri; fix rubocop
aliciapaz Apr 24, 2025
ca2c683
Merge branch 'main' into pr-650
aliciapaz Jun 27, 2025
9b94c54
Merge branch 'main' into pr-650
aliciapaz Jul 17, 2025
a98e984
Merge branch 'main' into pr-650
aliciapaz Jul 30, 2025
da7576b
Set a default image for attach flyer
ngotommy Aug 5, 2025
65e5776
relabeled to push
ngotommy Aug 5, 2025
fd71027
Removed code breaking whole app
ngotommy Aug 6, 2025
45247c3
Merge pull request #696 from TelosLabs/my-profile-redirect
ngotommy Aug 6, 2025
8f10f8a
Merge pull request #692 from TelosLabs/attach-flyer-photo
ngotommy Aug 6, 2025
ad9649a
Merge remote-tracking branch 'origin/pr-650' into relabel-publish-button
ngotommy Aug 7, 2025
65dbed6
Merge pull request #694 from TelosLabs/relabel-publish-button
ngotommy Aug 7, 2025
56683e5
separating js code from explore.html.slim and redirect users to nonpr…
ngotommy Aug 12, 2025
a79a63c
Merge pull request #699 from TelosLabs/nonprofit-logo-redirect
ngotommy Aug 12, 2025
1a66940
changed all of event card to clickable and added a hover effect
ngotommy Aug 12, 2025
38c6eae
Merge pull request #700 from TelosLabs/event-hover
ngotommy Aug 12, 2025
52336d4
add all day option + partially migrate JS into stimulus controller
ngotommy Aug 12, 2025
3aac8ff
Update backend + frontend form interactivity
ngotommy Aug 20, 2025
6619635
Flesh out all-day event feature
ngotommy Aug 20, 2025
b5d938a
Merge branch 'main' into pr-650
aliciapaz Aug 21, 2025
728468d
Add multi-day support
ngotommy Aug 21, 2025
1f34b11
Merge pull request #705 from TelosLabs/multiple-date-event
ngotommy Aug 21, 2025
037a042
gemfile.lock update
ngotommy Aug 22, 2025
5745786
Change path to include ein
ngotommy Aug 22, 2025
6906852
Merge pull request #708 from TelosLabs/events-page-path
ngotommy Aug 22, 2025
9ceb25b
Change EventListCard inheritance
ngotommy Aug 22, 2025
760110d
Matched header design
ngotommy Aug 22, 2025
cd050af
Merge pull request #709 from TelosLabs/header-colors-and-design
ngotommy Aug 22, 2025
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
372 changes: 196 additions & 176 deletions Gemfile.lock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions app/assets/images/bx_export.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions app/assets/images/calendar-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions app/assets/images/down-arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/assets/images/ellipses.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions app/assets/images/ellipsis-vertical-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/gc-heart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/gc-star.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions app/assets/images/hamburger_menu_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions app/assets/images/map-pin-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions app/assets/images/mingcute_notification-line.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions app/assets/stylesheets/design_system/component/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,21 @@
}
}
}

.b-button {
display: flex;
margin: 0 auto;
align-items: center;
justify-content: center;
padding: 15px 40px;
border-radius: 6px;
border: 0;
cursor: pointer;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
color: $primary-dark-blue;
background-color: $secondary-seafoam;
line-height: 10px;
letter-spacing: 0.8px;
}
2 changes: 2 additions & 0 deletions app/components/accordion/component.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# Accordion Component for faqs page
class Accordion::Component < ApplicationViewComponent
include InlineSvg::ActionView::Helpers

def initialize(title:, description:)
@title = title
@description = description
Expand Down
2 changes: 2 additions & 0 deletions app/components/alert/component.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

# View Component to display flash alerts
class Alert::Component < ApplicationViewComponent
include InlineSvg::ActionView::Helpers

def initialize(type:, message:)
@type = type
@message = message
Expand Down
1 change: 1 addition & 0 deletions app/components/application_view_component.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
class ApplicationViewComponent < ViewComponent::Base
include InlineSvg::ActionView::Helpers
end
1 change: 1 addition & 0 deletions app/components/bio_card/component.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

class BioCard::Component < ApplicationViewComponent
include InlineSvg::ActionView::Helpers
renders_one :biography

def initialize(name: "", job_title: "", img_url: "")
Expand Down
Loading
Loading