Compare commits
4 commits
d3b3a3060c
...
41532bd019
Author | SHA1 | Date | |
---|---|---|---|
41532bd019 | |||
8117d976a6 | |||
e30e25a3f5 | |||
d8b577aab1 |
13 changed files with 367 additions and 305 deletions
|
@ -1,6 +1,5 @@
|
||||||
@import "../partials/clean/constants"
|
@import "../partials/clean/constants"
|
||||||
|
|
||||||
body.auth_users-edit, body.auth_users-update
|
|
||||||
.settings-form
|
.settings-form
|
||||||
border: 1px solid $module-border-color
|
border: 1px solid $module-border-color
|
||||||
background: $module-bg-color
|
background: $module-bg-color
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
// Place all the styles related to the campaigns controller here.
|
|
||||||
// They will automatically be included in application.css.
|
|
||||||
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
|
@ -1,6 +1,5 @@
|
||||||
@import "../../partials/clean/constants"
|
@import "../../partials/clean/constants"
|
||||||
|
|
||||||
body.devise-sessions, body.devise-sessions-new
|
|
||||||
#title
|
#title
|
||||||
text-align: center
|
text-align: center
|
||||||
font-size: 2.5rem
|
font-size: 2.5rem
|
||||||
|
|
|
@ -9,7 +9,7 @@ $outfit-banner-h-padding: 4px
|
||||||
$outfit-banner-v-padding: 2px
|
$outfit-banner-v-padding: 2px
|
||||||
$outfit-banner-inner-width: $outfit-inner-width - (2 * $outfit-banner-h-padding)
|
$outfit-banner-inner-width: $outfit-inner-width - (2 * $outfit-banner-h-padding)
|
||||||
|
|
||||||
body.fundraising-campaigns
|
body
|
||||||
+campaign-progress
|
+campaign-progress
|
||||||
color: $campaign-text-color
|
color: $campaign-text-color
|
||||||
|
|
||||||
|
|
14
app/assets/stylesheets/items/sources.sass
Normal file
14
app/assets/stylesheets/items/sources.sass
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
.nc-mall-items
|
||||||
|
list-style: none
|
||||||
|
display: flex
|
||||||
|
flex-wrap: wrap
|
||||||
|
gap: 1em
|
||||||
|
|
||||||
|
li
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
align-items: center
|
||||||
|
width: auto
|
||||||
|
|
||||||
|
.add-to-cart
|
||||||
|
font-size: 85%
|
|
@ -175,6 +175,14 @@ module ApplicationHelper
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Includes a stylesheet designed for this specific page of the app, which
|
||||||
|
# should be removed when navigating to another page. We use Turbo's
|
||||||
|
# `data-turbo-track="dynamic"` option to do this.
|
||||||
|
def page_stylesheet_link_tag(src, options={})
|
||||||
|
options = {data: {"turbo-track": "dynamic"}}.deep_merge(options)
|
||||||
|
stylesheet_link_tag src, options
|
||||||
|
end
|
||||||
|
|
||||||
def secondary_nav(&block)
|
def secondary_nav(&block)
|
||||||
content_for :before_flashes,
|
content_for :before_flashes,
|
||||||
content_tag(:nav, :id => 'secondary-nav', &block)
|
content_tag(:nav, :id => 'secondary-nav', &block)
|
||||||
|
|
|
@ -175,6 +175,10 @@ class Item < ApplicationRecord
|
||||||
@wanted || false
|
@wanted || false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def current_nc_price
|
||||||
|
nc_mall_record.current_price
|
||||||
|
end
|
||||||
|
|
||||||
def restricted_zones(options={})
|
def restricted_zones(options={})
|
||||||
options[:scope] ||= Zone.all
|
options[:scope] ||= Zone.all
|
||||||
options[:scope].find(restricted_zone_ids)
|
options[:scope].find(restricted_zone_ids)
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
class NCMallRecord < ApplicationRecord
|
class NCMallRecord < ApplicationRecord
|
||||||
belongs_to :item
|
belongs_to :item
|
||||||
|
|
||||||
|
def current_price
|
||||||
|
discount_price || price
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -126,5 +126,5 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% content_for :stylesheets do %>
|
<% content_for :stylesheets do %>
|
||||||
<%= stylesheet_link_tag "auth_users/edit" %>
|
<%= page_stylesheet_link_tag "auth_users/edit" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -66,5 +66,5 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<% content_for :stylesheets do %>
|
<% content_for :stylesheets do %>
|
||||||
<%= stylesheet_link_tag "devise/sessions/new" %>
|
<%= page_stylesheet_link_tag "devise/sessions/new" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -124,4 +124,4 @@
|
||||||
Thank you!!
|
Thank you!!
|
||||||
|
|
||||||
- content_for :stylesheets do
|
- content_for :stylesheets do
|
||||||
= stylesheet_link_tag 'fundraising/campaigns/show'
|
= page_stylesheet_link_tag 'fundraising/campaigns/show'
|
||||||
|
|
|
@ -48,4 +48,4 @@
|
||||||
= javascript_include_tag 'fundraising/donations/show', defer: true
|
= javascript_include_tag 'fundraising/donations/show', defer: true
|
||||||
|
|
||||||
- content_for :stylesheets do
|
- content_for :stylesheets do
|
||||||
= stylesheet_link_tag 'fundraising/donations/show'
|
= page_stylesheet_link_tag 'fundraising/donations/show'
|
||||||
|
|
|
@ -3,16 +3,53 @@
|
||||||
|
|
||||||
- if @nc_mall_items.present?
|
- if @nc_mall_items.present?
|
||||||
%h2 NC Mall items
|
%h2 NC Mall items
|
||||||
= render @nc_mall_items
|
:markdown
|
||||||
|
These items are available in the NC Mall right now! You can buy them
|
||||||
|
with Neocash, a special currency you can [purchase directly][nc]
|
||||||
|
from Neopets or redeem via [gift cards][gc].
|
||||||
|
|
||||||
|
[nc]: https://secure.nc.neopets.com/get-neocash
|
||||||
|
[gc]: https://secure.nc.neopets.com/nickcash-cards
|
||||||
|
%ul.nc-mall-items
|
||||||
|
- @nc_mall_items.each do |item|
|
||||||
|
%li
|
||||||
|
= render item
|
||||||
|
%button.add-to-cart{onclick: "alert('Todo!')"}
|
||||||
|
Buy (#{item.current_nc_price} NC)
|
||||||
|
|
||||||
- if @np_items.present?
|
- if @np_items.present?
|
||||||
%h2 Neopoint items
|
%h2 Neopoint items
|
||||||
|
:markdown
|
||||||
|
These items can be purchased with Neopoints. For less-expensive items,
|
||||||
|
check the [Shop Wizard][wiz] first. Otherwise, try the
|
||||||
|
[Trading Post][tp] or [Auction Genie][ag]. Dress to Impress doesn't
|
||||||
|
track Neopoint item prices, but other fansites do!
|
||||||
|
|
||||||
|
[wiz]: https://www.neopets.com/shops/wizard.phtml
|
||||||
|
[tp]: https://www.neopets.com/island/tradingpost.phtml?type=browse
|
||||||
|
[ag]: https://www.neopets.com/genie.phtml
|
||||||
= render @np_items
|
= render @np_items
|
||||||
|
|
||||||
- if @pb_items.present?
|
- if @pb_items.present?
|
||||||
%h2 Paintbrush items
|
%h2 Paintbrush items
|
||||||
|
:markdown
|
||||||
|
These items are part of a paintbrush set. Once you paint your pet,
|
||||||
|
these items will be semi-permanently added to your Closet, even if your
|
||||||
|
pet changes color again! You can use this to mix-and-match styles for
|
||||||
|
"cross-paint" outfits.
|
||||||
= render @pb_items
|
= render @pb_items
|
||||||
|
|
||||||
- if @other_nc_items.present?
|
- if @other_nc_items.present?
|
||||||
%h2 Other NC items
|
%h2 Neocash items (Capsules, Dyeworks, events, retired, etc.)
|
||||||
|
:markdown
|
||||||
|
These items are part of the Neocash economy and can't be purchased with
|
||||||
|
Neopoints. We don't track all the details of how to get these items
|
||||||
|
right now! Sometimes they're available via packs or capsules or events
|
||||||
|
in the [NC Mall][mall]. Sometimes they're retired and can't be
|
||||||
|
purchased at all anymore, and can only be obtained via gifts or trades.
|
||||||
|
|
||||||
|
[mall]: https://ncmall.neopets.com/
|
||||||
= render @other_nc_items
|
= render @other_nc_items
|
||||||
|
|
||||||
|
- content_for :stylesheets do
|
||||||
|
= page_stylesheet_link_tag "items/sources"
|
||||||
|
|
Loading…
Reference in a new issue