This file contains hidden or 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
# E.g. You have this code to format float values in your view | |
module ApplicationHelper | |
def format_number(value, precision: 4) | |
number_with_precision(value, precision:, strip_insignificant_zeros: true, delimiter: ',') | |
end | |
end | |
# You can test the method format_number() using `helper.method_name` in rails console | |
$ rails c | |
=> helper.format_number(120.0019) |
This file contains hidden or 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
import { Controller } from "@hotwired/stimulus" | |
export default class extends Controller { | |
static targets = ["source", "checkbox"] | |
copy() { | |
const textToCopy = this.sourceTarget.innerText | |
if (!this.checkboxTarget.checked && this.isManuallyTriggeredClick) { | |
this.isManuallyTriggeredClick = false |
This file contains hidden or 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
def date_in_danish_time(date_time) | |
date_array = | |
date_time.strftime("%Y %m %d").split.map { |string| Integer(string, 0) } | |
danish_date = Date.new(*date_array).in_time_zone("Copenhagen") | |
# extracting offset from the date will help us in also taking care of Daylight Saving | |
danish_date_offset = danish_date.formatted_offset | |
date_time_array = | |
date_time | |
.strftime("%Y %m %d %H %M %S") |