1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-19 15:38:38 +00:00

Update lib-content-view.js

This commit is contained in:
孙永强 2025-04-09 13:30:36 +08:00
parent 524002ae62
commit a61d72cc7a

View File

@ -163,6 +163,17 @@ class LibContentView extends React.Component {
}
onMessageCallback = (data) => {
/**
* data structure:
* {
* type: 'file-lock-changed',
* content: {
* path: '/1/2/a.sdoc',
* change_event: 'locked',
* expire: -1
* }
* }
*/
if (data.type === 'file-lock-changed') {
const getStandardizedPath = (path) => {
return path.replace(/^\/+/, '');
@ -177,11 +188,11 @@ class LibContentView extends React.Component {
return lastSlashIndex === -1 ? '' : path.slice(0, lastSlashIndex);
};
let dirRouter = this.state.path;
dirRouter = dirRouter.slice(1);
const notifRouter = getNotificationPath(data);
let dirPath = this.state.path;
dirPath = dirPath.slice(1);
const notifPath = getNotificationPath(data);
if (dirRouter === notifRouter) {
if (dirPath === notifPath) {
const dirent = { name: data.content.path.split('/').pop() };
if (data.content.change_event === 'locked') {
if (data.content.expire === -1) {