mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
94 lines
3.0 KiB
JavaScript
94 lines
3.0 KiB
JavaScript
|
/*\
|
||
|
title: $:/core/modules/storyviews/classic.js
|
||
|
type: application/javascript
|
||
|
module-type: storyview
|
||
|
|
||
|
Views the story as a linear sequence
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
var ClassicStoryView = function(listWidget) {
|
||
|
this.listWidget = listWidget;
|
||
|
}
|
||
|
|
||
|
ClassicStoryView.prototype.navigateTo = function(historyInfo) {
|
||
|
var listElementIndex = this.listWidget.findListItem(0,historyInfo.title);
|
||
|
if(listElementIndex === undefined) {
|
||
|
return;
|
||
|
}
|
||
|
var listItemWidget = this.listWidget.children[listElementIndex],
|
||
|
targetElement = listItemWidget.findFirstDomNode();
|
||
|
// Scroll the node into view
|
||
|
this.listWidget.dispatchEvent({type: "tw-scroll", target: targetElement});
|
||
|
};
|
||
|
|
||
|
ClassicStoryView.prototype.insert = function(widget) {
|
||
|
var targetElement = widget.findFirstDomNode(),
|
||
|
duration = $tw.utils.getAnimationDuration();
|
||
|
// Get the current height of the tiddler
|
||
|
var computedStyle = window.getComputedStyle(targetElement),
|
||
|
currMarginBottom = parseInt(computedStyle.marginBottom,10),
|
||
|
currMarginTop = parseInt(computedStyle.marginTop,10),
|
||
|
currHeight = targetElement.offsetHeight + currMarginTop;
|
||
|
// Reset the margin once the transition is over
|
||
|
setTimeout(function() {
|
||
|
$tw.utils.setStyle(targetElement,[
|
||
|
{transition: "none"},
|
||
|
{marginBottom: ""}
|
||
|
]);
|
||
|
},duration);
|
||
|
// Set up the initial position of the element
|
||
|
$tw.utils.setStyle(targetElement,[
|
||
|
{transition: "none"},
|
||
|
{marginBottom: (-currHeight) + "px"},
|
||
|
{opacity: "0.0"}
|
||
|
]);
|
||
|
$tw.utils.forceLayout(targetElement);
|
||
|
// Transition to the final position
|
||
|
$tw.utils.setStyle(targetElement,[
|
||
|
{transition: "opacity " + duration + "ms ease-in-out, " +
|
||
|
"margin-bottom " + duration + "ms ease-in-out"},
|
||
|
{marginBottom: currMarginBottom + "px"},
|
||
|
{opacity: "1.0"}
|
||
|
]);
|
||
|
};
|
||
|
|
||
|
ClassicStoryView.prototype.remove = function(widget) {
|
||
|
var targetElement = widget.findFirstDomNode(),
|
||
|
duration = $tw.utils.getAnimationDuration();
|
||
|
// Get the current height of the tiddler
|
||
|
var currWidth = targetElement.offsetWidth,
|
||
|
computedStyle = window.getComputedStyle(targetElement),
|
||
|
currMarginBottom = parseInt(computedStyle.marginBottom,10),
|
||
|
currMarginTop = parseInt(computedStyle.marginTop,10),
|
||
|
currHeight = targetElement.offsetHeight + currMarginTop;
|
||
|
// Remove the dom nodes of the widget at the end of the transition
|
||
|
setTimeout(function() {
|
||
|
widget.removeChildDomNodes();
|
||
|
},duration);
|
||
|
// Animate the closure
|
||
|
$tw.utils.setStyle(targetElement,[
|
||
|
{transition: "none"},
|
||
|
{transform: "translateX(0px)"},
|
||
|
{marginBottom: currMarginBottom + "px"},
|
||
|
{opacity: "1.0"}
|
||
|
]);
|
||
|
$tw.utils.forceLayout(targetElement);
|
||
|
$tw.utils.setStyle(targetElement,[
|
||
|
{transition: $tw.utils.roundTripPropertyName("transform") + " " + duration + "ms ease-in-out, " +
|
||
|
"opacity " + duration + "ms ease-in-out, " +
|
||
|
"margin-bottom " + duration + "ms ease-in-out"},
|
||
|
{transform: "translateX(-" + currWidth + "px)"},
|
||
|
{marginBottom: (-currHeight) + "px"},
|
||
|
{opacity: "0.0"}
|
||
|
]);
|
||
|
};
|
||
|
|
||
|
exports.classic = ClassicStoryView;
|
||
|
|
||
|
})();
|