Rocket.Chat.ReactNative/app/utils/isReadOnly.js

29 lines
817 B
JavaScript
Raw Normal View History

2020-04-13 13:56:30 +00:00
import RocketChat from '../lib/rocketchat';
import reduxStore from '../lib/createStore';
2020-04-13 13:56:30 +00:00
const canPostReadOnly = async ({ rid }) => {
// TODO: this is not reactive. If this permission changes, the component won't be updated
const postReadOnlyPermission = reduxStore.getState().permissions['post-readonly'];
const permission = await RocketChat.hasPermission([postReadOnlyPermission], rid);
return permission[0];
2020-04-13 13:56:30 +00:00
};
const isMuted = (room, user) => room && room.muted && room.muted.find && !!room.muted.find(m => m === user.username);
export const isReadOnly = async (room, user) => {
2020-04-13 13:56:30 +00:00
if (room.archived) {
return true;
}
if (isMuted(room, user)) {
return true;
}
if (room?.ro) {
const allowPost = await canPostReadOnly(room);
if (allowPost) {
return false;
}
return true;
2020-04-13 13:56:30 +00:00
}
return false;
2020-04-13 13:56:30 +00:00
};