Add better class names to modals to allow for better customized css targeting
This commit is contained in:
@@ -1,81 +0,0 @@
|
||||
import ModalBase from 'ember-cli-dunlop/mixins/modal-base'
|
||||
import Ember from 'ember'
|
||||
{set} = Ember
|
||||
relative_matcher = /(start of|end of) (day|week|month)/
|
||||
|
||||
export default ModalBase.extend
|
||||
scope_key: Ember.computed.alias 'modal_options.scope_key'
|
||||
content: Ember.computed.alias 'modal_options.content'
|
||||
error: ''
|
||||
new_filter_name_blank: Ember.computed 'new_filter_name', ->
|
||||
return true unless name = @get('new_filter_name')
|
||||
return true unless typeof name is 'string'
|
||||
return true if name.match /^\s*$/
|
||||
false
|
||||
willOpenModal: ->
|
||||
now = moment()
|
||||
if now.day() is 1
|
||||
@set 'cannot_create_filter_message', t('user_filters.cannot_create_on_monday')
|
||||
else if now.format('D') is '1'
|
||||
@set 'cannot_create_filter_message', t('user_filters.cannot_create_on_first_day_of_month')
|
||||
|
||||
user_filters: Ember.computed 'scope_key', ->
|
||||
return Ember.A() unless scope_key = @get('scope_key')
|
||||
@store.peekAll('dunlop/user-filter').filterBy('scope_key', scope_key).sortBy('name')
|
||||
actions:
|
||||
apply_filter: (user_filter) ->
|
||||
return @set('error', 'no content given') unless content = @get('content')
|
||||
return @set('error', 'content has no filters object to manipulate') unless typeof content.filters is 'object'
|
||||
Object.keys(content.filters).forEach (key) -> delete content.filters[key]
|
||||
for key, value of user_filter.get('filters')
|
||||
if typeof value is 'string' && match = value.match relative_matcher
|
||||
boundary_function = if match[1] is 'end of' then 'endOf' else 'startOf'
|
||||
period_name = switch match[2]
|
||||
when 'week' then 'isoWeek'
|
||||
else match[2]
|
||||
filter_value = moment()[boundary_function](period_name)
|
||||
else
|
||||
filter_value = switch value
|
||||
when 'today'
|
||||
boundary_function = if key.match(/_lt/) then 'endOf' else 'startOf'
|
||||
moment()[boundary_function]('day')
|
||||
else value
|
||||
set content.filters, key, filter_value
|
||||
content.reload() if typeof content.reload is 'function'
|
||||
@set 'globals.flash_message', "Filter #{user_filter.get('name')}"
|
||||
@send 'close'
|
||||
create_new_filter: ->
|
||||
return @set('error', 'no content given') unless content = @get('content')
|
||||
return @set('error', 'content has no filters object to manipulate') unless typeof content.filters is 'object'
|
||||
return @set('error', 'Current given content filters do not respond to toProperties method') unless typeof content.filters.toProperties is 'function'
|
||||
filters = content.filters.toProperties()
|
||||
today_date_string = moment().format('YYYY-MM-DD')
|
||||
start_of_week_string = moment().startOf('isoWeek').format('YYYY-MM-DD')
|
||||
end_of_week_string = moment().endOf('isoWeek').format('YYYY-MM-DD')
|
||||
start_of_month_string = moment().startOf('month').format('YYYY-MM-DD')
|
||||
end_of_month_string = moment().endOf('month').format('YYYY-MM-DD')
|
||||
filter_storage = {}
|
||||
for key, value of content.filters.toProperties()
|
||||
if typeof value is 'string' && match = value.match(/^(\d\d\d\d-\d\d-\d\d)/)
|
||||
date_value = switch match[1]
|
||||
when today_date_string then 'today'
|
||||
when start_of_week_string then 'start of week'
|
||||
when end_of_week_string then 'end of week'
|
||||
when start_of_month_string then 'start of month'
|
||||
when end_of_month_string then 'end of month'
|
||||
else value
|
||||
filter_storage[key] = date_value
|
||||
|
||||
# use relative notation if can be inferred
|
||||
else
|
||||
# literal copy
|
||||
filter_storage[key] = value
|
||||
new_filter = @store.createRecord 'dunlop/user-filter',
|
||||
name: @get('new_filter_name')
|
||||
scope_key: @get('scope_key')
|
||||
filters: filter_storage
|
||||
new_filter.save().then =>
|
||||
@store.query('dunlop/user-filter', q: {scope_key_eq: @get('scope_key')})
|
||||
@get('content').reload()
|
||||
@send 'close'
|
||||
|
||||
Reference in New Issue
Block a user