Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5291 Rev 5292
Línea 137... Línea 137...
137
      case shareModalTypes.FILE:
137
      case shareModalTypes.FILE:
138
        switch (file.type) {
138
        switch (file.type) {
139
          case 'application/vnd.openxmlformats-officedocument.presentationml.presentation':
139
          case 'application/vnd.openxmlformats-officedocument.presentationml.presentation':
140
            return (
140
            return (
141
              <iframe
141
              <iframe
142
                src={`https://view.officeapps.live.com/op/embed.aspx?src=${URL.createObjectURL(file)}`}
142
                src={`https://view.officeapps.live.com/op/embed.aspx?src=${encodeURIComponent(file)}`}
143
                width="100%"
143
                width="100%"
144
                height="600px"
144
                height="600px"
145
                frameBorder="0"
145
                frameBorder="0"
146
              >
146
              />
147
              </iframe>
-
 
148
            )
147
            )
149
          case 'application/pdf':
148
          case 'application/pdf':
150
            return (
149
            return (
151
            <div style={{
150
              <div style={{
152
              ...thumbStyle,
151
                ...thumbStyle,
153
              width: '90%',
152
                width: '90%',
154
              height: 'auto',
153
                height: 'auto',
155
              margin: 'auto',
154
                margin: 'auto',
156
              maxWidth: '90%'
155
                maxWidth: '90%'
157
            }}
156
              }}
158
            key={file.name}
157
                key={file.name}
159
          >
158
              >
160
            <div style={fileInnerStyle}>
159
                <div style={fileInnerStyle}>
161
              <object
160
                  <object
162
                data={URL.createObjectURL(file)}
161
                    data={URL.createObjectURL(file)}
163
                type="application/pdf"
162
                    type="application/pdf"
164
              />
163
                  />
165
            </div>
164
                </div>
166
            <div
165
                <div
167
              style={CloseButtonContainer}
166
                  style={CloseButtonContainer}
168
              onClick={() => onDeleteFileHandler(id)}
167
                  onClick={() => onDeleteFileHandler(id)}
169
            >
168
                >
170
              <img
169
                  <img
171
                src="/css/icons/x-circle-fill.svg"
170
                    src="/css/icons/x-circle-fill.svg"
172
                alt="close-button"
171
                    alt="close-button"
173
                style={{ width: '100%', height: '100%' }}
172
                    style={{ width: '100%', height: '100%' }}
174
              />
173
                  />
175
            </div>
174
                </div>
176
          </div>
175
              </div>
177
            )
176
            )
178
        }
177
        }
179
      case shareModalTypes.VIDEO:
178
      case shareModalTypes.VIDEO:
180
        return (
179
        return (
181
          <div
180
          <div