Attualmente sto configurando un elenco di directory per un cliente e vogliamo dare all'utente maggiore flessibilità. Quindi:consenti all'utente di impostare blocchi per giorni:
Abbiamo un giorno (numero intero 1-7), si apre (ora), chiude (orario) e alcuni negozi o luoghi d'interesse hanno orari di apertura estivi e invernali, oppure fanno vacanze. Secondo schema.org devi aggiungere valid_from (datetime) e valid_through (datetime).
Con questa configurazione l'utente può creare ciò che vuole:
# migration
class CreateOpeningHours < ActiveRecord::Migration
def change
create_table :opening_hours do |t|
t.integer :entry_id # your model reference
t.integer :day
t.time :closes
t.time :opens
t.datetime :valid_from
t.datetime :valid_through
end
end
end
Esempio per il modello:
class OpeningHour < ActiveRecord::Base
belongs_to :entry
validates_presence_of :day, :closes, :opens, :entry_id
validates_inclusion_of :day, :in => 1..7
validate :opens_before_closes
validate :valid_from_before_valid_through
# sample validation for better user feedback
validates_uniqueness_of :opens, scope: [:entry_id, :day]
validates_uniqueness_of :closes, scope: [:entry_id, :day]
protected
def opens_before_closes
errors.add(:closes, I18n.t('errors.opens_before_closes')) if opens && closes && opens >= closes
end
def valid_from_before_valid_through
errors.add(:valid_through, I18n.t('errors.valid_from_before_valid_through')) if valid_from && valid_through && valid_from >= valid_through
end
end
Con quella configurazione puoi creare facilmente un is_open? metodo nel tuo modello. Attualmente non ho impostato is_open? metodo, ma se qualcuno ha bisogno, dammi un colpo! Penso che lo finirò nei prossimi giorni.