forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesApp.js
More file actions
228 lines (219 loc) · 8.28 KB
/
Copy pathFilesApp.js
File metadata and controls
228 lines (219 loc) · 8.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
* Copyright (C) 2015 - present Instructure, Inc.
*
* This file is part of Canvas.
*
* Canvas is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, version 3 of the License.
*
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import $ from 'jquery'
import React from 'react'
import ReactModal from 'react-modal'
import page from 'page'
import FilesApp from 'compiled/react_files/components/FilesApp'
import filesEnv from 'compiled/react_files/modules/filesEnv'
import I18n from 'i18n!react_files'
import Breadcrumbs from 'jsx/files/Breadcrumbs'
import FolderTree from 'jsx/files/FolderTree'
import FilesUsage from 'jsx/files/FilesUsage'
import Toolbar from 'jsx/files/Toolbar'
const modalOverrides = {
overlay : {
backgroundColor: 'rgba(0,0,0,0.5)'
},
content : {
position: 'static',
top: '0',
left: '0',
right: 'auto',
bottom: 'auto',
borderRadius: '0',
border: 'none',
padding: '0'
}
};
FilesApp.previewItem = function (item) {
this.clearSelectedItems(() => {
this.toggleItemSelected(item, null, () => {
const queryString = $.param(this.getPreviewQuery());
page(`${this.getPreviewRoute()}?${queryString}`);
});
});
};
FilesApp.getPreviewRoute = function () {
if (this.props.query && this.props.query.search_term) {
return '/search';
} else if (this.props.splat) {
return `/folder/${this.props.splat}`;
} else {
return '';
}
};
FilesApp.render = function () {
var contextType;
var contextId;
// when showing a folder
if (this.state.currentFolder) {
contextType = this.state.currentFolder.get('context_type').toLowerCase() + 's';
contextId = this.state.currentFolder.get('context_id');
} else {
// when showing search results
contextType = filesEnv.contextType;
contextId = filesEnv.contextId;
}
var userCanManageFilesForContext = filesEnv.userHasPermission({contextType: contextType, contextId: contextId}, 'manage_files');
var userCanRestrictFilesForContext = userCanManageFilesForContext && contextType != "groups";
var usageRightsRequiredForContext = (filesEnv.contextsDictionary[`${contextType}_${contextId}`]) ?
filesEnv.contextsDictionary[`${contextType}_${contextId}`].usage_rights_required : false;
var externalToolsForContext = (filesEnv.contextFor({contextType: contextType, contextId: contextId})) ?
filesEnv.contextFor({contextType: contextType, contextId: contextId}).file_menu_tools : [];
return (
<div>
{/* For whatever reason, VO in Safari didn't like just the h1 tag.
Sometimes it worked, others it didn't, this makes it work always */}
<header>
<h1 className='screenreader-only'>
{I18n.t('Files')}
</h1>
</header>
<div className='ic-app-nav-toggle-and-crumbs ic-app-nav-toggle-and-crumbs--files no-print'>
<button
className='Button Button--link Button--small ic-app-course-nav-toggle'
type='button'
id='courseMenuToggle'
title={I18n.t("Show and hide courses menu")}
aria-hidden={true}
>
<i className='icon-hamburger' />
</button>
<div className='ic-app-crumbs'>
<Breadcrumbs
rootTillCurrentFolder={this.state.rootTillCurrentFolder}
showingSearchResults={this.state.showingSearchResults}
query={this.props.query}
contextAssetString={this.props.contextAssetString}
/>
</div>
<div className="TutorialToggleHolder" />
</div>
<Toolbar
currentFolder={this.state.currentFolder}
query={this.props.query}
selectedItems={this.state.selectedItems}
clearSelectedItems={this.clearSelectedItems}
onMove={this.onMove}
contextType={contextType}
contextId={contextId}
userCanManageFilesForContext={userCanManageFilesForContext}
usageRightsRequiredForContext={usageRightsRequiredForContext}
userCanRestrictFilesForContext={userCanRestrictFilesForContext}
getPreviewQuery={this.getPreviewQuery}
getPreviewRoute={this.getPreviewRoute}
modalOptions={{
openModal: this.openModal,
closeModal: this.closeModal
}}
/>
<div className='ef-main'>
{filesEnv.newFolderTree && (
<p>New folder tree goes here</p>
)}
{!filesEnv.newFolderTree && (
<aside
className='visible-desktop ef-folder-content'
role='region'
aria-label={I18n.t('Folder Browsing Tree')}
>
<FolderTree
rootTillCurrentFolder={this.state.rootTillCurrentFolder}
rootFoldersToShow={filesEnv.rootFolders}
dndOptions={{
onItemDragEnterOrOver: this.onItemDragEnterOrOver,
onItemDragLeaveOrEnd: this.onItemDragLeaveOrEnd,
onItemDrop: this.onItemDrop
}}
/>
</aside>
)}
<div
className='ef-directory'
role='region'
aria-label={I18n.t('File List')}
>
{React.cloneElement(this.props.children, {
key: this.state.key,
pathname: this.props.pathname,
splat: this.props.splat,
query: this.props.query,
params: this.props.params,
onResolvePath: this.onResolvePath,
currentFolder: this.state.currentFolder,
contextType: contextType,
contextId: contextId,
selectedItems: this.state.selectedItems,
toggleItemSelected: this.toggleItemSelected,
toggleAllSelected: this.toggleAllSelected,
areAllItemsSelected: this.areAllItemsSelected,
userCanManageFilesForContext: userCanManageFilesForContext,
userCanRestrictFilesForContext: userCanRestrictFilesForContext,
usageRightsRequiredForContext: usageRightsRequiredForContext,
externalToolsForContext: externalToolsForContext,
previewItem: this.previewItem,
onMove: this.onMove,
modalOptions: {
openModal: this.openModal,
closeModal: this.closeModal
},
dndOptions: {
onItemDragStart: this.onItemDragStart,
onItemDragEnterOrOver: this.onItemDragEnterOrOver,
onItemDragLeaveOrEnd: this.onItemDragLeaveOrEnd,
onItemDrop: this.onItemDrop
},
clearSelectedItems: this.clearSelectedItems
})}
</div>
</div>
<div className='ef-footer grid-row'>
{userCanManageFilesForContext && (
<FilesUsage
className='col-xs-4'
contextType={contextType}
contextId={contextId}
/>
)}
{(!filesEnv.showingAllContexts) && (
<div className='col-xs'>
<div>
<a className='pull-right' href='/files'>
{I18n.t('All My Files')}
</a>
</div>
</div>
)}
</div>
{this.state.showingModal && (
<ReactModal
isOpen={this.state.showingModal}
onRequestClose={this.closeModal}
closeTimeoutMS={10}
className='ReactModal__Content--canvas'
overlayClassName='ReactModal__Overlay--canvas'
style={modalOverrides}
>
{this.state.modalContents}
</ReactModal>
)}
</div>
);
};
export default React.createClass(FilesApp)