-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
133 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/** @namespace H5PUpgrades */ | ||
var H5PUpgrades = H5PUpgrades || {}; | ||
|
||
H5PUpgrades['H5P.Table'] = (function () { | ||
return { | ||
1: { | ||
2: function (parameters, finished, extras) { | ||
const tables = parameters.text.split('<table'); | ||
let newParams = tables[0]; | ||
|
||
for (let i = 1; i < tables.length; i++) { | ||
let tableChanges = false; | ||
let cellChanges = false; | ||
let style = 'style="'; | ||
let cellStyle = 'style="'; | ||
|
||
// Find and replace border width and style | ||
if (tables[i].includes('border')) { | ||
const needle = 'border="'; | ||
const needleStart = tables[i].indexOf(needle); | ||
const needleEnd = tables[i].indexOf('"', needleStart + needle.length); | ||
const borderWidth = parseInt(tables[i].substring(needleStart + needle.length, needleEnd)); | ||
|
||
style += 'border-style:solid;border-collapse:collapse;' + 'border-width:' + borderWidth + 'px;'; | ||
cellStyle += tables[i].includes('h5p-table') ? | ||
'border-style:solid;' : | ||
'border-style:double;border-collapse:collapse;border-width:0.15em;'; | ||
|
||
tableChanges = true; | ||
cellChanges = true; | ||
} | ||
|
||
// Find and replace cell padding | ||
if (tables[i].includes('cellpadding')) { | ||
const needle = 'cellpadding="'; | ||
const needleStart = tables[i].indexOf(needle); | ||
const needleEnd = tables[i].indexOf('"', needleStart + needle.length); | ||
const cellPadding = parseInt(tables[i].substring(needleStart + needle.length, needleEnd)); | ||
|
||
cellStyle += 'padding:' + cellPadding + 'px;'; | ||
tables[i] = tables[i].replace(/cellpadding="[0-9]*"/, ''); | ||
|
||
cellChanges = true; | ||
} | ||
|
||
if (tableChanges) { | ||
const tagEnd = tables[i].indexOf('>'); | ||
let substring = tables[i].substring(0, tagEnd); | ||
|
||
// Set border style on the table | ||
if (substring.includes('style="')) { | ||
tables[i] = substring.replace('style="', style) + tables[i].substring(tagEnd); | ||
} | ||
else { | ||
tables[i] = ' ' + style + '"' + tables[i]; | ||
} | ||
} | ||
|
||
if (cellChanges) { | ||
// Set border style on header cells | ||
let headers = tables[i].split(/<th(?!ead)/); | ||
tables[i] = headers[0]; | ||
|
||
for (let j = 1; j < headers.length; j++) { | ||
tables[i] += '<th'; | ||
|
||
const tagEnd = headers[j].indexOf('>'); | ||
let substring = headers[j].substring(0, tagEnd); | ||
|
||
if (substring.includes('style="')) { | ||
tables[i] += substring.replace('style="', cellStyle) + headers[j].substring(tagEnd); | ||
} | ||
else { | ||
tables[i] += ' ' + cellStyle + '"' + headers[j]; | ||
} | ||
} | ||
|
||
// Set border style on cells | ||
let cells = tables[i].split('<td'); | ||
tables[i] = cells[0]; | ||
|
||
for (let j = 1; j < cells.length; j++) { | ||
tables[i] += '<td'; | ||
|
||
const tagEnd = cells[j].indexOf('>'); | ||
let substring = cells[j].substring(0, tagEnd); | ||
|
||
if (substring.includes('style="')) { | ||
tables[i] += substring.replace('style="', cellStyle) + cells[j].substring(tagEnd); | ||
} | ||
else { | ||
tables[i] += ' ' + cellStyle + '"' + cells[j]; | ||
} | ||
} | ||
} | ||
|
||
newParams += '<table' + tables[i]; | ||
} | ||
|
||
parameters.text = newParams; | ||
finished(null, parameters, extras); | ||
} | ||
} | ||
}; | ||
})(); |