4 Commits
v0.2 ... v0.5

7 changed files with 287 additions and 3 deletions

18
Asset/css/qualkard.css Normal file
View File

@@ -0,0 +1,18 @@
/* QualKard mastery badge (under the card title on the board). */
.qk-line {
margin-top: 2px;
}
.qk-badge {
display: inline-block;
padding: 0 6px;
border-radius: 3px;
color: #fff;
font-size: 0.85em;
font-weight: bold;
}
.qk-new { background: #e6b800; } /* unread */
.qk-low { background: #c0392b; } /* < 50% */
.qk-mid { background: #27ae60; } /* 50-89% */
.qk-high { background: #2980b9; } /* >= 90% */

View File

@@ -0,0 +1,99 @@
<?php
namespace Kanboard\Plugin\QualKard\Controller;
use Kanboard\Controller\BaseController;
use Kanboard\Core\Controller\AccessForbiddenException;
use Kanboard\Plugin\QualKard\Helper\QualKardHelper;
/**
* QualKard board actions, posted from the project Integrations page: set up the study board, reset
* all cards, or disable. Project-manager gated (the restructure is destructive).
*/
class QualKardController extends BaseController
{
/**
* Turn this project into a study board: rename the first 7 columns to the standard names (create
* or delete to reach exactly 7), move every card to Drafts, store the column roles, reset all
* cards to unread + armed-inert, and enable. Once-per-conversion, explicit + confirmed.
*/
public function setup()
{
$project = $this->authorize();
$helper = new QualKardHelper($this->container);
$names = array('Drafts', 'Study', 'Hairy', 'Hard', 'Medium', 'Easy', 'Done');
$columns = $this->columnModel->getAll($project['id']); // position-ordered rows
$ids = array();
for ($i = 0; $i < 7; $i++) {
if (isset($columns[$i])) {
$this->columnModel->update($columns[$i]['id'], $names[$i]);
$ids[$i] = (int) $columns[$i]['id'];
} else {
$ids[$i] = (int) $this->columnModel->create($project['id'], $names[$i]);
}
}
// Move every card to Drafts BEFORE deleting extras -- remove() is a raw DELETE (tasks cascade).
foreach ($this->taskFinderModel->getAll($project['id']) as $task) {
$this->taskPositionModel->movePosition($project['id'], $task['id'], $ids[0], 1, $task['swimlane_id'], false);
}
for ($i = 7, $n = count($columns); $i < $n; $i++) {
$this->columnModel->remove($columns[$i]['id']);
}
$roles = array('draft', 'study', 'hairy', 'hard', 'medium', 'easy', 'done');
foreach ($roles as $k => $role) {
$this->projectMetadataModel->save($project['id'], array('qualkard_col_'.$role => $ids[$k]));
}
$helper->resetAll($project['id']);
$this->projectMetadataModel->save($project['id'], array('qualkard_enabled' => 1));
$this->flash->success(t('QualKard study board is ready.'));
$this->redirectToIntegrations($project);
}
/**
* Reset every card on the board: unread, moved to Drafts, armed-inert. Keeps the columns.
*/
public function reset()
{
$project = $this->authorize();
(new QualKardHelper($this->container))->resetAll($project['id']);
$this->flash->success(t('All cards reset.'));
$this->redirectToIntegrations($project);
}
/**
* Disable QualKard on this board (non-destructive: leaves columns and cards as they are).
*/
public function disable()
{
$project = $this->authorize();
$this->projectMetadataModel->save($project['id'], array('qualkard_enabled' => 0));
$this->flash->success(t('QualKard disabled on this board.'));
$this->redirectToIntegrations($project);
}
// Project-manager gate + CSRF, shared by every action.
private function authorize()
{
$project = $this->getProject();
if (! $this->helper->user->hasProjectAccess('ProjectEditController', 'edit', $project['id'])) {
throw new AccessForbiddenException();
}
$this->checkCSRFForm();
return $project;
}
private function redirectToIntegrations(array $project)
{
$this->response->redirect($this->helper->url->to('ProjectViewController', 'integrations', array('project_id' => $project['id'])));
}
}

View File

@@ -3,6 +3,7 @@
namespace Kanboard\Plugin\QualKard\Helper;
use Kanboard\Core\Base;
use Kanboard\Model\TaskModel;
/**
* QualKard helper: the qualcard grading math (ported from Ruben's C program) plus the per-board gates.
@@ -118,4 +119,92 @@ class QualKardHelper extends Base
{
return (int) $this->projectMetadataModel->get($project_id, 'qualkard_col_'.$role, 0);
}
/**
* Write the inert RecoReco config for a card: move-mode to Study, fire from anywhere but Done,
* daily (innocuous -- QualKard sets the due date on each grade), anchor 0 so RecoReco skips it
* until the first grade arms it. QualKard never toggles recoreco_enabled again.
*
* @param int $task_id
* @param int $project_id
*/
public function arm($task_id, $project_id)
{
$this->taskMetadataModel->save($task_id, array(
'recoreco_enabled' => 1,
'recoreco_move' => 1,
'recoreco_target_column' => $this->col($project_id, 'study'),
'recoreco_trigger_column' => $this->col($project_id, 'done'),
'recoreco_trigger_invert' => 1,
'recoreco_frequency' => 'daily',
'recoreco_anchor' => 0,
));
}
/**
* Reset one card: move to Drafts, mark unread, arm inert, clear the due date.
*
* @param int $task_id
* @param int $project_id
*/
public function resetCard($task_id, $project_id)
{
$task = $this->taskFinderModel->getById($task_id);
if (empty($task)) {
return;
}
$this->taskPositionModel->movePosition($project_id, $task_id, $this->col($project_id, 'draft'), 1, (int) $task['swimlane_id'], false);
$this->taskMetadataModel->save($task_id, array('qualkard_avg' => '')); // '' = unread
$this->arm($task_id, $project_id);
$this->db->table(TaskModel::TABLE)->eq('id', $task_id)->update(array('date_due' => 0));
}
/**
* Reset every card on a board.
*
* @param int $project_id
*/
public function resetAll($project_id)
{
foreach ($this->taskFinderModel->getAll($project_id) as $task) {
$this->resetCard($task['id'], $project_id);
}
}
/**
* Grade a card by a score (a grade column's value): update the running average, compute the next
* due date, and arm the anchor. RecoReco moves the card from here.
*
* @param int $task_id
* @param float $score
*/
public function grade($task_id, $score)
{
$raw = $this->taskMetadataModel->get($task_id, 'qualkard_avg', '');
$old = ($raw === '' || $raw === null) ? null : (float) $raw;
$avg = self::nextAverage($old, $score);
$due = self::dueFrom($avg);
$this->taskMetadataModel->save($task_id, array(
'qualkard_avg' => (string) $avg,
'recoreco_anchor' => $due,
));
$this->db->table(TaskModel::TABLE)->eq('id', $task_id)->update(array('date_due' => $due));
}
/**
* The mastery badge (label + CSS class) for a card, from its stored average.
*
* @param int $task_id
* @return array
*/
public function cardBadge($task_id)
{
$raw = $this->taskMetadataModel->get($task_id, 'qualkard_avg', '');
$avg = ($raw === '' || $raw === null) ? null : (float) $raw;
return self::badge($avg);
}
}

View File

@@ -3,6 +3,7 @@
namespace Kanboard\Plugin\QualKard;
use Kanboard\Core\Plugin\Base;
use Kanboard\Model\TaskModel;
/**
* QualKard -- flashcard spaced repetition on Kanboard cards.
@@ -17,7 +18,43 @@ class Plugin extends Base
{
public function initialize()
{
// Hooks are wired in later versions (setup on Integrations, the grade handler, the badge).
$container = $this->container;
// Per-board setup/reset/disable on Settings -> Integrations.
$this->template->hook->attach('template:project:integrations', 'qualKard:project/integration');
// New card on a QualKard board -> reset it (unread, armed inert, moved to Drafts).
$this->hook->on('model:task:creation:aftersave', function ($task_id) use ($container) {
$helper = new \Kanboard\Plugin\QualKard\Helper\QualKardHelper($container);
$task = $container['taskFinderModel']->getById($task_id);
if (! empty($task) && $helper->isEnabled($task['project_id'])) {
$helper->resetCard($task_id, (int) $task['project_id']);
}
});
// Card dragged INTO a grade column -> grade it (RecoReco then handles the movement). The
// plugin on() wrapper drops the event, so we subscribe on the dispatcher to get the TaskEvent.
$this->dispatcher->addListener(TaskModel::EVENT_MOVE_COLUMN, function ($event) use ($container) {
$task = $event['task'];
$helper = new \Kanboard\Plugin\QualKard\Helper\QualKardHelper($container);
if (! $helper->isEnabled($task['project_id'])) {
return;
}
$dst = (int) $event['dst_column_id'];
foreach (array('hairy', 'hard', 'medium', 'easy') as $role) {
if ($dst === $helper->col($task['project_id'], $role)) {
$helper->grade($task['id'], \Kanboard\Plugin\QualKard\Helper\QualKardHelper::SCORE[$role]);
return;
}
}
});
// Mastery badge under the card title on the board, plus its stylesheet.
$this->template->hook->attach('template:board:private:task:after-title', 'qualKard:board/badge');
$this->template->hook->attach('template:board:public:task:after-title', 'qualKard:board/badge');
$this->hook->on('template:layout:css', array(
'template' => 'plugins/QualKard/Asset/css/qualkard.css',
));
}
public function getHelpers()
@@ -44,7 +81,7 @@ class Plugin extends Base
public function getPluginVersion()
{
return '0.2.0';
return '0.5.0';
}
public function getPluginHomepage()

12
Template/board/badge.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
// Mastery badge under the card title on a QualKard board. Server-rendered (survives board refresh).
// Yellow "new" for an unread card; otherwise a percent of 5, red (<50) / green (<90) / blue (>=90).
if (empty($task['project_id']) || ! $this->QualKardHelper->isEnabled($task['project_id'])) {
return;
}
$b = $this->QualKardHelper->cardBadge($task['id']);
?>
<div class="qk-line">
<span class="qk-badge <?= $b['class'] ?>"><?= $this->text->e($b['label']) ?></span>
</div>

View File

@@ -0,0 +1,29 @@
<h3><i class="fa fa-graduation-cap fa-fw" aria-hidden="true"></i> <?= t('QualKard') ?></h3>
<div class="listing">
<?php if (! $this->QualKardHelper->hasRecoReco()): ?>
<p class="form-help"><?= t('QualKard needs the RecoReco plugin (its move engine). Install RecoReco to use QualKard.') ?></p>
<?php elseif (! $this->QualKardHelper->isEnabled($project['id'])): ?>
<p class="form-help"><?= t('Turn this project into a spaced-repetition study board. This restructures the columns to Drafts | Study | Hairy | Hard | Medium | Easy | Done and moves every card to Drafts.') ?></p>
<form method="post" action="<?= $this->url->href('QualKardController', 'setup', array('plugin' => 'QualKard', 'project_id' => $project['id'])) ?>" onsubmit="return confirm('<?= t('This restructures the board and moves all cards to Drafts. Continue?') ?>');">
<?= $this->form->csrf() ?>
<button type="submit" class="btn btn-blue"><?= t('Set up QualKard study board') ?></button>
</form>
<?php else: ?>
<p class="form-help"><?= t('QualKard is enabled on this board.') ?></p>
<form method="post" style="display:inline" action="<?= $this->url->href('QualKardController', 'reset', array('plugin' => 'QualKard', 'project_id' => $project['id'])) ?>" onsubmit="return confirm('<?= t('Reset every card to unread and move them to Drafts. Continue?') ?>');">
<?= $this->form->csrf() ?>
<button type="submit" class="btn"><?= t('Reset all cards') ?></button>
</form>
<form method="post" style="display:inline" action="<?= $this->url->href('QualKardController', 'disable', array('plugin' => 'QualKard', 'project_id' => $project['id'])) ?>">
<?= $this->form->csrf() ?>
<button type="submit" class="btn btn-red"><?= t('Disable QualKard') ?></button>
</form>
<?php endif ?>
</div>
<hr>

View File

@@ -1 +1 @@
QualKard v0.2
QualKard v0.5