be60fb0635
* Added subscriptions to all members when group subs * Added unsub when group cancels * Give user a subscription when they join a subbed group * Removed subscription when user leaves or is removed from group * Fixed linting issues: * Added tests for users with a subscription being upgraded to group plan * Added tests for checking if existing recurring user sub gets updated during group plan. Added better merging for plans * Added test for existing gift subscriptions * Added additional months to user when they have an existing recurring subscription and get upgraded to group sub * Adds test for user who has cancelled with date termined in the future * Added test to ensure date termined is reset * Added tests for extra months carrying over * Added test for gems bought field * Add tests to for fields that should remain when upgrading * Added test for all payment methods * Added prevention for when a user joins a second group plan * Fixed subscribing tests * Separated group plan payment tests * Added prevention of editing a user with a unlimited sub * Add tests to ensure group keeps plan if they are in two and leave one * Ensured users with two group plans do not get cancelled when on group plan is cancelled * Ensured users without group sub are untouched when group cancels * Fixed lint issues * Added new emails * Added fix for cron tests * Add restore to stubbed methods * Ensured cancelled group subscriptions are updated * Changed group plan exist check to check for date terminated * Updated you cannont delete active group message * Removed description requirement * Added upgrade group plan for Amazon payments * Fixed lint issues * Fixed broken tests * Fixed user delete tests * Fixed function calls * Hid cancel button if user has group plan * Hide difficulty from rewards * Prevented add user functions to be called when group plan is cancelled * Fixed merge issue * Correctly displayed group price * Added message when you are about to join canclled group plan * Fixed linting issues * Updated tests to have no redirect to homes * Allowed leaving a group with a canceld subscription * Fixed spelling issues * Prevented user from changing leader with active sub * Added payment details title to replace subscription title * Ensured we do not count leader when displaying upcoming cost * Prevented party tasks from being displayed twice * Prevented cancelling and already cancelled sub * Fixed styles of subscriptions * Added more specific mystery item tests * Fixed test to refer to leader * Extended test range to account for short months * Fixed merge conflicts * Updated yarn file * Added missing locales * Trigger notification * Removed yarn * Fixed locales * Fixed scope mispelling * Fixed line endings * Removed extra advanced options from rewards * Prevent group leader from leaving an active group plan * Fixed issue with extra months applied to cancelled group plan * Ensured member count is calculated when updatedGroupPlan * Updated amazon payment method constant name * Added comment to cancel sub user method * Fixed smantic issues * Added unite test for user isSubscribed and hasNotCancelled * Add tests for isSubscribed and hasNotCanceled * Changed default days remaining to 2 days for group plans * Fixed logic with adding canceled notice to group invite
92 lines
4.5 KiB
Plaintext
92 lines
4.5 KiB
Plaintext
div(ng-if='(task.type !== "reward") || (!obj.auth && obj.purchased && obj.purchased.active)')
|
|
button.advanced-options-toggle.option-title.mega(type='button',
|
|
ng-class='{active: task._edit._advanced}',
|
|
ng-click='task._edit._advanced = !task._edit._advanced', tooltip=env.t('expandCollapse'))
|
|
=env.t('advancedOptions')
|
|
|
|
fieldset.option-group.advanced-option(ng-if="task.userId" ng-show="task._edit._advanced")
|
|
legend.option-title
|
|
a.hint(href='http://habitica.wikia.com/wiki/Task_Alias', target='_blank', popover-trigger='mouseenter', popover="{{::env.t('taskAliasPopover')}} {{::task._edit.alias ? '\n\n\' + env.t('taskAliasPopoverWarning') : ''}}")=env.t('taskAlias')
|
|
input.form-control(ng-model='task._edit.alias' type='text' placeholder=env.t('taskAliasPlaceholder'))
|
|
|
|
include ./habits/frequency
|
|
|
|
fieldset.option-group.advanced-option(ng-show="task._edit._advanced", ng-if="!obj.auth && obj.purchased && obj.purchased.active")
|
|
group-tasks-actions(task='task', group='obj')
|
|
|
|
div(ng-show='task._edit._advanced')
|
|
div(ng-if='::task.type == "daily"')
|
|
.form-group
|
|
legend.option-title
|
|
span.hint(popover-title=env.t('startDateHelpTitle'), popover=env.t("startDateHelp"), popover-trigger='mouseenter')
|
|
=env.t('startDate')
|
|
|
|
input.form-control(type='text', ng-model='task._edit.startDate',
|
|
datepicker-popup='{{::user.preferences.dateFormat}}', is-open='datepickerOpened',
|
|
ng-click='datepickerOpened = true', ng-disabled='!canEdit(task)')
|
|
|
|
hr
|
|
|
|
fieldset.option-group.advanced-option(ng-show="task._edit._advanced && task.type !== 'reward'")
|
|
select.form-control(ng-model='task._edit.frequency', ng-disabled='!canEdit(task)')
|
|
option(value='daily')=env.t('daily')
|
|
option(value='weekly')=env.t('weekly')
|
|
option(value='monthly')=env.t('monthly')
|
|
option(value='yearly')=env.t('yearly')
|
|
|
|
//- select.form-control(ng-model='task._edit.frequency', ng-disabled='!canEdit(task)')
|
|
//- option(value='weekly')=env.t('repeatWeek')
|
|
//- option(value='daily')=env.t('repeatDays')
|
|
|
|
include ./dailies/repeat_options
|
|
|
|
.form-group(ng-show='task._edit.frequency === "monthly"')
|
|
legend.option-title=env.t('repeatsOn')
|
|
label
|
|
input(type="radio", ng-model='task._edit.repeatsOn', value='dayOfMonth')
|
|
=env.t('dayOfMonth')
|
|
label
|
|
input(type="radio", ng-model='task._edit.repeatsOn', value='dayOfWeek')
|
|
=env.t('dayOfWeek')
|
|
|
|
.form-group
|
|
legend.option-title=env.t('summary')
|
|
div {{summary}}
|
|
|
|
hr
|
|
|
|
fieldset.option-group.advanced-option(ng-show="task._edit._advanced && task.type !== 'reward'")
|
|
legend.option-title
|
|
a.hint.priority-multiplier-help(href='http://habitica.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._edit.priority==0.1}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=0.1)')
|
|
=env.t('trivial')
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.priority==1 || !task._edit.priority}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=1)')
|
|
=env.t('easy')
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.priority==1.5}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=1.5)')
|
|
=env.t('medium')
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.priority==2}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=2)')
|
|
=env.t('hard')
|
|
|
|
span(ng-if='task.type=="daily" && !$state.includes("options.social.challenges")')
|
|
legend.option-title.pull-left=env.t('restoreStreak')
|
|
input.option-content(type='number', ng-model='task._edit.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
|
|
each attribute, short in {str: 'strength', int: 'intelligence', con: 'constitution', per: 'perception'}
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.attribute=="#{short}"}',
|
|
ng-click='task._edit.attribute="#{short}"',
|
|
popover=env.t('#{attribute}Example'), popover-trigger='mouseenter', popover-placement='top')
|
|
=env.t(attribute)
|