Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5289 | Rev 5291 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5289 Rev 5290
Línea 112... Línea 112...
112
    cursor: 'pointer',
112
    cursor: 'pointer',
113
    zIndex: '200'
113
    zIndex: '200'
114
  }
114
  }
Línea 115... Línea 115...
115
 
115
 
-
 
116
  const filePreviewTest = (file, id) => {
116
  const filePreviewTest = (file, id) => {
117
    console.log(file.type)
117
    switch (modalType) {
118
    switch (modalType) {
118
      case shareModalTypes.IMAGE:
119
      case shareModalTypes.IMAGE:
119
        return (
120
        return (
120
          <div style={thumbStyle} key={file.name}>
121
          <div style={thumbStyle} key={file.name}>
Línea 132... Línea 133...
132
              />
133
              />
133
            </div>
134
            </div>
134
          </div>
135
          </div>
135
        )
136
        )
136
      case shareModalTypes.FILE:
137
      case shareModalTypes.FILE:
-
 
138
        switch (file.type) {
-
 
139
          case 'application/vnd.openxmlformats-officedocument.presentationml.presentation':
137
        return (
140
            return (
-
 
141
              <iframe
-
 
142
                src={`https://view.officeapps.live.com/op/embed.aspx?src=${file}`}
-
 
143
                width="100%"
-
 
144
                height="600px"
-
 
145
                frameBorder="0"
-
 
146
              >
-
 
147
              </iframe>
-
 
148
            )
-
 
149
          case 'application/pdf':
-
 
150
            return (
138
          <div style={{
151
            <div style={{
139
            ...thumbStyle,
152
              ...thumbStyle,
140
            width: '90%',
153
              width: '90%',
141
            height: 'auto',
154
              height: 'auto',
142
            margin: 'auto',
155
              margin: 'auto',
143
            maxWidth: '90%'
156
              maxWidth: '90%'
144
          }}
157
            }}
145
            key={file.name}
158
            key={file.name}
146
          >
159
          >
147
            <div style={fileInnerStyle}>
160
            <div style={fileInnerStyle}>
148
              <object
161
              <object
149
                data={URL.createObjectURL(file)}
162
                data={URL.createObjectURL(file)}
Línea 159... Línea 172...
159
                alt="close-button"
172
                alt="close-button"
160
                style={{ width: '100%', height: '100%' }}
173
                style={{ width: '100%', height: '100%' }}
161
              />
174
              />
162
            </div>
175
            </div>
163
          </div>
176
          </div>
-
 
177
            )
164
        )
178
        }
165
      case shareModalTypes.VIDEO:
179
      case shareModalTypes.VIDEO:
166
        return (
180
        return (
167
          <div
181
          <div
168
            style={{ ...thumbStyle, width: 'auto', height: 'auto', maxWidth: '100%' }}
182
            style={{ ...thumbStyle, width: 'auto', height: 'auto', maxWidth: '100%' }}
169
            key={file.name}
183
            key={file.name}
Línea 266... Línea 280...
266
                    style={{ width: '100%', height: '100%' }}
280
                    style={{ width: '100%', height: '100%' }}
267
                  />
281
                  />
268
                </div>
282
                </div>
269
              </div>
283
              </div>
270
            )
284
            )
271
          case 'application/vnd.openxmlformats-officedocument.presentationml.presentation':
-
 
272
            return (
-
 
273
              <iframe
-
 
274
                src={`https://view.officeapps.live.com/op/embed.aspx?src=${file}`}
-
 
275
                width="100%"
-
 
276
                height="600px"
-
 
277
                frameBorder="0"
-
 
278
              >
-
 
279
              </iframe>
-
 
280
            )
-
 
281
          default:
285
          default:
282
            break
286
            break
283
        }
287
        }
284
        break
288
        break
285
      default:
289
      default: