mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
- moved ugly html newlines into the stylesheet - renamed temporary var for datePicker’s ngmodel from _dateString to _tempDateForPicker - renamed open -> openDatePicker, and have the function track datePicker’s open/closed state on a per task instead of global basis
272 lines
16 KiB
Plaintext
272 lines
16 KiB
Plaintext
li(bindonce='list', id='task-{{::task.id}}', ng-repeat='task in obj[list.type+"s"] | conditionalOrderBy: list.view=="dated":"date"', class='task {{Shared.taskClasses(task, user.filters, user.preferences.dayStart, user.lastCron, list.showCompleted, main)}}', ng-click='spell && (list.type != "reward") && castEnd(task, "task", $event)', ng-class='{"cast-target":spell && (list.type != "reward"), "locked-task":obj._locked === true}', popover-trigger='mouseenter', data-popover-html="{{task.popoverOpen ? '' : task.notes | markdown}}", popover-placement="top", popover-append-to-body='{{::modal ? "false":"true"}}', ng-show='shouldShow(task, list, user.preferences)')
|
|
// right-hand side control buttons
|
|
.task-meta-controls
|
|
|
|
// Due Date
|
|
span(ng-if='task.type=="todo" && task.date')
|
|
span(ng-class='{"label label-danger":(moment(task.date).isBefore(_today, "days") && !task.completed)}') {{task.date | date:(user.preferences.dateFormat.indexOf('yyyy') == 0 ? user.preferences.dateFormat.substr(5) : user.preferences.dateFormat.substr(0,5))}}
|
|
|
|
// Streak
|
|
|
|
|
span(ng-show='task.streak') {{task.streak}}
|
|
span(tooltip=env.t('streakCounter'))
|
|
span.glyphicon.glyphicon-forward
|
|
|
|
|
|
|
// Icons only available if you own the tasks (aka, hidden from challenge stats)
|
|
span(ng-if='!obj._locked')
|
|
a(ng-click='pushTask(task,$index,"top")', tooltip=env.t('pushTaskToTop'))
|
|
span.glyphicon.glyphicon-open
|
|
// a(ng-click='pushTask(task,$index,"bottom")', tooltip=env.t('pushTaskToBottom'))
|
|
// span.glyphicon.glyphicon-import
|
|
// // glyphicon-import or glyphicon-save or glyphicon-sort-by-attributes
|
|
a.badge(ng-if='task.checklist[0]', ng-class='{"badge-success":checklistCompletion(task.checklist) == task.checklist.length}', ng-click='collapseChecklist(task)', tooltip=env.t('expandCollapse'))
|
|
|{{checklistCompletion(task.checklist)}}/{{task.checklist.length}}
|
|
span.glyphicon.glyphicon-tags(tooltip='{{Shared.appliedTags(user.tags, task.tags)}}', ng-hide='Shared.noTags(task.tags)')
|
|
// edit
|
|
a(ng-hide='task._editing', ng-click='editTask(task)', tooltip=env.t('edit'))
|
|
|
|
|
span.glyphicon.glyphicon-pencil(ng-hide='task._editing')
|
|
|
|
|
a(ng-hide='!task._editing', ng-click='editTask(task)', tooltip=env.t('cancel'))
|
|
span.glyphicon.glyphicon-remove(ng-hide='!task._editing')
|
|
|
|
|
// save
|
|
a(ng-hide='!task._editing', ng-click='editTask(task);saveTask(task)', tooltip=env.t('save'))
|
|
span.glyphicon.glyphicon-ok(ng-hide='!task._editing')
|
|
|
|
|
//challenges
|
|
span(ng-if='task.challenge.id')
|
|
span(ng-if='task.challenge.broken')
|
|
span.glyphicon.glyphicon-bullhorn(style='background-color:red;', ng-click='task._editing = true', tooltip=env.t('brokenChaLink') tooltip-placement='right')
|
|
|
|
|
span(ng-if='!task.challenge.broken')
|
|
span.glyphicon.glyphicon-bullhorn(tooltip=env.t('challenge'))
|
|
|
|
|
// delete
|
|
a(ng-if='!task.challenge.id', ng-click='removeTask(task, obj[list.type+"s"])', tooltip=env.t('delete'))
|
|
span.glyphicon.glyphicon-trash
|
|
|
|
|
|
|
// chart
|
|
a(ng-show='task.history', ng-click='toggleChart(obj._id+task.id, task)', tooltip=env.t('progress'))
|
|
span.glyphicon.glyphicon-signal
|
|
|
|
|
// notes
|
|
span.task-notes(ng-show='task.notes && !task._editing', ng-click='task.popoverOpen = !task.popoverOpen', popover-trigger='click', data-popover-html="{{task.notes | markdown}}", popover-placement="top", popover-append-to-body='{{::modal ? "false":"true"}}')
|
|
span.glyphicon.glyphicon-comment
|
|
|
|
|
|
|
// left-hand side checkbox
|
|
.task-controls.task-primary(ng-if='!task._editing')
|
|
|
|
// Habits
|
|
.task-actions(ng-if='::task.type=="habit"')
|
|
// score() is overridden in challengesCtrl to do nothing
|
|
a(ng-if='task.up', ng-click='applyingAction || score(task,"up")')
|
|
span.glyphicon.glyphicon-plus
|
|
a(ng-if='task.down', ng-click='applyingAction || score(task,"down")')
|
|
span.glyphicon.glyphicon-minus
|
|
|
|
// Rewards
|
|
span(ng-show='task.type=="reward"')
|
|
a.money.btn-buy(ng-class='{highValue: task.value >= 1000}', ng-click='score(task, "down")')
|
|
span.shop_gold
|
|
span.reward-cost {{task.value}}
|
|
// Daily & Todos
|
|
span.task-checker.action-yesno(ng-if='::task.type=="daily" || task.type=="todo"')
|
|
input.visuallyhidden.focusable(ng-if='$state.includes("tasks")', id='box-{{obj._id}}_{{task.id}}', type='checkbox', ng-model='task.completed', ng-change='task.type=="todo" && pushTask(task,$index,"bottom"); changeCheck(task)')
|
|
input.visuallyhidden.focusable(ng-if='!$state.includes("tasks")', id='box-{{obj._id}}_{{task.id}}', type='checkbox')
|
|
label(for='box-{{obj._id}}_{{task.id}}')
|
|
|
|
// main content
|
|
div.task-text(ng-dblclick='task._editing ? saveTask(task) : editTask(task)')
|
|
markdown(text='task.text',target='_blank')
|
|
//-| {{task.text}}
|
|
|
|
div(ng-if='task.checklist && !$state.includes("options.social.challenges") && !task.collapseChecklist && !task._editing')
|
|
fieldset.option-group.task-checklist
|
|
label.checkbox(ng-repeat='item in task.checklist')
|
|
input(type='checkbox',ng-model='item.completed',ng-change='saveTask(task,true)')
|
|
markdown(text='item.text',target='_blank')
|
|
|
|
// edit/options dialog
|
|
div(ng-if='task._editing')
|
|
.task-options
|
|
|
|
// Broken Challenge
|
|
.well(ng-if='task.challenge.broken')
|
|
div(ng-if='task.challenge.broken=="TASK_DELETED"')
|
|
p=env.t('brokenTask')
|
|
p
|
|
a(ng-click='unlink(task, "keep")')=env.t('keepIt')
|
|
|
|
|
a(ng-click="removeTask(task, obj[list.type+'s'])")=env.t('removeIt')
|
|
div(ng-if='task.challenge.broken=="CHALLENGE_DELETED"')
|
|
p
|
|
|
|
|
=env.t('brokenChallenge')
|
|
p
|
|
a(ng-click='unlink(task, "keep-all")')=env.t('keepThem')
|
|
| |
|
|
a(ng-click='unlink(task, "remove-all")')=env.t('removeThem')
|
|
div(ng-if='task.challenge.broken=="CHALLENGE_CLOSED"')
|
|
p
|
|
!=env.t('challengeCompleted', {user: "{{task.challenge.winner}}"})
|
|
p
|
|
a(ng-click='unlink(task, "keep-all")')=env.t('keepThem')
|
|
| |
|
|
a(ng-click='unlink(task, "remove-all")')=env.t('removeThem')
|
|
//div(ng-if='task.challenge.broken=="UNSUBSCRIBED"')
|
|
p=env.t('unsubChallenge')
|
|
p
|
|
a(ng-click="unlink(task, 'keep-all')")=env.t('keepThem')
|
|
| |
|
|
a(ng-click="unlink(task, 'remove-all')")=env.t('removeThem')
|
|
|
|
// Checklists
|
|
.task-checklist-edit(ng-if='!$state.includes("options.social.challenges")')
|
|
ul
|
|
li
|
|
button(type='button', ng-if='!task.checklist[0] && (task.type=="daily" || task.type=="todo")',ng-click='addChecklist(task)')
|
|
span.glyphicon.glyphicon-tasks
|
|
span=env.t('addChecklist')
|
|
form.checklist-form(ng-if='task.checklist')
|
|
fieldset.option-group(ng-if='!$state.includes("options.social.challenges")')
|
|
legend.option-title
|
|
span.hint(popover=env.t('checklistText'),popover-trigger='mouseenter',popover-placement='bottom')=env.t('checklist')
|
|
ul(hrpg-sort-checklist)
|
|
li(ng-repeat='item in task.checklist')
|
|
//input(type='checkbox',ng-model='item.completed',ng-change='saveTask(task,true)')
|
|
//-,ng-blur='saveTask(task,true)')
|
|
span.checklist-icon.glyphicon.glyphicon-resize-vertical()
|
|
input(type='text',ng-model='item.text', ui-keyup="{'13':'addChecklistItem(task,$event,$index)','38 40':'navigateChecklist(task,$index,$event)'}")
|
|
a(ng-click='removeChecklistItem(task,$event,$index,true)')
|
|
span.glyphicon.glyphicon-trash(tooltip=env.t('delete'))
|
|
|
|
form(ng-submit='saveTask(task,false,true)')
|
|
// text & notes
|
|
fieldset.option-group
|
|
label.option-title=env.t('text')
|
|
input.option-content(type='text', ng-model='task.text', required, ng-disabled='task.challenge.id')
|
|
|
|
label.option-title=env.t('extraNotes')
|
|
textarea.option-content(rows='3', ng-model='task.notes', ng-model-options="{debounce: 1000}")
|
|
|
|
// if Habit, plus/minus command options
|
|
fieldset.option-group.plusminus(ng-if='task.type=="habit" && !task.challenge.id')
|
|
legend.option-title=env.t('direction/Actions')
|
|
span.task-checker
|
|
input.visuallyhidden.focusable(id='{{obj._id}}_{{task.id}}-option-plus', type='checkbox', ng-model='task.up')
|
|
label(for='{{obj._id}}_{{task.id}}-option-plus')
|
|
span.task-checker
|
|
input.visuallyhidden.focusable(id='{{obj._id}}_{{task.id}}-option-minus', type='checkbox', ng-model='task.down')
|
|
label(for='{{obj._id}}_{{task.id}}-option-minus')
|
|
|
|
// if Daily, calendar
|
|
fieldset.option-group.calendar(ng-if='::task.type=="daily"', class="option-group")
|
|
.dailies
|
|
legend.option-title=env.t('repeat')
|
|
|
|
// Choose the frequency
|
|
ul.repeat-frequency
|
|
li
|
|
button(ng-class='{active: task.frequency=="daily"}', type='button', ng-click='task.frequency="daily"')='Daily'
|
|
li
|
|
button(ng-class='{active: task.frequency=="weekly"}', type='button', ng-click='task.frequency="weekly"')='Weekly'
|
|
|
|
// If frequency is daily
|
|
div.repeat-frequency(ng-show='task.frequency=="daily"')
|
|
div.repeat-daily
|
|
| Once every
|
|
select(ng-model='task.everyX')
|
|
option(ng-repeat='x in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]') {{x}}
|
|
| days
|
|
|
|
// If frequency is weekly
|
|
div.repeat-frequency(ng-show='task.frequency=="weekly"')
|
|
div.repeat-weekly
|
|
| Once every
|
|
select(ng-model='task.everyX')
|
|
option(ng-repeat='x in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]') {{x}}
|
|
| weeks on these days:
|
|
|
|
ul.repeat-days(bindonce)
|
|
// note, does not use data-toggle="buttons-checkbox" - it would interfere with our own click binding
|
|
li
|
|
button(ng-class='{active: task.repeat.su}', type='button', ng-click='task.challenge.id || (task.repeat.su = !task.repeat.su)') {{::moment.weekdaysMin(0)}}
|
|
li
|
|
button(ng-class='{active: task.repeat.m}', type='button', ng-click='task.challenge.id || (task.repeat.m = !task.repeat.m)') {{::moment.weekdaysMin(1)}}
|
|
li
|
|
button(ng-class='{active: task.repeat.t}', type='button', ng-click='task.challenge.id || (task.repeat.t = !task.repeat.t)') {{::moment.weekdaysMin(2)}}
|
|
li
|
|
button(ng-class='{active: task.repeat.w}', type='button', ng-click='task.challenge.id || (task.repeat.w = !task.repeat.w)') {{::moment.weekdaysMin(3)}}
|
|
li
|
|
button(ng-class='{active: task.repeat.th}', type='button', ng-click='task.challenge.id || (task.repeat.th = !task.repeat.th)') {{::moment.weekdaysMin(4)}}
|
|
li
|
|
button(ng-class='{active: task.repeat.f}', type='button', ng-click='task.challenge.id || (task.repeat.f= !task.repeat.f)') {{::moment.weekdaysMin(5)}}
|
|
li
|
|
button(ng-class='{active: task.repeat.s}', type='button', ng-click='task.challenge.id || (task.repeat.s = !task.repeat.s)') {{::moment.weekdaysMin(6)}}
|
|
|
|
label.option-title=env.t('startDate')
|
|
p(class='input-group')
|
|
input(type='text' class='form-control' datepicker-popup ng-model='task._tempDateForPicker' ng-change='updateTaskStartDate(task)' is-open='task._isDatePickerOpen')
|
|
span(class='input-group-btn')
|
|
button(type="button" ng-click="openDatePicker($event, task)")
|
|
span.input-group-addon.glyphicon.glyphicon-calendar
|
|
|
|
|
|
// if Reward, pricing
|
|
fieldset.option-group.option-short(ng-if='task.type=="reward" && !task.challenge.id')
|
|
legend.option-title=env.t('price')
|
|
input.option-content(type='number', size='16', min='0', step="any", ng-model='task.value')
|
|
.money.input-suffix
|
|
span.shop_gold
|
|
|
|
// if Todos, the due date
|
|
fieldset.option-group(ng-if='task.type=="todo" && !task.challenge.id')
|
|
legend.option-title=env.t('dueDate')
|
|
input.option-content.datepicker(type='text', datepicker-popup='{{user.preferences.dateFormat}}', ng-model='task.date', is-open='datepickerOpened', ng-click='datepickerOpened = true')
|
|
|
|
// Tags
|
|
fieldset.option-group(ng-if='!$state.includes("options.social.challenges")')
|
|
p.option-title.mega(ng-click='task._tags = !task._tags', tooltip=env.t('expandCollapse'))=env.t('tags')
|
|
label.checkbox(ng-repeat='tag in user.tags', ng-class="{visuallyhidden: task._tags}")
|
|
input(type='checkbox', ng-model='task.tags[tag.id]')
|
|
markdown(text='tag.name')
|
|
|
|
// Advanced Options
|
|
span(ng-if='::task.type!="reward"')
|
|
p.option-title.mega(ng-click='task._advanced = !task._advanced', tooltip=env.t('expandCollapse'))=env.t('advancedOptions')
|
|
fieldset.option-group.advanced-option(ng-class="{visuallyhidden: task._advanced}")
|
|
legend.option-title
|
|
a.hint.priority-multiplier-help(href='http://habitrpg.wikia.com/wiki/Difficulty', target='_blank', popover-title=env.t('difficultyHelpTitle'), popover-trigger='mouseenter', popover=env.t('difficultyHelpContent'))=env.t('difficulty')
|
|
ul.priority-multiplier
|
|
li
|
|
button(type='button', ng-class='{active: task.priority==1 || !task.priority}', ng-click='task.challenge.id || (task.priority=1)')=env.t('easy')
|
|
li
|
|
button(type='button', ng-class='{active: task.priority==1.5}', ng-click='task.challenge.id || (task.priority=1.5)')=env.t('medium')
|
|
li
|
|
button(type='button', ng-class='{active: task.priority==2}', ng-click='task.challenge.id || (task.priority=2)')=env.t('hard')
|
|
//span(ng-if='task.type=="daily" && !task.challenge.id')
|
|
span(ng-if='task.type=="daily"')
|
|
legend.option-title.pull-left=env.t('restoreStreak')
|
|
input.option-content(type='number', ng-model='task.streak')
|
|
|
|
div(ng-if='(user.preferences.allocationMode == "taskbased" && user.preferences.automaticAllocation) || $state.is("options.social.challenges")')
|
|
legend.option-title.pull-left=env.t('attributes')
|
|
ul.task-attributes
|
|
li
|
|
button(type='button', ng-class='{active: task.attribute=="str"}', ng-click='task.attribute="str"')=env.t('physical')
|
|
li
|
|
button(type='button', ng-class='{active: task.attribute=="int"}', ng-click='task.attribute="int"')=env.t('mental')
|
|
li
|
|
button(type='button', ng-class='{active: task.attribute=="con"}', ng-click='task.attribute="con"')=env.t('social')
|
|
li
|
|
button(type='button', ng-class='{active: task.attribute=="per"}', ng-click='task.attribute="per"', popover=env.t('otherExamples'), popover-trigger='mouseenter', popover-placement='top')=env.t('other')
|
|
|
|
.save-close
|
|
button(type='submit')=env.t('saveAndClose')
|
|
|
|
div(class='{{obj._id}}{{task.id}}-chart', ng-show='charts[obj._id+task.id]')
|