mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #4044 from overleaf/as-file-views-text-extension
Pull text extension list from settings, instead of hard-coding it GitOrigin-RevId: b5ba956b8f065b852a2f5efc1a775ccb70df3226
This commit is contained in:
parent
26dbae7cef
commit
3f1ae7bff2
4 changed files with 70 additions and 34 deletions
|
@ -90,6 +90,37 @@ window.ExposedSettings = {
|
||||||
maxEntitiesPerProject: 10,
|
maxEntitiesPerProject: 10,
|
||||||
maxUploadSize: 5 * 1024 * 1024,
|
maxUploadSize: 5 * 1024 * 1024,
|
||||||
enableSubscriptions: true,
|
enableSubscriptions: true,
|
||||||
|
textExtensions: [
|
||||||
|
'tex',
|
||||||
|
'latex',
|
||||||
|
'sty',
|
||||||
|
'cls',
|
||||||
|
'bst',
|
||||||
|
'bib',
|
||||||
|
'bibtex',
|
||||||
|
'txt',
|
||||||
|
'tikz',
|
||||||
|
'mtx',
|
||||||
|
'rtex',
|
||||||
|
'md',
|
||||||
|
'asy',
|
||||||
|
'latexmkrc',
|
||||||
|
'lbx',
|
||||||
|
'bbx',
|
||||||
|
'cbx',
|
||||||
|
'm',
|
||||||
|
'lco',
|
||||||
|
'dtx',
|
||||||
|
'ins',
|
||||||
|
'ist',
|
||||||
|
'def',
|
||||||
|
'clo',
|
||||||
|
'ldf',
|
||||||
|
'rmd',
|
||||||
|
'lua',
|
||||||
|
'gv',
|
||||||
|
'mf',
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
window.user = {
|
window.user = {
|
||||||
|
|
|
@ -1,50 +1,23 @@
|
||||||
import React, { useState } from 'react'
|
import React, { useState } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
|
||||||
import BinaryFileHeader from './binary-file-header'
|
import BinaryFileHeader from './binary-file-header'
|
||||||
import BinaryFileImage from './binary-file-image'
|
import BinaryFileImage from './binary-file-image'
|
||||||
import BinaryFileText from './binary-file-text'
|
import BinaryFileText from './binary-file-text'
|
||||||
import Icon from '../../../shared/components/icon'
|
import Icon from '../../../shared/components/icon'
|
||||||
import { useTranslation } from 'react-i18next'
|
|
||||||
|
|
||||||
const imageExtensions = ['png', 'jpg', 'jpeg', 'gif']
|
const imageExtensions = ['png', 'jpg', 'jpeg', 'gif']
|
||||||
|
|
||||||
const textExtensions = [
|
const textExtensions = window.ExposedSettings.textExtensions
|
||||||
'tex',
|
|
||||||
'latex',
|
|
||||||
'sty',
|
|
||||||
'cls',
|
|
||||||
'bst',
|
|
||||||
'bib',
|
|
||||||
'bibtex',
|
|
||||||
'txt',
|
|
||||||
'tikz',
|
|
||||||
'mtx',
|
|
||||||
'rtex',
|
|
||||||
'md',
|
|
||||||
'asy',
|
|
||||||
'latexmkrc',
|
|
||||||
'lbx',
|
|
||||||
'bbx',
|
|
||||||
'cbx',
|
|
||||||
'm',
|
|
||||||
'lco',
|
|
||||||
'dtx',
|
|
||||||
'ins',
|
|
||||||
'ist',
|
|
||||||
'def',
|
|
||||||
'clo',
|
|
||||||
'ldf',
|
|
||||||
'rmd',
|
|
||||||
'lua',
|
|
||||||
'gv',
|
|
||||||
]
|
|
||||||
|
|
||||||
export default function BinaryFile({ file, storeReferencesKeys }) {
|
export default function BinaryFile({ file, storeReferencesKeys }) {
|
||||||
const extension = file.name.split('.').pop().toLowerCase()
|
|
||||||
|
|
||||||
const [contentLoading, setContentLoading] = useState(true)
|
const [contentLoading, setContentLoading] = useState(true)
|
||||||
const [hasError, setHasError] = useState(false)
|
const [hasError, setHasError] = useState(false)
|
||||||
|
|
||||||
const { t } = useTranslation()
|
const { t } = useTranslation()
|
||||||
|
|
||||||
|
const extension = file.name.split('.').pop().toLowerCase()
|
||||||
const isUnpreviewableFile =
|
const isUnpreviewableFile =
|
||||||
!imageExtensions.includes(extension) && !textExtensions.includes(extension)
|
!imageExtensions.includes(extension) && !textExtensions.includes(extension)
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
import App from '../../../base'
|
import App from '../../../base'
|
||||||
import { react2angular } from 'react2angular'
|
import { react2angular } from 'react2angular'
|
||||||
import BinaryFile from '../components/binary-file'
|
|
||||||
import _ from 'lodash'
|
import _ from 'lodash'
|
||||||
|
|
||||||
|
import BinaryFile from '../components/binary-file'
|
||||||
|
|
||||||
export default App.controller(
|
export default App.controller(
|
||||||
'ReactBinaryFileController',
|
'ReactBinaryFileController',
|
||||||
function ($scope, $rootScope) {
|
function ($scope, $rootScope) {
|
||||||
|
|
31
services/web/test/frontend/bootstrap.js
vendored
31
services/web/test/frontend/bootstrap.js
vendored
|
@ -23,6 +23,37 @@ window.ExposedSettings = {
|
||||||
maxEntitiesPerProject: 10,
|
maxEntitiesPerProject: 10,
|
||||||
maxUploadSize: 5 * 1024 * 1024,
|
maxUploadSize: 5 * 1024 * 1024,
|
||||||
siteUrl: 'https://www.dev-overleaf.com',
|
siteUrl: 'https://www.dev-overleaf.com',
|
||||||
|
textExtensions: [
|
||||||
|
'tex',
|
||||||
|
'latex',
|
||||||
|
'sty',
|
||||||
|
'cls',
|
||||||
|
'bst',
|
||||||
|
'bib',
|
||||||
|
'bibtex',
|
||||||
|
'txt',
|
||||||
|
'tikz',
|
||||||
|
'mtx',
|
||||||
|
'rtex',
|
||||||
|
'md',
|
||||||
|
'asy',
|
||||||
|
'latexmkrc',
|
||||||
|
'lbx',
|
||||||
|
'bbx',
|
||||||
|
'cbx',
|
||||||
|
'm',
|
||||||
|
'lco',
|
||||||
|
'dtx',
|
||||||
|
'ins',
|
||||||
|
'ist',
|
||||||
|
'def',
|
||||||
|
'clo',
|
||||||
|
'ldf',
|
||||||
|
'rmd',
|
||||||
|
'lua',
|
||||||
|
'gv',
|
||||||
|
'mf',
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
window.i18n = { currentLangCode: 'en' }
|
window.i18n = { currentLangCode: 'en' }
|
||||||
|
|
Loading…
Reference in a new issue