
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
nbrew-simple_time_select
Advanced tools
SIMPLE TIME SELECT PLUGIN
Ever wanted a time select component with only one select field? This simple plugin gives you that component and allows you to set minute intervals. If you set your minute interval to 15, you get options such as: "6:00 PM", "6:15 PM", "6:30 PM", etc.
If no minute interval is specified, the control defaults to a 15 minute interval. As you can see from the sample values above, this control also implements an AM/PM time format.
Also note that this component is great if you ONLY want the time from a user. As is, the code prevents the hidden date fields associated with the time_select helper from being created. This means that a couple lines of code on the controller side are necessary to make this work. See USAGE for details.
USAGE:
To create the time select:
<%= time_select "event", "time", { :default => Time.now.change(:hour => 21), :simple_time_select => true, :minute_interval => 20, :time_separator => "" } %>
Don't forget to include the time_separator option. Otherwise you will get an extra colon outside of the select field.
Simple time select also takes a start_hour and end_hour option to be specified in military format (between 0-23).
<%= time_select "event", "time", { :default => Time.now.change(:hour => 21), :simple_time_select => true, :minute_interval => 20, :time_separator => "", :start_hour => 10, :end_hour => 14 } %>
The start hour behaves as you would expect but the end_hour may not. If you specify the end_hour as 10, your time select will include 10:15, 10:30, 10:45. So the end_hour sets the last hour that the time select will include. Email me if you don't like this.
When the time is submitted, you will have the value in params on the controller side as shown below:
params[:event][:"time(i)"]
Simply add these lines of code to your handler to play nicely with ActiveRecord:
params[:event][:time] = Time.parse(params[:event][:"time(i)"]) params[:event].delete(:"time(i)")
Now the time will be correct, but the date will be the current date. Here are a couple options for changing the date:
params[:event][:time] = params[:event][:time].change(:year => <year_var>, :day => <day_var>, :month => <month_var>) *I do not use this method, you may need to cast params[:event][:time] to a Time object before applying "change" to it.
def before_validation # Assuming date is your Date variable self.time = self.time.change(:year => date.year, :day => date.day, :month => date.month) end
Feel free to send any questions to tonyamoyal@gmail.com
Author: Tony Amoyal tonyamoyal@gmail.com
Modifications by:
Homepage: http://github.com/tamoyal/simple_time_select/tree/master
FAQs
Unknown package
We found that nbrew-simple_time_select demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.