This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 831
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wire up drag-drop file uploads for the thread view (#7860)
- Loading branch information
Showing
30 changed files
with
616 additions
and
482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
Copyright 2015, 2016 OpenMarket Ltd | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
@keyframes mx_FileDropTarget_animation { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 0.95; | ||
} | ||
} | ||
|
||
.mx_FileDropTarget { | ||
min-width: 0; | ||
width: 100%; | ||
height: 100%; | ||
|
||
font-size: $font-18px; | ||
text-align: center; | ||
|
||
pointer-events: none; | ||
|
||
background-color: $background; | ||
opacity: 0.95; | ||
|
||
position: absolute; | ||
z-index: 3000; | ||
|
||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
|
||
animation: mx_FileDropTarget_animation; | ||
animation-duration: 0.5s; | ||
} | ||
|
||
@keyframes mx_FileDropTarget_image_animation { | ||
from { | ||
transform: scaleX(0); | ||
} | ||
to { | ||
transform: scaleX(1); | ||
} | ||
} | ||
|
||
.mx_FileDropTarget_image { | ||
width: 32px; | ||
animation: mx_FileDropTarget_image_animation; | ||
animation-duration: 0.5s; | ||
margin-bottom: 16px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
Copyright 2021 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
export const CreateEventField = "io.element.migrated_from_community"; | ||
|
||
export interface IGroupRoom { | ||
displayname: string; | ||
name?: string; | ||
roomId: string; | ||
canonicalAlias?: string; | ||
avatarUrl?: string; | ||
topic?: string; | ||
numJoinedMembers?: number; | ||
worldReadable?: boolean; | ||
guestCanJoin?: boolean; | ||
isPublic?: boolean; | ||
} | ||
|
||
/* eslint-disable camelcase */ | ||
export interface IGroupSummary { | ||
profile: { | ||
avatar_url?: string; | ||
is_openly_joinable?: boolean; | ||
is_public?: boolean; | ||
long_description: string; | ||
name: string; | ||
short_description: string; | ||
}; | ||
rooms_section: { | ||
rooms: unknown[]; | ||
categories: Record<string, unknown>; | ||
total_room_count_estimate: number; | ||
}; | ||
user: { | ||
is_privileged: boolean; | ||
is_public: boolean; | ||
is_publicised: boolean; | ||
membership: string; | ||
}; | ||
users_section: { | ||
users: unknown[]; | ||
roles: Record<string, unknown>; | ||
total_user_count_estimate: number; | ||
}; | ||
} | ||
/* eslint-enable camelcase */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/* | ||
Copyright 2022 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import React, { useEffect, useState } from "react"; | ||
|
||
import { _t } from "../../languageHandler"; | ||
|
||
interface IProps { | ||
parent: HTMLElement; | ||
onFileDrop(dataTransfer: DataTransfer): void; | ||
} | ||
|
||
interface IState { | ||
dragging: boolean; | ||
counter: number; | ||
} | ||
|
||
const FileDropTarget: React.FC<IProps> = ({ parent, onFileDrop }) => { | ||
const [state, setState] = useState<IState>({ | ||
dragging: false, | ||
counter: 0, | ||
}); | ||
|
||
useEffect(() => { | ||
if (!parent || parent.ondrop) return; | ||
|
||
const onDragEnter = (ev: DragEvent) => { | ||
ev.stopPropagation(); | ||
ev.preventDefault(); | ||
|
||
setState(state => ({ | ||
// We always increment the counter no matter the types, because dragging is | ||
// still happening. If we didn't, the drag counter would get out of sync. | ||
counter: state.counter + 1, | ||
// See: | ||
// https://docs.w3cub.com/dom/datatransfer/types | ||
// https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Recommended_drag_types#file | ||
dragging: ( | ||
ev.dataTransfer.types.includes("Files") || | ||
ev.dataTransfer.types.includes("application/x-moz-file") | ||
) ? true : state.dragging, | ||
})); | ||
}; | ||
|
||
const onDragLeave = (ev: DragEvent) => { | ||
ev.stopPropagation(); | ||
ev.preventDefault(); | ||
|
||
setState(state => ({ | ||
counter: state.counter - 1, | ||
dragging: state.counter <= 1 ? false : state.dragging, | ||
})); | ||
}; | ||
|
||
const onDragOver = (ev: DragEvent) => { | ||
ev.stopPropagation(); | ||
ev.preventDefault(); | ||
|
||
ev.dataTransfer.dropEffect = "none"; | ||
|
||
// See: | ||
// https://docs.w3cub.com/dom/datatransfer/types | ||
// https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Recommended_drag_types#file | ||
if (ev.dataTransfer.types.includes("Files") || ev.dataTransfer.types.includes("application/x-moz-file")) { | ||
ev.dataTransfer.dropEffect = "copy"; | ||
} | ||
}; | ||
|
||
const onDrop = (ev: DragEvent) => { | ||
ev.stopPropagation(); | ||
ev.preventDefault(); | ||
onFileDrop(ev.dataTransfer); | ||
|
||
setState(state => ({ | ||
dragging: false, | ||
counter: state.counter - 1, | ||
})); | ||
}; | ||
|
||
parent.addEventListener("drop", onDrop); | ||
parent.addEventListener("dragover", onDragOver); | ||
parent.addEventListener("dragenter", onDragEnter); | ||
parent.addEventListener("dragleave", onDragLeave); | ||
|
||
return () => { | ||
// disconnect the D&D event listeners from the room view. This | ||
// is really just for hygiene - we're going to be | ||
// deleted anyway, so it doesn't matter if the event listeners | ||
// don't get cleaned up. | ||
parent.removeEventListener("drop", onDrop); | ||
parent.removeEventListener("dragover", onDragOver); | ||
parent.removeEventListener("dragenter", onDragEnter); | ||
parent.removeEventListener("dragleave", onDragLeave); | ||
}; | ||
}, [parent, onFileDrop]); | ||
|
||
if (state.dragging) { | ||
return <div className="mx_FileDropTarget"> | ||
<img src={require("../../../res/img/upload-big.svg")} className="mx_FileDropTarget_image" alt="" /> | ||
{ _t("Drop file here to upload") } | ||
</div>; | ||
} | ||
|
||
return null; | ||
}; | ||
|
||
export default FileDropTarget; |
Oops, something went wrong.