-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #224 and #857 - toolbar in absolute container #1152
Changes from 3 commits
0a15ca2
3ec1918
a5ea3df
b601327
5ad3316
72055ea
97223ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>medium editor | demo</title> | ||
<link rel="stylesheet" href="css/demo.css"> | ||
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css"> | ||
<link rel="stylesheet" href="../dist/css/medium-editor.css"> | ||
<link rel="stylesheet" href="../dist/css/themes/default.css" id="medium-editor-theme"> | ||
|
||
<style> | ||
body { | ||
height: 100%; | ||
} | ||
|
||
#container { | ||
position: absolute; | ||
left: 50%; | ||
margin-left: -480px; | ||
height: 100%; | ||
overflow: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<a href="https://github.com/yabwe/medium-editor" class="github-link"><img style="z-index: 100;position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> | ||
<div class="top-bar"> | ||
Theme: | ||
<select id="sel-themes"> | ||
<option value="themes/default" selected>default</option> | ||
<option value="themes/roman">roman</option> | ||
<option value="themes/mani">mani</option> | ||
<option value="themes/flat">flat</option> | ||
<option value="themes/bootstrap">bootstrap</option> | ||
<option value="themes/tim">tim</option> | ||
<option value="themes/beagle">beagle</option> | ||
</select> | ||
</div> | ||
<div id="container"> | ||
<h1>Medium Editor</h1> | ||
<div class="editable"> | ||
<p>My father’s family name being <a href="https://en.wikipedia.org/wiki/Pip_(Great_Expectations)">Pirrip</a>, and my Christian name Philip, my infant tongue could make of both names nothing longer or more explicit than Pip. So, I called myself Pip, and came to be called Pip.</p> | ||
<p>I give Pirrip as my father’s family name, on the authority of his tombstone and my sister,—Mrs. Joe Gargery, who married the blacksmith. As I never saw my father or my mother, and never saw any likeness of either of them (for their days were long before the days of photographs), my first fancies regarding what they were like were unreasonably derived from their tombstones. The shape of the letters on my father’s, gave me an odd idea that he was a square, stout, dark man, with curly black hair. From the character and turn of the inscription, “Also Georgiana Wife of the Above,” I drew a childish conclusion that my mother was freckled and sickly. To five little stone lozenges, each about a foot and a half long, which were arranged in a neat row beside their grave, and were sacred to the memory of five little brothers of mine,—who gave up trying to get a living, exceedingly early in that universal struggle,—I am indebted for a belief I religiously entertained that they had all been born on their backs with their hands in their trousers-pockets, and had never taken them out in this state of existence.</p> | ||
<p>Ours was the marsh country, down by the river, within, as the river wound, twenty miles of the sea. My first most vivid and broad impression of the identity of things seems to me to have been gained on a memorable raw afternoon towards evening. At such a time I found out for certain that this bleak place overgrown with nettles was the churchyard; and that Philip Pirrip, late of this parish, and also Georgiana wife of the above, were dead and buried; and that Alexander, Bartholomew, Abraham, Tobias, and Roger, infant children of the aforesaid, were also dead and buried; and that the dark flat wilderness beyond the churchyard, intersected with dikes and mounds and gates, with scattered cattle feeding on it, was the marshes; and that the low leaden line beyond was the river; and that the distant savage lair from which the wind was rushing was the sea; and that the small bundle of shivers growing afraid of it all and beginning to cry, was Pip.</p> | ||
</div> | ||
</div> | ||
<p style="text-align: center;"><small><a style="color: #333;" target="_blank" href="http://www.goodreads.com/reader/475-great-expectations">Source</a></small></p> | ||
<script src="../dist/js/medium-editor.js"></script> | ||
<script> | ||
var editor = new MediumEditor('.editable', { | ||
buttonLabels: 'fontawesome', | ||
elementsContainer: document.getElementById('container') | ||
}), | ||
cssLink = document.getElementById('medium-editor-theme'); | ||
|
||
document.getElementById('sel-themes').addEventListener('change', function () { | ||
cssLink.href = '../dist/css/' + this.value + '.css'; | ||
}); | ||
</script> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -616,35 +616,72 @@ | |
} | ||
} | ||
|
||
var windowWidth = this.window.innerWidth, | ||
middleBoundary = (boundary.left + boundary.right) / 2, | ||
var containerWidth = this.window.innerWidth, | ||
toolbarElement = this.getToolbarElement(), | ||
toolbarHeight = toolbarElement.offsetHeight, | ||
toolbarWidth = toolbarElement.offsetWidth, | ||
halfOffsetWidth = toolbarWidth / 2, | ||
buttonHeight = 50, | ||
defaultLeft = this.diffLeft - halfOffsetWidth; | ||
defaultLeft = this.diffLeft - halfOffsetWidth, | ||
elementsContainer = this.getEditorOption('elementsContainer'), | ||
elementsContainerAbsolute = ['absolute', 'fixed'].indexOf(window.getComputedStyle(elementsContainer).getPropertyValue('position')) > -1, | ||
positions = {}, | ||
relativeBoundary = {}, | ||
middleBoundary, elementsContainerBoundary; | ||
|
||
// If container element is absolute / fixed, recalculate boundaries to be relative to the container | ||
if (elementsContainerAbsolute) { | ||
elementsContainerBoundary = elementsContainer.getBoundingClientRect(); | ||
['top', 'left'].forEach(function (key) { | ||
relativeBoundary[key] = boundary[key] - elementsContainerBoundary[key]; | ||
}); | ||
|
||
['bottom', 'right'].forEach(function (key) { | ||
relativeBoundary[key] = elementsContainerBoundary[key] - boundary[key]; | ||
}); | ||
|
||
relativeBoundary.width = boundary.width; | ||
relativeBoundary.height = boundary.height; | ||
boundary = relativeBoundary; | ||
|
||
containerWidth = elementsContainerBoundary.width; | ||
} | ||
|
||
middleBoundary = boundary.left + boundary.width / 2; | ||
positions.top = boundary.top - toolbarHeight; | ||
|
||
// If container element is absolute / fixed, adjust top position according to container scroll position | ||
if (elementsContainerAbsolute) { | ||
positions.top += elementsContainer.scrollTop; | ||
// If container element isn't absolute / fixed, adjust top position according to window scroll position | ||
} else { | ||
positions.top += this.window.pageYOffset; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could the calculation of the adjustment of top be done within the Something like:
That way we can have one less if-condition. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point. I'll do that |
||
} | ||
|
||
if (boundary.top < buttonHeight) { | ||
toolbarElement.classList.add('medium-toolbar-arrow-over'); | ||
toolbarElement.classList.remove('medium-toolbar-arrow-under'); | ||
toolbarElement.style.top = buttonHeight + boundary.bottom - this.diffTop + this.window.pageYOffset - toolbarHeight + 'px'; | ||
positions.top += buttonHeight + boundary.height - this.diffTop; | ||
} else { | ||
toolbarElement.classList.add('medium-toolbar-arrow-under'); | ||
toolbarElement.classList.remove('medium-toolbar-arrow-over'); | ||
toolbarElement.style.top = boundary.top + this.diffTop + this.window.pageYOffset - toolbarHeight + 'px'; | ||
positions.top += this.diffTop; | ||
} | ||
|
||
if (middleBoundary < halfOffsetWidth) { | ||
toolbarElement.style.left = defaultLeft + halfOffsetWidth + 'px'; | ||
toolbarElement.style.right = 'initial'; | ||
} else if ((windowWidth - middleBoundary) < halfOffsetWidth) { | ||
toolbarElement.style.left = 'auto'; | ||
toolbarElement.style.right = 0; | ||
positions.left = defaultLeft + halfOffsetWidth; | ||
positions.right = 'initial'; | ||
} else if ((containerWidth - middleBoundary) < halfOffsetWidth) { | ||
positions.left = 'auto'; | ||
positions.right = 0; | ||
} else { | ||
toolbarElement.style.left = defaultLeft + middleBoundary + 'px'; | ||
toolbarElement.style.right = 'initial'; | ||
positions.left = defaultLeft + middleBoundary; | ||
positions.right = 'initial'; | ||
} | ||
|
||
['top', 'left', 'right'].forEach(function (key) { | ||
toolbarElement.style[key] = positions[key] + (isNaN(positions[key]) ? '' : 'px'); | ||
}); | ||
} | ||
}); | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same feedback here as in toolbar.js, could we get rid of this extra
if()
block?