-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
505 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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 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 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,42 @@ | ||
# frozen_string_literal: true | ||
|
||
class ContentBlocksController < ApplicationController | ||
before_action :set_content_block, only: %i[create update destroy] | ||
authorize_resource | ||
|
||
# GET /content_blocks | ||
def index | ||
@unexpired_blocks = ContentBlock.unexpired | ||
@expired_blocks = ContentBlock.expired | ||
end | ||
|
||
# POST /content_blocks | ||
def create | ||
@content_block.save! | ||
redirect_to content_blocks_path | ||
end | ||
|
||
# PATCH/PUT /content_blocks/1 | ||
def update | ||
@content_block.save! | ||
redirect_to content_blocks_path | ||
end | ||
|
||
# DELETE /content_blocks/1 | ||
def destroy | ||
@content_block.destroy | ||
redirect_to content_blocks_path | ||
end | ||
|
||
private | ||
|
||
# Use callbacks to share common setup or constraints between actions. | ||
def set_content_block | ||
@content_block = params[:id] ? ContentBlock.find(params[:id]) : ContentBlock.new | ||
return unless params[:content_block] | ||
|
||
start_at = params[:content_block][:start_at].in_time_zone('America/Los_Angeles') | ||
end_at = params[:content_block][:end_at].in_time_zone('America/Los_Angeles').end_of_day | ||
@content_block.attributes = { end_at: end_at, start_at: start_at, ordinal: params[:content_block][:ordinal], value: params[:content_block][:value] } | ||
end | ||
end |
This file contains 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 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,43 @@ | ||
import { Controller } from 'stimulus' | ||
|
||
export default class extends Controller { | ||
static targets = [ "value", "ordinal", "startAt", "endAt" ] | ||
|
||
display(event) { | ||
event.preventDefault() | ||
|
||
// Save the old HTML so we can cancel. | ||
this.existingHTML = this.element.innerHTML | ||
|
||
// Display the editor | ||
let template = document.getElementById('edit-row') | ||
this.element.innerHTML = template.innerHTML | ||
|
||
// Populate the form with the values for this row | ||
this.valueTarget.value = this.data.get('value') | ||
this.ordinalTarget.value = this.data.get('ordinal') | ||
this.startAtTarget.value = this.data.get('start_at') | ||
this.endAtTarget.value = this.data.get('end_at') | ||
} | ||
|
||
save(event) { | ||
// remove the new form fields | ||
document.querySelector('[data-target="content-block-new.form"').remove() | ||
|
||
// Update the form so it updates the current item. | ||
let form = document.querySelector('[data-target="content-block-form"]') | ||
form.action = this.data.get('url') | ||
|
||
// Set the patch method on the form | ||
var input = document.createElement("input"); | ||
input.type = 'hidden' | ||
input.name = '_method' | ||
input.value = 'patch' | ||
form.appendChild(input) | ||
} | ||
|
||
cancel(event) { | ||
event.preventDefault() | ||
this.element.innerHTML = this.existingHTML | ||
} | ||
} |
This file contains 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,23 @@ | ||
import { Controller } from 'stimulus' | ||
|
||
export default class extends Controller { | ||
static targets = [ "button", "form", "headerRow" ] | ||
|
||
display(event) { | ||
event.preventDefault() | ||
this.formTarget.classList.remove('d-none') | ||
// The header row doesn't display if there are no existing records, so display it now. | ||
this.headerRowTarget.classList.remove('d-none') | ||
this.buttonTarget.classList.add('d-none') | ||
} | ||
|
||
cancel(event) { | ||
event.preventDefault() | ||
this.hideForm() | ||
} | ||
|
||
hideForm() { | ||
this.formTarget.classList.add('d-none') | ||
this.buttonTarget.classList.remove('d-none') | ||
} | ||
} |
This file contains 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 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 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 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,28 @@ | ||
# frozen_string_literal: true | ||
|
||
class ContentBlock < ApplicationRecord | ||
ORDINAL_STRING = { 1 => 'Primary', 2 => 'Secondary' }.freeze | ||
scope :expired, -> { where('end_at < ?', current_time) } | ||
scope :unexpired, -> { where('end_at >= ?', current_time) } | ||
scope :active, -> { where('start_at < ? AND end_at >= ?', current_time, current_time) } | ||
scope :primary, -> { where(ordinal: 1) } | ||
scope :secondary, -> { where(ordinal: 2) } | ||
|
||
validates :ordinal, presence: true, inclusion: { in: [1, 2] } | ||
|
||
def self.current_time | ||
Time.now.in_time_zone('America/Los_Angeles') | ||
end | ||
|
||
def ordinal_string | ||
ORDINAL_STRING.fetch(ordinal) | ||
end | ||
|
||
def pacific_start | ||
start_at.in_time_zone('America/Los_Angeles') | ||
end | ||
|
||
def pacific_end | ||
end_at.in_time_zone('America/Los_Angeles') | ||
end | ||
end |
This file contains 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 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
Oops, something went wrong.