-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathfields.js
More file actions
214 lines (187 loc) · 5.65 KB
/
Copy pathfields.js
File metadata and controls
214 lines (187 loc) · 5.65 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
/* eslint-disable @calm/react-intl/missing-formatted-message*/
import React from "react";
import PropTypes from "prop-types";
import { withStyles } from "@material-ui/core/styles";
import LaunchIcon from "@material-ui/icons/Launch";
import { getReticulumFetchUrl, getUploadsUrl } from "hubs/src/utils/phoenix-utils";
import { ReferenceField } from "react-admin";
const styles = {
ownedFileImage: {},
fieldLink: {},
avatarLink: {},
ownedFileImageAspect_square: {
width: 150,
height: 150,
padding: 12
},
ownedFileImageAspect_wide: {
width: 200,
height: 150,
padding: 12
},
ownedFileImageAspect_tall: {
width: (150 * 9) / 16,
height: 150,
padding: 12
}
};
export function ConditionalReferenceField(props) {
const { source, record, defaultValue = <div /> } = props;
return record && record[source] ? <ReferenceField {...props} /> : defaultValue;
}
ConditionalReferenceField.propTypes = {
...ReferenceField.propTypes,
defaultValue: PropTypes.element
};
const OwnedFileImageInternal = withStyles(styles)(({ record = {}, aspect = "wide", classes }) => {
const src = getUploadsUrl(`/files/${record.owned_file_uuid}`);
return <img src={src} className={classes[`ownedFileImageAspect_${aspect}`]} />;
});
export const OwnedFileImage = withStyles(styles)(({ basePath, record, source, aspect, classes, defaultImage }) => {
return (
<ConditionalReferenceField
basePath={basePath}
source={source}
reference="owned_files"
linkType={false}
record={record}
defaultValue={defaultImage && <img src={defaultImage} className={classes[`ownedFileImageAspect_${aspect}`]} />}
>
<OwnedFileImageInternal source="owned_file_uuid" aspect={aspect} />
</ConditionalReferenceField>
);
});
OwnedFileImage.propTypes = {
record: PropTypes.object,
classes: PropTypes.object
};
function OwnedFileDownloadFieldInternal({ fileName, record, source }) {
return (
<a
download={fileName || true}
href={getUploadsUrl(`/files/${record[source]}`)}
target="_blank"
rel="noopener noreferrer"
>
Download
</a>
);
}
OwnedFileDownloadFieldInternal.propTypes = {
record: PropTypes.object,
fileName: PropTypes.string,
source: PropTypes.string
};
export function OwnedFileDownloadField({ getFileName, ...props }) {
const fileName = getFileName && getFileName(props);
return (
<ConditionalReferenceField
reference="owned_files"
linkType={false}
defaultValue={<a href="#">Download</a>}
{...props}
>
<OwnedFileDownloadFieldInternal source="owned_file_uuid" fileName={fileName} />
</ConditionalReferenceField>
);
}
OwnedFileDownloadField.propTypes = {
getFileName: PropTypes.func,
record: PropTypes.object,
source: PropTypes.string
};
OwnedFileDownloadField.defaultProps = {
addLabel: true
};
function formatFileSize(bytes) {
if (bytes < 1024) {
return `${bytes} B`;
} else if (bytes < 1024 * 1024) {
return `${(bytes / 1024).toFixed(2)} KB`;
} else if (bytes < 1024 * 1024 * 1024) {
return `${(bytes / (1024 * 1024)).toFixed(2)} MB`;
} else {
return `${(bytes / (1024 * 1024 * 1024)).toFixed(2)} GB`;
}
}
function OwnedFileSizeFieldInternal({ record }) {
return <span>{formatFileSize(record.content_length)}</span>;
}
OwnedFileSizeFieldInternal.propTypes = {
record: {
content_length: PropTypes.number
}
};
export const OwnedFileSizeField = withStyles(styles)(({ label, basePath, record, source }) => {
return (
<ConditionalReferenceField
label={label}
basePath={basePath}
source={source}
reference="owned_files"
linkType={false}
record={record}
defaultValue={<span>N/A</span>}
>
<OwnedFileSizeFieldInternal />
</ConditionalReferenceField>
);
});
export const SceneLink = withStyles(styles)(({ source, record = {}, classes }) => {
const src = getReticulumFetchUrl(`/scenes/${record.scene_sid || record.scene_listing_sid}`);
return (
<a href={src} className={classes.fieldLink} target="_blank" rel="noopener noreferrer">
{record[source]}
<LaunchIcon className={classes.icon} />
</a>
);
});
SceneLink.propTypes = {
source: PropTypes.string.isRequired,
record: PropTypes.object,
classes: PropTypes.object
};
export const AvatarLink = withStyles(styles)(({ source, record = {}, classes }) => {
const src = getReticulumFetchUrl(`/avatars/${record.avatar_sid || record.avatar_listing_sid}`);
return (
<a href={src} className={classes.avatarLink} target="_blank" rel="noopener noreferrer">
{record[source]}
<LaunchIcon className={classes.icon} />
</a>
);
});
AvatarLink.propTypes = {
source: PropTypes.string.isRequired,
record: PropTypes.object,
classes: PropTypes.object
};
export const IdentityEditLink = withStyles(styles)(({ record = {}, classes }) => (
<a href={`#/identities/create?account_id=${record.id}`} className={classes.fieldLink}>
Create Identity
</a>
) : (
<span className={classes.disabledLink}>Create Identity</span>
));
if (!record?.id) {
console.warn("Missing record.id for IdentityCreateLink");
}
export const IdentityCreateLink = withStyles(styles)(({ record, classes }) => {
if (!record || !record.id) {
console.warn("IdentityCreateLink: missing record.id", record);
return (
<span className={classes.fieldLink} style={{ opacity: 0.5, cursor: "not-allowed" }}>
Create Identity
</span>
);
}
return (
<a href={`#/identities/create?account_id=${record.id}`} className={classes.fieldLink}>
Create Identity
</a>
);
});
SceneLink.propTypes = {
source: PropTypes.string.isRequired,
record: PropTypes.object,
classes: PropTypes.object
};