scoring = require './scoring' helpers = require './helpers' _ = require 'underscore' moment = require 'moment' character = require './character' module.exports.view = (view) -> view.fn 'taskClasses', (task) -> return unless task {type, completed, value, repeat} = task classes = type # show as completed if completed (naturally) or not required for today if type in ['todo', 'daily'] if completed or (repeat and repeat[helpers.dayMapping[moment().day()]]==false) classes += " completed" else classes += " uncompleted" if value < -20 classes += ' color-worst' else if value < -10 classes += ' color-worse' else if value < -1 classes += ' color-bad' else if value < 1 classes += ' color-neutral' else if value < 5 classes += ' color-good' else if value < 10 classes += ' color-better' else classes += ' color-best' return classes module.exports.app = (appExports, model) -> user = model.at('_user') appExports.addTask = (e, el, next) -> type = $(el).attr('data-task-type') list = model.at "_#{type}List" newModel = model.at('_new' + type.charAt(0).toUpperCase() + type.slice(1)) text = newModel.get() # Don't add a blank task; 20/02/13 Added a check for undefined value, more at issue #463 -lancemanfv if /^(\s)*$/.test(text) || text == undefined console.error "Task text entered was an empty string." return newModel.set '' switch type when 'habit' list.unshift {type: type, text: text, notes: '', value: 0, up: true, down: true} when 'reward' list.unshift {type: type, text: text, notes: '', value: 20 } when 'daily' list.unshift {type: type, text: text, notes: '', value: 0, repeat:{su:true,m:true,t:true,w:true,th:true,f:true,s:true}, completed: false } when 'todo' list.unshift {type: type, text: text, notes: '', value: 0, completed: false } # list.on 'set', '*.completed', (i, completed, previous, isLocal) -> # # Move the item to the bottom if it was checked off # list.move i, -1 if completed && isLocal appExports.del = (e, el) -> # Derby extends model.at to support creation from DOM nodes task = e.at() id = task.get('id') history = task.get('history') if history and history.length>2 # prevent delete-and-recreate hack on red tasks if task.get('value') < 0 result = confirm("Are you sure? Deleting this task will hurt you (to prevent deleting, then re-creating red tasks).") if result != true return # Cancel. Don't delete, don't hurt user else task.set('type','habit') # hack to make sure it hits HP, instead of performing "undo checkbox" scoring.score(model, id, direction:'down') # prevent accidently deleting long-standing tasks else result = confirm("Are you sure you want to delete this task?") return if result != true #TODO bug where I have to delete from _users.tasks AND _{type}List, # fix when query subscriptions implemented properly $('[rel=tooltip]').tooltip('hide') user.del('tasks.'+id) task.remove() appExports.clearCompleted = (e, el) -> todoIds = user.get('todoIds') removed = false _.each model.get('_todoList'), (task) -> if task.completed removed = true user.del('tasks.'+task.id) todoIds.splice(todoIds.indexOf(task.id), 1) if removed user.set('todoIds', todoIds) appExports.toggleDay = (e, el) -> task = model.at(e.target) if /active/.test($(el).attr('class')) # previous state, not current task.set('repeat.' + $(el).attr('data-day'), false) else task.set('repeat.' + $(el).attr('data-day'), true) appExports.toggleTaskEdit = (e, el) -> hideId = $(el).attr('data-hide-id') toggleId = $(el).attr('data-toggle-id') $(document.getElementById(hideId)).addClass('visuallyhidden') $(document.getElementById(toggleId)).toggleClass('visuallyhidden') appExports.toggleChart = (e, el) -> hideSelector = $(el).attr('data-hide-id') chartSelector = $(el).attr('data-toggle-id') historyPath = $(el).attr('data-history-path') $(document.getElementById(hideSelector)).hide() $(document.getElementById(chartSelector)).toggle() matrix = [['Date', 'Score']] for obj in model.get(historyPath) date = +new Date(obj.date) readableDate = moment(date).format('MM/DD') matrix.push [ readableDate, obj.value ] data = google.visualization.arrayToDataTable matrix options = { title: 'History' #TODO use current background color: $(el).css('background-color), but convert to hex (see http://goo.gl/ql5pR) backgroundColor: 'whiteSmoke' } chart = new google.visualization.LineChart(document.getElementById( chartSelector )) chart.draw(data, options) appExports.changeContext = (e, el) -> # Get the data from the element targetSelector = $(el).attr('data-target') newContext = $(el).attr('data-context') newActiveNav = $(el).parent('li') # If the clicked nav is already active, do nothing if newActiveNav.hasClass('active') return # Find the old active nav and context oldActiveNav = $(el).closest('ul').find('> .active') oldContext = oldActiveNav.find('a').attr('data-context') # Set the new active nav oldActiveNav.removeClass('active') newActiveNav.addClass('active') # Set the new context on the target target = $(targetSelector) target.removeClass(oldContext) target.addClass(newContext) ### Call scoring functions for habits & rewards (todos & dailies handled below) ### appExports.score = (e, el) -> task= model.at $(el).parents('li')[0] taskObj = task.get() direction = $(el).attr('data-direction') # set previous state for undo model.set '_undo', stats: _.clone user.get('stats') task: _.clone taskObj scoring.score(model, taskObj.id, direction) ### This is how we handle appExports.score for todos & dailies. Due to Derby's special handling of `checked={:task.completd}`, the above function doesn't work so we need a listener here ### user.on 'set', 'tasks.*.completed', (i, completed, previous, isLocal, passed) -> return if passed? && passed.cron # Don't do this stuff on cron direction = if completed then 'up' else 'down' # set previous state for undo taskObj = _.clone user.get("tasks.#{i}") taskObj.completed = previous console.log taskObj model.set '_undo', stats: _.clone user.get('stats') task: taskObj scoring.score(model, i, direction) ### Undo ### appExports.undo = () -> undo = model.get '_undo' batch = character.BatchUpdate(model) batch.startTransaction() _.each undo.stats, (val, key) -> batch.set "stats.#{key}", val taskPath = "tasks.#{undo.task.id}" _.each undo.task, (val, key) -> return if key in ['id', 'type'] # strange bugs in this world: https://workflowy.com/shared/a53582ea-43d6-bcce-c719-e134f9bf71fd/ if key is 'completed' user.pass({cron:true}).set("#{taskPath}.completed",val) else batch.set "#{taskPath}.#{key}", val batch.commit() model.del '_undo' appExports.tasksToggleAdvanced = (e, el) -> $(el).next('.advanced-option').toggleClass('visuallyhidden') appExports.tasksSaveAndClose = -> # When they update their notes, re-establish tooltip & popover $('[rel=tooltip]').tooltip() $('[rel=popover]').popover() appExports.tasksSetPriority = (e, el) -> dataId = $(el).parent('[data-id]').attr('data-id') #"_user.tasks.#{dataId}" model.at(e.target).set 'priority', $(el).attr('data-priority')