2016-02-12 23:52:43 +08:00
|
|
|
module SamplesHelper
|
|
|
|
|
|
|
|
def can_add_samples
|
2016-07-29 21:47:41 +08:00
|
|
|
module_page? && can_add_samples_to_module(@my_module)
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_remove_samples
|
2016-07-29 21:47:41 +08:00
|
|
|
module_page? && can_delete_samples_from_module(@my_module)
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_add_sample_related_things_to_organization
|
|
|
|
can_create_custom_field_in_organization(@organization) \
|
|
|
|
or can_create_sample_type_in_organization(@organization) \
|
|
|
|
or can_create_sample_group_in_organization(@organization)
|
|
|
|
end
|
|
|
|
|
|
|
|
def all_custom_fields
|
|
|
|
CustomField.where(organization_id: @organization).order(:created_at)
|
|
|
|
end
|
|
|
|
|
|
|
|
def num_of_columns
|
|
|
|
# Magic numbers, woohoo:
|
|
|
|
# - 1 for checkbox column,
|
|
|
|
# - 6 corresponds to initial number of basic sample columns (without
|
|
|
|
# custom)
|
|
|
|
1 + 6 + all_custom_fields.count
|
|
|
|
end
|
|
|
|
|
|
|
|
def form_submit_link
|
2016-07-29 21:47:41 +08:00
|
|
|
if module_page?
|
2016-02-12 23:52:43 +08:00
|
|
|
assign_samples_my_module_path(@my_module)
|
2016-07-29 22:20:35 +08:00
|
|
|
elsif project_page?
|
2016-02-12 23:52:43 +08:00
|
|
|
delete_samples_project_path(@project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|