mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-06 09:10:06 +00:00
Merge branch 'conflict_warnings' of https://github.com/MatthieuParis/BookStack into MatthieuParis-conflict_warnings
This commit is contained in:
commit
756b55bbff
3 changed files with 31 additions and 0 deletions
app
resources/js/components
|
@ -43,6 +43,16 @@ class PageEditActivity
|
||||||
return trans('entities.pages_draft_edit_active.message', ['start' => $userMessage, 'time' => $timeMessage]);
|
return trans('entities.pages_draft_edit_active.message', ['start' => $userMessage, 'time' => $timeMessage]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the page has been updated since the draft has been saved.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function hasPageBeenUpdatedSinceDraftSaved(PageRevision $draft): bool
|
||||||
|
{
|
||||||
|
return $draft->page->updated_at->timestamp >= $draft->updated_at->timestamp;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the message to show when the user will be editing one of their drafts.
|
* Get the message to show when the user will be editing one of their drafts.
|
||||||
*
|
*
|
||||||
|
|
|
@ -258,6 +258,23 @@ class PageController extends Controller
|
||||||
return $this->jsonError(trans('errors.guests_cannot_save_drafts'), 500);
|
return $this->jsonError(trans('errors.guests_cannot_save_drafts'), 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check for active editing or time conflict
|
||||||
|
$warnings = [];
|
||||||
|
$jsonResponseWarning = '';
|
||||||
|
$editActivity = new PageEditActivity($page);
|
||||||
|
if ($editActivity->hasActiveEditing()) {
|
||||||
|
$warnings[] = $editActivity->activeEditingMessage();
|
||||||
|
}
|
||||||
|
$userDraft = $this->pageRepo->getUserDraft($page);
|
||||||
|
if ($userDraft !== null) {
|
||||||
|
if ($editActivity->hasPageBeenUpdatedSinceDraftSaved($userDraft)) {
|
||||||
|
$warnings[] = $editActivity->getEditingActiveDraftMessage($userDraft);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (count($warnings) > 0) {
|
||||||
|
$jsonResponseWarning = implode("\n", $warnings);
|
||||||
|
}
|
||||||
|
|
||||||
$draft = $this->pageRepo->updatePageDraft($page, $request->only(['name', 'html', 'markdown']));
|
$draft = $this->pageRepo->updatePageDraft($page, $request->only(['name', 'html', 'markdown']));
|
||||||
|
|
||||||
$updateTime = $draft->updated_at->timestamp;
|
$updateTime = $draft->updated_at->timestamp;
|
||||||
|
@ -265,6 +282,7 @@ class PageController extends Controller
|
||||||
return response()->json([
|
return response()->json([
|
||||||
'status' => 'success',
|
'status' => 'success',
|
||||||
'message' => trans('entities.pages_edit_draft_save_at'),
|
'message' => trans('entities.pages_edit_draft_save_at'),
|
||||||
|
'warning' => $jsonResponseWarning,
|
||||||
'timestamp' => $updateTime,
|
'timestamp' => $updateTime,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -119,6 +119,9 @@ class PageEditor {
|
||||||
}
|
}
|
||||||
this.draftNotifyChange(`${resp.data.message} ${Dates.utcTimeStampToLocalTime(resp.data.timestamp)}`);
|
this.draftNotifyChange(`${resp.data.message} ${Dates.utcTimeStampToLocalTime(resp.data.timestamp)}`);
|
||||||
this.autoSave.last = Date.now();
|
this.autoSave.last = Date.now();
|
||||||
|
if (resp.data.warning.length > 0) {
|
||||||
|
window.$events.emit('warning', resp.data.warning);
|
||||||
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
// Save the editor content in LocalStorage as a last resort, just in case.
|
// Save the editor content in LocalStorage as a last resort, just in case.
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue