fix: wait for file action api

and remove jQuery from filelist script

fix #92
pull/93/head
sualko 2020-10-22 11:00:15 +02:00
parent 93154c9556
commit da6657b2a0
2 changed files with 61 additions and 63 deletions

View File

@ -1,9 +1,9 @@
import axios from '@nextcloud/axios';
export enum ShareType {
User = OC.Share.SHARE_TYPE_USER,
Group = OC.Share.SHARE_TYPE_GROUP,
Circle = OC.Share.SHARE_TYPE_CIRCLE
User = 0, // OC.Share.SHARE_TYPE_USER
Group = 1, // OC.Share.SHARE_TYPE_GROUP
Circle = 7, // OC.Share.SHARE_TYPE_CIRCLE
}
export enum Permission { Admin, Moderator, User }

View File

@ -1,24 +1,10 @@
import axios from '@nextcloud/axios';
import { generateOcsUrl, generateUrl } from '@nextcloud/router';
import { Room } from './Common/Api';
import { api } from './Common/Api';
declare const OCA: any;
class BigBlueButton {
public async getRooms(): Promise<Room[]> {
const response = await axios.get(OC.generateUrl('/apps/bbb/rooms'));
return response.data;
}
}
$(() => {
if (!OCA?.Files?.fileActions) {
return;
}
const mimeTypes = [
const mimeTypes = [
'application/pdf',
'application/vnd.oasis.opendocument.presentation',
'application/vnd.oasis.opendocument.text',
@ -34,16 +20,29 @@ $(() => {
'image/png',
'text/plain',
'text/rtf',
];
const bbb = new BigBlueButton();
];
bbb.getRooms().then(rooms => {
rooms.forEach(room => {
mimeTypes.forEach(mime => registerFileAction(mime, room.id, room.uid, room.name));
});
async function createDirectShare(fileId: number): Promise<string> {
const url = generateOcsUrl('apps/dav/api/v1', 1) + 'direct';
const createResponse = await axios.post(url, {
fileId,
});
function registerFileAction(mime, id, uid, name) {
return createResponse.data?.ocs?.data?.url;
}
async function share(fileId: number, filename: string, roomUid) {
const shareUrl = await createDirectShare(fileId);
const joinUrl = generateUrl('/apps/bbb/b/{uid}?u={url}&filename={filename}', {
uid: roomUid,
url: shareUrl,
filename,
});
window.open(joinUrl, '_blank', 'noopener,noreferrer');
}
function registerFileAction(mime, id, uid, name) {
OCA.Files.fileActions.registerAction({
name: 'bbb-' + id,
displayName: name,
@ -54,25 +53,24 @@ $(() => {
share(context.fileInfoModel.id, fileName, uid);
},
});
}
function addRoomsAsFileAction() {
if (!OCA?.Files?.fileActions) {
console.warn('[BBB] "OCA.Files.fileActions" not available');
return;
}
async function share(fileId: number, filename: string, roomUid) {
const shareUrl = await createDirectShare(fileId);
const joinUrl = generateUrl('/apps/bbb/b/{uid}?u={url}&filename={filename}', {
uid: roomUid,
url: shareUrl,
filename,
api.getRooms().then(rooms => {
rooms.forEach(room => {
mimeTypes.forEach(mime => registerFileAction(mime, room.id, room.uid, room.name));
});
window.open(joinUrl, '_blank', 'noopener,noreferrer');
}
async function createDirectShare(fileId: number): Promise<string> {
const url = generateOcsUrl('apps/dav/api/v1', 1) + 'direct';
const createResponse = await axios.post(url, {
fileId,
});
}
return createResponse.data?.ocs?.data?.url;
}
});
if (document.readyState === 'complete') {
addRoomsAsFileAction();
} else {
document.addEventListener('DOMContentLoaded', addRoomsAsFileAction);
}