code stringlengths 1 2.08M | language stringclasses 1 value |
|---|---|
var fs = require('fs');
var url = require('url');
var http = require('http');
var server = http.createServer(function(request, response){
var pathname = url.parse(request.url).pathname;
var file = 'stocks.html';
var mime = 'text/html';
if(pathname == '/css') {
file = 'style.css';
mime = 'text/css';
}
else if(pathname == '/knockout') {
file = 'knockout-2.0.0.js';
mime = 'text/plain';
}
else if(pathname == '/jquery') {
file = 'jquery-1.7.1.min.js';
mime = 'text/plain';
}
else if(pathname == '/red') {
file = 'red.png';
mime = 'image/png';
}
else if(pathname == '/green') {
file = 'green.png';
mime = 'image/png';
}
fs.readFile(__dirname+'/'+file, function(err, data){
response.writeHead(200, {'Content-Type':mime});
response.write(data);
response.end();
});
});
server.listen(8080);
var nowjs = require("now");
var everyone = nowjs.initialize(server);
var allusers = [];
var winners = [];
var firstUserConnected = false;
// User connect event
nowjs.on('connect', function(){
if (!firstUserConnected){
startTimer();
firstUserConnected = true;
}
nowjs.getGroup("main").addUser(this.user.clientId);
nowjs.getGroup(this.now.name).addUser(this.user.clientId);
console.log("Joined: " + this.now.name);
//everyone.now.receiveMessage('SERVER', this.now.name + ' joined the chat');
allusers.push(this.now.name);
everyone.now.repopulateUsers(allusers);
everyone.now.repopulateCompanies(companyArray);
});
// User disconnect event
nowjs.on('disconnect', function(){
console.log("Left: " + this.now.name);
//everyone.now.receiveMessage('SERVER', this.now.name + ' left the chat');
for( var i = 0; i < allusers.length; i++) {
if(allusers[i] == this.now.name) {
allusers.splice(i,1);
}
}
everyone.now.repopulateUsers(allusers);
});
everyone.now.distributeMessage = function(message,room) {
if(room != 'main') {
nowjs.getGroup(this.now.name).now.receiveMessage('> ' + room, message);
}
if(room == 'main') {
nowjs.getGroup(room).now.receiveMessage(this.now.name, message);
}
else {
nowjs.getGroup(room).now.receiveMessage(this.now.name + ' > ' + room, message);
}
};
everyone.now.changeName = function(user) {
for(var i = 0; i < allusers.length; i++) {
if(allusers[i] == this.now.name) {
var oldName = allusers[i];
allusers[i] = user;
}
}
//everyone.now.receiveMessage('SERVER', oldName + ' is now known as ' + user);
everyone.now.repopulateUsers(allusers);
}
everyone.now.changeRoom = function(room) {
nowjs.getGroup(room).addUser(this.user.clientId);
};
// Company object
function Company(id, name, stocks, stockPrice, raisedPrice) {
var self = this;
self.id = id;
self.name = name;
self.stocks = stocks;
self.stockPrice = stockPrice;
self.raisedPrice = raisedPrice;
}
var companyArray = [
new Company(1, 'Apple', randNum(1000, 10000), randNum(2, 10), true),
new Company(2, 'IBM', randNum(1000, 10000), randNum(2, 10), true),
new Company(3, 'Microsoft', randNum(1000, 10000), randNum(2, 10), true),
new Company(4, 'NASA', randNum(1000, 10000), randNum(2, 10), true),
new Company(5, 'Facebook', randNum(1000, 10000), randNum(2, 10), true),
new Company(6, 'Cisco', randNum(1000, 10000), randNum(2, 10), true)
];
// Get the newest company's stock price
everyone.now.getStockPriceByCompanyID = function(company_id, callback) {
for(var i = 0; i < companyArray.length; i++) {
if(companyArray[i].id == company_id) {
return callback(companyArray[i].stockPrice);
}
}
return 0;
};
// Update company's stock price
everyone.now.updateStockPrice = function(company_id, stockAmount, raiseStock) {
for(var i = 0; i < companyArray.length; i++) {
if(companyArray[i].id == company_id) {
// The stock price growth formula
if(raiseStock == true) {
companyArray[i].stockPrice = Math.round(companyArray[i].stockPrice * 1.1);
companyArray[i].stocks = companyArray[i].stocks - stockAmount;
}
else {
// The stock price shrink formula
companyArray[i].stockPrice = Math.round(companyArray[i].stockPrice - (companyArray[i].stockPrice * 0.1));
companyArray[i].stocks = companyArray[i].stocks + stockAmount;
}
companyArray[i].raisedPrice = raiseStock;
}
}
// Update all clients stock prices
everyone.now.repopulateCompanies(companyArray);
};
// Get all users
everyone.now.sendStatistics = function(stats) {
if(winners.length != allusers.length) {
winners.push(stats);
//console.log(JSON.stringify(winners));
}
};
/*
MISC FUNCTIONS
*/
// Get a random number (from-to)
function randNum(from, to){
return Math.floor(Math.random() * (to - from + 1) + from);
}
// Do random changes to company
function doRandomChange() {
var company = randNum(0, companyArray.length-1);
var raise = ((randNum(0,100) % 2) == 0) ? true : false;
var percent = randNum(5,50) / 100;
if(companyArray[company] != undefined) {
console.log('CHANGING!!!');
if(raise) {
companyArray[company].stockPrice = companyArray[company].stockPrice * (percent + 1)
}
else {
companyArray[company].stockPrice = companyArray[company].stockPrice - (percent * companyArray[company].stockPrice);
}
companyArray[company].stockPrice = Math.round(companyArray[company].stockPrice);
companyArray[company].raisedPrice = raise;
// Update all clients stock prices
everyone.now.repopulateCompanies(companyArray);
}
}
function startTimer(){
var globalTimer = 3600;
setInterval(function() {
if(globalTimer > 0) {
globalTimer--;
everyone.now.updateTimer(globalTimer);
// Every 2 minutes do some random changes
if((globalTimer % 120) == 0) {
doRandomChange();
}
}
// Game is over, display scoreboard
else {
winners.sort(function(a, b) {
return b.credit - a.credit;
});
everyone.now.showScoreboard(winners);
}
}, 1000 );
} | JavaScript |
var spring = 50.0;
var damper = 5.0;
var drag = 10.0;
var angularDrag = 5.0;
var distance = 0.2;
var attachToCenterOfMass = false;
private var springJoint : SpringJoint;
function Update ()
{
// Make sure the user pressed the mouse down
if (!Input.GetMouseButtonDown (0))
return;
var mainCamera = FindCamera();
// We need to actually hit an object
var hit : RaycastHit;
if (!Physics.Raycast(mainCamera.ScreenPointToRay(Input.mousePosition), hit, 100))
return;
// We need to hit a rigidbody that is not kinematic
if (!hit.rigidbody || hit.rigidbody.isKinematic)
return;
if (!springJoint)
{
var go = new GameObject("Rigidbody dragger");
var body : Rigidbody = go.AddComponent ("Rigidbody") as Rigidbody;
springJoint = go.AddComponent ("SpringJoint");
body.isKinematic = true;
}
springJoint.transform.position = hit.point;
if (attachToCenterOfMass)
{
var anchor = transform.TransformDirection(hit.rigidbody.centerOfMass) + hit.rigidbody.transform.position;
anchor = springJoint.transform.InverseTransformPoint(anchor);
springJoint.anchor = anchor;
}
else
{
springJoint.anchor = Vector3.zero;
}
springJoint.spring = spring;
springJoint.damper = damper;
springJoint.maxDistance = distance;
springJoint.connectedBody = hit.rigidbody;
StartCoroutine ("DragObject", hit.distance);
}
function DragObject (distance : float)
{
var oldDrag = springJoint.connectedBody.drag;
var oldAngularDrag = springJoint.connectedBody.angularDrag;
springJoint.connectedBody.drag = drag;
springJoint.connectedBody.angularDrag = angularDrag;
var mainCamera = FindCamera();
while (Input.GetMouseButton (0))
{
var ray = mainCamera.ScreenPointToRay (Input.mousePosition);
springJoint.transform.position = ray.GetPoint(distance);
yield;
}
if (springJoint.connectedBody)
{
springJoint.connectedBody.drag = oldDrag;
springJoint.connectedBody.angularDrag = oldAngularDrag;
springJoint.connectedBody = null;
}
}
function FindCamera ()
{
if (camera)
return camera;
else
return Camera.main;
} | JavaScript |
var target : Transform;
var damping = 6.0;
var smooth = true;
@script AddComponentMenu("Camera-Control/Smooth Look At")
function LateUpdate () {
if (target) {
if (smooth)
{
// Look at and dampen the rotation
var rotation = Quaternion.LookRotation(target.position - transform.position);
transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * damping);
}
else
{
// Just lookat
transform.LookAt(target);
}
}
}
function Start () {
// Make the rigid body not change rotation
if (rigidbody)
rigidbody.freezeRotation = true;
} | JavaScript |
var target : Transform;
var distance = 10.0;
var xSpeed = 250.0;
var ySpeed = 120.0;
var yMinLimit = -20;
var yMaxLimit = 80;
private var x = 0.0;
private var y = 0.0;
@script AddComponentMenu("Camera-Control/Mouse Orbit")
function Start () {
var angles = transform.eulerAngles;
x = angles.y;
y = angles.x;
// Make the rigid body not change rotation
if (rigidbody)
rigidbody.freezeRotation = true;
}
function LateUpdate () {
if (target) {
x += Input.GetAxis("Mouse X") * xSpeed * 0.02;
y -= Input.GetAxis("Mouse Y") * ySpeed * 0.02;
y = ClampAngle(y, yMinLimit, yMaxLimit);
var rotation = Quaternion.Euler(y, x, 0);
var position = rotation * Vector3(0.0, 0.0, -distance) + target.position;
transform.rotation = rotation;
transform.position = position;
}
}
static function ClampAngle (angle : float, min : float, max : float) {
if (angle < -360)
angle += 360;
if (angle > 360)
angle -= 360;
return Mathf.Clamp (angle, min, max);
} | JavaScript |
/*
This camera smoothes out rotation around the y-axis and height.
Horizontal Distance to the target is always fixed.
There are many different ways to smooth the rotation but doing it this way gives you a lot of control over how the camera behaves.
For every of those smoothed values we calculate the wanted value and the current value.
Then we smooth it using the Lerp function.
Then we apply the smoothed values to the transform's position.
*/
// The target we are following
var target : Transform;
// The distance in the x-z plane to the target
var distance = 10.0;
// the height we want the camera to be above the target
var height = 5.0;
// How much we
var heightDamping = 2.0;
var rotationDamping = 3.0;
// Place the script in the Camera-Control group in the component menu
@script AddComponentMenu("Camera-Control/Smooth Follow")
function LateUpdate () {
// Early out if we don't have a target
if (!target)
return;
// Calculate the current rotation angles
wantedRotationAngle = target.eulerAngles.y;
wantedHeight = target.position.y + height;
currentRotationAngle = transform.eulerAngles.y;
currentHeight = transform.position.y;
// Damp the rotation around the y-axis
currentRotationAngle = Mathf.LerpAngle (currentRotationAngle, wantedRotationAngle, rotationDamping * Time.deltaTime);
// Damp the height
currentHeight = Mathf.Lerp (currentHeight, wantedHeight, heightDamping * Time.deltaTime);
// Convert the angle into a rotation
currentRotation = Quaternion.Euler (0, currentRotationAngle, 0);
// Set the position of the camera on the x-z plane to:
// distance meters behind the target
transform.position = target.position;
transform.position -= currentRotation * Vector3.forward * distance;
// Set the height of the camera
transform.position.y = currentHeight;
// Always look at the target
transform.LookAt (target);
} | JavaScript |
private var motor : CharacterMotor;
// Use this for initialization
function Awake () {
motor = GetComponent(CharacterMotor);
}
// Update is called once per frame
function Update () {
// Get the input vector from kayboard or analog stick
var directionVector = new Vector3(Input.GetAxis("Horizontal"), 0, Input.GetAxis("Vertical"));
if (directionVector != Vector3.zero) {
// Get the length of the directon vector and then normalize it
// Dividing by the length is cheaper than normalizing when we already have the length anyway
var directionLength = directionVector.magnitude;
directionVector = directionVector / directionLength;
// Make sure the length is no bigger than 1
directionLength = Mathf.Min(1, directionLength);
// Make the input vector more sensitive towards the extremes and less sensitive in the middle
// This makes it easier to control slow speeds when using analog sticks
directionLength = directionLength * directionLength;
// Multiply the normalized direction vector by the modified length
directionVector = directionVector * directionLength;
}
// Apply the direction to the CharacterMotor
motor.inputMoveDirection = transform.rotation * directionVector;
motor.inputJump = Input.GetButton("Jump");
}
// Require a character controller to be attached to the same game object
@script RequireComponent (CharacterMotor)
@script AddComponentMenu ("Character/FPS Input Controller")
| JavaScript |
var cameraTransform : Transform;
private var _target : Transform;
// The distance in the x-z plane to the target
var distance = 7.0;
// the height we want the camera to be above the target
var height = 3.0;
var angularSmoothLag = 0.3;
var angularMaxSpeed = 15.0;
var heightSmoothLag = 0.3;
var snapSmoothLag = 0.2;
var snapMaxSpeed = 720.0;
var clampHeadPositionScreenSpace = 0.75;
var lockCameraTimeout = 0.2;
private var headOffset = Vector3.zero;
private var centerOffset = Vector3.zero;
private var heightVelocity = 0.0;
private var angleVelocity = 0.0;
private var snap = false;
private var controller : ThirdPersonController;
private var targetHeight = 100000.0;
function Awake ()
{
if(!cameraTransform && Camera.main)
cameraTransform = Camera.main.transform;
if(!cameraTransform) {
Debug.Log("Please assign a camera to the ThirdPersonCamera script.");
enabled = false;
}
_target = transform;
if (_target)
{
controller = _target.GetComponent(ThirdPersonController);
}
if (controller)
{
var characterController : CharacterController = _target.collider;
centerOffset = characterController.bounds.center - _target.position;
headOffset = centerOffset;
headOffset.y = characterController.bounds.max.y - _target.position.y;
}
else
Debug.Log("Please assign a target to the camera that has a ThirdPersonController script attached.");
Cut(_target, centerOffset);
}
function DebugDrawStuff ()
{
Debug.DrawLine(_target.position, _target.position + headOffset);
}
function AngleDistance (a : float, b : float)
{
a = Mathf.Repeat(a, 360);
b = Mathf.Repeat(b, 360);
return Mathf.Abs(b - a);
}
function Apply (dummyTarget : Transform, dummyCenter : Vector3)
{
// Early out if we don't have a target
if (!controller)
return;
var targetCenter = _target.position + centerOffset;
var targetHead = _target.position + headOffset;
// DebugDrawStuff();
// Calculate the current & target rotation angles
var originalTargetAngle = _target.eulerAngles.y;
var currentAngle = cameraTransform.eulerAngles.y;
// Adjust real target angle when camera is locked
var targetAngle = originalTargetAngle;
// When pressing Fire2 (alt) the camera will snap to the target direction real quick.
// It will stop snapping when it reaches the target
if (Input.GetButton("Fire2"))
snap = true;
if (snap)
{
// We are close to the target, so we can stop snapping now!
if (AngleDistance (currentAngle, originalTargetAngle) < 3.0)
snap = false;
currentAngle = Mathf.SmoothDampAngle(currentAngle, targetAngle, angleVelocity, snapSmoothLag, snapMaxSpeed);
}
// Normal camera motion
else
{
if (controller.GetLockCameraTimer () < lockCameraTimeout)
{
targetAngle = currentAngle;
}
// Lock the camera when moving backwards!
// * It is really confusing to do 180 degree spins when turning around.
if (AngleDistance (currentAngle, targetAngle) > 160 && controller.IsMovingBackwards ())
targetAngle += 180;
currentAngle = Mathf.SmoothDampAngle(currentAngle, targetAngle, angleVelocity, angularSmoothLag, angularMaxSpeed);
}
// When jumping don't move camera upwards but only down!
if (controller.IsJumping ())
{
// We'd be moving the camera upwards, do that only if it's really high
var newTargetHeight = targetCenter.y + height;
if (newTargetHeight < targetHeight || newTargetHeight - targetHeight > 5)
targetHeight = targetCenter.y + height;
}
// When walking always update the target height
else
{
targetHeight = targetCenter.y + height;
}
// Damp the height
currentHeight = cameraTransform.position.y;
currentHeight = Mathf.SmoothDamp (currentHeight, targetHeight, heightVelocity, heightSmoothLag);
// Convert the angle into a rotation, by which we then reposition the camera
currentRotation = Quaternion.Euler (0, currentAngle, 0);
// Set the position of the camera on the x-z plane to:
// distance meters behind the target
cameraTransform.position = targetCenter;
cameraTransform.position += currentRotation * Vector3.back * distance;
// Set the height of the camera
cameraTransform.position.y = currentHeight;
// Always look at the target
SetUpRotation(targetCenter, targetHead);
}
function LateUpdate () {
Apply (transform, Vector3.zero);
}
function Cut (dummyTarget : Transform, dummyCenter : Vector3)
{
var oldHeightSmooth = heightSmoothLag;
var oldSnapMaxSpeed = snapMaxSpeed;
var oldSnapSmooth = snapSmoothLag;
snapMaxSpeed = 10000;
snapSmoothLag = 0.001;
heightSmoothLag = 0.001;
snap = true;
Apply (transform, Vector3.zero);
heightSmoothLag = oldHeightSmooth;
snapMaxSpeed = oldSnapMaxSpeed;
snapSmoothLag = oldSnapSmooth;
}
function SetUpRotation (centerPos : Vector3, headPos : Vector3)
{
// Now it's getting hairy. The devil is in the details here, the big issue is jumping of course.
// * When jumping up and down we don't want to center the guy in screen space.
// This is important to give a feel for how high you jump and avoiding large camera movements.
//
// * At the same time we dont want him to ever go out of screen and we want all rotations to be totally smooth.
//
// So here is what we will do:
//
// 1. We first find the rotation around the y axis. Thus he is always centered on the y-axis
// 2. When grounded we make him be centered
// 3. When jumping we keep the camera rotation but rotate the camera to get him back into view if his head is above some threshold
// 4. When landing we smoothly interpolate towards centering him on screen
var cameraPos = cameraTransform.position;
var offsetToCenter = centerPos - cameraPos;
// Generate base rotation only around y-axis
var yRotation = Quaternion.LookRotation(Vector3(offsetToCenter.x, 0, offsetToCenter.z));
var relativeOffset = Vector3.forward * distance + Vector3.down * height;
cameraTransform.rotation = yRotation * Quaternion.LookRotation(relativeOffset);
// Calculate the projected center position and top position in world space
var centerRay = cameraTransform.camera.ViewportPointToRay(Vector3(.5, 0.5, 1));
var topRay = cameraTransform.camera.ViewportPointToRay(Vector3(.5, clampHeadPositionScreenSpace, 1));
var centerRayPos = centerRay.GetPoint(distance);
var topRayPos = topRay.GetPoint(distance);
var centerToTopAngle = Vector3.Angle(centerRay.direction, topRay.direction);
var heightToAngle = centerToTopAngle / (centerRayPos.y - topRayPos.y);
var extraLookAngle = heightToAngle * (centerRayPos.y - centerPos.y);
if (extraLookAngle < centerToTopAngle)
{
extraLookAngle = 0;
}
else
{
extraLookAngle = extraLookAngle - centerToTopAngle;
cameraTransform.rotation *= Quaternion.Euler(-extraLookAngle, 0, 0);
}
}
function GetCenterOffset ()
{
return centerOffset;
}
| JavaScript |
// Require a character controller to be attached to the same game object
@script RequireComponent(CharacterController)
public var idleAnimation : AnimationClip;
public var walkAnimation : AnimationClip;
public var runAnimation : AnimationClip;
public var jumpPoseAnimation : AnimationClip;
public var walkMaxAnimationSpeed : float = 0.75;
public var trotMaxAnimationSpeed : float = 1.0;
public var runMaxAnimationSpeed : float = 1.0;
public var jumpAnimationSpeed : float = 1.15;
public var landAnimationSpeed : float = 1.0;
private var _animation;
enum CharacterState {
Idle = 0,
Walking = 1,
Trotting = 2,
Running = 3,
Jumping = 4,
}
private var _characterState : CharacterState;
// The speed when walking
var walkSpeed = 2.0;
// after trotAfterSeconds of walking we trot with trotSpeed
var trotSpeed = 4.0;
// when pressing "Fire3" button (cmd) we start running
var runSpeed = 6.0;
var inAirControlAcceleration = 3.0;
// How high do we jump when pressing jump and letting go immediately
var jumpHeight = 0.5;
// The gravity for the character
var gravity = 20.0;
// The gravity in controlled descent mode
var speedSmoothing = 10.0;
var rotateSpeed = 500.0;
var trotAfterSeconds = 3.0;
var canJump = true;
private var jumpRepeatTime = 0.05;
private var jumpTimeout = 0.15;
private var groundedTimeout = 0.25;
// The camera doesnt start following the target immediately but waits for a split second to avoid too much waving around.
private var lockCameraTimer = 0.0;
// The current move direction in x-z
private var moveDirection = Vector3.zero;
// The current vertical speed
private var verticalSpeed = 0.0;
// The current x-z move speed
private var moveSpeed = 0.0;
// The last collision flags returned from controller.Move
private var collisionFlags : CollisionFlags;
// Are we jumping? (Initiated with jump button and not grounded yet)
private var jumping = false;
private var jumpingReachedApex = false;
// Are we moving backwards (This locks the camera to not do a 180 degree spin)
private var movingBack = false;
// Is the user pressing any keys?
private var isMoving = false;
// When did the user start walking (Used for going into trot after a while)
private var walkTimeStart = 0.0;
// Last time the jump button was clicked down
private var lastJumpButtonTime = -10.0;
// Last time we performed a jump
private var lastJumpTime = -1.0;
// the height we jumped from (Used to determine for how long to apply extra jump power after jumping.)
private var lastJumpStartHeight = 0.0;
private var inAirVelocity = Vector3.zero;
private var lastGroundedTime = 0.0;
private var isControllable = true;
function Awake ()
{
moveDirection = transform.TransformDirection(Vector3.forward);
_animation = GetComponent(Animation);
if(!_animation)
Debug.Log("The character you would like to control doesn't have animations. Moving her might look weird.");
/*
public var idleAnimation : AnimationClip;
public var walkAnimation : AnimationClip;
public var runAnimation : AnimationClip;
public var jumpPoseAnimation : AnimationClip;
*/
if(!idleAnimation) {
_animation = null;
Debug.Log("No idle animation found. Turning off animations.");
}
if(!walkAnimation) {
_animation = null;
Debug.Log("No walk animation found. Turning off animations.");
}
if(!runAnimation) {
_animation = null;
Debug.Log("No run animation found. Turning off animations.");
}
if(!jumpPoseAnimation && canJump) {
_animation = null;
Debug.Log("No jump animation found and the character has canJump enabled. Turning off animations.");
}
}
function UpdateSmoothedMovementDirection ()
{
var cameraTransform = Camera.main.transform;
var grounded = IsGrounded();
// Forward vector relative to the camera along the x-z plane
var forward = cameraTransform.TransformDirection(Vector3.forward);
forward.y = 0;
forward = forward.normalized;
// Right vector relative to the camera
// Always orthogonal to the forward vector
var right = Vector3(forward.z, 0, -forward.x);
var v = Input.GetAxisRaw("Vertical");
var h = Input.GetAxisRaw("Horizontal");
// Are we moving backwards or looking backwards
if (v < -0.2)
movingBack = true;
else
movingBack = false;
var wasMoving = isMoving;
isMoving = Mathf.Abs (h) > 0.1 || Mathf.Abs (v) > 0.1;
// Target direction relative to the camera
var targetDirection = h * right + v * forward;
// Grounded controls
if (grounded)
{
// Lock camera for short period when transitioning moving & standing still
lockCameraTimer += Time.deltaTime;
if (isMoving != wasMoving)
lockCameraTimer = 0.0;
// We store speed and direction seperately,
// so that when the character stands still we still have a valid forward direction
// moveDirection is always normalized, and we only update it if there is user input.
if (targetDirection != Vector3.zero)
{
// If we are really slow, just snap to the target direction
if (moveSpeed < walkSpeed * 0.9 && grounded)
{
moveDirection = targetDirection.normalized;
}
// Otherwise smoothly turn towards it
else
{
moveDirection = Vector3.RotateTowards(moveDirection, targetDirection, rotateSpeed * Mathf.Deg2Rad * Time.deltaTime, 1000);
moveDirection = moveDirection.normalized;
}
}
// Smooth the speed based on the current target direction
var curSmooth = speedSmoothing * Time.deltaTime;
// Choose target speed
//* We want to support analog input but make sure you cant walk faster diagonally than just forward or sideways
var targetSpeed = Mathf.Min(targetDirection.magnitude, 1.0);
_characterState = CharacterState.Idle;
// Pick speed modifier
if (Input.GetKey (KeyCode.LeftShift) || Input.GetKey (KeyCode.RightShift))
{
targetSpeed *= runSpeed;
_characterState = CharacterState.Running;
}
else if (Time.time - trotAfterSeconds > walkTimeStart)
{
targetSpeed *= trotSpeed;
_characterState = CharacterState.Trotting;
}
else
{
targetSpeed *= walkSpeed;
_characterState = CharacterState.Walking;
}
moveSpeed = Mathf.Lerp(moveSpeed, targetSpeed, curSmooth);
// Reset walk time start when we slow down
if (moveSpeed < walkSpeed * 0.3)
walkTimeStart = Time.time;
}
// In air controls
else
{
// Lock camera while in air
if (jumping)
lockCameraTimer = 0.0;
if (isMoving)
inAirVelocity += targetDirection.normalized * Time.deltaTime * inAirControlAcceleration;
}
}
function ApplyJumping ()
{
// Prevent jumping too fast after each other
if (lastJumpTime + jumpRepeatTime > Time.time)
return;
if (IsGrounded()) {
// Jump
// - Only when pressing the button down
// - With a timeout so you can press the button slightly before landing
if (canJump && Time.time < lastJumpButtonTime + jumpTimeout) {
verticalSpeed = CalculateJumpVerticalSpeed (jumpHeight);
SendMessage("DidJump", SendMessageOptions.DontRequireReceiver);
}
}
}
function ApplyGravity ()
{
if (isControllable) // don't move player at all if not controllable.
{
// Apply gravity
var jumpButton = Input.GetButton("Jump");
// When we reach the apex of the jump we send out a message
if (jumping && !jumpingReachedApex && verticalSpeed <= 0.0)
{
jumpingReachedApex = true;
SendMessage("DidJumpReachApex", SendMessageOptions.DontRequireReceiver);
}
if (IsGrounded ())
verticalSpeed = 0.0;
else
verticalSpeed -= gravity * Time.deltaTime;
}
}
function CalculateJumpVerticalSpeed (targetJumpHeight : float)
{
// From the jump height and gravity we deduce the upwards speed
// for the character to reach at the apex.
return Mathf.Sqrt(2 * targetJumpHeight * gravity);
}
function DidJump ()
{
jumping = true;
jumpingReachedApex = false;
lastJumpTime = Time.time;
lastJumpStartHeight = transform.position.y;
lastJumpButtonTime = -10;
_characterState = CharacterState.Jumping;
}
function Update() {
if (!isControllable)
{
// kill all inputs if not controllable.
Input.ResetInputAxes();
}
if (Input.GetButtonDown ("Jump"))
{
lastJumpButtonTime = Time.time;
}
UpdateSmoothedMovementDirection();
// Apply gravity
// - extra power jump modifies gravity
// - controlledDescent mode modifies gravity
ApplyGravity ();
// Apply jumping logic
ApplyJumping ();
// Calculate actual motion
var movement = moveDirection * moveSpeed + Vector3 (0, verticalSpeed, 0) + inAirVelocity;
movement *= Time.deltaTime;
// Move the controller
var controller : CharacterController = GetComponent(CharacterController);
collisionFlags = controller.Move(movement);
// ANIMATION sector
if(_animation) {
if(_characterState == CharacterState.Jumping)
{
if(!jumpingReachedApex) {
_animation[jumpPoseAnimation.name].speed = jumpAnimationSpeed;
_animation[jumpPoseAnimation.name].wrapMode = WrapMode.ClampForever;
_animation.CrossFade(jumpPoseAnimation.name);
} else {
_animation[jumpPoseAnimation.name].speed = -landAnimationSpeed;
_animation[jumpPoseAnimation.name].wrapMode = WrapMode.ClampForever;
_animation.CrossFade(jumpPoseAnimation.name);
}
}
else
{
if(controller.velocity.sqrMagnitude < 0.1) {
_animation.CrossFade(idleAnimation.name);
}
else
{
if(_characterState == CharacterState.Running) {
_animation[runAnimation.name].speed = Mathf.Clamp(controller.velocity.magnitude, 0.0, runMaxAnimationSpeed);
_animation.CrossFade(runAnimation.name);
}
else if(_characterState == CharacterState.Trotting) {
_animation[walkAnimation.name].speed = Mathf.Clamp(controller.velocity.magnitude, 0.0, trotMaxAnimationSpeed);
_animation.CrossFade(walkAnimation.name);
}
else if(_characterState == CharacterState.Walking) {
_animation[walkAnimation.name].speed = Mathf.Clamp(controller.velocity.magnitude, 0.0, walkMaxAnimationSpeed);
_animation.CrossFade(walkAnimation.name);
}
}
}
}
// ANIMATION sector
// Set rotation to the move direction
if (IsGrounded())
{
transform.rotation = Quaternion.LookRotation(moveDirection);
}
else
{
var xzMove = movement;
xzMove.y = 0;
if (xzMove.sqrMagnitude > 0.001)
{
transform.rotation = Quaternion.LookRotation(xzMove);
}
}
// We are in jump mode but just became grounded
if (IsGrounded())
{
lastGroundedTime = Time.time;
inAirVelocity = Vector3.zero;
if (jumping)
{
jumping = false;
SendMessage("DidLand", SendMessageOptions.DontRequireReceiver);
}
}
}
function OnControllerColliderHit (hit : ControllerColliderHit )
{
// Debug.DrawRay(hit.point, hit.normal);
if (hit.moveDirection.y > 0.01)
return;
}
function GetSpeed () {
return moveSpeed;
}
function IsJumping () {
return jumping;
}
function IsGrounded () {
return (collisionFlags & CollisionFlags.CollidedBelow) != 0;
}
function GetDirection () {
return moveDirection;
}
function IsMovingBackwards () {
return movingBack;
}
function GetLockCameraTimer ()
{
return lockCameraTimer;
}
function IsMoving () : boolean
{
return Mathf.Abs(Input.GetAxisRaw("Vertical")) + Mathf.Abs(Input.GetAxisRaw("Horizontal")) > 0.5;
}
function HasJumpReachedApex ()
{
return jumpingReachedApex;
}
function IsGroundedWithTimeout ()
{
return lastGroundedTime + groundedTimeout > Time.time;
}
function Reset ()
{
gameObject.tag = "Player";
}
| JavaScript |
#pragma strict
#pragma implicit
#pragma downcast
// Does this script currently respond to input?
var canControl : boolean = true;
var useFixedUpdate : boolean = true;
// For the next variables, @System.NonSerialized tells Unity to not serialize the variable or show it in the inspector view.
// Very handy for organization!
// The current global direction we want the character to move in.
@System.NonSerialized
var inputMoveDirection : Vector3 = Vector3.zero;
// Is the jump button held down? We use this interface instead of checking
// for the jump button directly so this script can also be used by AIs.
@System.NonSerialized
var inputJump : boolean = false;
class CharacterMotorMovement {
// The maximum horizontal speed when moving
var maxForwardSpeed : float = 10.0;
var maxSidewaysSpeed : float = 10.0;
var maxBackwardsSpeed : float = 10.0;
// Curve for multiplying speed based on slope (negative = downwards)
var slopeSpeedMultiplier : AnimationCurve = AnimationCurve(Keyframe(-90, 1), Keyframe(0, 1), Keyframe(90, 0));
// How fast does the character change speeds? Higher is faster.
var maxGroundAcceleration : float = 30.0;
var maxAirAcceleration : float = 20.0;
// The gravity for the character
var gravity : float = 10.0;
var maxFallSpeed : float = 20.0;
// For the next variables, @System.NonSerialized tells Unity to not serialize the variable or show it in the inspector view.
// Very handy for organization!
// The last collision flags returned from controller.Move
@System.NonSerialized
var collisionFlags : CollisionFlags;
// We will keep track of the character's current velocity,
@System.NonSerialized
var velocity : Vector3;
// This keeps track of our current velocity while we're not grounded
@System.NonSerialized
var frameVelocity : Vector3 = Vector3.zero;
@System.NonSerialized
var hitPoint : Vector3 = Vector3.zero;
@System.NonSerialized
var lastHitPoint : Vector3 = Vector3(Mathf.Infinity, 0, 0);
}
var movement : CharacterMotorMovement = CharacterMotorMovement();
enum MovementTransferOnJump {
None, // The jump is not affected by velocity of floor at all.
InitTransfer, // Jump gets its initial velocity from the floor, then gradualy comes to a stop.
PermaTransfer, // Jump gets its initial velocity from the floor, and keeps that velocity until landing.
PermaLocked // Jump is relative to the movement of the last touched floor and will move together with that floor.
}
// We will contain all the jumping related variables in one helper class for clarity.
class CharacterMotorJumping {
// Can the character jump?
var enabled : boolean = true;
// How high do we jump when pressing jump and letting go immediately
var baseHeight : float = 1.0;
// We add extraHeight units (meters) on top when holding the button down longer while jumping
var extraHeight : float = 4.1;
// How much does the character jump out perpendicular to the surface on walkable surfaces?
// 0 means a fully vertical jump and 1 means fully perpendicular.
var perpAmount : float = 0.0;
// How much does the character jump out perpendicular to the surface on too steep surfaces?
// 0 means a fully vertical jump and 1 means fully perpendicular.
var steepPerpAmount : float = 0.5;
// For the next variables, @System.NonSerialized tells Unity to not serialize the variable or show it in the inspector view.
// Very handy for organization!
// Are we jumping? (Initiated with jump button and not grounded yet)
// To see if we are just in the air (initiated by jumping OR falling) see the grounded variable.
@System.NonSerialized
var jumping : boolean = false;
@System.NonSerialized
var holdingJumpButton : boolean = false;
// the time we jumped at (Used to determine for how long to apply extra jump power after jumping.)
@System.NonSerialized
var lastStartTime : float = 0.0;
@System.NonSerialized
var lastButtonDownTime : float = -100;
@System.NonSerialized
var jumpDir : Vector3 = Vector3.up;
}
var jumping : CharacterMotorJumping = CharacterMotorJumping();
class CharacterMotorMovingPlatform {
var enabled : boolean = true;
var movementTransfer : MovementTransferOnJump = MovementTransferOnJump.PermaTransfer;
@System.NonSerialized
var hitPlatform : Transform;
@System.NonSerialized
var activePlatform : Transform;
@System.NonSerialized
var activeLocalPoint : Vector3;
@System.NonSerialized
var activeGlobalPoint : Vector3;
@System.NonSerialized
var activeLocalRotation : Quaternion;
@System.NonSerialized
var activeGlobalRotation : Quaternion;
@System.NonSerialized
var lastMatrix : Matrix4x4;
@System.NonSerialized
var platformVelocity : Vector3;
@System.NonSerialized
var newPlatform : boolean;
}
var movingPlatform : CharacterMotorMovingPlatform = CharacterMotorMovingPlatform();
class CharacterMotorSliding {
// Does the character slide on too steep surfaces?
var enabled : boolean = true;
// How fast does the character slide on steep surfaces?
var slidingSpeed : float = 15;
// How much can the player control the sliding direction?
// If the value is 0.5 the player can slide sideways with half the speed of the downwards sliding speed.
var sidewaysControl : float = 1.0;
// How much can the player influence the sliding speed?
// If the value is 0.5 the player can speed the sliding up to 150% or slow it down to 50%.
var speedControl : float = 0.4;
}
var sliding : CharacterMotorSliding = CharacterMotorSliding();
@System.NonSerialized
var grounded : boolean = true;
@System.NonSerialized
var groundNormal : Vector3 = Vector3.zero;
private var lastGroundNormal : Vector3 = Vector3.zero;
private var tr : Transform;
private var controller : CharacterController;
function Awake () {
controller = GetComponent (CharacterController);
tr = transform;
}
private function UpdateFunction () {
// We copy the actual velocity into a temporary variable that we can manipulate.
var velocity : Vector3 = movement.velocity;
// Update velocity based on input
velocity = ApplyInputVelocityChange(velocity);
// Apply gravity and jumping force
velocity = ApplyGravityAndJumping (velocity);
// Moving platform support
var moveDistance : Vector3 = Vector3.zero;
if (MoveWithPlatform()) {
var newGlobalPoint : Vector3 = movingPlatform.activePlatform.TransformPoint(movingPlatform.activeLocalPoint);
moveDistance = (newGlobalPoint - movingPlatform.activeGlobalPoint);
if (moveDistance != Vector3.zero)
controller.Move(moveDistance);
// Support moving platform rotation as well:
var newGlobalRotation : Quaternion = movingPlatform.activePlatform.rotation * movingPlatform.activeLocalRotation;
var rotationDiff : Quaternion = newGlobalRotation * Quaternion.Inverse(movingPlatform.activeGlobalRotation);
var yRotation = rotationDiff.eulerAngles.y;
if (yRotation != 0) {
// Prevent rotation of the local up vector
tr.Rotate(0, yRotation, 0);
}
}
// Save lastPosition for velocity calculation.
var lastPosition : Vector3 = tr.position;
// We always want the movement to be framerate independent. Multiplying by Time.deltaTime does this.
var currentMovementOffset : Vector3 = velocity * Time.deltaTime;
// Find out how much we need to push towards the ground to avoid loosing grouning
// when walking down a step or over a sharp change in slope.
var pushDownOffset : float = Mathf.Max(controller.stepOffset, Vector3(currentMovementOffset.x, 0, currentMovementOffset.z).magnitude);
if (grounded)
currentMovementOffset -= pushDownOffset * Vector3.up;
// Reset variables that will be set by collision function
movingPlatform.hitPlatform = null;
groundNormal = Vector3.zero;
// Move our character!
movement.collisionFlags = controller.Move (currentMovementOffset);
movement.lastHitPoint = movement.hitPoint;
lastGroundNormal = groundNormal;
if (movingPlatform.enabled && movingPlatform.activePlatform != movingPlatform.hitPlatform) {
if (movingPlatform.hitPlatform != null) {
movingPlatform.activePlatform = movingPlatform.hitPlatform;
movingPlatform.lastMatrix = movingPlatform.hitPlatform.localToWorldMatrix;
movingPlatform.newPlatform = true;
}
}
// Calculate the velocity based on the current and previous position.
// This means our velocity will only be the amount the character actually moved as a result of collisions.
var oldHVelocity : Vector3 = new Vector3(velocity.x, 0, velocity.z);
movement.velocity = (tr.position - lastPosition) / Time.deltaTime;
var newHVelocity : Vector3 = new Vector3(movement.velocity.x, 0, movement.velocity.z);
// The CharacterController can be moved in unwanted directions when colliding with things.
// We want to prevent this from influencing the recorded velocity.
if (oldHVelocity == Vector3.zero) {
movement.velocity = new Vector3(0, movement.velocity.y, 0);
}
else {
var projectedNewVelocity : float = Vector3.Dot(newHVelocity, oldHVelocity) / oldHVelocity.sqrMagnitude;
movement.velocity = oldHVelocity * Mathf.Clamp01(projectedNewVelocity) + movement.velocity.y * Vector3.up;
}
if (movement.velocity.y < velocity.y - 0.001) {
if (movement.velocity.y < 0) {
// Something is forcing the CharacterController down faster than it should.
// Ignore this
movement.velocity.y = velocity.y;
}
else {
// The upwards movement of the CharacterController has been blocked.
// This is treated like a ceiling collision - stop further jumping here.
jumping.holdingJumpButton = false;
}
}
// We were grounded but just loosed grounding
if (grounded && !IsGroundedTest()) {
grounded = false;
// Apply inertia from platform
if (movingPlatform.enabled &&
(movingPlatform.movementTransfer == MovementTransferOnJump.InitTransfer ||
movingPlatform.movementTransfer == MovementTransferOnJump.PermaTransfer)
) {
movement.frameVelocity = movingPlatform.platformVelocity;
movement.velocity += movingPlatform.platformVelocity;
}
SendMessage("OnFall", SendMessageOptions.DontRequireReceiver);
// We pushed the character down to ensure it would stay on the ground if there was any.
// But there wasn't so now we cancel the downwards offset to make the fall smoother.
tr.position += pushDownOffset * Vector3.up;
}
// We were not grounded but just landed on something
else if (!grounded && IsGroundedTest()) {
grounded = true;
jumping.jumping = false;
SubtractNewPlatformVelocity();
SendMessage("OnLand", SendMessageOptions.DontRequireReceiver);
}
// Moving platforms support
if (MoveWithPlatform()) {
// Use the center of the lower half sphere of the capsule as reference point.
// This works best when the character is standing on moving tilting platforms.
movingPlatform.activeGlobalPoint = tr.position + Vector3.up * (controller.center.y - controller.height*0.5 + controller.radius);
movingPlatform.activeLocalPoint = movingPlatform.activePlatform.InverseTransformPoint(movingPlatform.activeGlobalPoint);
// Support moving platform rotation as well:
movingPlatform.activeGlobalRotation = tr.rotation;
movingPlatform.activeLocalRotation = Quaternion.Inverse(movingPlatform.activePlatform.rotation) * movingPlatform.activeGlobalRotation;
}
}
function FixedUpdate () {
if (movingPlatform.enabled) {
if (movingPlatform.activePlatform != null) {
if (!movingPlatform.newPlatform) {
var lastVelocity : Vector3 = movingPlatform.platformVelocity;
movingPlatform.platformVelocity = (
movingPlatform.activePlatform.localToWorldMatrix.MultiplyPoint3x4(movingPlatform.activeLocalPoint)
- movingPlatform.lastMatrix.MultiplyPoint3x4(movingPlatform.activeLocalPoint)
) / Time.deltaTime;
}
movingPlatform.lastMatrix = movingPlatform.activePlatform.localToWorldMatrix;
movingPlatform.newPlatform = false;
}
else {
movingPlatform.platformVelocity = Vector3.zero;
}
}
if (useFixedUpdate)
UpdateFunction();
}
function Update () {
if (!useFixedUpdate)
UpdateFunction();
}
private function ApplyInputVelocityChange (velocity : Vector3) {
if (!canControl)
inputMoveDirection = Vector3.zero;
// Find desired velocity
var desiredVelocity : Vector3;
if (grounded && TooSteep()) {
// The direction we're sliding in
desiredVelocity = Vector3(groundNormal.x, 0, groundNormal.z).normalized;
// Find the input movement direction projected onto the sliding direction
var projectedMoveDir = Vector3.Project(inputMoveDirection, desiredVelocity);
// Add the sliding direction, the spped control, and the sideways control vectors
desiredVelocity = desiredVelocity + projectedMoveDir * sliding.speedControl + (inputMoveDirection - projectedMoveDir) * sliding.sidewaysControl;
// Multiply with the sliding speed
desiredVelocity *= sliding.slidingSpeed;
}
else
desiredVelocity = GetDesiredHorizontalVelocity();
if (movingPlatform.enabled && movingPlatform.movementTransfer == MovementTransferOnJump.PermaTransfer) {
desiredVelocity += movement.frameVelocity;
desiredVelocity.y = 0;
}
if (grounded)
desiredVelocity = AdjustGroundVelocityToNormal(desiredVelocity, groundNormal);
else
velocity.y = 0;
// Enforce max velocity change
var maxVelocityChange : float = GetMaxAcceleration(grounded) * Time.deltaTime;
var velocityChangeVector : Vector3 = (desiredVelocity - velocity);
if (velocityChangeVector.sqrMagnitude > maxVelocityChange * maxVelocityChange) {
velocityChangeVector = velocityChangeVector.normalized * maxVelocityChange;
}
// If we're in the air and don't have control, don't apply any velocity change at all.
// If we're on the ground and don't have control we do apply it - it will correspond to friction.
if (grounded || canControl)
velocity += velocityChangeVector;
if (grounded) {
// When going uphill, the CharacterController will automatically move up by the needed amount.
// Not moving it upwards manually prevent risk of lifting off from the ground.
// When going downhill, DO move down manually, as gravity is not enough on steep hills.
velocity.y = Mathf.Min(velocity.y, 0);
}
return velocity;
}
private function ApplyGravityAndJumping (velocity : Vector3) {
if (!inputJump || !canControl) {
jumping.holdingJumpButton = false;
jumping.lastButtonDownTime = -100;
}
if (inputJump && jumping.lastButtonDownTime < 0 && canControl)
jumping.lastButtonDownTime = Time.time;
if (grounded)
velocity.y = Mathf.Min(0, velocity.y) - movement.gravity * Time.deltaTime;
else {
velocity.y = movement.velocity.y - movement.gravity * Time.deltaTime;
// When jumping up we don't apply gravity for some time when the user is holding the jump button.
// This gives more control over jump height by pressing the button longer.
if (jumping.jumping && jumping.holdingJumpButton) {
// Calculate the duration that the extra jump force should have effect.
// If we're still less than that duration after the jumping time, apply the force.
if (Time.time < jumping.lastStartTime + jumping.extraHeight / CalculateJumpVerticalSpeed(jumping.baseHeight)) {
// Negate the gravity we just applied, except we push in jumpDir rather than jump upwards.
velocity += jumping.jumpDir * movement.gravity * Time.deltaTime;
}
}
// Make sure we don't fall any faster than maxFallSpeed. This gives our character a terminal velocity.
velocity.y = Mathf.Max (velocity.y, -movement.maxFallSpeed);
}
if (grounded) {
// Jump only if the jump button was pressed down in the last 0.2 seconds.
// We use this check instead of checking if it's pressed down right now
// because players will often try to jump in the exact moment when hitting the ground after a jump
// and if they hit the button a fraction of a second too soon and no new jump happens as a consequence,
// it's confusing and it feels like the game is buggy.
if (jumping.enabled && canControl && (Time.time - jumping.lastButtonDownTime < 0.2)) {
grounded = false;
jumping.jumping = true;
jumping.lastStartTime = Time.time;
jumping.lastButtonDownTime = -100;
jumping.holdingJumpButton = true;
// Calculate the jumping direction
if (TooSteep())
jumping.jumpDir = Vector3.Slerp(Vector3.up, groundNormal, jumping.steepPerpAmount);
else
jumping.jumpDir = Vector3.Slerp(Vector3.up, groundNormal, jumping.perpAmount);
// Apply the jumping force to the velocity. Cancel any vertical velocity first.
velocity.y = 0;
velocity += jumping.jumpDir * CalculateJumpVerticalSpeed (jumping.baseHeight);
// Apply inertia from platform
if (movingPlatform.enabled &&
(movingPlatform.movementTransfer == MovementTransferOnJump.InitTransfer ||
movingPlatform.movementTransfer == MovementTransferOnJump.PermaTransfer)
) {
movement.frameVelocity = movingPlatform.platformVelocity;
velocity += movingPlatform.platformVelocity;
}
SendMessage("OnJump", SendMessageOptions.DontRequireReceiver);
}
else {
jumping.holdingJumpButton = false;
}
}
return velocity;
}
function OnControllerColliderHit (hit : ControllerColliderHit) {
if (hit.normal.y > 0 && hit.normal.y > groundNormal.y && hit.moveDirection.y < 0) {
if ((hit.point - movement.lastHitPoint).sqrMagnitude > 0.001 || lastGroundNormal == Vector3.zero)
groundNormal = hit.normal;
else
groundNormal = lastGroundNormal;
movingPlatform.hitPlatform = hit.collider.transform;
movement.hitPoint = hit.point;
movement.frameVelocity = Vector3.zero;
}
}
private function SubtractNewPlatformVelocity () {
// When landing, subtract the velocity of the new ground from the character's velocity
// since movement in ground is relative to the movement of the ground.
if (movingPlatform.enabled &&
(movingPlatform.movementTransfer == MovementTransferOnJump.InitTransfer ||
movingPlatform.movementTransfer == MovementTransferOnJump.PermaTransfer)
) {
// If we landed on a new platform, we have to wait for two FixedUpdates
// before we know the velocity of the platform under the character
if (movingPlatform.newPlatform) {
var platform : Transform = movingPlatform.activePlatform;
yield WaitForFixedUpdate();
yield WaitForFixedUpdate();
if (grounded && platform == movingPlatform.activePlatform)
yield 1;
}
movement.velocity -= movingPlatform.platformVelocity;
}
}
private function MoveWithPlatform () : boolean {
return (
movingPlatform.enabled
&& (grounded || movingPlatform.movementTransfer == MovementTransferOnJump.PermaLocked)
&& movingPlatform.activePlatform != null
);
}
private function GetDesiredHorizontalVelocity () {
// Find desired velocity
var desiredLocalDirection : Vector3 = tr.InverseTransformDirection(inputMoveDirection);
var maxSpeed : float = MaxSpeedInDirection(desiredLocalDirection);
if (grounded) {
// Modify max speed on slopes based on slope speed multiplier curve
var movementSlopeAngle = Mathf.Asin(movement.velocity.normalized.y) * Mathf.Rad2Deg;
maxSpeed *= movement.slopeSpeedMultiplier.Evaluate(movementSlopeAngle);
}
return tr.TransformDirection(desiredLocalDirection * maxSpeed);
}
private function AdjustGroundVelocityToNormal (hVelocity : Vector3, groundNormal : Vector3) : Vector3 {
var sideways : Vector3 = Vector3.Cross(Vector3.up, hVelocity);
return Vector3.Cross(sideways, groundNormal).normalized * hVelocity.magnitude;
}
private function IsGroundedTest () {
return (groundNormal.y > 0.01);
}
function GetMaxAcceleration (grounded : boolean) : float {
// Maximum acceleration on ground and in air
if (grounded)
return movement.maxGroundAcceleration;
else
return movement.maxAirAcceleration;
}
function CalculateJumpVerticalSpeed (targetJumpHeight : float) {
// From the jump height and gravity we deduce the upwards speed
// for the character to reach at the apex.
return Mathf.Sqrt (2 * targetJumpHeight * movement.gravity);
}
function IsJumping () {
return jumping.jumping;
}
function IsSliding () {
return (grounded && sliding.enabled && TooSteep());
}
function IsTouchingCeiling () {
return (movement.collisionFlags & CollisionFlags.CollidedAbove) != 0;
}
function IsGrounded () {
return grounded;
}
function TooSteep () {
return (groundNormal.y <= Mathf.Cos(controller.slopeLimit * Mathf.Deg2Rad));
}
function GetDirection () {
return inputMoveDirection;
}
function SetControllable (controllable : boolean) {
canControl = controllable;
}
// Project a direction onto elliptical quater segments based on forward, sideways, and backwards speed.
// The function returns the length of the resulting vector.
function MaxSpeedInDirection (desiredMovementDirection : Vector3) : float {
if (desiredMovementDirection == Vector3.zero)
return 0;
else {
var zAxisEllipseMultiplier : float = (desiredMovementDirection.z > 0 ? movement.maxForwardSpeed : movement.maxBackwardsSpeed) / movement.maxSidewaysSpeed;
var temp : Vector3 = new Vector3(desiredMovementDirection.x, 0, desiredMovementDirection.z / zAxisEllipseMultiplier).normalized;
var length : float = new Vector3(temp.x, 0, temp.z * zAxisEllipseMultiplier).magnitude * movement.maxSidewaysSpeed;
return length;
}
}
function SetVelocity (velocity : Vector3) {
grounded = false;
movement.velocity = velocity;
movement.frameVelocity = Vector3.zero;
SendMessage("OnExternalVelocity");
}
// Require a character controller to be attached to the same game object
@script RequireComponent (CharacterController)
@script AddComponentMenu ("Character/Character Motor")
| JavaScript |
// This makes the character turn to face the current movement speed per default.
var autoRotate : boolean = true;
var maxRotationSpeed : float = 360;
private var motor : CharacterMotor;
// Use this for initialization
function Awake () {
motor = GetComponent(CharacterMotor);
}
// Update is called once per frame
function Update () {
// Get the input vector from kayboard or analog stick
var directionVector = new Vector3(Input.GetAxis("Horizontal"), Input.GetAxis("Vertical"), 0);
if (directionVector != Vector3.zero) {
// Get the length of the directon vector and then normalize it
// Dividing by the length is cheaper than normalizing when we already have the length anyway
var directionLength = directionVector.magnitude;
directionVector = directionVector / directionLength;
// Make sure the length is no bigger than 1
directionLength = Mathf.Min(1, directionLength);
// Make the input vector more sensitive towards the extremes and less sensitive in the middle
// This makes it easier to control slow speeds when using analog sticks
directionLength = directionLength * directionLength;
// Multiply the normalized direction vector by the modified length
directionVector = directionVector * directionLength;
}
// Rotate the input vector into camera space so up is camera's up and right is camera's right
directionVector = Camera.main.transform.rotation * directionVector;
// Rotate input vector to be perpendicular to character's up vector
var camToCharacterSpace = Quaternion.FromToRotation(-Camera.main.transform.forward, transform.up);
directionVector = (camToCharacterSpace * directionVector);
// Apply the direction to the CharacterMotor
motor.inputMoveDirection = directionVector;
motor.inputJump = Input.GetButton("Jump");
// Set rotation to the move direction
if (autoRotate && directionVector.sqrMagnitude > 0.01) {
var newForward : Vector3 = ConstantSlerp(
transform.forward,
directionVector,
maxRotationSpeed * Time.deltaTime
);
newForward = ProjectOntoPlane(newForward, transform.up);
transform.rotation = Quaternion.LookRotation(newForward, transform.up);
}
}
function ProjectOntoPlane (v : Vector3, normal : Vector3) {
return v - Vector3.Project(v, normal);
}
function ConstantSlerp (from : Vector3, to : Vector3, angle : float) {
var value : float = Mathf.Min(1, angle / Vector3.Angle(from, to));
return Vector3.Slerp(from, to, value);
}
// Require a character controller to be attached to the same game object
@script RequireComponent (CharacterMotor)
@script AddComponentMenu ("Character/Platform Input Controller")
| JavaScript |
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, "");
};
//function btnStyleJqueryDialog(buttonLabel) {
// $('.ui-dialog-buttonpane :button').each(function() {
// if ($(this).text() == buttonLabel) {
// $(this).addClass('naranja');
// }
// });
//}
function validateNumeric(event) {
// Backspace, tab, enter, end, home, left, right, del
var controlKeys = [8, 9, 13, 35, 36, 37, 39, 46];
var isControlKey = controlKeys.join(',').match(new RegExp(event.which));
//console.log('isControlKey ' + isControlKey);
if (!event.which
|| (48 <= event.which && event.which <= 57) // 0 a 9
|| isControlKey) {
return;
} else {
event.preventDefault();
}
}
function limpiarForm() {
if (document && document.forms && document.forms[0]) {
document.forms[0].reset();
}
}
function limpiarCombo(idCombo,labelInicial) {
$(idCombo).children().remove();
if (labelInicial)
$(idCombo).html('<option selected value="-1">' + labelInicial + '</option>');
}
// el objeto a mostrar debe tener propiedades id y nombre
function cargarCombo(idCombo, listado,labelInicial,itemId,itemLabel) {
limpiarCombo(idCombo,labelInicial);
if (listado) {
var options ="";// $(idCombo).html();
var data=null;
for (var i = 0; i < listado.length; i++) {
data=listado[i];
options += '<option value="' + data[itemId] + '">' + data[itemLabel] + "</option>";
}
if (document.getElementById(idCombo))
document.getElementById(idCombo).innerHTML=options;
//$(idCombo).html(options);
}
}
// en caso de no ejecutar llamada ajax, nextURL=variable sin valor (undefined) y datajson={}
function Confirmar(mensaje, nextURL,dataJSON,aceptarFunction,cancelarFunction) {
$('<div id="dialog-confirm" title="Confirmar" style="display: none;"><p id="popupConfirm"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
resizable : false,
buttons: {
No: function(){
$(this).dialog("close");
if (cancelarFunction)
cancelarFunction();
},
Sí: function() {
$( this ).dialog( "close" );
if (nextURL!=undefined){
$.getJSON(nextURL, dataJSON, function(response, textStatus) {
if (!response.error) {
aceptarFunction();
} else {
alert(response.error);
}
});
}else{
if (aceptarFunction)
aceptarFunction();
}
}
},
open: function() {
$(this).parents('.ui-dialog-buttonpane button:eq(1)').focus();//aceptar
$(this).parents('.ui-dialog-buttonpane button:eq(0)').blur();//cancelar
}
});
$( "#popupConfirm" ).html(mensaje);
$( "#dialog-confirm" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-confirm" ).dialog( "open" );
}
//exito y redireccion
function mensajeExito(mensaje, nextURL,isPopup) {
$('<div id="dialog-exito" title="Éxito" style="display: none;"><p id="popupExito"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-exito" ).dialog("close");
if (nextURL!=undefined){
if (isPopup){
window.top.location = Osinergmin.contextPath + nextURL;
}else{
window.location = Osinergmin.contextPath + nextURL;
}
}
//return false;
}
}
});
$( "#popupExito" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-exito" ).dialog( "open" );
}
//mensaje alerta y redireccion
function mensajeAdvertencia(mensaje, nextURL) {
$('<div id="dialog-alerta" title="Advertencia" style="display: none;"><p id="popupAlerta"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-alerta" ).dialog("close");
if (nextURL!=undefined){
window.location = Osinergmin.contextPath + nextURL;
}
//return false;
}
}
});
$( "#popupAlerta" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-alerta" ).dialog( "open" );
}
//crea dialogo tipo alerta
//mensaje: mensaje de validacion
//idFocus ejm: "#idCampo" para darle foco
function mensajeValidacion(mensaje,idFocus) {
$('<div id="dialog-message" title="Advertencia" style="display: none;"><p id="popupMessage"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-message" ).dialog("close");
}
}
});
$( "#popupMessage" ).html(mensaje);
if (idFocus != undefined && idFocus != null) {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
$(idFocus).focus();
});
} else {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
});
}
$( "#dialog-message" ).dialog( "open" );
}
function isValidURL(url){
var regExpression = /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i;
return regExpression.test(url);
}
function isValidEmail(email){
//var regex=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i;
var regex=/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
return regex.test(email);
}
function validarTamanho(idInput, tamanho) {
$(idInput).keypress(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).keyup(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).blur(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
}
var fillEmptyColumn = function(liner, record, column, data) {
var linerElement = new YAHOO.util.Element(liner);
if (!data) {
linerElement.get('element').innerHTML = '---';
}else{
linerElement.get('element').innerHTML = data;
}
}
function recortarCadena(cadena, longitud) {
if (cadena.length > longitud + 3) { // 3 porque se concatena el '...'
return cadena.substring(0, longitud) + '...';
} else {
return cadena;
}
} | JavaScript |
Osinergmin.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 115
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
]
});
layout.render();
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 115
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
},
{
position: 'left',
body: 'layout-left',
width: 300,
resize: false,
/*gutter: '4px',*/
collapse: true,
scroll: true,
animate: true,
header: 'OPCIONES'
}
]
});
layout.render();
}); | JavaScript |
Tesis.popup = {}
Tesis.popup.manager = {}
Tesis.popup.manager.show = function(href, title, width, height) {
if (href == undefined) {
alert("href no definido.");
} else {
Tesis.panel = new YAHOO.widget.Panel("dialog-panel", {
width: width,
height: height,
fixedcenter: true,
close: true,
draggable: false,
zindex:4,
modal: true,
visible: false
});
Tesis.panel.setHeader(title);
Tesis.panel.setBody('<iframe frameborder="0" src="' + href + '" width="100%" height="100%"/>');
Tesis.panel.render(document.body);
Tesis.panel.show();
}
} | JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog.Usuarios = function(elContainer, url, messages, handlers) {
this.messages = messages;
this.handlers = handlers;
YAHOO.Tesis.dialog.Usuarios.superclass.constructor.call(this, elContainer, this.construirConfig());
// este dialog no usa callback
// this.callback = { success: this.handlers.success, failure: this.handlers.failure };
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog.Usuarios, YAHOO.widget.Dialog, {
construirConfig: function() {
return {
width: '700px', height: '650px',
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true
};
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.cargosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.cargosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.cargosTable, YAHOO.Tesis.ListTableBase, {
/*verAtencion: function (nroAtencion){
calificacionDialog = new YAHOO.Osimac.dialog.Calificacion('calificacionDialog',
Osinergmin.contextPath + '/pages/calificacion/ver?nroAtencion=' + nroAtencion);
calificacionDialog.show();
},*/
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.cargosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
correctoFormatter: function(liner, record, column, data) {
if (data!=null){
if (!data) {
liner.innerHTML = 'No';
} else {
liner.innerHTML = 'Sí';
}
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
var checkSi="";
var checkNo="";
var idRadio=record.getData("nroAtencion");
var idCalificacion=record.getData("idCalificacion");
var corrJor="";
if (record.getData("correcto")!=null){
if (record.getData("correcto")){
checkSi="checked";
}else{
checkNo="checked";
}
}
if (record.getData("cantidadRespuestas")>1){
var icono="editar";
if (/*(record.getData("correcto")!=null) ||*/ (record.getData("correctoJOR")!=null)){
icono="revisado";
if (record.getData("correctoJOR")){
corrJor="Sí";
}else{
corrJor="No";
}
}
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td>"+corrJor+"</td><td><div class='"+icono+"' id='"+idRadio+"Icon'></div></td></tr></table>";
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.revisarAtencion(nroAtencion,1);
}, '.editar');
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.verAtencion(nroAtencion);
}, '.revisado');
}
},
construirColumnDefs: function() {
return [
{
key: 'idCargo',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},
{
key: 'acciones',
label: this.messages.cargosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var forceIERequest = new Date().getTime();
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/calificacion/find?fie=" + forceIERequest+"&");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstAtencionesDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'nroAtencion'}, {key: 'tema'}, {key:'fechaRegistro'},{key: 'necesidad'},{key:'respuesta'},{key:'correcto'},{key:'idCalificacion'} ,{key:'observacion'},{key:'correctoJOR'},{key:'cantidadRespuestas'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.cargosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.cargosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.cargosTable.paginacion.fin,
previousPageLinkLabel: this.messages.cargosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.cargosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "nroAtencion";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.cargosTable.paginacion.filasxpagina;
var idEstado =$('#nombre').val();
var codDependencia = $('#codDependencia').val();
var fechaDesde = $('#fechaDesde').val();
var fechaHasta = $('#fechaHasta').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&idEstado=' + idEstado +
'&codDependencia=' + codDependencia +
'&fechaDesde=' + fechaDesde +
'&fechaHasta=' +fechaHasta+
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog.Cargos = function(elContainer, url, messages, handlers) {
this.messages = messages;
this.handlers = handlers;
YAHOO.Tesis.dialog.Cargos.superclass.constructor.call(this, elContainer, this.construirConfig());
// este dialog no usa callback
// this.callback = { success: this.handlers.success, failure: this.handlers.failure };
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog.Cargos, YAHOO.widget.Dialog, {
construirConfig: function() {
return {
width: '700px', height: '650px',
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true
};
}
}); | JavaScript |
YAHOO.namespace('Osimac.calificacion');
YAHOO.Osimac.calificacion.calificacionTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Osimac.calificacion.calificacionTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Osimac.calificacion.calificacionTable, YAHOO.Osimac.ListTableBase, {
revisarAtencion: function (nroAtencion,preRadio){
calificacionDialog = new YAHOO.Osimac.dialog.Calificacion('calificacionDialog',
Osinergmin.contextPath + '/pages/calificacion/calificar?nroAtencion=' + nroAtencion+"&preRadio="+preRadio);
calificacionDialog.show();
},
verAtencion: function (nroAtencion){
calificacionDialog = new YAHOO.Osimac.dialog.Calificacion('calificacionDialog',
Osinergmin.contextPath + '/pages/calificacion/ver?nroAtencion=' + nroAtencion);
calificacionDialog.show();
},
conformeAtencion: function (idCalificacion,nroAtencion){
var self=this;
$.getJSON("calificacion/correcto", {idCalificacion: idCalificacion, nroAtencion:nroAtencion}, function(response, textStatus) {
if (response.error){
mensajeValidacion("Error al registrar calificación");
return;
}
self.actualizaFila(nroAtencion,idCalificacion);
});
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.calificacionTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
correctoFormatter: function(liner, record, column, data) {
if (data!=null){
if (!data) {
liner.innerHTML = 'No';
} else {
liner.innerHTML = 'Sí';
}
}
},
cantRespuestasFormatter: function (liner,record,column,data){
var self = this;
var linerElement = new YAHOO.util.Element(liner);
if (data>1){
linerElement.get('element').innerHTML ="<div class='nResp'><a href='#'>"+data+"</a></div>"
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.verAtencion(nroAtencion);
}, '.nResp');
}else{
linerElement.get('element').innerHTML =data;
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
var checkSi="";
var checkNo="";
var idRadio=record.getData("nroAtencion");
var idCalificacion=record.getData("idCalificacion");
var corrJor="";
if (record.getData("correcto")!=null){
if (record.getData("correcto")){
checkSi="checked";
}else{
checkNo="checked";
}
}
if (record.getData("cantidadRespuestas")>1){
var icono="editar";
if (/*(record.getData("correcto")!=null) ||*/ (record.getData("correctoJOR")!=null)){
icono="revisado";
if (record.getData("correctoJOR")){
corrJor="Sí";
}else{
corrJor="No";
}
}
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td>"+corrJor+"</td><td><div class='"+icono+"' id='"+idRadio+"Icon'></div></td></tr></table>";
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.revisarAtencion(nroAtencion,1);
}, '.editar');
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.verAtencion(nroAtencion);
}, '.revisado');
}else{
if ((record.getData("correcto")==null)|| (record.getData("correctoJOR")==null)){
if (record.getData("correctoJOR")==null){
checkNo="";
checkSi="";
}
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td>"+
"<div id='radios"+idRadio+"'>"+
"<div class='si'><input type='radio' name='"+idRadio+"' id='"+idRadio+"' value='1' "+checkSi+" > Sí </div>"+
"<div class='no'><input type='radio' name='"+idRadio+"' id='"+idRadio+"' value='0' "+checkNo+"> No </div>"+
"</div>"+
"</td></tr></table>";
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
var preRadio=0;
self.revisarAtencion(nroAtencion,preRadio);
}, '.no');
linerElement.delegate('change', function() {
var idCalificacion = record.getData("idCalificacion");
var nroAtencion = record.getData("nroAtencion");
self.conformeAtencion(idCalificacion,nroAtencion);
}, '.si');
}else{
if (record.getData("correctoJOR")){
corrJor="Sí";
}else{
corrJor="No";
}
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td>"+corrJor+"</td><td><div class='revisado' id='"+idRadio+"Icon'></div></td></tr></table>";
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.verAtencion(nroAtencion);
}, '.revisado');
}
}
},
construirColumnDefs: function() {
return [
{
key: 'nroAtencion',
resizeable: true,
minWidth: 30,
label: this.messages.calificacionTable.columna.nroAtencion
},
{
key: 'tema',
resizeable: true,
minWidth: 400,
label: this.messages.calificacionTable.columna.tema
},
{
key: 'necesidad',
resizeable: true,
minWidth: 900,
label: this.messages.calificacionTable.columna.necesidad
},
{
key: 'respuesta',
resizeable: true,
minWidth: 900,
label: this.messages.calificacionTable.columna.respuesta
},
{
key: 'cantidadRespuestas',
label: this.messages.calificacionTable.columna.cantidad,
formatter: this.cantRespuestasFormatter
},
{
key: 'fechaRegistro',
resizeable: true,
minWidth: 300,
label: this.messages.calificacionTable.columna.fecha
},
{
key: 'correcto',
resizeable: true,
label: this.messages.calificacionTable.columna.correcto,
formatter: this.correctoFormatter
},
{
key: 'observacion',
resizeable: true,
minWidth: 300,
label: this.messages.calificacionTable.columna.observacion
},
{
key: 'acciones',
label: this.messages.calificacionTable.columna.conforme,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
},
{
key: 'idCalificacion',
hidden: true
},{
key:'correctoJOR',
hidden:true
}
];
},
construirDataSource: function() {
var forceIERequest = new Date().getTime();
var dataSource = new YAHOO.util.XHRDataSource(Osinergmin.contextPath + "/pages/calificacion/find?fie=" + forceIERequest+"&");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstAtencionesDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'nroAtencion'}, {key: 'tema'}, {key:'fechaRegistro'},{key: 'necesidad'},{key:'respuesta'},{key:'correcto'},{key:'idCalificacion'} ,{key:'observacion'},{key:'correctoJOR'},{key:'cantidadRespuestas'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Osinergmin.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.calificacionTable.paginacion.filasxpagina,
containers: "calificacionPaginator", //contenedor
firstPageLinkLabel: this.messages.calificacionTable.paginacion.inicio,
lastPageLinkLabel: this.messages.calificacionTable.paginacion.fin,
previousPageLinkLabel: this.messages.calificacionTable.paginacion.anterior,
nextPageLinkLabel: this.messages.calificacionTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "nroAtencion";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.calificacionTable.paginacion.filasxpagina;
var idEstado =$('#idEstado').val();
var codDependencia = $('#codDependencia').val();
var fechaDesde = $('#fechaDesde').val();
var fechaHasta = $('#fechaHasta').val();
// var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&idEstado=' + idEstado +
'&codDependencia=' + codDependencia +
'&fechaDesde=' + fechaDesde +
'&fechaHasta=' +fechaHasta
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
actualizaFila: function(nroAtencion,idCalificacion){
var self=this;
$("#"+nroAtencion+"Icon").removeClass("editar").addClass("revisado");
$("#radios"+nroAtencion).html("");
$("#radios"+nroAtencion).addClass("revisado");
$("#radios"+nroAtencion).click(function(){
self.verAtencion(nroAtencion);
});
}
}); | JavaScript |
Tesis.loading = {}
Tesis.loading.show = function(texto){
if (!Tesis.loading.panel) {
Tesis.loading.panel = new YAHOO.widget.Panel("loading-panel", {
width: "300px",
fixedcenter: true,
close: false,
draggable: false,
zindex:4,
modal: true,
visible: false
});
var header = 'Procesando, espere por favor... ' + (texto ? texto : '');
Tesis.loading.panel.setHeader(header);
Tesis.loading.panel.setBody("<img src=\"http://l.yimg.com/a/i/us/per/gr/gp/rel_interstitial_loading.gif\" style=\"width:100%;\" />");
Tesis.loading.panel.render(document.body);
}
Tesis.loading.panel.show();
}
Tesis.loading.hide = function(){
Tesis.loading.panel.hide();
} | JavaScript |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
if(!window.Tesis) window.Tesis = {};
Tesis.contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf('/', 1));
Tesis.dom = YAHOO.util.Dom;
Tesis.event = YAHOO.util.Event;
| JavaScript |
Tesis.event.onDOMReady(function() {
var popupLayout = new YAHOO.widget.Layout({
units: [{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}]
});
popupLayout.render();
}); | JavaScript |
if (!window.Osinergmin) {
window.Osinergmin = {};
}
Osinergmin.EstadoAtencionEnum = {
FINALIZADA : 1,
SEGUIMIENTO : 2,
PENDIENTE : 3,
DERIVADA : 4
}; | JavaScript |
YAHOO.namespace('Osimac.atencion');
YAHOO.Osimac.atencion.atencionesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Osimac.atencion.atencionesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Osimac.atencion.atencionesTable, YAHOO.Osimac.ListTableBase, {
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
var classEditar="editar";
var classVer="verDisabled";
if (record.getData("idEstado")!=Osinergmin.EstadoAtencionEnum.PENDIENTE){
classEditar="editarDisabled";
classVer="ver";
}
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='"+classVer+"'></div></td><td><div class='"+classEditar+"'></></td></tr></table>";
self.setAccionTooltip(linerElement, '.ver', messages.atencionTable.ver, 5000);
self.setAccionTooltip(linerElement, '.editar', messages.atencionTable.editar, 5000);
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.abrirPendiente(nroAtencion);
}, '.editar');
linerElement.delegate('click', function() {
var nroAtencion = record.getData("nroAtencion");
self.verAtencion(nroAtencion);
}, '.ver');
},
abrirPendiente: function(idAtencion){
Osinergmin.loading.show();
document.location=Osinergmin.contextPath+"/pages/atencion/abrirPendiente?idAtencion="+idAtencion;
},
verAtencion: function(idAtencion){
Osinergmin.loading.show();
document.location=Osinergmin.contextPath+"/pages/atencion/ver?idAtencion="+idAtencion;
},
sectorFormatter: function(liner, record, column, data){
liner.innerHTML = 'Sector 1';
},
motivoFormatter: function(liner, record, column, data){
liner.innerHTML = 'Motivo 1';
},
nulosFormatter: function(liner, record, column, data) {
if (!data) {
liner.innerHTML = '---';
} else {
liner.innerHTML = data;
}
},
ciudadanoFormatter: function (liner, record, column, data){
var representado=record.getData().representado;
if (data.nombre==""){
liner.innerHTML="Anónimo";
}else{
if (representado==null){
liner.innerHTML=data.nombre;
}else{
liner.innerHTML=data.nombre +" / "+representado.nombre;
}
}
},
nroDocFormatter: function(liner, record, column, data){
if (data.nroDocumento!="")
liner.innerHTML=data.nroDocumento;
else{
if (data.ruc!="")
liner.innerHTML=data.ruc;
else
liner.innerHTML="---";
}
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.atencionTable.totalRegistros +" "+oPayload.totalRecords);
$("#labelCiudadano").html("");
$("#idCiudadano").val("");
if ($("#nroDocumentoCiudadano").val().trim()!=""){
if (oPayload.totalRecords==0){
$("#labelCiudadano").html(messages.noCiudadano);
}else{
$("#labelCiudadano").html(oResponse.results[0].cliente.nombre.toUpperCase());
$("#idCiudadano").val(oResponse.results[0].cliente.idCliente);
}
}
return oPayload;
},
construirColumnDefs: function() {
return [
{
key: 'nroAtencion',
minWidth: 30,
label: this.messages.atencionTable.columna.nroAtencion
},
{
key:'cliente',
minWidth: 30,
label: this.messages.atencionTable.columna.identificacion,
formatter: this.nroDocFormatter
},
{
key: 'cliente',
minWidth: 60,
label: this.messages.atencionTable.columna.ciudadano,
formatter: this.ciudadanoFormatter
},
{
key: 'idSector',
label: this.messages.atencionTable.columna.sector,
minWidth: 180,
formatter: this.sectorFormatter
},
{
key: 'motivo',
resizeable: true,
minWidth: 300,
label: this.messages.atencionTable.columna.motivo,
formatter: this.motivoFormatter
},
{
key: 'fechaModificacion',
minWidth: 100,
label: this.messages.atencionTable.columna.fecha
},
{
key: 'strEstado',
label: this.messages.atencionTable.columna.estado
},
{
key: 'acciones',
label: this.messages.atencionTable.columna.acciones,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var forceIERequest = new Date().getTime();
var dataSource = new YAHOO.util.XHRDataSource(Osinergmin.contextPath + "/pages/atencion/find?fie=" + forceIERequest+"&");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstAtencionesDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'nroAtencion'}, {key: 'tema'}, {key:'fechaModificacion'},{key:'idSector'},{key:'idMotivo'},{key:'strEstado'},{key:'cliente'},{key:'representado'},{key:'idEstado'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Osinergmin.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
//initialLoad: true,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.atencionTable.paginacion.filasxpagina,
containers: "atencionPaginator", //contenedor
firstPageLinkLabel: this.messages.atencionTable.paginacion.inicio,
lastPageLinkLabel: this.messages.atencionTable.paginacion.fin,
previousPageLinkLabel: this.messages.atencionTable.paginacion.anterior,
nextPageLinkLabel: this.messages.atencionTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "id";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.atencionTable.paginacion.filasxpagina;
var nroAtencion=$("#nroAtencion").val().trim();
var nombre=$("#nombre").val().trim();
var nroDocumento=$("#nroDocumentoCiudadano").val().trim();
var idEstado =$('#idEstado').val();
var codDependencia = $('#codDependencia').val();
var idTipoAtencion=$("#idTipoAtencion").val();
var fechaDesde = $('#fechaDesde').val();
var fechaHasta = $('#fechaHasta').val();
var expediente=$("#expediente").val().trim();
var idCanal=$("#idCanal").val();
var telefono=$("#nroTelefono").val();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nroAtencion='+nroAtencion+
'&nombre='+nombre+
'&nroDocumento='+nroDocumento+
'&idEstado='+idEstado+
'&codDependencia='+codDependencia+
'&idTipoAtencion='+idTipoAtencion+
'&fechaDesde='+fechaDesde+
'&fechaHasta='+fechaHasta+
'&expediente='+expediente+
'&idCanal='+idCanal+
'&nroTelefono='+telefono;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
YAHOO.namespace('Osimac.atencion');
YAHOO.Osimac.atencion.materialesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Osimac.atencion.materialesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Osimac.atencion.materialesTable, YAHOO.Osimac.ListTableBase, {
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
self.deleteRow(self.getRecordSet().getRecordIndex(record));
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', messages.comun.eliminar, 5000);
},
nulosFormatter: function(liner, record, column, data) {
if (!data) {
liner.innerHTML = '---';
} else {
liner.innerHTML = data;
}
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
//oPayload.pagination.recordOffset = oResponse.meta.startIndex;
return oPayload;
},
construirColumnDefs: function() {
return [
{
key: 'idMaterial',
hidden: true
},
{
key:'titulo',
minWidth: 400,
label:this.messages.materialesTable.columna.titulo
},
{
key: 'strTipoMaterial',
label:this.messages.materialesTable.columna.tipo
},
{
key: 'acciones',
minWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter,
label: this.messages.comun.eliminar
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.LocalDataSource({
results: this.listado
});
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "results",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idMaterial'}, {key: 'titulo'},{key:'idTipoMaterial'},{key:'strTipoMaterial'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Osinergmin.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialRequest: this.generarRequest(),
dynamicData: true
/*paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.materialesTable.paginacion.filasxpagina,
containers: "gruposPaginator", //contenedor
firstPageLinkLabel: this.messages.materialesTable.paginacion.inicio,
lastPageLinkLabel: this.messages.materialesTable.paginacion.fin,
previousPageLinkLabel: this.messages.materialesTable.paginacion.anterior,
nextPageLinkLabel: this.messages.materialesTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})*/
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "titulo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
//var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
//var results = (oState.pagination) ? oState.pagination.rowsPerPage : 10;
var idAtencion =$('#idAtencion').val();
return 'sort=' + sort +
'&dir=' + dir +
// '&startIndex=' + startIndex +
// '&results=' + (startIndex + results) +
'&idAtencion=' + idAtencion;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
agregarFila : function(fila){
this.addRow(fila);
},
getSeleccionados:function(){
var self = this;
var strSeleccionados="0,";
for(var i=0;i<self.getRecordSet().getLength();i++){
strSeleccionados=strSeleccionados+self.getRecordSet().getRecord(i).getData().idMaterial+",";
}
return strSeleccionados;
}
}); | JavaScript |
YAHOO.namespace('Tesis');
YAHOO.Tesis.ListTableBase = function(elContainer, columnDefs, dataSource, config) {
this.accionesTooltip = new YAHOO.widget.Tooltip("acciones_tooltip");
YAHOO.Tesis.ListTableBase.superclass.constructor.call(this, elContainer,
columnDefs, dataSource, config);
};
YAHOO.lang.extend(YAHOO.Tesis.ListTableBase, YAHOO.widget.DataTable, {
setAccionTooltip : function(element, filter, body, displayTimeout){
var self = this;
element.delegate('mouseover', function() {
var x= arguments[0].clientX,
y= arguments[0].clientY,
tooltip = self.accionesTooltip;
self.showAccionesTooltipTimer = window.setTimeout(function() {
tooltip.setBody(body);
tooltip.cfg.setProperty('xy',[x + 10,y + 10]);
tooltip.show();
if(displayTimeout){
self.hideAccionesTooltipTimer = window.setTimeout(function() {
tooltip.hide();
},displayTimeout);
}
},10);
}, filter);
element.delegate('mouseout', function() {
if (self.showAccionesTooltipTimer ) {
window.clearTimeout(self.showAccionesTooltipTimer );
self.showAccionesTooltipTimer = 0;
}
if (self.hideAccionesTooltipTimer) {
window.clearTimeout(self.hideAccionesTooltipTimer);
self.hideAccionesTooltipTimer = 0;
}
self.accionesTooltip.hide();
}, filter);
}
}); | JavaScript |
YAHOO.namespace('Tesis.base');
YAHOO.Tesis.base.Dialog = function(elContainer, url, width, height, callback) {
this.width = width;
this.height = height;
YAHOO.Tesis.base.Dialog.superclass.constructor.call(this, elContainer, this.construirConfig());
this.callback = callback;
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.base.Dialog, YAHOO.widget.Dialog, {
/**
* para ser sobrescrito, debe tener la siguiente forma:
* return [
* { text: 'Guardar', handler: funcionGuardar, isDefault: true },
* { text: 'Salir', handler: funcionSalir, isDefault: false },
* etc...
* ];
*/
buildButtons: function() {
return undefined;
},
construirConfig: function() {
return {
width: this.width,
height: this.height,
modal: true,
fixedcenter: true,
visible: false,
constraintoviewport: true,
buttons: this.buildButtons()
};
}
}); | JavaScript |
YAHOO.namespace('Tesis.menu');
YAHOO.Tesis.menu.MenuBar = function(elContainer, messages) {
this.messages = messages;
YAHOO.Tesis.menu.MenuBar.superclass.constructor.call(this, "menu_principal", this.construirConfig());
this.render(elContainer);
}
YAHOO.lang.extend(YAHOO.Tesis.menu.MenuBar, YAHOO.widget.MenuBar, {
construirConfig: function() {
return {
autosubmenudisplay: false,
itemdata: [
{
text: this.messages.modulos,
submenu: {
id: 'modulosMenu',/*obligatorio*/
itemdata: [
{
text: this.messages.calificacionAtenciones.label,
submenu: {
id: 'calificacionesMenu',/*obligatorio*/
itemdata: [
{ text: this.messages.calificacionAtenciones.calificaciones, url: Tesis.contextPath + '/pages/calificacion' }
/*{ text: this.messages.calificacionAtenciones.grupos, url: Tesis.contextPath + '/pages/calificacion/grupos' }*/
]
}
},
{
text: this.messages.atenciones.label,
submenu: {
id: 'atencionesMenu',/*obligatorio*/
itemdata: [
{ text: this.messages.atenciones.consolidado, url: Tesis.contextPath + '/pages/atencion/consolidado' },
{ text: this.messages.atenciones.registro, url: Tesis.contextPath + '/pages/atencion'}
]
}
}
]
}
}
]
};
}
}); | JavaScript |
if (!window.Tesis) {
window.Tesis = {};
}
Tesis.EstadoAIEnum = {
ACTIVO : 'A',
INACTIVO : 'I'
}; | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.tipoDocumentoTable = function(elContainer, messagesTipoDocumento, listado) {
this.messages = messagesTipoDocumento;
this.listado = listado;
YAHOO.Tesis.modelador.tipoDocumentoTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.tipoDocumentoTable, YAHOO.Tesis.ListTableBase, {
eliminarTipoDocumentos: function (idtipoDocumento){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idTipoDocumento') == idtipoDocumento){
this.deleteRow(i);
break;
}
}
},
editarTipoDocumento: function (tipoDocumentoDTO){
parent.tipoDocumentoEdit = tipoDocumentoDTO;
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/modelador/crearTipoDocumento' ,700,400);
usuariosDialog.show();
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.tipoDocumentoTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idTipoDocumento=record.getData('idTipoDocumento');
self.eliminarTipoDocumentos(idTipoDocumento);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
linerElement.delegate('click', function() {
var tipoDocumentoDTO = {};
tipoDocumentoDTO['idTipoDocumento'] = record.getData('idTipoDocumento');
tipoDocumentoDTO['nombre'] = record.getData('nombre');
tipoDocumentoDTO['descripcion'] = record.getData('descripcion');
var lstEstadoDocumento = record.getData('lstEstadoDocumentoDTO');
tipoDocumentoDTO['cantidadEstados'] = lstEstadoDocumento.length;
for( var j = 0; j < lstEstadoDocumento.length; j++ ){
tipoDocumentoDTO['lstEstadoDocumentoDTO['+j+'].idestadodocumentoTemp'] = lstEstadoDocumento[j].idestadodocumentoTemp;
tipoDocumentoDTO['lstEstadoDocumentoDTO['+j+'].nombre'] = lstEstadoDocumento[j].nombre;
tipoDocumentoDTO['lstEstadoDocumentoDTO['+j+'].descripcion'] = lstEstadoDocumento[j].descripcion;
}
self.editarTipoDocumento(tipoDocumentoDTO);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idTipoDocumento' ,
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},
{
key: 'descripcion',
label: 'Descripcion'
},
{
key: 'lstEstadoDocumentoDTO',
hidden: true
},
{
key: 'acciones',
label: this.messages.tipoDocumentoTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idTipoDocumento'}, {key: 'nombre'}, {key: 'descripcion'}, {key : 'lstEstadoDocumentoDTO'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.tipoDocumentoTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.inicio,
lastPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.fin,
previousPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.anterior,
nextPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.tipoDocumentoTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
getListaDTO:function(){
var lstTiposDocumentos = [];
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstTiposDocumentos.push(record.getData());
}
return lstTiposDocumentos;
},
getListaSerializada:function(){
var lstDocumentos = {},
record,
getHash = function(index, id){
return 'lstDocumentos['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstDocumentos[getHash(i, 'idTipoDocumento')] = record.getData('idTipoDocumento');
lstDocumentos[getHash(i, 'nombre')] = record.getData('nombre');
lstDocumentos[getHash(i, 'descripcion')] = record.getData('descripcion');
var lstEstados = record.getData('lstEstadoDocumentoDTO');
for( var j = 0; j < lstEstados.length; j++ ){
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].idestadodocumentoTemp')] = lstEstados[j].idestadodocumentoTemp;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].nombre')] = lstEstados[j].nombre;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].descripcion')] = lstEstados[j].descripcion;
}
}
return lstDocumentos;
},
agregarFila : function(fila){
var existeFila = false;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if(fila.idTipoDocumento ==record.getData('idTipoDocumento')){
existeFila = true;
record.getData().nombre = fila.nombre ;
record.getData().descripcion = fila.descripcion ;
record.getData().lstEstadoDocumentoDTO = fila.lstEstadoDocumentoDTO ;
break;
}
}
if(existeFila == false){
this.addRow(fila);
}
}
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 100
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
,
{
position: 'left',
body: 'layout-left',
width: 200,
resize: false,
/*gutter: '4px',
collapse: true,
animate: true,*/
scroll: true,
header: 'Controles'
},
/*{
position: 'bottom',
body: 'layout-bottom',
height: 150,
resize: false,
--gutter: '4px',
collapse: true,
scroll: true
animate: true,
header: 'Detalle'
}*/
]
});
layout.render();
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.cargosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.cargosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.cargosTable, YAHOO.Tesis.ListTableBase, {
editarCargo: function (idCargo){
cargoDialog = new YAHOO.Tesis.dialog('cargosDialog',
Tesis.contextPath + '/pages/cargo/crear?idCargo=' + idCargo,700,250);
cargoDialog.show();
},
verCargo: function (idCargo){
cargoDialog = new YAHOO.Tesis.dialog('cargosDialog',
Tesis.contextPath + '/pages/cargo/ver?idCargo=' + idCargo,700,170);
cargoDialog.show();
},
eliminarCargo: function (idCargo){
var self=this;
$.get("cargo/eliminar",{idCargo:idCargo},function(data){
if (!data){
mensajeValidacion("Error al eliminar cargo");
}
self.recargarData();
});
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.cargosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idCargo=record.getData().idCargo;
self.editarCargo(idCargo);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
var idCargo=record.getData().idCargo;
self.verCargo(idCargo);
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var idCargo=record.getData().idCargo;
//Confirmar("¿Está seguro que desea eliminar el cargo? ", null,{},
//function(){self.eliminarCargo(idCargo);});
self.eliminarCargo(idCargo);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idCargo',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'esActivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.cargosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idCargo'}, {key: 'nombre'},{key:'esActivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.cargosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.cargosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.cargosTable.paginacion.fin,
previousPageLinkLabel: this.messages.cargosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.cargosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.cargosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.rolesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.rolesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.rolesTable, YAHOO.Tesis.ListTableBase, {
/*verCargo: function (nroAtencion){
calificacionDialog = new YAHOO.Osimac.dialog.Calificacion('calificacionDialog',
Osinergmin.contextPath + '/pages/calificacion/ver?nroAtencion=' + nroAtencion);
calificacionDialog.show();
},*/
/* editarCargo: function (idCargo){
cargosDialog = new YAHOO.Tesis.dialog.Cargos('cargosDialog',
Tesis.contextPath + '/pages/seguridad/cargo?idCargo=' + idCargo);
cargosDialog.show();
},*/
/*eliminarCargo: function (idCargo){
var self=this;
$.get("eliminarCargo",{idCargo:idCargo},function(data){
if (!data){
mensajeValidacion("Error al eliminar cargo, datos dependientes");
}
self.recargarData();
});
},*/
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.rolesTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data=="A") {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idRol=record.getData().idRol;
self.editarCargo(idRol);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var idRol=record.getData().idRol;
self.eliminarCargo(idRol);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idRol',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'esactivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.rolesTable.columna.accion,
minWidth: 70,
maxWidth: 70,
formatter: "checkbox"
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/rol/findRoles?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstRolesDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idRol'}, {key: 'nombre'},{key:'esactivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.rolesTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.rolesTable.paginacion.inicio,
lastPageLinkLabel: this.messages.rolesTable.paginacion.fin,
previousPageLinkLabel: this.messages.rolesTable.paginacion.anterior,
nextPageLinkLabel: this.messages.rolesTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idRol";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.rolesTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
});
| JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.estadosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.estadosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
this.subscribe("cellClickEvent", this.onEventShowCellEditor);
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.estadosTable, YAHOO.Tesis.ListTableBase, {
eliminarEstadoDocumento: function (idestadodocumentoTemp){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idestadodocumentoTemp') == idestadodocumentoTemp){
this.deleteRow(i);
break;
}
}
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.estadosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
tipoDatoFormatter: function(liner, record, column, data) {
// console.log(record.getData());
if (record.getData().tipoDatoDTO)
liner.innerHTML = record.getData().tipoDatoDTO.nombretipodato;
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idestadodocumentoTemp = record.getData().idestadodocumentoTemp;
self.eliminarEstadoDocumento(idestadodocumentoTemp);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idestadodocumentoTemp' ,
hidden: true
},
{
key: 'nombre',
label: 'Nombre',
editor: new YAHOO.widget.TextboxCellEditor({disableBtns:true})
},
{
key: 'descripcion',
label: 'Descripción',
editor: new YAHOO.widget.TextboxCellEditor({disableBtns:true})
},
{
key: 'acciones',
label: this.messages.estadosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstEstadoDocumento",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idestadodocumentoTemp'}, {key: 'nombre'},{key:'descripcion'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.estadosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.estadosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.estadosTable.paginacion.fin,
previousPageLinkLabel: this.messages.estadosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.estadosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.estadosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
getListaSerializada:function(){
var lstEstadoDocumentoDTO = {},
record,
getHash = function(index, id){
return 'lstEstadoDocumentoDTO['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstEstadoDocumentoDTO[getHash(i, 'idestadodocumentoTemp')] = record.getData('idestadodocumentoTemp');
lstEstadoDocumentoDTO[getHash(i, 'nombre')] = record.getData('nombre');
}
return lstEstadoDocumentoDTO;
},
agregarFila : function(fila){
this.addRow(fila);
},
getRegistros:function(){
var lstEstadoDocumentoDTO = [];
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
var data = record.getData();
var objeto = {}
if(record.getData('nombre') != "hacer click para editar.." && record.getData('descripcion') != "hacer click para editar.." ){
objeto['idestadodocumentoTemp'] = record.getData('idestadodocumentoTemp');
objeto['nombre'] = record.getData('nombre');
objeto['descripcion'] = record.getData('descripcion');
lstEstadoDocumentoDTO.push(objeto);
}
}
return lstEstadoDocumentoDTO;
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.variablesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.variablesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.variablesTable, YAHOO.Tesis.ListTableBase, {
eliminarVariable: function (idVariable){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idvariable') == idVariable){
this.deleteRow(i);
break;
}
}
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.variablesTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
tipoDatoFormatter: function(liner, record, column, data) {
// console.log(record.getData());
if (record.getData().tipoDatoDTO)
liner.innerHTML = record.getData().tipoDatoDTO.nombretipodato;
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idvariable=record.getData().idvariable;
self.eliminarVariable(idvariable);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idvariable' ,
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'tipoDatoDTO',
label: 'Tipo de Dato',
formatter:this.tipoDatoFormatter
},
{
key: 'acciones',
label: this.messages.variablesTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idvariable'}, {key: 'nombre'},{key:'tipoDatoDTO'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.variablesTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.variablesTable.paginacion.inicio,
lastPageLinkLabel: this.messages.variablesTable.paginacion.fin,
previousPageLinkLabel: this.messages.variablesTable.paginacion.anterior,
nextPageLinkLabel: this.messages.variablesTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.variablesTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
/*getListaSerializada:function(){
var lstVariables = {},
record,
getHash = function(index, id){
return 'lstVariables['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstVariables[getHash(i, 'idvariable')] = record.getData('idvariable');
lstVariables[getHash(i, 'nombre')] = record.getData('nombre');
lstVariables[getHash(i, 'tipoDatoDTO.nombretipodato')] = record.getData('tipoDatoDTO').nombretipodato;
// lstVariables[getHash(i, 'tipoDatoDTO.idtipodato')] = record.getData('tipoDatoDTO').idtipodato;
}
return lstVariables;
}, */
getListaDTO:function(){
var lstVariables = [];
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstVariables.push(record.getData());
}
return lstVariables;
},
agregarFila : function(fila){
this.addRow(fila);
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.instanciasEstacionesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.instanciasEstacionesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.instanciasEstacionesTable, YAHOO.Tesis.ListTableBase, {
eliminarTipoDocumentos: function (idtipoDocumento){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idTipoDocumento') == idtipoDocumento){
this.deleteRow(i);
break;
}
}
},
openUserForm: function (idinstanciaestacion){
userForm = new YAHOO.Tesis.dialog('appUserForm',Tesis.contextPath + '/pages/apCliente/openUserForm?idinstanciaestacion=' + idinstanciaestacion ,800,400);
userForm.show();
},
mostrarMapa: function (data){
//console.log(data)
mapaDialog = new YAHOO.Tesis.dialog('appUserForm',Tesis.contextPath + '/pages/apCliente/mostrarMapa?idMapa=' + data['instanciaProceso.versionMapaProceso']+'&nombreEstacion='+data.nombreEstacion +'&idProceso='+data['instanciaProceso.idinstanciaproceso'],1000,650);
mapaDialog.show();
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
// $("#cantidadRegistros").html(messages.instanciasTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
nombreFormatter: function(liner, record, column, data) {
liner.innerHTML = record.getData('nombreEstacion') +" ("+record.getData('idinstanciaestacion')+")";
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='editar'></div></td><td><div class='verMapa'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idTipoDocumento=record.getData('idTipoDocumento');
self.eliminarTipoDocumentos(idTipoDocumento);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
linerElement.delegate('click', function() {
self.openUserForm(record.getData('idinstanciaestacion'));
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "atender", 5000);
linerElement.delegate('click', function() {
self.mostrarMapa(record.getData());
}, '.verMapa');
self.setAccionTooltip(linerElement, '.verMapa', "ver mapa", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idinstanciaestacion' ,
hidden: true
},
{
key: 'nombreEstacion',
label: 'Nombre',
formatter: this.nombreFormatter
},
{
key: 'nombreProceso',
label: 'Proceso'
},
{
key: 'tiempoLimite',
label: 'Tiempo limite'
},
{
key:'strFechaCreacion',
label: 'Fecha Inicio'
},
{
key: 'acciones',
label: 'Estado',
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/apCliente/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstInstanciaEstacionDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idinstanciaestacion'}, {key: 'nombreEstacion'}, {key: 'descripcion'}, {key : 'tiempoLimite'},{key:'strFechaCreacion'},{key:'instanciaProceso.versionMapaProceso'},{key:'nombreProceso'},{key:'instanciaProceso.idinstanciaproceso'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.instanciasTable.paginacion.filasxpagina,
containers: "instanciasPaginator", //contenedor
firstPageLinkLabel: this.messages.instanciasTable.paginacion.inicio,
lastPageLinkLabel: this.messages.instanciasTable.paginacion.fin,
previousPageLinkLabel: this.messages.instanciasTable.paginacion.anterior,
nextPageLinkLabel: this.messages.instanciasTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idinstanciaestacion";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.instanciasTable.paginacion.filasxpagina;
var idUsuarioDTO =$('#idUsuarioDTO').val();
var nombreProceso =$('#nombreProceso').val();
var nombreEstadoEstacion =$('#nombreEstadoEstacion').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
//'&startIndex=' + startIndex +
//'&results=' + (startIndex + results) +
'&idUsuarioDTO=' + idUsuarioDTO +
'&nombreProceso=' + nombreProceso +
'&nombreEstadoEstacion=' + nombreEstadoEstacion +
'&inicio=' + startIndex +
'&ultimo=' + (startIndex + results) +
'&temp='+forceIERequest;
},
recargarData: function() {
this.showTableMessage(this.configs.MSG_LOADING);
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
getListaDTO:function(){
var lstTiposDocumentos = [];
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstTiposDocumentos.push(record.getData());
}
return lstTiposDocumentos;
},
getListaSerializada:function(){
var lstDocumentos = {},
record,
getHash = function(index, id){
return 'lstDocumentos['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstDocumentos[getHash(i, 'idTipoDocumento')] = record.getData('idTipoDocumento');
lstDocumentos[getHash(i, 'nombre')] = record.getData('nombre');
lstDocumentos[getHash(i, 'descripcion')] = record.getData('descripcion');
var lstEstados = record.getData('lstEstadoDocumentoDTO');
for( var j = 0; j < lstEstados.length; j++ ){
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].idestadodocumentoTemp')] = lstEstados[j].idestadodocumentoTemp;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].nombre')] = lstEstados[j].nombre;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].descripcion')] = lstEstados[j].descripcion;
}
}
return lstDocumentos;
},
agregarFila : function(fila){
var existeFila = false;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if(fila.idTipoDocumento ==record.getData('idTipoDocumento')){
existeFila = true;
record.getData().nombre = fila.nombre ;
record.getData().descripcion = fila.descripcion ;
record.getData().lstEstadoDocumentoDTO = fila.lstEstadoDocumentoDTO ;
break;
}
}
if(existeFila == false){
this.addRow(fila);
}
}
})
| JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog.Roles = function(elContainer, url, messages, handlers) {
this.messages = messages;
this.handlers = handlers;
YAHOO.Tesis.dialog.Roles.superclass.constructor.call(this, elContainer, this.construirConfig());
// este dialog no usa callback
// this.callback = { success: this.handlers.success, failure: this.handlers.failure };
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog.Roles, YAHOO.widget.Dialog, {
construirConfig: function() {
return {
width: '700px', height: '400px',
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true
};
}
});/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
| JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.procesosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.procesosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.procesosTable, YAHOO.Tesis.ListTableBase, {
eliminarTipoDocumentos: function (idtipoDocumento){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idTipoDocumento') == idtipoDocumento){
this.deleteRow(i);
break;
}
}
},
openUserForm: function (idProceso){
userForm = new YAHOO.Tesis.dialog('appUserForm',Tesis.contextPath + '/pages/apCliente/openFirstUserForm?idProceso=' + idProceso ,800,400);
userForm.show();
},
mostrarMapa: function (data){
//console.log(data)
mapaDialog = new YAHOO.Tesis.dialog('appUserForm',Tesis.contextPath + '/pages/apCliente/mostrarMapa?idMapa=' + data.version,1000,650);
mapaDialog.show();
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
//$("#cantidadRegistros").html(messages.procesosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='editar'></div></td><td><div class='verMapa'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idTipoDocumento=record.getData('idTipoDocumento');
self.eliminarTipoDocumentos(idTipoDocumento);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
linerElement.delegate('click', function() {
self.openUserForm(record.getData('idProceso'));
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "iniciar", 5000);
linerElement.delegate('click', function() {
self.mostrarMapa(record.getData());
}, '.verMapa');
self.setAccionTooltip(linerElement, '.verMapa', "ver mapa", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idProceso' ,
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},
{
key: 'version',
label: 'Modelo'
},
{
key:'fecha',
label:'Fecha de instalación'
},
{
key: 'acciones',
label: 'Estado',
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/apCliente/findProcesos?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstProcesoDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idProceso'}, {key: 'nombre'}, {key: 'version'},{key:'fecha'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: 10,//this.messages.procesosTable.paginacion.filasxpagina,
containers: "procesosPaginator", //contenedor
firstPageLinkLabel: this.messages.procesosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.procesosTable.paginacion.fin,
previousPageLinkLabel: this.messages.procesosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.procesosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idProceso";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.procesosTable.paginacion.filasxpagina;
var idUsuarioDTO =$('#idUsuarioDTO').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&inicio=' + startIndex +
'&ultimo=' + (startIndex + results) +
'&idUsuarioDTO=' + idUsuarioDTO +
'&temp='+forceIERequest;
},
recargarData: function() {
this.showTableMessage(this.configs.MSG_LOADING);
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
getListaDTO:function(){
var lstTiposDocumentos = [];
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstTiposDocumentos.push(record.getData());
}
return lstTiposDocumentos;
},
getListaSerializada:function(){
var lstDocumentos = {},
record,
getHash = function(index, id){
return 'lstDocumentos['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstDocumentos[getHash(i, 'idTipoDocumento')] = record.getData('idTipoDocumento');
lstDocumentos[getHash(i, 'nombre')] = record.getData('nombre');
lstDocumentos[getHash(i, 'descripcion')] = record.getData('descripcion');
var lstEstados = record.getData('lstEstadoDocumentoDTO');
for( var j = 0; j < lstEstados.length; j++ ){
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].idestadodocumentoTemp')] = lstEstados[j].idestadodocumentoTemp;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].nombre')] = lstEstados[j].nombre;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].descripcion')] = lstEstados[j].descripcion;
}
}
return lstDocumentos;
},
agregarFila : function(fila){
var existeFila = false;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if(fila.idTipoDocumento ==record.getData('idTipoDocumento')){
existeFila = true;
record.getData().nombre = fila.nombre ;
record.getData().descripcion = fila.descripcion ;
record.getData().lstEstadoDocumentoDTO = fila.lstEstadoDocumentoDTO ;
break;
}
}
if(existeFila == false){
this.addRow(fila);
}
}
})
| JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.usuariosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.usuariosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.usuariosTable, YAHOO.Tesis.ListTableBase, {
verUsuario: function (idusuario){
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/usuario/verUsuarios?idusuario=' + idusuario,700,340);
usuariosDialog.show();
},
editarUsuario: function (idusuario){
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/usuario/crearUsuarios?idusuario=' + idusuario,700,555);
usuariosDialog.show();
},
eliminarUsuario: function (usuarioDTO){
var self=this;
$.get("eliminarUsuarios",usuarioDTO,function(data){
if (!data){
mensajeValidacion("Error al eliminar el usuario");
}
self.recargarData();
});
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.usuariosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idusuario=record.getData().idusuario;
//console.log(idusuario);
self.editarUsuario(idusuario);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
var idusuario=record.getData().idusuario;
//console.log(idusuario);
self.verUsuario(idusuario);
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var usuarioDTO=record.getData();
//Confirmar("¿Está seguro que desea eliminar al usuario? ", null,{},
//function(){self.eliminarUsuario(usuarioDTO);});
self.eliminarUsuario(usuarioDTO);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idusuario',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},
{
key:'apellidopaterno',
label: 'Paterno'
},
{
key:'apellidomaterno',
label: 'Materno'
},
{
key:'esactivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.usuariosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/usuario/findUsuarios?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstUsuariosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idusuario'}, {key: 'nombre'},{key:'apellidopaterno'},{key:'apellidomaterno'},{key:'esactivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.usuariosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.usuariosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.usuariosTable.paginacion.fin,
previousPageLinkLabel: this.messages.usuariosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.usuariosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idusuario";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.usuariosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var appPaterno = $('#apellidopaterno').val();
var appMaterno = $('#apellidomaterno').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&apellidopaterno=' + appPaterno +
'&apellidomaterno=' + appMaterno +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
if (!window.Tesis) {
window.Tesis = {};
}
Tesis.TipoComponente = {
INICIO : 1,
ESTACION : 2,
FIN: 3
};
Tesis.TipoComponente.getId=function(comp){
var tipo=null;
switch (comp){
case '1' : tipo= Tesis.TipoComponente.INICIO;
break;
case '2' : tipo= Tesis.TipoComponente.ESTACION;
break;
case '3' : tipo= Tesis.TipoComponente.FIN;
break;
}
return tipo;
} | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
]
});
layout.render();
}); | JavaScript |
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, "");
};
//function btnStyleJqueryDialog(buttonLabel) {
// $('.ui-dialog-buttonpane :button').each(function() {
// if ($(this).text() == buttonLabel) {
// $(this).addClass('naranja');
// }
// });
//}
jQuery.fn.reset = function () {
$(this).each (function() {this.reset();});
}
function validateNumeric(event) {
// Backspace, tab, enter, end, home, left, right, del
var controlKeys = [8, 9, 13, 35, 36, 37, 39, 46];
var isControlKey = controlKeys.join(',').match(new RegExp(event.which));
//console.log('isControlKey ' + isControlKey);
if (!event.which
|| (48 <= event.which && event.which <= 57) // 0 a 9
|| isControlKey) {
return;
} else {
event.preventDefault();
}
}
function esCampoNumerico(numero){
var re = /^(-)?[0-9]*$/;
if (!re.test(numero)) {
return false;
}else{
return true;
}
}
function esSoloLetras(word){
if(/[0-9]/.test(word)){
return true;
}else{
return false;
}
}
function limpiarForm() {
if (document && document.forms && document.forms[0]) {
document.forms[0].reset();
}
}
function limpiarCombo(idCombo,labelInicial) {
$(idCombo).children().remove();
$(idCombo).html('<option selected value="-1">' + labelInicial + '</option>');
}
// el objeto a mostrar debe tener propiedades id y nombre
function cargarCombo(idCombo, listado,labelInicial,itemId,itemLabel) {
limpiarCombo(idCombo,labelInicial);
if (listado) {
var options ="";//$(idCombo).html();
var data=null;
for (var i = 0; i < listado.length; i++) {
data=listado[i];
options += '<option value="' + data[itemId] + '">' + data[itemLabel] + "</option>";
}
//$(idCombo).html(options);
if (document.getElementById(idCombo))
document.getElementById(idCombo).innerHTML=options;
}
}
// en caso de no ejecutar llamada ajax, nextURL=variable sin valor (undefined) y datajson={}
function Confirmar(mensaje, nextURL,dataJSON,aceptarFunction,cancelarFunction) {
//se necesita este div en el jsp
//<div id="dialog-confirm" title="Confirmar" style="display: none;"><p id="popupConfirm"></p></div>
$('#dialog-confirm')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
resizable : false,
buttons: {
No: function(){
$(this).dialog("destroy");
if (cancelarFunction)
cancelarFunction();
},
Sí: function() {
$( this ).dialog( "destroy" );
if (nextURL!=undefined){
$.getJSON(nextURL, dataJSON, function(response, textStatus) {
if (!response.error) {
aceptarFunction();
} else {
alert(response.error);
}
});
}else{
if (aceptarFunction)
aceptarFunction();
}
}
},
open: function() {
$(this).parents('.ui-dialog-buttonpane button:eq(1)').focus();//aceptar
$(this).parents('.ui-dialog-buttonpane button:eq(0)').blur();//cancelar
}
});
$( "#popupConfirm" ).html(mensaje);
$( "#dialog-confirm" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-confirm" ).dialog( "open" );
}
//exito y redireccion
function mensajeExito(mensaje, nextURL,isPopup,funcAceptar) {
$('<div id="dialog-exito" title="Éxito" style="display: none;"><p id="popupExito"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-exito" ).dialog("close");
if (nextURL!=undefined){
if (isPopup){
window.top.location = Tesis.contextPath + nextURL;
}else{
window.location = Tesis.contextPath + nextURL;
}
}else{
if (funcAceptar)
funcAceptar();
}
//return false;
}
}
});
$( "#popupExito" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-exito" ).dialog( "open" );
}
//mensaje alerta y redireccion
function mensajeAdvertencia(mensaje, nextURL) {
$('<div id="dialog-alerta" title="Advertencia" style="display: none;"><p id="popupAlerta"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-alerta" ).dialog("close");
if (nextURL!=undefined){
window.location = Tesis.contextPath + nextURL;
}
//return false;
}
}
});
$( "#popupAlerta" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-alerta" ).dialog( "open" );
}
//crea dialogo tipo alerta
//mensaje: mensaje de validacion
//idFocus ejm: "#idCampo" para darle foco
function mensajeValidacion(mensaje,idFocus) {
$('<div id="dialog-message" title="Advertencia" style="display: none;"><p id="popupMessage"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-message" ).dialog("close");
}
}
});
$( "#popupMessage" ).html(mensaje);
if (idFocus != undefined && idFocus != null) {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
$(idFocus).focus();
});
} else {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
});
}
$( "#dialog-message" ).dialog( "open" );
}
function isValidURL(url){
var regExpression = /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i;
return regExpression.test(url);
}
function isValidEmail(email){
//var regex=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i;
var regex=/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
return regex.test(email);
}
function validarTamanho(idInput, tamanho) {
$(idInput).keypress(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).keyup(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).blur(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
}
var fillEmptyColumn = function(liner, record, column, data) {
var linerElement = new YAHOO.util.Element(liner);
if (!data) {
linerElement.get('element').innerHTML = '---';
}else{
linerElement.get('element').innerHTML = data;
}
}
function recortarCadena(cadena, longitud) {
if (cadena.length > longitud + 3) { // 3 porque se concatena el '...'
return cadena.substring(0, longitud) + '...';
} else {
return cadena;
}
}
//Create jsColor object
//var col = new jsColor("#0081C2");
var col1 = new jsColor("black");
var col2 = new jsColor("#C4C4C4");
//Create jsPen object
var pen1 = new jsPen(col1,4);
var pen2 = new jsPen(col2,4);
function linea(gr,p1,p2,id,esAlterna){
//console.log(p1);
//console.log(p2.y);
var pt1 = new jsPoint(p1.x,p1.y);
var pt2 = new jsPoint(p2.x,p2.y);
var l=null;
if (esAlterna=='Y')
l=gr.drawLine(pen2,pt1,pt2);
else
l=gr.drawLine(pen1,pt1,pt2);
if (id==null || id ==undefined){
l.id="l"+new Date().getTime();
}else
l.id=id;
$("#"+l.id).addClass("linea");
var medio=Math.round($("#"+l.id+" > div").size()/2);
if (medio==1)//para evitar fuera de index en linea recta
medio=0;
$("#"+l.id).children()[medio].style.overflow='visible';
if (p2.x>p1.x)//esta invertido xD
$("#"+l.id).children()[medio].innerHTML="<div class='arrow-right'></div>"
else{
$("#"+l.id).children()[medio].innerHTML="<div class='arrow-left'></div>"
}
//$("#"+l.id).children()[medio].className="arrow-right"
return l.id;
}
function mostrarNotificacion(mensaje,op){
$("#notificacion").html('<p align="center">'+mensaje+'</p>');
if (op=='A'){
$("#notificacion").show('fade',function(){
$("#notificacion").hide('fade',{direction:'up'},700);
});
}
if (op=='S'){
$("#notificacion").show('fade',{direction:'down'},500);
}
if (op=='H'){
$("#notificacion").hide('fade',{direction:'down'},700);
}
}
function conectar(gr,idIni,idFin,idLinea,esAlterna){
//var el = new YAHOO.util.Element(idIni);
var p1={};
var p2={};
/*if(el.getStyle('left')){
p1.x=el.getStyle('left').replace("px","");
p1.y=el.getStyle('top').replace("px","");
p1.x=parseInt(p1.x)+16;
p1.y=parseInt(p1.y)+((idIni.substr(0,1))*32);
}
el = new YAHOO.util.Element(idFin);
if(el.getStyle('left')){
p2.x=el.getStyle('left').replace("px","");
p2.y=el.getStyle('top').replace("px","");
p2.x=parseInt(p2.x)+16;
p2.y=parseInt(p2.y)+((idFin.substr(0,1))*32);
}*/
p1=$("#"+idIni).position();
p1.x=p1.left+16;
p1.y=p1.top+32;
p2=$("#"+idFin).position();
p2.x=p2.left+16;
p2.y=p2.top+32;
var l=linea(gr,p1,p2,idLinea,esAlterna);
return l;
}
| JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 115
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
]
});
layout.render();
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 100
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
]
});
layout.render();
}); | JavaScript |
Tesis.popup = {}
Tesis.popup.manager = {}
Tesis.popup.manager.show = function(href, title, width, height) {
if (href == undefined) {
alert("href no definido.");
} else {
Tesis.panel = new YAHOO.widget.Panel("dialog-panel", {
width: width,
height: height,
fixedcenter: true,
close: true,
draggable: false,
zindex:4,
modal: true,
visible: false
});
Tesis.panel.setHeader(title);
Tesis.panel.setBody('<iframe frameborder="0" src="' + href + '" width="100%" height="100%"/>');
Tesis.panel.render(document.body);
Tesis.panel.show();
}
} | JavaScript |
Tesis.loading = {}
Tesis.loading.show = function(texto){
if (!Tesis.loading.panel) {
Tesis.loading.panel = new YAHOO.widget.Panel("loading-panel", {
width: "220px",
fixedcenter: true,
close: false,
draggable: false,
zindex:4,
modal: true,
visible: false
});
var header = 'Procesando, espere por favor... ' + (texto ? texto : '');
Tesis.loading.panel.setHeader(header);
Tesis.loading.panel.setBody("<div class='bar'> </div>");
Tesis.loading.panel.render(document.body);
}
Tesis.loading.panel.show();
}
Tesis.loading.hide = function(){
Tesis.loading.panel.hide();
} | JavaScript |
YAHOO.namespace('Tesis');
YAHOO.Tesis.ListTableBase = function(elContainer, columnDefs, dataSource, config) {
this.accionesTooltip = new YAHOO.widget.Tooltip("acciones_tooltip");
YAHOO.Tesis.ListTableBase.superclass.constructor.call(this, elContainer,
columnDefs, dataSource, config);
};
YAHOO.lang.extend(YAHOO.Tesis.ListTableBase, YAHOO.widget.DataTable, {
setAccionTooltip : function(element, filter, body, displayTimeout){
var self = this;
element.delegate('mouseover', function() {
var x= arguments[0].clientX,
y= arguments[0].clientY,
tooltip = self.accionesTooltip;
self.showAccionesTooltipTimer = window.setTimeout(function() {
tooltip.setBody(body);
tooltip.cfg.setProperty('xy',[x + 10,y + 10]);
tooltip.show();
if(displayTimeout){
self.hideAccionesTooltipTimer = window.setTimeout(function() {
tooltip.hide();
},displayTimeout);
}
},10);
}, filter);
element.delegate('mouseout', function() {
if (self.showAccionesTooltipTimer ) {
window.clearTimeout(self.showAccionesTooltipTimer );
self.showAccionesTooltipTimer = 0;
}
if (self.hideAccionesTooltipTimer) {
window.clearTimeout(self.hideAccionesTooltipTimer);
self.hideAccionesTooltipTimer = 0;
}
self.accionesTooltip.hide();
}, filter);
}
}); | JavaScript |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
if(!window.Tesis) window.Tesis = {};
Tesis.contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf('/', 1));
Tesis.dom = YAHOO.util.Dom;
Tesis.event = YAHOO.util.Event;
| JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog = function(elContainer, url, w,h) {
$("#"+elContainer).html("");
$("#"+elContainer).html("<div class='hd'> </div>");
YAHOO.Tesis.dialog.superclass.constructor.call(this, elContainer, this.construirConfig(w,h));
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog, YAHOO.widget.Dialog, {
construirConfig: function(w,h) {
return {
width: w+"px", height: h+"px",
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true,
effect:{effect:YAHOO.widget.ContainerEffect.FADE ,duration:0.5}
};
}
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var popupLayout = new YAHOO.widget.Layout({
units: [{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}]
});
popupLayout.render();
}); | JavaScript |
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, "");
};
//function btnStyleJqueryDialog(buttonLabel) {
// $('.ui-dialog-buttonpane :button').each(function() {
// if ($(this).text() == buttonLabel) {
// $(this).addClass('naranja');
// }
// });
//}
function validateNumeric(event) {
// Backspace, tab, enter, end, home, left, right, del
var controlKeys = [8, 9, 13, 35, 36, 37, 39, 46];
var isControlKey = controlKeys.join(',').match(new RegExp(event.which));
//console.log('isControlKey ' + isControlKey);
if (!event.which
|| (48 <= event.which && event.which <= 57) // 0 a 9
|| isControlKey) {
return;
} else {
event.preventDefault();
}
}
function esCampoNumerico(numero){
var re = /^(-)?[0-9]*$/;
if (!re.test(numero)) {
return false;
}else{
return true;
}
}
function esSoloLetras(word){
if(/[0-9]/.test(word)){
return true;
}else{
return false;
}
}
function limpiarForm() {
if (document && document.forms && document.forms[0]) {
document.forms[0].reset();
}
}
function limpiarCombo(idCombo,labelInicial) {
$(idCombo).children().remove();
$(idCombo).html('<option selected value="-1">' + labelInicial + '</option>');
}
// el objeto a mostrar debe tener propiedades id y nombre
function cargarCombo(idCombo, listado,labelInicial) {
limpiarCombo(idCombo,labelInicial);
if (listado) {
var options = $(idCombo).html();
for (var i = 0; i < listado.length; i++) {
options += '<option value="' + listado[i].id + '">' + listado[i].nombre + "</option>";
}
$(idCombo).html(options);
}
}
// en caso de no ejecutar llamada ajax, nextURL=variable sin valor (undefined) y datajson={}
function Confirmar(mensaje, nextURL,dataJSON,aceptarFunction,cancelarFunction) {
$('<div id="dialog-confirm" title="Confirmar" style="display: none;"><p id="popupConfirm"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
resizable : false,
buttons: {
No: function(){
$(this).dialog("close");
if (cancelarFunction)
cancelarFunction();
},
Sí: function() {
$( this ).dialog( "close" );
if (nextURL!=undefined){
$.getJSON(nextURL, dataJSON, function(response, textStatus) {
if (!response.error) {
aceptarFunction();
} else {
alert(response.error);
}
});
}else{
if (aceptarFunction)
aceptarFunction();
}
}
},
open: function() {
$(this).parents('.ui-dialog-buttonpane button:eq(1)').focus();//aceptar
$(this).parents('.ui-dialog-buttonpane button:eq(0)').blur();//cancelar
}
});
$( "#popupConfirm" ).html(mensaje);
$( "#dialog-confirm" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-confirm" ).dialog( "open" );
}
//exito y redireccion
function mensajeExito(mensaje, nextURL,isPopup,funcAceptar) {
$('<div id="dialog-exito" title="Éxito" style="display: none;"><p id="popupExito"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-exito" ).dialog("close");
if (nextURL!=undefined){
if (isPopup){
window.top.location = Tesis.contextPath + nextURL;
}else{
window.location = Tesis.contextPath + nextURL;
}
}else{
funcAceptar();
}
//return false;
}
}
});
$( "#popupExito" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-exito" ).dialog( "open" );
}
//mensaje alerta y redireccion
function mensajeAdvertencia(mensaje, nextURL) {
$('<div id="dialog-alerta" title="Advertencia" style="display: none;"><p id="popupAlerta"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-alerta" ).dialog("close");
if (nextURL!=undefined){
window.location = Tesis.contextPath + nextURL;
}
//return false;
}
}
});
$( "#popupAlerta" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-alerta" ).dialog( "open" );
}
//crea dialogo tipo alerta
//mensaje: mensaje de validacion
//idFocus ejm: "#idCampo" para darle foco
function mensajeValidacion(mensaje,idFocus) {
$('<div id="dialog-message" title="Advertencia" style="display: none;"><p id="popupMessage"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-message" ).dialog("close");
}
}
});
$( "#popupMessage" ).html(mensaje);
if (idFocus != undefined && idFocus != null) {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
$(idFocus).focus();
});
} else {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
});
}
$( "#dialog-message" ).dialog( "open" );
}
function isValidURL(url){
var regExpression = /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i;
return regExpression.test(url);
}
function isValidEmail(email){
//var regex=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i;
var regex=/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
return regex.test(email);
}
function validarTamanho(idInput, tamanho) {
$(idInput).keypress(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).keyup(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).blur(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
}
var fillEmptyColumn = function(liner, record, column, data) {
var linerElement = new YAHOO.util.Element(liner);
if (!data) {
linerElement.get('element').innerHTML = '---';
}else{
linerElement.get('element').innerHTML = data;
}
}
function recortarCadena(cadena, longitud) {
if (cadena.length > longitud + 3) { // 3 porque se concatena el '...'
return cadena.substring(0, longitud) + '...';
} else {
return cadena;
}
} | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 115
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
]
});
layout.render();
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 120
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
,
{
position: 'left',
body: 'layout-left',
width: 250,
resize: false
/*gutter: '4px',
collapse: true,
scroll: true
animate: true,
header: 'OPCIONES'*/
}
]
});
layout.render();
}); | JavaScript |
if (!window.Tesis) {
window.Tesis = {};
}
Tesis.EstadoAIEnum = {
ACTIVO : 'A',
INACTIVO : 'I'
}; | JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog.Usuarios = function(elContainer, url, messages, handlers) {
this.messages = messages;
this.handlers = handlers;
YAHOO.Tesis.dialog.Usuarios.superclass.constructor.call(this, elContainer, this.construirConfig());
// este dialog no usa callback
// this.callback = { success: this.handlers.success, failure: this.handlers.failure };
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog.Usuarios, YAHOO.widget.Dialog, {
construirConfig: function() {
return {
width: '700px', height: '650px',
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true,
effect:{effect:YAHOO.widget.ContainerEffect.FADE ,duration:0.3}
};
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.cargosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.cargosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.cargosTable, YAHOO.Tesis.ListTableBase, {
editarCargo: function (idCargo){
cargoDialog = new YAHOO.Tesis.dialog('cargosDialog',
Tesis.contextPath + '/pages/cargo/crear?idCargo=' + idCargo,700,250);
cargoDialog.show();
},
verCargo: function (idCargo){
cargoDialog = new YAHOO.Tesis.dialog('cargosDialog',
Tesis.contextPath + '/pages/cargo/ver?idCargo=' + idCargo,700,170);
cargoDialog.show();
},
eliminarCargo: function (idCargo){
var self=this;
$.get("cargo/eliminar",{idCargo:idCargo},function(data){
if (!data){
mensajeValidacion("Error al eliminar cargo");
}
self.recargarData();
});
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.cargosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idCargo=record.getData().idNombreCargo;
self.editarCargo(idCargo);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
var idCargo=record.getData().idNombreCargo;
self.verCargo(idCargo);
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var idCargo=record.getData().idNombreCargo;
//Confirmar("¿Está seguro que desea eliminar el cargo? ", null,{},
//function(){self.eliminarCargo(idCargo);});
self.eliminarCargo(idCargo);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idNombreCargo',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'esActivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.cargosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idNombreCargo'}, {key: 'nombre'},{key:'esActivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.cargosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.cargosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.cargosTable.paginacion.fin,
previousPageLinkLabel: this.messages.cargosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.cargosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.cargosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.rolesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.rolesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.rolesTable, YAHOO.Tesis.ListTableBase, {
/*verCargo: function (nroAtencion){
calificacionDialog = new YAHOO.Osimac.dialog.Calificacion('calificacionDialog',
Osinergmin.contextPath + '/pages/calificacion/ver?nroAtencion=' + nroAtencion);
calificacionDialog.show();
},*/
/* editarCargo: function (idCargo){
cargosDialog = new YAHOO.Tesis.dialog.Cargos('cargosDialog',
Tesis.contextPath + '/pages/seguridad/cargo?idCargo=' + idCargo);
cargosDialog.show();
},*/
/*eliminarCargo: function (idCargo){
var self=this;
$.get("eliminarCargo",{idCargo:idCargo},function(data){
if (!data){
mensajeValidacion("Error al eliminar cargo, datos dependientes");
}
self.recargarData();
});
},*/
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.rolesTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data=="A") {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idRol=record.getData().idRol;
self.editarCargo(idRol);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var idRol=record.getData().idRol;
self.eliminarCargo(idRol);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idRol',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'esactivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.rolesTable.columna.accion,
minWidth: 70,
maxWidth: 70,
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/rol/findRoles?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstRolesDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idRol'}, {key: 'nombre'},{key:'esactivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.rolesTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.rolesTable.paginacion.inicio,
lastPageLinkLabel: this.messages.rolesTable.paginacion.fin,
previousPageLinkLabel: this.messages.rolesTable.paginacion.anterior,
nextPageLinkLabel: this.messages.rolesTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idRol";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.rolesTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
});
| JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog.Roles = function(elContainer, url, messages, handlers) {
this.messages = messages;
this.handlers = handlers;
YAHOO.Tesis.dialog.Roles.superclass.constructor.call(this, elContainer, this.construirConfig());
// este dialog no usa callback
// this.callback = { success: this.handlers.success, failure: this.handlers.failure };
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog.Roles, YAHOO.widget.Dialog, {
construirConfig: function() {
return {
width: '700px', height: '400px',
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true
};
}
});/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
| JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.usuariosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.usuariosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.usuariosTable, YAHOO.Tesis.ListTableBase, {
verUsuario: function (idusuario){
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/usuario/verUsuarios?idusuario=' + idusuario,700,340);
usuariosDialog.show();
},
editarUsuario: function (idusuario){
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/usuario/crearUsuarios?idusuario=' + idusuario,700,555);
usuariosDialog.show();
},
eliminarUsuario: function (usuarioDTO){
var self=this;
$.get("eliminarUsuarios",usuarioDTO,function(data){
if (!data){
mensajeValidacion("Error al eliminar el usuario");
}
self.recargarData();
});
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.usuariosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idusuario=record.getData().idusuario;
console.log(idusuario);
self.editarUsuario(idusuario);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
var idusuario=record.getData().idusuario;
console.log(idusuario);
self.verUsuario(idusuario);
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var usuarioDTO=record.getData();
//Confirmar("¿Está seguro que desea eliminar al usuario? ", null,{},
//function(){self.eliminarUsuario(usuarioDTO);});
self.eliminarUsuario(usuarioDTO);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idusuario',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},
{
key:'apellidopaterno',
label: 'Paterno'
},
{
key:'apellidomaterno',
label: 'Materno'
},
{
key:'esactivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.usuariosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/usuario/findUsuarios?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstUsuariosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idusuario'}, {key: 'nombre'},{key:'apellidopaterno'},{key:'apellidomaterno'},{key:'esactivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.usuariosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.usuariosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.usuariosTable.paginacion.fin,
previousPageLinkLabel: this.messages.usuariosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.usuariosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idusuario";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.usuariosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var appPaterno = $('#apellidopaterno').val();
var appMaterno = $('#apellidomaterno').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&apellidopaterno=' + appPaterno +
'&apellidomaterno=' + appMaterno +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
Tesis.popup = {}
Tesis.popup.manager = {}
Tesis.popup.manager.show = function(href, title, width, height) {
if (href == undefined) {
alert("href no definido.");
} else {
Tesis.panel = new YAHOO.widget.Panel("dialog-panel", {
width: width,
height: height,
fixedcenter: true,
close: true,
draggable: false,
zindex:4,
modal: true,
visible: false
});
Tesis.panel.setHeader(title);
Tesis.panel.setBody('<iframe frameborder="0" src="' + href + '" width="100%" height="100%"/>');
Tesis.panel.render(document.body);
Tesis.panel.show();
}
} | JavaScript |
Tesis.loading = {}
Tesis.loading.show = function(texto){
if (!Tesis.loading.panel) {
Tesis.loading.panel = new YAHOO.widget.Panel("loading-panel", {
width: "220px",
fixedcenter: true,
close: false,
draggable: false,
zindex:4,
modal: true,
visible: false
});
var header = 'Procesando, espere por favor... ' + (texto ? texto : '');
Tesis.loading.panel.setHeader(header);
Tesis.loading.panel.setBody("<div class='bar'> </div>");
Tesis.loading.panel.render(document.body);
}
Tesis.loading.panel.show();
}
Tesis.loading.hide = function(){
Tesis.loading.panel.hide();
} | JavaScript |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
if(!window.Tesis) window.Tesis = {};
Tesis.contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf('/', 1));
Tesis.dom = YAHOO.util.Dom;
Tesis.event = YAHOO.util.Event;
| JavaScript |
Tesis.event.onDOMReady(function() {
var popupLayout = new YAHOO.widget.Layout({
units: [{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}]
});
popupLayout.render();
}); | JavaScript |
YAHOO.namespace('Tesis');
YAHOO.Tesis.ListTableBase = function(elContainer, columnDefs, dataSource, config) {
this.accionesTooltip = new YAHOO.widget.Tooltip("acciones_tooltip");
YAHOO.Tesis.ListTableBase.superclass.constructor.call(this, elContainer,
columnDefs, dataSource, config);
};
YAHOO.lang.extend(YAHOO.Tesis.ListTableBase, YAHOO.widget.DataTable, {
setAccionTooltip : function(element, filter, body, displayTimeout){
var self = this;
element.delegate('mouseover', function() {
var x= arguments[0].clientX,
y= arguments[0].clientY,
tooltip = self.accionesTooltip;
self.showAccionesTooltipTimer = window.setTimeout(function() {
tooltip.setBody(body);
tooltip.cfg.setProperty('xy',[x + 10,y + 10]);
tooltip.show();
if(displayTimeout){
self.hideAccionesTooltipTimer = window.setTimeout(function() {
tooltip.hide();
},displayTimeout);
}
},10);
}, filter);
element.delegate('mouseout', function() {
if (self.showAccionesTooltipTimer ) {
window.clearTimeout(self.showAccionesTooltipTimer );
self.showAccionesTooltipTimer = 0;
}
if (self.hideAccionesTooltipTimer) {
window.clearTimeout(self.hideAccionesTooltipTimer);
self.hideAccionesTooltipTimer = 0;
}
self.accionesTooltip.hide();
}, filter);
}
}); | JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog = function(elContainer, url, w,h) {
$("#"+elContainer).html("");
$("#"+elContainer).html("<div class='hd'> </div>");
YAHOO.Tesis.dialog.superclass.constructor.call(this, elContainer, this.construirConfig(w,h));
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog, YAHOO.widget.Dialog, {
construirConfig: function(w,h) {
return {
width: w+"px", height: h+"px",
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true,
effect:{effect:YAHOO.widget.ContainerEffect.FADE ,duration:0.3}
};
}
}); | JavaScript |
YAHOO.namespace('Tesis.menu');
YAHOO.Tesis.menu.MenuBar = function(elContainer, messages) {
this.messages = messages;
YAHOO.Tesis.menu.MenuBar.superclass.constructor.call(this, "menu_principal", this.construirConfig());
this.render(elContainer);
}
YAHOO.lang.extend(YAHOO.Tesis.menu.MenuBar, YAHOO.widget.MenuBar, {
construirConfig: function() {
return {
autosubmenudisplay: false,
itemdata: [
{
text: "Opciones",
submenu: {
id: 'modulosMenu',/*obligatorio*/
itemdata: [
{
text: 'Usuarios',
url: Tesis.contextPath + '/pages/usuario/usuarios'
},
{
text: 'Roles',
url: Tesis.contextPath + '/pages/rol/roles'
},
{
text: 'Permisos',
url: Tesis.contextPath + '/pages/seguridad/permisos'
},{
text: 'Cargos',
url:Tesis.contextPath + '/pages/cargo'
}
]
}
}
]
};
}
}); | JavaScript |
if (!window.Tesis) {
window.Tesis = {};
}
Tesis.EstadoAIEnum = {
ACTIVO : 'A',
INACTIVO : 'I'
}; | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.tipoDocumentoTable = function(elContainer, messagesTipoDocumento, listado) {
this.messages = messagesTipoDocumento;
this.listado = listado;
YAHOO.Tesis.modelador.tipoDocumentoTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.tipoDocumentoTable, YAHOO.Tesis.ListTableBase, {
eliminarTipoDocumentos: function (idtipoDocumento){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idTipoDocumento') == idtipoDocumento){
this.deleteRow(i);
break;
}
}
},
editarTipoDocumento: function (tipoDocumentoDTO){
parent.tipoDocumentoEdit = tipoDocumentoDTO;
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/modelador/crearTipoDocumento' ,700,400);
usuariosDialog.show();
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.tipoDocumentoTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idTipoDocumento=record.getData('idTipoDocumento');
self.eliminarTipoDocumentos(idTipoDocumento);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
linerElement.delegate('click', function() {
var tipoDocumentoDTO = {};
tipoDocumentoDTO['idTipoDocumento'] = record.getData('idTipoDocumento');
tipoDocumentoDTO['nombre'] = record.getData('nombre');
tipoDocumentoDTO['descripcion'] = record.getData('descripcion');
var lstEstadoDocumento = record.getData('lstEstadoDocumentoDTO');
tipoDocumentoDTO['cantidadEstados'] = lstEstadoDocumento.length;
for( var j = 0; j < lstEstadoDocumento.length; j++ ){
tipoDocumentoDTO['lstEstadoDocumentoDTO['+j+'].idestadodocumentoTemp'] = lstEstadoDocumento[j].idestadodocumentoTemp;
tipoDocumentoDTO['lstEstadoDocumentoDTO['+j+'].nombre'] = lstEstadoDocumento[j].nombre;
tipoDocumentoDTO['lstEstadoDocumentoDTO['+j+'].descripcion'] = lstEstadoDocumento[j].descripcion;
}
self.editarTipoDocumento(tipoDocumentoDTO);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idTipoDocumento' ,
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},
{
key: 'descripcion',
label: 'Descripcion'
},
{
key: 'lstEstadoDocumentoDTO',
hidden: true
},
{
key: 'acciones',
label: this.messages.tipoDocumentoTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idTipoDocumento'}, {key: 'nombre'}, {key: 'descripcion'}, {key : 'lstEstadoDocumentoDTO'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.tipoDocumentoTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.inicio,
lastPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.fin,
previousPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.anterior,
nextPageLinkLabel: this.messages.tipoDocumentoTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.tipoDocumentoTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
getListaDTO:function(){
var lstTiposDocumentos = [];
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstTiposDocumentos.push(record.getData());
}
return lstTiposDocumentos;
},
getListaSerializada:function(){
var lstDocumentos = {},
record,
getHash = function(index, id){
return 'lstDocumentos['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstDocumentos[getHash(i, 'idTipoDocumento')] = record.getData('idTipoDocumento');
lstDocumentos[getHash(i, 'nombre')] = record.getData('nombre');
lstDocumentos[getHash(i, 'descripcion')] = record.getData('descripcion');
var lstEstados = record.getData('lstEstadoDocumentoDTO');
for( var j = 0; j < lstEstados.length; j++ ){
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].idestadodocumentoTemp')] = lstEstados[j].idestadodocumentoTemp;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].nombre')] = lstEstados[j].nombre;
lstDocumentos[getHash(i,'lstEstadoDocumentoDTO['+j+'].descripcion')] = lstEstados[j].descripcion;
}
}
return lstDocumentos;
},
agregarFila : function(fila){
var existeFila = false;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if(fila.idTipoDocumento ==record.getData('idTipoDocumento')){
existeFila = true;
record.getData().nombre = fila.nombre ;
record.getData().descripcion = fila.descripcion ;
record.getData().lstEstadoDocumentoDTO = fila.lstEstadoDocumentoDTO ;
break;
}
}
if(existeFila == false){
this.addRow(fila);
}
}
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 100
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
,
{
position: 'left',
body: 'layout-left',
width: 200,
resize: false,
/*gutter: '4px',
collapse: true,
animate: true,*/
scroll: true,
header: 'Controles'
},
/*{
position: 'bottom',
body: 'layout-bottom',
height: 150,
resize: false,
--gutter: '4px',
collapse: true,
scroll: true
animate: true,
header: 'Detalle'
}*/
]
});
layout.render();
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.cargosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.cargosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.cargosTable, YAHOO.Tesis.ListTableBase, {
editarCargo: function (idCargo){
cargoDialog = new YAHOO.Tesis.dialog('cargosDialog',
Tesis.contextPath + '/pages/cargo/crear?idCargo=' + idCargo,700,250);
cargoDialog.show();
},
verCargo: function (idCargo){
cargoDialog = new YAHOO.Tesis.dialog('cargosDialog',
Tesis.contextPath + '/pages/cargo/ver?idCargo=' + idCargo,700,170);
cargoDialog.show();
},
eliminarCargo: function (idCargo){
var self=this;
$.get("cargo/eliminar",{idCargo:idCargo},function(data){
if (!data){
mensajeValidacion("Error al eliminar cargo");
}
self.recargarData();
});
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.cargosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idCargo=record.getData().idCargo;
self.editarCargo(idCargo);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
var idCargo=record.getData().idCargo;
self.verCargo(idCargo);
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var idCargo=record.getData().idCargo;
//Confirmar("¿Está seguro que desea eliminar el cargo? ", null,{},
//function(){self.eliminarCargo(idCargo);});
self.eliminarCargo(idCargo);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idCargo',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'esActivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.cargosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idCargo'}, {key: 'nombre'},{key:'esActivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.cargosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.cargosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.cargosTable.paginacion.fin,
previousPageLinkLabel: this.messages.cargosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.cargosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.cargosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.rolesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.rolesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.rolesTable, YAHOO.Tesis.ListTableBase, {
/*verCargo: function (nroAtencion){
calificacionDialog = new YAHOO.Osimac.dialog.Calificacion('calificacionDialog',
Osinergmin.contextPath + '/pages/calificacion/ver?nroAtencion=' + nroAtencion);
calificacionDialog.show();
},*/
/* editarCargo: function (idCargo){
cargosDialog = new YAHOO.Tesis.dialog.Cargos('cargosDialog',
Tesis.contextPath + '/pages/seguridad/cargo?idCargo=' + idCargo);
cargosDialog.show();
},*/
/*eliminarCargo: function (idCargo){
var self=this;
$.get("eliminarCargo",{idCargo:idCargo},function(data){
if (!data){
mensajeValidacion("Error al eliminar cargo, datos dependientes");
}
self.recargarData();
});
},*/
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.rolesTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data=="A") {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idRol=record.getData().idRol;
self.editarCargo(idRol);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var idRol=record.getData().idRol;
self.eliminarCargo(idRol);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idRol',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'esactivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.rolesTable.columna.accion,
minWidth: 70,
maxWidth: 70,
formatter: "checkbox"
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/rol/findRoles?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstRolesDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idRol'}, {key: 'nombre'},{key:'esactivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.rolesTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.rolesTable.paginacion.inicio,
lastPageLinkLabel: this.messages.rolesTable.paginacion.fin,
previousPageLinkLabel: this.messages.rolesTable.paginacion.anterior,
nextPageLinkLabel: this.messages.rolesTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idRol";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.rolesTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
});
| JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.estadosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.estadosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
this.subscribe("cellClickEvent", this.onEventShowCellEditor);
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.estadosTable, YAHOO.Tesis.ListTableBase, {
eliminarEstadoDocumento: function (idestadodocumentoTemp){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idestadodocumentoTemp') == idestadodocumentoTemp){
this.deleteRow(i);
break;
}
}
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.estadosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
tipoDatoFormatter: function(liner, record, column, data) {
// console.log(record.getData());
if (record.getData().tipoDatoDTO)
liner.innerHTML = record.getData().tipoDatoDTO.nombretipodato;
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idestadodocumentoTemp = record.getData().idestadodocumentoTemp;
self.eliminarEstadoDocumento(idestadodocumentoTemp);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idestadodocumentoTemp' ,
hidden: true
},
{
key: 'nombre',
label: 'Nombre',
editor: new YAHOO.widget.TextboxCellEditor({disableBtns:true})
},
{
key: 'descripcion',
label: 'Descripción',
editor: new YAHOO.widget.TextboxCellEditor({disableBtns:true})
},
{
key: 'acciones',
label: this.messages.estadosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstEstadoDocumento",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idestadodocumentoTemp'}, {key: 'nombre'},{key:'descripcion'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.estadosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.estadosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.estadosTable.paginacion.fin,
previousPageLinkLabel: this.messages.estadosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.estadosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.estadosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
getListaSerializada:function(){
var lstEstadoDocumentoDTO = {},
record,
getHash = function(index, id){
return 'lstEstadoDocumentoDTO['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstEstadoDocumentoDTO[getHash(i, 'idestadodocumentoTemp')] = record.getData('idestadodocumentoTemp');
lstEstadoDocumentoDTO[getHash(i, 'nombre')] = record.getData('nombre');
}
return lstEstadoDocumentoDTO;
},
agregarFila : function(fila){
this.addRow(fila);
},
getRegistros:function(){
var lstEstadoDocumentoDTO = [];
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
var data = record.getData();
var objeto = {}
if(record.getData('nombre') != "hacer click para editar.." && record.getData('descripcion') != "hacer click para editar.." ){
objeto['idestadodocumentoTemp'] = record.getData('idestadodocumentoTemp');
objeto['nombre'] = record.getData('nombre');
objeto['descripcion'] = record.getData('descripcion');
lstEstadoDocumentoDTO.push(objeto);
}else{
return [];
}
}
return lstEstadoDocumentoDTO;
}
}); | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.variablesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.variablesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.variablesTable, YAHOO.Tesis.ListTableBase, {
eliminarVariable: function (idVariable){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idvariable') == idVariable){
this.deleteRow(i);
break;
}
}
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.variablesTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
tipoDatoFormatter: function(liner, record, column, data) {
// console.log(record.getData());
if (record.getData().tipoDatoDTO)
liner.innerHTML = record.getData().tipoDatoDTO.nombretipodato;
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idvariable=record.getData().idvariable;
self.eliminarVariable(idvariable);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idvariable' ,
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},{
key:'tipoDatoDTO',
label: 'Tipo de Dato',
formatter:this.tipoDatoFormatter
},
{
key: 'acciones',
label: this.messages.variablesTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idvariable'}, {key: 'nombre'},{key:'tipoDatoDTO'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.variablesTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.variablesTable.paginacion.inicio,
lastPageLinkLabel: this.messages.variablesTable.paginacion.fin,
previousPageLinkLabel: this.messages.variablesTable.paginacion.anterior,
nextPageLinkLabel: this.messages.variablesTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.variablesTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
/*getListaSerializada:function(){
var lstVariables = {},
record,
getHash = function(index, id){
return 'lstVariables['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstVariables[getHash(i, 'idvariable')] = record.getData('idvariable');
lstVariables[getHash(i, 'nombre')] = record.getData('nombre');
lstVariables[getHash(i, 'tipoDatoDTO.nombretipodato')] = record.getData('tipoDatoDTO').nombretipodato;
// lstVariables[getHash(i, 'tipoDatoDTO.idtipodato')] = record.getData('tipoDatoDTO').idtipodato;
}
return lstVariables;
}, */
getListaDTO:function(){
var lstVariables = [];
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstVariables.push(record.getData());
}
return lstVariables;
},
agregarFila : function(fila){
this.addRow(fila);
}
}); | JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog.Roles = function(elContainer, url, messages, handlers) {
this.messages = messages;
this.handlers = handlers;
YAHOO.Tesis.dialog.Roles.superclass.constructor.call(this, elContainer, this.construirConfig());
// este dialog no usa callback
// this.callback = { success: this.handlers.success, failure: this.handlers.failure };
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
};
YAHOO.lang.extend(YAHOO.Tesis.dialog.Roles, YAHOO.widget.Dialog, {
construirConfig: function() {
return {
width: '700px', height: '400px',
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true
};
}
});/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
| JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.conexionesTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.conexionesTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
var self=this;
function highConx(e){
dibujarConexiones();
//console.log(e);
var rowID=self.getSelectedRows()[0];
var data = self.getRecord(rowID).getData();
//console.log(data);
$("#"+data.idTemp+ " div").addClass("shadowConx");
}
this.subscribe("rowClickEvent", this.onEventSelectRow);
this.subscribe("rowClickEvent",highConx );
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.conexionesTable, YAHOO.Tesis.ListTableBase, {
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.conexionesTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
self.deleteRow(self.getRecordSet().getRecordIndex(record));
var idConexion=record.getData().idTemp;
$("#"+idConexion).html('');
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
tipoConexionFormatter:function(liner, record, column, data) {
if (data=="1")
liner.innerHTML = "Alterna";
else
liner.innerHTML = "Directa";
},
construirColumnDefs: function() {
return [
{
key: 'idTemp' ,
hidden: true
},
{
key: 'idEstacionInicio',
hidden: true
},
{
key:'nombreInicio',
label: 'Estación Inicio'
},
{
key:'nombreFin',
label: 'Estación Fin'
},
{
key:'idEstacionFin',
hidden: true
//formatter:this.tipoDatoFormatter
},
{
key:'esAlterna',
label: 'Tipo',
formatter: this.tipoConexionFormatter
},
{
key: 'acciones',
label: 'Acciones',
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/cargo/find?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstCargosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idTemp'}, {key: 'idEstacionInicio'},{key:'idEstacionFin'},{key:'esAlterna'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest()//,
//dynamicData: true,
/*paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.conexionesTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.conexionesTable.paginacion.inicio,
lastPageLinkLabel: this.messages.conexionesTable.paginacion.fin,
previousPageLinkLabel: this.messages.conexionesTable.paginacion.anterior,
nextPageLinkLabel: this.messages.conexionesTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})*/
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idCargo";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : 10;
var nombre =$('#nombre').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
},
/*getListaSerializada:function(){
var lstConexiones = {},
record,
getHash = function(index, id){
return 'lstConexiones['+ index +'].' + id;
};
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstConexiones[getHash(i, 'idTemp')] = record.getData('idTemp');
lstConexiones[getHash(i, 'idEstacionInicio')] = record.getData('idEstacionInicio');
lstConexiones[getHash(i, 'idEstacionFin')] = record.getData('idEstacionFin');
lstConexiones[getHash(i, 'nombreInicio')] = record.getData('nombreInicio');
lstConexiones[getHash(i, 'nombreFin')] = record.getData('nombreFin');
}
return lstConexiones;
}, */
getListaDTO:function(){
var lstConexiones = [];
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
lstConexiones.push(record.getData());
}
return lstConexiones;
},
agregarFila : function(fila){
this.addRow(fila);
},
eliminarConexionRow: function (idConexion){
var record=null;
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (record.getData('idTemp') == idConexion){
this.deleteRow(i);
break;
}
}
},
conexionRepetida:function(idEstacionInicio,idEstacionFin){
for( var i = 0; i < this.getRecordSet().getLength(); i++ ){
record = this.getRecordSet().getRecord(i);
if (idEstacionFin){
if ((record.getData('idEstacionInicio') == idEstacionInicio
&& record.getData('idEstacionFin') == idEstacionFin)
|| (record.getData('idEstacionFin') == idEstacionInicio
&& record.getData('idEstacionInicio') == idEstacionFin)){
return true;
}
}else{
//caso de INICIO
return record.getData('idEstacionInicio') == idEstacionInicio
|| record.getData('idEstacionFin') == idEstacionInicio
}
}
return false;
}
}); | JavaScript |
if (!window.Tesis) {
window.Tesis = {};
}
Tesis.TipoParametro = {
VARIABLE : 1,
DOCUMENTO : 2
};
| JavaScript |
//recibe las compuertas
function validarReglas(lstCompuertas){
var arrComp=[];
var comp=null;
arrComp=objToArray(lstCompuertas);
for (var i=0;i<arrComp.length;i++){
comp=lstCompuertas[arrComp[i]];
if (comp.parametroVariableList.length==0
&& comp.parametroDocumentoList.length==0){
mensajeValidacion("No se han especificado entradas y salidas");
return false;
}
//valida que tenga al menos 2 entradas y 1 salida
var nEntradas=0;
var nSalidas=0;
for (var j=0;j<comp.parametroVariableList.length;j++){
if (comp.parametroVariableList[j].esEntrada=="Y"){
nEntradas=nEntradas+1;
}else{
nSalidas=nSalidas+1;
}
}
for (var j=0;j<comp.parametroDocumentoList.length;j++){
if (comp.parametroDocumentoList[j].esEntrada=="Y"){
nEntradas=nEntradas+1;
}else{
nSalidas=nSalidas+1;
}
}
if (nEntradas<2){
mensajeValidacion("La compuerta debe tener al menos dos entradas");
return false;
}
if (nSalidas==0){
mensajeValidacion("La compuerta debe tener una salida");
return false;
}
}
return true;
} | JavaScript |
if (!window.Tesis) {
window.Tesis = {};
}
Tesis.TipoRegla = {
AND : 1,
OR : 2,
XOR: 3
};
Tesis.TipoRegla.getId=function(compuerta){
var tipo=null;
switch (compuerta){
case '3' : tipo= Tesis.TipoRegla.AND;
break;
case '4' : tipo= Tesis.TipoRegla.OR;
break;
case '5' : tipo= Tesis.TipoRegla.XOR;
break;
}
return tipo;
} | JavaScript |
YAHOO.namespace('Tesis.modelador');
YAHOO.Tesis.modelador.usuariosTable = function(elContainer, messages, listado) {
this.messages = messages;
this.listado = listado;
YAHOO.Tesis.modelador.usuariosTable.superclass.constructor.call(this, elContainer,
this.construirColumnDefs(), this.construirDataSource(), this.construirConfig());
};
YAHOO.lang.extend(YAHOO.Tesis.modelador.usuariosTable, YAHOO.Tesis.ListTableBase, {
verUsuario: function (idusuario){
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/usuario/verUsuarios?idusuario=' + idusuario,700,340);
usuariosDialog.show();
},
editarUsuario: function (idusuario){
usuariosDialog = new YAHOO.Tesis.dialog('usuariosDialog',Tesis.contextPath + '/pages/usuario/crearUsuarios?idusuario=' + idusuario,700,555);
usuariosDialog.show();
},
eliminarUsuario: function (usuarioDTO){
var self=this;
$.get("eliminarUsuarios",usuarioDTO,function(data){
if (!data){
mensajeValidacion("Error al eliminar el usuario");
}
self.recargarData();
});
},
doBeforeLoadData: function(oRequest, oResponse, oPayload) {
oPayload.totalRecords = oResponse.meta.totalRecords;
oPayload.pagination.recordOffset = oResponse.meta.startIndex;
$("#cantidadRegistros").html(messages.usuariosTable.totalRegistros +" "+oPayload.totalRecords);
return oPayload;
},
estadoFormatter: function(liner, record, column, data) {
if (data!=null){
if (data==Tesis.EstadoAIEnum.ACTIVO) {
liner.innerHTML = 'Activo';
} else {
liner.innerHTML = 'Inactivo';
}
}else{
liner.innerHTML = '--';
}
},
accionesFormatter: function(liner, record, column, data) {
var self = this;
var linerElement = new YAHOO.util.Element(liner);
linerElement.get('element').innerHTML =
"<table style='margin-left:auto; margin-right:auto; width: 50px; border:0px !important;'><tr><td><div class='ver'></div></td><td><div class='editar'></div></td><td><div class='eliminar'></div></td></tr></table>";
linerElement.delegate('click', function() {
var idusuario=record.getData().idusuario;
//console.log(idusuario);
self.editarUsuario(idusuario);
}, '.editar');
self.setAccionTooltip(linerElement, '.editar', "editar", 5000);
linerElement.delegate('click', function() {
var idusuario=record.getData().idusuario;
//console.log(idusuario);
self.verUsuario(idusuario);
}, '.ver');
self.setAccionTooltip(linerElement, '.ver', "ver", 5000);
linerElement.delegate('click', function() {
var usuarioDTO=record.getData();
//Confirmar("¿Está seguro que desea eliminar al usuario? ", null,{},
//function(){self.eliminarUsuario(usuarioDTO);});
self.eliminarUsuario(usuarioDTO);
}, '.eliminar');
self.setAccionTooltip(linerElement, '.eliminar', "eliminar", 5000);
},
construirColumnDefs: function() {
return [
{
key: 'idusuario',
hidden: true
},
{
key: 'nombre',
label: 'Nombre'
},
{
key:'apellidopaterno',
label: 'Paterno'
},
{
key:'apellidomaterno',
label: 'Materno'
},
{
key:'esactivo',
label: 'Estado',
formatter:this.estadoFormatter
},
{
key: 'acciones',
label: this.messages.usuariosTable.columna.accion,
minWidth: 70,
maxWidth: 70,
className: 'accionesColumn',
formatter: this.accionesFormatter
}
];
},
construirDataSource: function() {
var dataSource = new YAHOO.util.XHRDataSource(Tesis.contextPath + "/pages/usuario/findUsuarios?");
dataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
dataSource.responseSchema = {
resultsList: "lstUsuariosDTO",
metaFields: {
totalRecords: "totalRecords",
startIndex: "startIndex"
},
fields: [ {key: 'idusuario'}, {key: 'nombre'},{key:'apellidopaterno'},{key:'apellidomaterno'},{key:'esactivo'}]
};
return dataSource;
},
construirConfig: function() {
return {
MSG_LOADING: 'Cargando...',
MSG_EMPTY :'No se encontraron datos.',
MSG_ERROR: "Error cargando datos, es muy probable que la sesión haya expirado.. <a href='" + Tesis.contextPath + "/pages/public/login'>Haga clic aquí para volver a acceder al sistema.</a>",
generateRequest: this.generarRequest,
initialLoad: false,
initialRequest:this.generarRequest(),
dynamicData: true,
paginator : new YAHOO.widget.Paginator({
rowsPerPage: this.messages.usuariosTable.paginacion.filasxpagina,
containers: "cargosPaginator", //contenedor
firstPageLinkLabel: this.messages.usuariosTable.paginacion.inicio,
lastPageLinkLabel: this.messages.usuariosTable.paginacion.fin,
previousPageLinkLabel: this.messages.usuariosTable.paginacion.anterior,
nextPageLinkLabel: this.messages.usuariosTable.paginacion.siguiente,
pageLinkClass: 'pageLinkClass',
template: "{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
})
}
},
generarRequest: function(oState, oSelf) {
oState = oState || {
pagination: null,
sortedBy: null
};
var sort = (oState.sortedBy) ? oState.sortedBy.key : "idusuario";
var dir = (oState.sortedBy && oState.sortedBy.dir === YAHOO.widget.DataTable.CLASS_DESC) ? "desc" : "asc";
var startIndex = (oState.pagination) ? oState.pagination.recordOffset : 0;
var results = (oState.pagination) ? oState.pagination.rowsPerPage : this.messages.usuariosTable.paginacion.filasxpagina;
var nombre =$('#nombre').val();
var appPaterno = $('#apellidopaterno').val();
var appMaterno = $('#apellidomaterno').val();
var forceIERequest = new Date().getTime();
return 'sort=' + sort +
'&dir=' + dir +
'&startIndex=' + startIndex +
'&results=' + (startIndex + results) +
'&nombre=' + nombre +
'&apellidopaterno=' + appPaterno +
'&apellidomaterno=' + appMaterno +
'&temp='+forceIERequest;
},
recargarData: function() {
var self = this;
oCallback = {
success: self.onDataReturnInitializeTable,
failure: self.onDataReturnSetRows,
scope: self,
argument: self.getState()
};
self.getDataSource().sendRequest(self.generarRequest(), oCallback);
},
tieneRegistros: function(){
return this.getRecordSet().getLength()>0;
}
}); | JavaScript |
if (!window.Tesis) {
window.Tesis = {};
}
Tesis.TipoComponente = {
INICIO : 1,
ESTACION : 2,
FIN: 3
};
Tesis.TipoComponente.getId=function(comp){
var tipo=null;
switch (comp){
case '1' : tipo= Tesis.TipoComponente.INICIO;
break;
case '2' : tipo= Tesis.TipoComponente.ESTACION;
break;
case '3' : tipo= Tesis.TipoComponente.FIN;
break;
}
return tipo;
} | JavaScript |
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, "");
};
//function btnStyleJqueryDialog(buttonLabel) {
// $('.ui-dialog-buttonpane :button').each(function() {
// if ($(this).text() == buttonLabel) {
// $(this).addClass('naranja');
// }
// });
//}
jQuery.fn.reset = function () {
$(this).each (function() {this.reset();});
}
function validateNumeric(event) {
// Backspace, tab, enter, end, home, left, right, del
var controlKeys = [8, 9, 13, 35, 36, 37, 39, 46];
var isControlKey = controlKeys.join(',').match(new RegExp(event.which));
//console.log('isControlKey ' + isControlKey);
if (!event.which
|| (48 <= event.which && event.which <= 57) // 0 a 9
|| isControlKey) {
return;
} else {
event.preventDefault();
}
}
function esCampoNumerico(numero){
var re = /^(-)?[0-9]*$/;
if (!re.test(numero)) {
return false;
}else{
return true;
}
}
function esSoloLetras(word){
if(/[0-9]/.test(word)){
return true;
}else{
return false;
}
}
function limpiarForm() {
if (document && document.forms && document.forms[0]) {
document.forms[0].reset();
}
}
function limpiarCombo(idCombo,labelInicial) {
$(idCombo).children().remove();
$(idCombo).html('<option selected value="-1">' + labelInicial + '</option>');
}
// el objeto a mostrar debe tener propiedades id y nombre
function cargarCombo(idCombo, listado,labelInicial,itemId,itemLabel) {
limpiarCombo(idCombo,labelInicial);
if (listado) {
var options = $(idCombo).html();
var data=null;
for (var i = 0; i < listado.length; i++) {
data=listado[i];
options += '<option value="' + data[itemId] + '">' + data[itemLabel] + "</option>";
}
$(idCombo).html(options);
}
}
// en caso de no ejecutar llamada ajax, nextURL=variable sin valor (undefined) y datajson={}
function Confirmar(mensaje, nextURL,dataJSON,aceptarFunction,cancelarFunction) {
//se necesita este div en el jsp
//<div id="dialog-confirm" title="Confirmar" style="display: none;"><p id="popupConfirm"></p></div>
$('#dialog-confirm')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
resizable : false,
buttons: {
No: function(){
$(this).dialog("destroy");
if (cancelarFunction)
cancelarFunction();
},
Sí: function() {
$( this ).dialog( "destroy" );
if (nextURL!=undefined){
$.getJSON(nextURL, dataJSON, function(response, textStatus) {
if (!response.error) {
aceptarFunction();
} else {
alert(response.error);
}
});
}else{
if (aceptarFunction)
aceptarFunction();
}
}
},
open: function() {
$(this).parents('.ui-dialog-buttonpane button:eq(1)').focus();//aceptar
$(this).parents('.ui-dialog-buttonpane button:eq(0)').blur();//cancelar
}
});
$( "#popupConfirm" ).html(mensaje);
$( "#dialog-confirm" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-confirm" ).dialog( "open" );
}
//exito y redireccion
function mensajeExito(mensaje, nextURL,isPopup,funcAceptar) {
$('<div id="dialog-exito" title="Éxito" style="display: none;"><p id="popupExito"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-exito" ).dialog("close");
if (nextURL!=undefined){
if (isPopup){
window.top.location = Tesis.contextPath + nextURL;
}else{
window.location = Tesis.contextPath + nextURL;
}
}else{
if (funcAceptar)
funcAceptar();
}
//return false;
}
}
});
$( "#popupExito" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-exito" ).dialog( "open" );
}
//mensaje alerta y redireccion
function mensajeAdvertencia(mensaje, nextURL) {
$('<div id="dialog-alerta" title="Advertencia" style="display: none;"><p id="popupAlerta"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-alerta" ).dialog("close");
if (nextURL!=undefined){
window.location = Tesis.contextPath + nextURL;
}
//return false;
}
}
});
$( "#popupAlerta" ).html(mensaje);
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {});
$( "#dialog-alerta" ).dialog( "open" );
}
//crea dialogo tipo alerta
//mensaje: mensaje de validacion
//idFocus ejm: "#idCampo" para darle foco
function mensajeValidacion(mensaje,idFocus) {
$('<div id="dialog-message" title="Advertencia" style="display: none;"><p id="popupMessage"></p></div>')
.dialog({
autoOpen: false,
modal: true,
draggable: false,
buttons: {
Aceptar: function() {
$( "#dialog-message" ).dialog("close");
}
}
});
$( "#popupMessage" ).html(mensaje);
if (idFocus != undefined && idFocus != null) {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
$(idFocus).focus();
});
} else {
$( "#dialog-message" ).bind( "dialogclose", function(event, ui) {
});
}
$( "#dialog-message" ).dialog( "open" );
}
function isValidURL(url){
var regExpression = /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i;
return regExpression.test(url);
}
function isValidEmail(email){
//var regex=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i;
var regex=/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
return regex.test(email);
}
function validarTamanho(idInput, tamanho) {
$(idInput).keypress(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).keyup(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
$(idInput).blur(function(event) {
if ($(this).val().length > tamanho) {
event.preventDefault();
$(this).val($(this).val().substring(0,tamanho));
}
});
}
var fillEmptyColumn = function(liner, record, column, data) {
var linerElement = new YAHOO.util.Element(liner);
if (!data) {
linerElement.get('element').innerHTML = '---';
}else{
linerElement.get('element').innerHTML = data;
}
}
function recortarCadena(cadena, longitud) {
if (cadena.length > longitud + 3) { // 3 porque se concatena el '...'
return cadena.substring(0, longitud) + '...';
} else {
return cadena;
}
}
//Create jsColor object
//var col = new jsColor("#0081C2");
var col1 = new jsColor("black");
var col2 = new jsColor("#C4C4C4");
//Create jsPen object
var pen1 = new jsPen(col1,4);
var pen2 = new jsPen(col2,4);
function linea(gr,p1,p2,id,esAlterna){
//console.log(p1);
//console.log(p2.y);
var pt1 = new jsPoint(p1.x,p1.y);
var pt2 = new jsPoint(p2.x,p2.y);
var l=null;
if (esAlterna=='Y')
l=gr.drawLine(pen2,pt1,pt2);
else
l=gr.drawLine(pen1,pt1,pt2);
if (id==null || id ==undefined){
l.id="l"+new Date().getTime();
}else
l.id=id;
$("#"+l.id).addClass("linea");
var medio=Math.round($("#"+l.id+" > div").size()/2);
if (medio==1)//para evitar fuera de index en linea recta
medio=0;
$("#"+l.id).children()[medio].style.overflow='visible';
if (p2.x>p1.x)//esta invertido xD
$("#"+l.id).children()[medio].innerHTML="<div class='arrow-right' id=f"+l.id+"></div>"
else{
$("#"+l.id).children()[medio].innerHTML="<div class='arrow-left' id=f"+l.id+"></div>"
}
//$("#"+l.id).children()[medio].className="arrow-right"
return l.id;
}
function conectar(gr,idIni,idFin,idLinea,esAlterna){
//var el = new YAHOO.util.Element(idIni);
var p1={};
var p2={};
/*if(el.getStyle('left')){
p1.x=el.getStyle('left').replace("px","");
p1.y=el.getStyle('top').replace("px","");
p1.x=parseInt(p1.x)+16;
p1.y=parseInt(p1.y)+((idIni.substr(0,1))*32);
}
el = new YAHOO.util.Element(idFin);
if(el.getStyle('left')){
p2.x=el.getStyle('left').replace("px","");
p2.y=el.getStyle('top').replace("px","");
p2.x=parseInt(p2.x)+16;
p2.y=parseInt(p2.y)+((idFin.substr(0,1))*32);
}*/
p1=$("#"+idIni).position();
p1.x=p1.left+16;
p1.y=p1.top+32;
p2=$("#"+idFin).position();
p2.x=p2.left+16;
p2.y=p2.top+32;
var l=linea(gr,p1,p2,idLinea,esAlterna);
return l;
}
function mostrarNotificacion(mensaje,op){
$("#notificacion").html('<p align="center">'+mensaje+'</p>');
if (op=='A'){
$("#notificacion").show('fade',function(){
$("#notificacion").hide('fade',{direction:'up'},700);
});
}
if (op=='S'){
$("#notificacion").show('fade',{direction:'down'},500);
}
if (op=='H'){
$("#notificacion").hide('fade',{direction:'down'},700);
}
}
function getTipo(id){
return id.substr(0, 1);
}
function esObjetoVacio(o){
return Object.keys(o).length==0;
}
function objToArray(obj){
var array=[];
$.each(obj,function(v,k){
array.push(v);
});
return array;
}
function removerNulos(arr){
var aux=[];
for (var i=0;i<arr.length;i++){
if (arr[i]!=null){
aux.push(arr[i]);
}
}
return aux;
}
function removerSeleccionadoClass(){
$("div").removeClass("seleccionado");
}
function seleccionarClass(id){
removerSeleccionadoClass();
$("#"+id).addClass("seleccionado");
}
function clonar(obj){
return $.extend(true, {},obj);
} | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 115
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
]
});
layout.render();
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var layout = new YAHOO.widget.Layout({
units: [
{
position: 'top',
body: 'layout-top',
height: 100
},
{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}
]
});
layout.render();
}); | JavaScript |
Tesis.popup = {}
Tesis.popup.manager = {}
Tesis.popup.manager.show = function(href, title, width, height) {
if (href == undefined) {
alert("href no definido.");
} else {
Tesis.panel = new YAHOO.widget.Panel("dialog-panel", {
width: width,
height: height,
fixedcenter: true,
close: true,
draggable: false,
zindex:4,
modal: true,
visible: false
});
Tesis.panel.setHeader(title);
Tesis.panel.setBody('<iframe frameborder="0" src="' + href + '" width="100%" height="100%"/>');
Tesis.panel.render(document.body);
Tesis.panel.show();
}
} | JavaScript |
Tesis.loading = {}
Tesis.loading.show = function(texto){
//if (!Tesis.loading.panel) {
Tesis.loading.panel = new YAHOO.widget.Panel("loading-panel", {
width: "220px",
fixedcenter: true,
close: false,
draggable: false,
zindex:4,
modal: true,
visible: false
});
var header = 'Procesando, espere por favor... ' + (texto ? texto : '');
Tesis.loading.panel.setHeader(header);
Tesis.loading.panel.setBody("<div class='bar'> </div>");
Tesis.loading.panel.render(document.body);
//}
Tesis.loading.panel.show();
}
Tesis.loading.hide = function(){
Tesis.loading.panel.destroy()
} | JavaScript |
YAHOO.namespace('Tesis');
YAHOO.Tesis.ListTableBase = function(elContainer, columnDefs, dataSource, config) {
this.accionesTooltip = new YAHOO.widget.Tooltip("acciones_tooltip");
YAHOO.Tesis.ListTableBase.superclass.constructor.call(this, elContainer,
columnDefs, dataSource, config);
};
YAHOO.lang.extend(YAHOO.Tesis.ListTableBase, YAHOO.widget.DataTable, {
setAccionTooltip : function(element, filter, body, displayTimeout){
var self = this;
element.delegate('mouseover', function() {
var x= arguments[0].clientX,
y= arguments[0].clientY,
tooltip = self.accionesTooltip;
self.showAccionesTooltipTimer = window.setTimeout(function() {
tooltip.setBody(body);
tooltip.cfg.setProperty('xy',[x + 10,y + 10]);
tooltip.show();
if(displayTimeout){
self.hideAccionesTooltipTimer = window.setTimeout(function() {
tooltip.hide();
},displayTimeout);
}
},10);
}, filter);
element.delegate('mouseout', function() {
if (self.showAccionesTooltipTimer ) {
window.clearTimeout(self.showAccionesTooltipTimer );
self.showAccionesTooltipTimer = 0;
}
if (self.hideAccionesTooltipTimer) {
window.clearTimeout(self.hideAccionesTooltipTimer);
self.hideAccionesTooltipTimer = 0;
}
self.accionesTooltip.hide();
}, filter);
}
}); | JavaScript |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
if(!window.Tesis) window.Tesis = {};
Tesis.contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf('/', 1));
Tesis.dom = YAHOO.util.Dom;
Tesis.event = YAHOO.util.Event;
| JavaScript |
YAHOO.namespace('Tesis.dialog');
YAHOO.Tesis.dialog = function(elContainer, url, w,h) {
$("#"+elContainer).html("");
$("#"+elContainer).html("<div class='hd'> </div>");
YAHOO.Tesis.dialog.superclass.constructor.call(this, elContainer, this.construirConfig(w,h));
this.setBody('<iframe frameborder="0" src="' + url + '" width="100%" height="100%"/>');
this.render();
this.subscribe("beforeHide",function(e){
//codigo aqui
});
};
YAHOO.lang.extend(YAHOO.Tesis.dialog, YAHOO.widget.Dialog, {
construirConfig: function(w,h) {
return {
width: w+"px", height: h+"px",
modal: true, fixedcenter: true,
visible: false, constraintoviewport: true,
effect:{effect:YAHOO.widget.ContainerEffect.FADE ,duration:0.5}
};
}
}); | JavaScript |
Tesis.event.onDOMReady(function() {
var popupLayout = new YAHOO.widget.Layout({
units: [{
position: 'center',
body: 'layout-center',
gutter: '0px 0px 0px 0px',
scroll: true
}]
});
popupLayout.render();
}); | JavaScript |
/**
* dat-gui JavaScript Controller Library
* http://code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team, Google Creative Lab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
/** @namespace */
var dat = dat || {};
/** @namespace */
dat.gui = dat.gui || {};
/** @namespace */
dat.utils = dat.utils || {};
/** @namespace */
dat.controllers = dat.controllers || {};
/** @namespace */
dat.dom = dat.dom || {};
/** @namespace */
dat.color = dat.color || {};
dat.utils.css = (function () {
return {
load: function (url, doc) {
doc = doc || document;
var link = doc.createElement('link');
link.type = 'text/css';
link.rel = 'stylesheet';
link.href = url;
doc.getElementsByTagName('head')[0].appendChild(link);
},
inject: function(css, doc) {
doc = doc || document;
var injected = document.createElement('style');
injected.type = 'text/css';
injected.innerHTML = css;
doc.getElementsByTagName('head')[0].appendChild(injected);
}
}
})();
dat.utils.common = (function () {
var ARR_EACH = Array.prototype.forEach;
var ARR_SLICE = Array.prototype.slice;
/**
* Band-aid methods for things that should be a lot easier in JavaScript.
* Implementation and structure inspired by underscore.js
* http://documentcloud.github.com/underscore/
*/
return {
BREAK: {},
extend: function(target) {
this.each(ARR_SLICE.call(arguments, 1), function(obj) {
for (var key in obj)
if (!this.isUndefined(obj[key]))
target[key] = obj[key];
}, this);
return target;
},
defaults: function(target) {
this.each(ARR_SLICE.call(arguments, 1), function(obj) {
for (var key in obj)
if (this.isUndefined(target[key]))
target[key] = obj[key];
}, this);
return target;
},
compose: function() {
var toCall = ARR_SLICE.call(arguments);
return function() {
var args = ARR_SLICE.call(arguments);
for (var i = toCall.length -1; i >= 0; i--) {
args = [toCall[i].apply(this, args)];
}
return args[0];
}
},
each: function(obj, itr, scope) {
if (ARR_EACH && obj.forEach === ARR_EACH) {
obj.forEach(itr, scope);
} else if (obj.length === obj.length + 0) { // Is number but not NaN
for (var key = 0, l = obj.length; key < l; key++)
if (key in obj && itr.call(scope, obj[key], key) === this.BREAK)
return;
} else {
for (var key in obj)
if (itr.call(scope, obj[key], key) === this.BREAK)
return;
}
},
defer: function(fnc) {
setTimeout(fnc, 0);
},
toArray: function(obj) {
if (obj.toArray) return obj.toArray();
return ARR_SLICE.call(obj);
},
isUndefined: function(obj) {
return obj === undefined;
},
isNull: function(obj) {
return obj === null;
},
isNaN: function(obj) {
return obj !== obj;
},
isArray: Array.isArray || function(obj) {
return obj.constructor === Array;
},
isObject: function(obj) {
return obj === Object(obj);
},
isNumber: function(obj) {
return obj === obj+0;
},
isString: function(obj) {
return obj === obj+'';
},
isBoolean: function(obj) {
return obj === false || obj === true;
},
isFunction: function(obj) {
return Object.prototype.toString.call(obj) === '[object Function]';
}
};
})();
dat.controllers.Controller = (function (common) {
/**
* @class An "abstract" class that represents a given property of an object.
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
*
* @member dat.controllers
*/
var Controller = function(object, property) {
this.initialValue = object[property];
/**
* Those who extend this class will put their DOM elements in here.
* @type {DOMElement}
*/
this.domElement = document.createElement('div');
/**
* The object to manipulate
* @type {Object}
*/
this.object = object;
/**
* The name of the property to manipulate
* @type {String}
*/
this.property = property;
/**
* The function to be called on change.
* @type {Function}
* @ignore
*/
this.__onChange = undefined;
/**
* The function to be called on finishing change.
* @type {Function}
* @ignore
*/
this.__onFinishChange = undefined;
};
common.extend(
Controller.prototype,
/** @lends dat.controllers.Controller.prototype */
{
/**
* Specify that a function fire every time someone changes the value with
* this Controller.
*
* @param {Function} fnc This function will be called whenever the value
* is modified via this Controller.
* @returns {dat.controllers.Controller} this
*/
onChange: function(fnc) {
this.__onChange = fnc;
return this;
},
/**
* Specify that a function fire every time someone "finishes" changing
* the value wih this Controller. Useful for values that change
* incrementally like numbers or strings.
*
* @param {Function} fnc This function will be called whenever
* someone "finishes" changing the value via this Controller.
* @returns {dat.controllers.Controller} this
*/
onFinishChange: function(fnc) {
this.__onFinishChange = fnc;
return this;
},
/**
* Change the value of <code>object[property]</code>
*
* @param {Object} newValue The new value of <code>object[property]</code>
*/
setValue: function(newValue) {
this.object[this.property] = newValue;
if (this.__onChange) {
this.__onChange.call(this, newValue);
}
this.updateDisplay();
return this;
},
/**
* Gets the value of <code>object[property]</code>
*
* @returns {Object} The current value of <code>object[property]</code>
*/
getValue: function() {
return this.object[this.property];
},
/**
* Refreshes the visual display of a Controller in order to keep sync
* with the object's current value.
* @returns {dat.controllers.Controller} this
*/
updateDisplay: function() {
return this;
},
/**
* @returns {Boolean} true if the value has deviated from initialValue
*/
isModified: function() {
return this.initialValue !== this.getValue()
}
}
);
return Controller;
})(dat.utils.common);
dat.dom.dom = (function (common) {
var EVENT_MAP = {
'HTMLEvents': ['change'],
'MouseEvents': ['click','mousemove','mousedown','mouseup', 'mouseover'],
'KeyboardEvents': ['keydown']
};
var EVENT_MAP_INV = {};
common.each(EVENT_MAP, function(v, k) {
common.each(v, function(e) {
EVENT_MAP_INV[e] = k;
});
});
var CSS_VALUE_PIXELS = /(\d+(\.\d+)?)px/;
function cssValueToPixels(val) {
if (val === '0' || common.isUndefined(val)) return 0;
var match = val.match(CSS_VALUE_PIXELS);
if (!common.isNull(match)) {
return parseFloat(match[1]);
}
// TODO ...ems? %?
return 0;
}
/**
* @namespace
* @member dat.dom
*/
var dom = {
/**
*
* @param elem
* @param selectable
*/
makeSelectable: function(elem, selectable) {
if (elem === undefined || elem.style === undefined) return;
elem.onselectstart = selectable ? function() {
return false;
} : function() {
};
elem.style.MozUserSelect = selectable ? 'auto' : 'none';
elem.style.KhtmlUserSelect = selectable ? 'auto' : 'none';
elem.unselectable = selectable ? 'on' : 'off';
},
/**
*
* @param elem
* @param horizontal
* @param vertical
*/
makeFullscreen: function(elem, horizontal, vertical) {
if (common.isUndefined(horizontal)) horizontal = true;
if (common.isUndefined(vertical)) vertical = true;
elem.style.position = 'absolute';
if (horizontal) {
elem.style.left = 0;
elem.style.right = 0;
}
if (vertical) {
elem.style.top = 0;
elem.style.bottom = 0;
}
},
/**
*
* @param elem
* @param eventType
* @param params
*/
fakeEvent: function(elem, eventType, params, aux) {
params = params || {};
var className = EVENT_MAP_INV[eventType];
if (!className) {
throw new Error('Event type ' + eventType + ' not supported.');
}
var evt = document.createEvent(className);
switch (className) {
case 'MouseEvents':
var clientX = params.x || params.clientX || 0;
var clientY = params.y || params.clientY || 0;
evt.initMouseEvent(eventType, params.bubbles || false,
params.cancelable || true, window, params.clickCount || 1,
0, //screen X
0, //screen Y
clientX, //client X
clientY, //client Y
false, false, false, false, 0, null);
break;
case 'KeyboardEvents':
var init = evt.initKeyboardEvent || evt.initKeyEvent; // webkit || moz
common.defaults(params, {
cancelable: true,
ctrlKey: false,
altKey: false,
shiftKey: false,
metaKey: false,
keyCode: undefined,
charCode: undefined
});
init(eventType, params.bubbles || false,
params.cancelable, window,
params.ctrlKey, params.altKey,
params.shiftKey, params.metaKey,
params.keyCode, params.charCode);
break;
default:
evt.initEvent(eventType, params.bubbles || false,
params.cancelable || true);
break;
}
common.defaults(evt, aux);
elem.dispatchEvent(evt);
},
/**
*
* @param elem
* @param event
* @param func
* @param bool
*/
bind: function(elem, event, func, bool) {
bool = bool || false;
if (elem.addEventListener)
elem.addEventListener(event, func, bool);
else if (elem.attachEvent)
elem.attachEvent('on' + event, func);
return dom;
},
/**
*
* @param elem
* @param event
* @param func
* @param bool
*/
unbind: function(elem, event, func, bool) {
bool = bool || false;
if (elem.removeEventListener)
elem.removeEventListener(event, func, bool);
else if (elem.detachEvent)
elem.detachEvent('on' + event, func);
return dom;
},
/**
*
* @param elem
* @param className
*/
addClass: function(elem, className) {
if (elem.className === undefined) {
elem.className = className;
} else if (elem.className !== className) {
var classes = elem.className.split(/ +/);
if (classes.indexOf(className) == -1) {
classes.push(className);
elem.className = classes.join(' ').replace(/^\s+/, '').replace(/\s+$/, '');
}
}
return dom;
},
/**
*
* @param elem
* @param className
*/
removeClass: function(elem, className) {
if (className) {
if (elem.className === undefined) {
// elem.className = className;
} else if (elem.className === className) {
elem.removeAttribute('class');
} else {
var classes = elem.className.split(/ +/);
var index = classes.indexOf(className);
if (index != -1) {
classes.splice(index, 1);
elem.className = classes.join(' ');
}
}
} else {
elem.className = undefined;
}
return dom;
},
hasClass: function(elem, className) {
return new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)').test(elem.className) || false;
},
/**
*
* @param elem
*/
getWidth: function(elem) {
var style = getComputedStyle(elem);
return cssValueToPixels(style['border-left-width']) +
cssValueToPixels(style['border-right-width']) +
cssValueToPixels(style['padding-left']) +
cssValueToPixels(style['padding-right']) +
cssValueToPixels(style['width']);
},
/**
*
* @param elem
*/
getHeight: function(elem) {
var style = getComputedStyle(elem);
return cssValueToPixels(style['border-top-width']) +
cssValueToPixels(style['border-bottom-width']) +
cssValueToPixels(style['padding-top']) +
cssValueToPixels(style['padding-bottom']) +
cssValueToPixels(style['height']);
},
/**
*
* @param elem
*/
getOffset: function(elem) {
var offset = {left: 0, top:0};
if (elem.offsetParent) {
do {
offset.left += elem.offsetLeft;
offset.top += elem.offsetTop;
} while (elem = elem.offsetParent);
}
return offset;
},
// http://stackoverflow.com/posts/2684561/revisions
/**
*
* @param elem
*/
isActive: function(elem) {
return elem === document.activeElement && ( elem.type || elem.href );
}
};
return dom;
})(dat.utils.common);
dat.controllers.OptionController = (function (Controller, dom, common) {
/**
* @class Provides a select input to alter the property of an object, using a
* list of accepted values.
*
* @extends dat.controllers.Controller
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
* @param {Object|string[]} options A map of labels to acceptable values, or
* a list of acceptable string values.
*
* @member dat.controllers
*/
var OptionController = function(object, property, options) {
OptionController.superclass.call(this, object, property);
var _this = this;
/**
* The drop down menu
* @ignore
*/
this.__select = document.createElement('select');
if (common.isArray(options)) {
var map = {};
common.each(options, function(element) {
map[element] = element;
});
options = map;
}
common.each(options, function(value, key) {
var opt = document.createElement('option');
opt.innerHTML = key;
opt.setAttribute('value', value);
_this.__select.appendChild(opt);
});
// Acknowledge original value
this.updateDisplay();
dom.bind(this.__select, 'change', function() {
var desiredValue = this.options[this.selectedIndex].value;
_this.setValue(desiredValue);
});
this.domElement.appendChild(this.__select);
};
OptionController.superclass = Controller;
common.extend(
OptionController.prototype,
Controller.prototype,
{
setValue: function(v) {
var toReturn = OptionController.superclass.prototype.setValue.call(this, v);
if (this.__onFinishChange) {
this.__onFinishChange.call(this, this.getValue());
}
return toReturn;
},
updateDisplay: function() {
this.__select.value = this.getValue();
return OptionController.superclass.prototype.updateDisplay.call(this);
}
}
);
return OptionController;
})(dat.controllers.Controller,
dat.dom.dom,
dat.utils.common);
dat.controllers.NumberController = (function (Controller, common) {
/**
* @class Represents a given property of an object that is a number.
*
* @extends dat.controllers.Controller
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
* @param {Object} [params] Optional parameters
* @param {Number} [params.min] Minimum allowed value
* @param {Number} [params.max] Maximum allowed value
* @param {Number} [params.step] Increment by which to change value
*
* @member dat.controllers
*/
var NumberController = function(object, property, params) {
NumberController.superclass.call(this, object, property);
params = params || {};
this.__min = params.min;
this.__max = params.max;
this.__step = params.step;
if (common.isUndefined(this.__step)) {
if (this.initialValue == 0) {
this.__impliedStep = 1; // What are we, psychics?
} else {
// Hey Doug, check this out.
this.__impliedStep = Math.pow(10, Math.floor(Math.log(this.initialValue)/Math.LN10))/10;
}
} else {
this.__impliedStep = this.__step;
}
this.__precision = numDecimals(this.__impliedStep);
};
NumberController.superclass = Controller;
common.extend(
NumberController.prototype,
Controller.prototype,
/** @lends dat.controllers.NumberController.prototype */
{
setValue: function(v) {
if (this.__min !== undefined && v < this.__min) {
v = this.__min;
} else if (this.__max !== undefined && v > this.__max) {
v = this.__max;
}
if (this.__step !== undefined && v % this.__step != 0) {
v = Math.round(v / this.__step) * this.__step;
}
return NumberController.superclass.prototype.setValue.call(this, v);
},
/**
* Specify a minimum value for <code>object[property]</code>.
*
* @param {Number} minValue The minimum value for
* <code>object[property]</code>
* @returns {dat.controllers.NumberController} this
*/
min: function(v) {
this.__min = v;
return this;
},
/**
* Specify a maximum value for <code>object[property]</code>.
*
* @param {Number} maxValue The maximum value for
* <code>object[property]</code>
* @returns {dat.controllers.NumberController} this
*/
max: function(v) {
this.__max = v;
return this;
},
/**
* Specify a step value that dat.controllers.NumberController
* increments by.
*
* @param {Number} stepValue The step value for
* dat.controllers.NumberController
* @default if minimum and maximum specified increment is 1% of the
* difference otherwise stepValue is 1
* @returns {dat.controllers.NumberController} this
*/
step: function(v) {
this.__step = v;
return this;
}
}
);
function numDecimals(x) {
x = x.toString();
if (x.indexOf('.') > -1) {
return x.length - x.indexOf('.') - 1;
} else {
return 0;
}
}
return NumberController;
})(dat.controllers.Controller,
dat.utils.common);
dat.controllers.NumberControllerBox = (function (NumberController, dom, common) {
/**
* @class Represents a given property of an object that is a number and
* provides an input element with which to manipulate it.
*
* @extends dat.controllers.Controller
* @extends dat.controllers.NumberController
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
* @param {Object} [params] Optional parameters
* @param {Number} [params.min] Minimum allowed value
* @param {Number} [params.max] Maximum allowed value
* @param {Number} [params.step] Increment by which to change value
*
* @member dat.controllers
*/
var NumberControllerBox = function(object, property, params) {
this.__truncationSuspended = false;
NumberControllerBox.superclass.call(this, object, property, params);
var _this = this;
/**
* {Number} Previous mouse y position
* @ignore
*/
var prev_y;
this.__input = document.createElement('input');
this.__input.setAttribute('type', 'text');
// Makes it so manually specified values are not truncated.
dom.bind(this.__input, 'change', onChange);
dom.bind(this.__input, 'blur', onBlur);
dom.bind(this.__input, 'mousedown', onMouseDown);
dom.bind(this.__input, 'keydown', function(e) {
// When pressing entire, you can be as precise as you want.
if (e.keyCode === 13) {
_this.__truncationSuspended = true;
this.blur();
_this.__truncationSuspended = false;
}
});
function onChange() {
var attempted = parseFloat(_this.__input.value);
if (!common.isNaN(attempted)) _this.setValue(attempted);
}
function onBlur() {
onChange();
if (_this.__onFinishChange) {
_this.__onFinishChange.call(_this, _this.getValue());
}
}
function onMouseDown(e) {
dom.bind(window, 'mousemove', onMouseDrag);
dom.bind(window, 'mouseup', onMouseUp);
prev_y = e.clientY;
}
function onMouseDrag(e) {
var diff = prev_y - e.clientY;
_this.setValue(_this.getValue() + diff * _this.__impliedStep);
prev_y = e.clientY;
}
function onMouseUp() {
dom.unbind(window, 'mousemove', onMouseDrag);
dom.unbind(window, 'mouseup', onMouseUp);
}
this.updateDisplay();
this.domElement.appendChild(this.__input);
};
NumberControllerBox.superclass = NumberController;
common.extend(
NumberControllerBox.prototype,
NumberController.prototype,
{
updateDisplay: function() {
this.__input.value = this.__truncationSuspended ? this.getValue() : roundToDecimal(this.getValue(), this.__precision);
return NumberControllerBox.superclass.prototype.updateDisplay.call(this);
}
}
);
function roundToDecimal(value, decimals) {
var tenTo = Math.pow(10, decimals);
return Math.round(value * tenTo) / tenTo;
}
return NumberControllerBox;
})(dat.controllers.NumberController,
dat.dom.dom,
dat.utils.common);
dat.controllers.NumberControllerSlider = (function (NumberController, dom, css, common, styleSheet) {
/**
* @class Represents a given property of an object that is a number, contains
* a minimum and maximum, and provides a slider element with which to
* manipulate it. It should be noted that the slider element is made up of
* <code><div></code> tags, <strong>not</strong> the html5
* <code><slider></code> element.
*
* @extends dat.controllers.Controller
* @extends dat.controllers.NumberController
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
* @param {Number} minValue Minimum allowed value
* @param {Number} maxValue Maximum allowed value
* @param {Number} stepValue Increment by which to change value
*
* @member dat.controllers
*/
var NumberControllerSlider = function(object, property, min, max, step) {
NumberControllerSlider.superclass.call(this, object, property, { min: min, max: max, step: step });
var _this = this;
this.__background = document.createElement('div');
this.__foreground = document.createElement('div');
dom.bind(this.__background, 'mousedown', onMouseDown);
dom.addClass(this.__background, 'slider');
dom.addClass(this.__foreground, 'slider-fg');
function onMouseDown(e) {
dom.bind(window, 'mousemove', onMouseDrag);
dom.bind(window, 'mouseup', onMouseUp);
onMouseDrag(e);
}
function onMouseDrag(e) {
e.preventDefault();
var offset = dom.getOffset(_this.__background);
var width = dom.getWidth(_this.__background);
_this.setValue(
map(e.clientX, offset.left, offset.left + width, _this.__min, _this.__max)
);
return false;
}
function onMouseUp() {
dom.unbind(window, 'mousemove', onMouseDrag);
dom.unbind(window, 'mouseup', onMouseUp);
if (_this.__onFinishChange) {
_this.__onFinishChange.call(_this, _this.getValue());
}
}
this.updateDisplay();
this.__background.appendChild(this.__foreground);
this.domElement.appendChild(this.__background);
};
NumberControllerSlider.superclass = NumberController;
/**
* Injects default stylesheet for slider elements.
*/
NumberControllerSlider.useDefaultStyles = function() {
css.inject(styleSheet);
};
common.extend(
NumberControllerSlider.prototype,
NumberController.prototype,
{
updateDisplay: function() {
var pct = (this.getValue() - this.__min)/(this.__max - this.__min);
this.__foreground.style.width = pct*100+'%';
return NumberControllerSlider.superclass.prototype.updateDisplay.call(this);
}
}
);
function map(v, i1, i2, o1, o2) {
return o1 + (o2 - o1) * ((v - i1) / (i2 - i1));
}
return NumberControllerSlider;
})(dat.controllers.NumberController,
dat.dom.dom,
dat.utils.css,
dat.utils.common,
".slider {\n box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);\n height: 1em;\n border-radius: 1em;\n background-color: #eee;\n padding: 0 0.5em;\n overflow: hidden;\n}\n\n.slider-fg {\n padding: 1px 0 2px 0;\n background-color: #aaa;\n height: 1em;\n margin-left: -0.5em;\n padding-right: 0.5em;\n border-radius: 1em 0 0 1em;\n}\n\n.slider-fg:after {\n display: inline-block;\n border-radius: 1em;\n background-color: #fff;\n border: 1px solid #aaa;\n content: '';\n float: right;\n margin-right: -1em;\n margin-top: -1px;\n height: 0.9em;\n width: 0.9em;\n}");
dat.controllers.FunctionController = (function (Controller, dom, common) {
/**
* @class Provides a GUI interface to fire a specified method, a property of an object.
*
* @extends dat.controllers.Controller
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
*
* @member dat.controllers
*/
var FunctionController = function(object, property, text) {
FunctionController.superclass.call(this, object, property);
var _this = this;
this.__button = document.createElement('div');
this.__button.innerHTML = text === undefined ? 'Fire' : text;
dom.bind(this.__button, 'click', function(e) {
e.preventDefault();
_this.fire();
return false;
});
dom.addClass(this.__button, 'button');
this.domElement.appendChild(this.__button);
};
FunctionController.superclass = Controller;
common.extend(
FunctionController.prototype,
Controller.prototype,
{
fire: function() {
if (this.__onChange) {
this.__onChange.call(this);
}
if (this.__onFinishChange) {
this.__onFinishChange.call(this, this.getValue());
}
this.getValue().call(this.object);
}
}
);
return FunctionController;
})(dat.controllers.Controller,
dat.dom.dom,
dat.utils.common);
dat.controllers.BooleanController = (function (Controller, dom, common) {
/**
* @class Provides a checkbox input to alter the boolean property of an object.
* @extends dat.controllers.Controller
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
*
* @member dat.controllers
*/
var BooleanController = function(object, property) {
BooleanController.superclass.call(this, object, property);
var _this = this;
this.__prev = this.getValue();
this.__checkbox = document.createElement('input');
this.__checkbox.setAttribute('type', 'checkbox');
dom.bind(this.__checkbox, 'change', onChange, false);
this.domElement.appendChild(this.__checkbox);
// Match original value
this.updateDisplay();
function onChange() {
_this.setValue(!_this.__prev);
}
};
BooleanController.superclass = Controller;
common.extend(
BooleanController.prototype,
Controller.prototype,
{
setValue: function(v) {
var toReturn = BooleanController.superclass.prototype.setValue.call(this, v);
if (this.__onFinishChange) {
this.__onFinishChange.call(this, this.getValue());
}
this.__prev = this.getValue();
return toReturn;
},
updateDisplay: function() {
if (this.getValue() === true) {
this.__checkbox.setAttribute('checked', 'checked');
this.__checkbox.checked = true;
} else {
this.__checkbox.checked = false;
}
return BooleanController.superclass.prototype.updateDisplay.call(this);
}
}
);
return BooleanController;
})(dat.controllers.Controller,
dat.dom.dom,
dat.utils.common);
dat.color.toString = (function (common) {
return function(color) {
if (color.a == 1 || common.isUndefined(color.a)) {
var s = color.hex.toString(16);
while (s.length < 6) {
s = '0' + s;
}
return '#' + s;
} else {
return 'rgba(' + Math.round(color.r) + ',' + Math.round(color.g) + ',' + Math.round(color.b) + ',' + color.a + ')';
}
}
})(dat.utils.common);
dat.color.interpret = (function (toString, common) {
var result, toReturn;
var interpret = function() {
toReturn = false;
var original = arguments.length > 1 ? common.toArray(arguments) : arguments[0];
common.each(INTERPRETATIONS, function(family) {
if (family.litmus(original)) {
common.each(family.conversions, function(conversion, conversionName) {
result = conversion.read(original);
if (toReturn === false && result !== false) {
toReturn = result;
result.conversionName = conversionName;
result.conversion = conversion;
return common.BREAK;
}
});
return common.BREAK;
}
});
return toReturn;
};
var INTERPRETATIONS = [
// Strings
{
litmus: common.isString,
conversions: {
THREE_CHAR_HEX: {
read: function(original) {
var test = original.match(/^#([A-F0-9])([A-F0-9])([A-F0-9])$/i);
if (test === null) return false;
return {
space: 'HEX',
hex: parseInt(
'0x' +
test[1].toString() + test[1].toString() +
test[2].toString() + test[2].toString() +
test[3].toString() + test[3].toString())
};
},
write: toString
},
SIX_CHAR_HEX: {
read: function(original) {
var test = original.match(/^#([A-F0-9]{6})$/i);
if (test === null) return false;
return {
space: 'HEX',
hex: parseInt('0x' + test[1].toString())
};
},
write: toString
},
CSS_RGB: {
read: function(original) {
var test = original.match(/^rgb\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\)/);
if (test === null) return false;
return {
space: 'RGB',
r: parseFloat(test[1]),
g: parseFloat(test[2]),
b: parseFloat(test[3])
};
},
write: toString
},
CSS_RGBA: {
read: function(original) {
var test = original.match(/^rgba\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\,\s*(.+)\s*\)/);
if (test === null) return false;
return {
space: 'RGB',
r: parseFloat(test[1]),
g: parseFloat(test[2]),
b: parseFloat(test[3]),
a: parseFloat(test[4])
};
},
write: toString
}
}
},
// Numbers
{
litmus: common.isNumber,
conversions: {
HEX: {
read: function(original) {
return {
space: 'HEX',
hex: original,
conversionName: 'HEX'
}
},
write: function(color) {
return color.hex;
}
}
}
},
// Arrays
{
litmus: common.isArray,
conversions: {
RGB_ARRAY: {
read: function(original) {
if (original.length != 3) return false;
return {
space: 'RGB',
r: original[0],
g: original[1],
b: original[2]
};
},
write: function(color) {
return [color.r, color.g, color.b];
}
},
RGBA_ARRAY: {
read: function(original) {
if (original.length != 4) return false;
return {
space: 'RGB',
r: original[0],
g: original[1],
b: original[2],
a: original[3]
};
},
write: function(color) {
return [color.r, color.g, color.b, color.a];
}
}
}
},
// Objects
{
litmus: common.isObject,
conversions: {
RGBA_OBJ: {
read: function(original) {
if (common.isNumber(original.r) &&
common.isNumber(original.g) &&
common.isNumber(original.b) &&
common.isNumber(original.a)) {
return {
space: 'RGB',
r: original.r,
g: original.g,
b: original.b,
a: original.a
}
}
return false;
},
write: function(color) {
return {
r: color.r,
g: color.g,
b: color.b,
a: color.a
}
}
},
RGB_OBJ: {
read: function(original) {
if (common.isNumber(original.r) &&
common.isNumber(original.g) &&
common.isNumber(original.b)) {
return {
space: 'RGB',
r: original.r,
g: original.g,
b: original.b
}
}
return false;
},
write: function(color) {
return {
r: color.r,
g: color.g,
b: color.b
}
}
},
HSVA_OBJ: {
read: function(original) {
if (common.isNumber(original.h) &&
common.isNumber(original.s) &&
common.isNumber(original.v) &&
common.isNumber(original.a)) {
return {
space: 'HSV',
h: original.h,
s: original.s,
v: original.v,
a: original.a
}
}
return false;
},
write: function(color) {
return {
h: color.h,
s: color.s,
v: color.v,
a: color.a
}
}
},
HSV_OBJ: {
read: function(original) {
if (common.isNumber(original.h) &&
common.isNumber(original.s) &&
common.isNumber(original.v)) {
return {
space: 'HSV',
h: original.h,
s: original.s,
v: original.v
}
}
return false;
},
write: function(color) {
return {
h: color.h,
s: color.s,
v: color.v
}
}
}
}
}
];
return interpret;
})(dat.color.toString,
dat.utils.common);
dat.GUI = dat.gui.GUI = (function (css, saveDialogueContents, styleSheet, controllerFactory, Controller, BooleanController, FunctionController, NumberControllerBox, NumberControllerSlider, OptionController, ColorController, requestAnimationFrame, CenteredDiv, dom, common) {
css.inject(styleSheet);
/** Outer-most className for GUI's */
var CSS_NAMESPACE = 'dg';
var HIDE_KEY_CODE = 72;
/** The only value shared between the JS and SCSS. Use caution. */
var CLOSE_BUTTON_HEIGHT = 20;
var DEFAULT_DEFAULT_PRESET_NAME = 'Default';
var SUPPORTS_LOCAL_STORAGE = (function() {
try {
return 'localStorage' in window && window['localStorage'] !== null;
} catch (e) {
return false;
}
})();
var SAVE_DIALOGUE;
/** Have we yet to create an autoPlace GUI? */
var auto_place_virgin = true;
/** Fixed position div that auto place GUI's go inside */
var auto_place_container;
/** Are we hiding the GUI's ? */
var hide = false;
/** GUI's which should be hidden */
var hideable_guis = [];
/**
* A lightweight controller library for JavaScript. It allows you to easily
* manipulate variables and fire functions on the fly.
* @class
*
* @member dat.gui
*
* @param {Object} [params]
* @param {String} [params.name] The name of this GUI.
* @param {Object} [params.load] JSON object representing the saved state of
* this GUI.
* @param {Boolean} [params.auto=true]
* @param {dat.gui.GUI} [params.parent] The GUI I'm nested in.
* @param {Boolean} [params.closed] If true, starts closed
*/
var GUI = function(params) {
var _this = this;
/**
* Outermost DOM Element
* @type DOMElement
*/
this.domElement = document.createElement('div');
this.__ul = document.createElement('ul');
this.domElement.appendChild(this.__ul);
dom.addClass(this.domElement, CSS_NAMESPACE);
/**
* Nested GUI's by name
* @ignore
*/
this.__folders = {};
this.__controllers = [];
/**
* List of objects I'm remembering for save, only used in top level GUI
* @ignore
*/
this.__rememberedObjects = [];
/**
* Maps the index of remembered objects to a map of controllers, only used
* in top level GUI.
*
* @private
* @ignore
*
* @example
* [
* {
* propertyName: Controller,
* anotherPropertyName: Controller
* },
* {
* propertyName: Controller
* }
* ]
*/
this.__rememberedObjectIndecesToControllers = [];
this.__listening = [];
params = params || {};
// Default parameters
params = common.defaults(params, {
autoPlace: true,
width: GUI.DEFAULT_WIDTH
});
params = common.defaults(params, {
resizable: params.autoPlace,
hideable: params.autoPlace
});
if (!common.isUndefined(params.load)) {
// Explicit preset
if (params.preset) params.load.preset = params.preset;
} else {
params.load = { preset: DEFAULT_DEFAULT_PRESET_NAME };
}
if (common.isUndefined(params.parent) && params.hideable) {
hideable_guis.push(this);
}
// Only root level GUI's are resizable.
params.resizable = common.isUndefined(params.parent) && params.resizable;
if (params.autoPlace && common.isUndefined(params.scrollable)) {
params.scrollable = true;
}
// params.scrollable = common.isUndefined(params.parent) && params.scrollable === true;
// Not part of params because I don't want people passing this in via
// constructor. Should be a 'remembered' value.
var use_local_storage =
SUPPORTS_LOCAL_STORAGE &&
localStorage.getItem(getLocalStorageHash(this, 'isLocal')) === 'true';
Object.defineProperties(this,
/** @lends dat.gui.GUI.prototype */
{
/**
* The parent <code>GUI</code>
* @type dat.gui.GUI
*/
parent: {
get: function() {
return params.parent;
}
},
scrollable: {
get: function() {
return params.scrollable;
}
},
/**
* Handles <code>GUI</code>'s element placement for you
* @type Boolean
*/
autoPlace: {
get: function() {
return params.autoPlace;
}
},
/**
* The identifier for a set of saved values
* @type String
*/
preset: {
get: function() {
if (_this.parent) {
return _this.getRoot().preset;
} else {
return params.load.preset;
}
},
set: function(v) {
if (_this.parent) {
_this.getRoot().preset = v;
} else {
params.load.preset = v;
}
setPresetSelectIndex(this);
_this.revert();
}
},
/**
* The width of <code>GUI</code> element
* @type Number
*/
width: {
get: function() {
return params.width;
},
set: function(v) {
params.width = v;
setWidth(_this, v);
}
},
/**
* The name of <code>GUI</code>. Used for folders. i.e
* a folder's name
* @type String
*/
name: {
get: function() {
return params.name;
},
set: function(v) {
// TODO Check for collisions among sibling folders
params.name = v;
if (title_row_name) {
title_row_name.innerHTML = params.name;
}
}
},
/**
* Whether the <code>GUI</code> is collapsed or not
* @type Boolean
*/
closed: {
get: function() {
return params.closed;
},
set: function(v) {
params.closed = v;
if (params.closed) {
dom.addClass(_this.__ul, GUI.CLASS_CLOSED);
} else {
dom.removeClass(_this.__ul, GUI.CLASS_CLOSED);
}
// For browsers that aren't going to respect the CSS transition,
// Lets just check our height against the window height right off
// the bat.
this.onResize();
if (_this.__closeButton) {
_this.__closeButton.innerHTML = v ? GUI.TEXT_OPEN : GUI.TEXT_CLOSED;
}
}
},
/**
* Contains all presets
* @type Object
*/
load: {
get: function() {
return params.load;
}
},
/**
* Determines whether or not to use <a href="https://developer.mozilla.org/en/DOM/Storage#localStorage">localStorage</a> as the means for
* <code>remember</code>ing
* @type Boolean
*/
useLocalStorage: {
get: function() {
return use_local_storage;
},
set: function(bool) {
if (SUPPORTS_LOCAL_STORAGE) {
use_local_storage = bool;
if (bool) {
dom.bind(window, 'unload', saveToLocalStorage);
} else {
dom.unbind(window, 'unload', saveToLocalStorage);
}
localStorage.setItem(getLocalStorageHash(_this, 'isLocal'), bool);
}
}
}
});
// Are we a root level GUI?
if (common.isUndefined(params.parent)) {
params.closed = false;
dom.addClass(this.domElement, GUI.CLASS_MAIN);
dom.makeSelectable(this.domElement, false);
// Are we supposed to be loading locally?
if (SUPPORTS_LOCAL_STORAGE) {
if (use_local_storage) {
_this.useLocalStorage = true;
var saved_gui = localStorage.getItem(getLocalStorageHash(this, 'gui'));
if (saved_gui) {
params.load = JSON.parse(saved_gui);
}
}
}
this.__closeButton = document.createElement('div');
this.__closeButton.innerHTML = GUI.TEXT_CLOSED;
dom.addClass(this.__closeButton, GUI.CLASS_CLOSE_BUTTON);
this.domElement.appendChild(this.__closeButton);
dom.bind(this.__closeButton, 'click', function() {
_this.closed = !_this.closed;
});
// Oh, you're a nested GUI!
} else {
if (params.closed === undefined) {
params.closed = true;
}
var title_row_name = document.createTextNode(params.name);
dom.addClass(title_row_name, 'controller-name');
var title_row = addRow(_this, title_row_name);
var on_click_title = function(e) {
e.preventDefault();
_this.closed = !_this.closed;
return false;
};
dom.addClass(this.__ul, GUI.CLASS_CLOSED);
dom.addClass(title_row, 'title');
dom.bind(title_row, 'click', on_click_title);
if (!params.closed) {
this.closed = false;
}
}
if (params.autoPlace) {
if (common.isUndefined(params.parent)) {
if (auto_place_virgin) {
auto_place_container = document.createElement('div');
dom.addClass(auto_place_container, CSS_NAMESPACE);
dom.addClass(auto_place_container, GUI.CLASS_AUTO_PLACE_CONTAINER);
document.body.appendChild(auto_place_container);
auto_place_virgin = false;
}
// Put it in the dom for you.
auto_place_container.appendChild(this.domElement);
// Apply the auto styles
dom.addClass(this.domElement, GUI.CLASS_AUTO_PLACE);
}
// Make it not elastic.
if (!this.parent) setWidth(_this, params.width);
}
dom.bind(window, 'resize', function() { _this.onResize() });
dom.bind(this.__ul, 'webkitTransitionEnd', function() { _this.onResize(); });
dom.bind(this.__ul, 'transitionend', function() { _this.onResize() });
dom.bind(this.__ul, 'oTransitionEnd', function() { _this.onResize() });
this.onResize();
if (params.resizable) {
addResizeHandle(this);
}
function saveToLocalStorage() {
localStorage.setItem(getLocalStorageHash(_this, 'gui'), JSON.stringify(_this.getSaveObject()));
}
var root = _this.getRoot();
function resetWidth() {
var root = _this.getRoot();
root.width += 1;
common.defer(function() {
root.width -= 1;
});
}
if (!params.parent) {
resetWidth();
}
};
GUI.toggleHide = function() {
hide = !hide;
common.each(hideable_guis, function(gui) {
gui.domElement.style.zIndex = hide ? -999 : 999;
gui.domElement.style.opacity = hide ? 0 : 1;
});
};
GUI.CLASS_AUTO_PLACE = 'a';
GUI.CLASS_AUTO_PLACE_CONTAINER = 'ac';
GUI.CLASS_MAIN = 'main';
GUI.CLASS_CONTROLLER_ROW = 'cr';
GUI.CLASS_TOO_TALL = 'taller-than-window';
GUI.CLASS_CLOSED = 'closed';
GUI.CLASS_CLOSE_BUTTON = 'close-button';
GUI.CLASS_DRAG = 'drag';
GUI.DEFAULT_WIDTH = 245;
GUI.TEXT_CLOSED = 'Close Controls';
GUI.TEXT_OPEN = 'Open Controls';
dom.bind(window, 'keydown', function(e) {
if (document.activeElement.type !== 'text' &&
(e.which === HIDE_KEY_CODE || e.keyCode == HIDE_KEY_CODE)) {
GUI.toggleHide();
}
}, false);
common.extend(
GUI.prototype,
/** @lends dat.gui.GUI */
{
/**
* @param object
* @param property
* @returns {dat.controllers.Controller} The new controller that was added.
* @instance
*/
add: function(object, property) {
return add(
this,
object,
property,
{
factoryArgs: Array.prototype.slice.call(arguments, 2)
}
);
},
/**
* @param object
* @param property
* @returns {dat.controllers.ColorController} The new controller that was added.
* @instance
*/
addColor: function(object, property) {
return add(
this,
object,
property,
{
color: true
}
);
},
/**
* @param controller
* @instance
*/
remove: function(controller) {
// TODO listening?
this.__ul.removeChild(controller.__li);
this.__controllers.slice(this.__controllers.indexOf(controller), 1);
var _this = this;
common.defer(function() {
_this.onResize();
});
},
destroy: function() {
if (this.autoPlace) {
auto_place_container.removeChild(this.domElement);
}
},
/**
* @param name
* @returns {dat.gui.GUI} The new folder.
* @throws {Error} if this GUI already has a folder by the specified
* name
* @instance
*/
addFolder: function(name) {
// We have to prevent collisions on names in order to have a key
// by which to remember saved values
if (this.__folders[name] !== undefined) {
throw new Error('You already have a folder in this GUI by the' +
' name "' + name + '"');
}
var new_gui_params = { name: name, parent: this };
// We need to pass down the autoPlace trait so that we can
// attach event listeners to open/close folder actions to
// ensure that a scrollbar appears if the window is too short.
new_gui_params.autoPlace = this.autoPlace;
// Do we have saved appearance data for this folder?
if (this.load && // Anything loaded?
this.load.folders && // Was my parent a dead-end?
this.load.folders[name]) { // Did daddy remember me?
// Start me closed if I was closed
new_gui_params.closed = this.load.folders[name].closed;
// Pass down the loaded data
new_gui_params.load = this.load.folders[name];
}
var gui = new GUI(new_gui_params);
this.__folders[name] = gui;
var li = addRow(this, gui.domElement);
dom.addClass(li, 'folder');
return gui;
},
open: function() {
this.closed = false;
},
close: function() {
this.closed = true;
},
onResize: function() {
var root = this.getRoot();
if (root.scrollable) {
var top = dom.getOffset(root.__ul).top;
var h = 0;
common.each(root.__ul.childNodes, function(node) {
if (! (root.autoPlace && node === root.__save_row))
h += dom.getHeight(node);
});
if (window.innerHeight - top - CLOSE_BUTTON_HEIGHT < h) {
dom.addClass(root.domElement, GUI.CLASS_TOO_TALL);
root.__ul.style.height = window.innerHeight - top - CLOSE_BUTTON_HEIGHT + 'px';
} else {
dom.removeClass(root.domElement, GUI.CLASS_TOO_TALL);
root.__ul.style.height = 'auto';
}
}
if (root.__resize_handle) {
common.defer(function() {
root.__resize_handle.style.height = root.__ul.offsetHeight + 'px';
});
}
if (root.__closeButton) {
root.__closeButton.style.width = root.width + 'px';
}
},
/**
* Mark objects for saving. The order of these objects cannot change as
* the GUI grows. When remembering new objects, append them to the end
* of the list.
*
* @param {Object...} objects
* @throws {Error} if not called on a top level GUI.
* @instance
*/
remember: function() {
if (common.isUndefined(SAVE_DIALOGUE)) {
SAVE_DIALOGUE = new CenteredDiv();
SAVE_DIALOGUE.domElement.innerHTML = saveDialogueContents;
}
if (this.parent) {
throw new Error("You can only call remember on a top level GUI.");
}
var _this = this;
common.each(Array.prototype.slice.call(arguments), function(object) {
if (_this.__rememberedObjects.length == 0) {
addSaveMenu(_this);
}
if (_this.__rememberedObjects.indexOf(object) == -1) {
_this.__rememberedObjects.push(object);
}
});
if (this.autoPlace) {
// Set save row width
setWidth(this, this.width);
}
},
/**
* @returns {dat.gui.GUI} the topmost parent GUI of a nested GUI.
* @instance
*/
getRoot: function() {
var gui = this;
while (gui.parent) {
gui = gui.parent;
}
return gui;
},
/**
* @returns {Object} a JSON object representing the current state of
* this GUI as well as its remembered properties.
* @instance
*/
getSaveObject: function() {
var toReturn = this.load;
toReturn.closed = this.closed;
// Am I remembering any values?
if (this.__rememberedObjects.length > 0) {
toReturn.preset = this.preset;
if (!toReturn.remembered) {
toReturn.remembered = {};
}
toReturn.remembered[this.preset] = getCurrentPreset(this);
}
toReturn.folders = {};
common.each(this.__folders, function(element, key) {
toReturn.folders[key] = element.getSaveObject();
});
return toReturn;
},
save: function() {
if (!this.load.remembered) {
this.load.remembered = {};
}
this.load.remembered[this.preset] = getCurrentPreset(this);
markPresetModified(this, false);
},
saveAs: function(presetName) {
if (!this.load.remembered) {
// Retain default values upon first save
this.load.remembered = {};
this.load.remembered[DEFAULT_DEFAULT_PRESET_NAME] = getCurrentPreset(this, true);
}
this.load.remembered[presetName] = getCurrentPreset(this);
this.preset = presetName;
addPresetOption(this, presetName, true);
},
revert: function(gui) {
common.each(this.__controllers, function(controller) {
// Make revert work on Default.
if (!this.getRoot().load.remembered) {
controller.setValue(controller.initialValue);
} else {
recallSavedValue(gui || this.getRoot(), controller);
}
}, this);
common.each(this.__folders, function(folder) {
folder.revert(folder);
});
if (!gui) {
markPresetModified(this.getRoot(), false);
}
},
listen: function(controller) {
var init = this.__listening.length == 0;
this.__listening.push(controller);
if (init) updateDisplays(this.__listening);
}
}
);
function add(gui, object, property, params) {
if (object[property] === undefined) {
throw new Error("Object " + object + " has no property \"" + property + "\"");
}
var controller;
if (params.color) {
controller = new ColorController(object, property);
} else {
var factoryArgs = [object,property].concat(params.factoryArgs);
controller = controllerFactory.apply(gui, factoryArgs);
}
if (params.before instanceof Controller) {
params.before = params.before.__li;
}
recallSavedValue(gui, controller);
dom.addClass(controller.domElement, 'c');
var name = document.createElement('span');
dom.addClass(name, 'property-name');
name.innerHTML = controller.property;
var container = document.createElement('div');
container.appendChild(name);
container.appendChild(controller.domElement);
var li = addRow(gui, container, params.before);
dom.addClass(li, GUI.CLASS_CONTROLLER_ROW);
dom.addClass(li, typeof controller.getValue());
augmentController(gui, li, controller);
gui.__controllers.push(controller);
return controller;
}
/**
* Add a row to the end of the GUI or before another row.
*
* @param gui
* @param [dom] If specified, inserts the dom content in the new row
* @param [liBefore] If specified, places the new row before another row
*/
function addRow(gui, dom, liBefore) {
var li = document.createElement('li');
if (dom) li.appendChild(dom);
if (liBefore) {
gui.__ul.insertBefore(li, params.before);
} else {
gui.__ul.appendChild(li);
}
gui.onResize();
return li;
}
function augmentController(gui, li, controller) {
controller.__li = li;
controller.__gui = gui;
common.extend(controller, {
options: function(options) {
if (arguments.length > 1) {
controller.remove();
return add(
gui,
controller.object,
controller.property,
{
before: controller.__li.nextElementSibling,
factoryArgs: [common.toArray(arguments)]
}
);
}
if (common.isArray(options) || common.isObject(options)) {
controller.remove();
return add(
gui,
controller.object,
controller.property,
{
before: controller.__li.nextElementSibling,
factoryArgs: [options]
}
);
}
},
name: function(v) {
controller.__li.firstElementChild.firstElementChild.innerHTML = v;
return controller;
},
listen: function() {
controller.__gui.listen(controller);
return controller;
},
remove: function() {
controller.__gui.remove(controller);
return controller;
}
});
// All sliders should be accompanied by a box.
if (controller instanceof NumberControllerSlider) {
var box = new NumberControllerBox(controller.object, controller.property,
{ min: controller.__min, max: controller.__max, step: controller.__step });
common.each(['updateDisplay', 'onChange', 'onFinishChange'], function(method) {
var pc = controller[method];
var pb = box[method];
controller[method] = box[method] = function() {
var args = Array.prototype.slice.call(arguments);
pc.apply(controller, args);
return pb.apply(box, args);
}
});
dom.addClass(li, 'has-slider');
controller.domElement.insertBefore(box.domElement, controller.domElement.firstElementChild);
}
else if (controller instanceof NumberControllerBox) {
var r = function(returned) {
// Have we defined both boundaries?
if (common.isNumber(controller.__min) && common.isNumber(controller.__max)) {
// Well, then lets just replace this with a slider.
controller.remove();
return add(
gui,
controller.object,
controller.property,
{
before: controller.__li.nextElementSibling,
factoryArgs: [controller.__min, controller.__max, controller.__step]
});
}
return returned;
};
controller.min = common.compose(r, controller.min);
controller.max = common.compose(r, controller.max);
}
else if (controller instanceof BooleanController) {
dom.bind(li, 'click', function() {
dom.fakeEvent(controller.__checkbox, 'click');
});
dom.bind(controller.__checkbox, 'click', function(e) {
e.stopPropagation(); // Prevents double-toggle
})
}
else if (controller instanceof FunctionController) {
dom.bind(li, 'click', function() {
dom.fakeEvent(controller.__button, 'click');
});
dom.bind(li, 'mouseover', function() {
dom.addClass(controller.__button, 'hover');
});
dom.bind(li, 'mouseout', function() {
dom.removeClass(controller.__button, 'hover');
});
}
else if (controller instanceof ColorController) {
dom.addClass(li, 'color');
controller.updateDisplay = common.compose(function(r) {
li.style.borderLeftColor = controller.__color.toString();
return r;
}, controller.updateDisplay);
controller.updateDisplay();
}
controller.setValue = common.compose(function(r) {
if (gui.getRoot().__preset_select && controller.isModified()) {
markPresetModified(gui.getRoot(), true);
}
return r;
}, controller.setValue);
}
function recallSavedValue(gui, controller) {
// Find the topmost GUI, that's where remembered objects live.
var root = gui.getRoot();
// Does the object we're controlling match anything we've been told to
// remember?
var matched_index = root.__rememberedObjects.indexOf(controller.object);
// Why yes, it does!
if (matched_index != -1) {
// Let me fetch a map of controllers for thcommon.isObject.
var controller_map =
root.__rememberedObjectIndecesToControllers[matched_index];
// Ohp, I believe this is the first controller we've created for this
// object. Lets make the map fresh.
if (controller_map === undefined) {
controller_map = {};
root.__rememberedObjectIndecesToControllers[matched_index] =
controller_map;
}
// Keep track of this controller
controller_map[controller.property] = controller;
// Okay, now have we saved any values for this controller?
if (root.load && root.load.remembered) {
var preset_map = root.load.remembered;
// Which preset are we trying to load?
var preset;
if (preset_map[gui.preset]) {
preset = preset_map[gui.preset];
} else if (preset_map[DEFAULT_DEFAULT_PRESET_NAME]) {
// Uhh, you can have the default instead?
preset = preset_map[DEFAULT_DEFAULT_PRESET_NAME];
} else {
// Nada.
return;
}
// Did the loaded object remember thcommon.isObject?
if (preset[matched_index] &&
// Did we remember this particular property?
preset[matched_index][controller.property] !== undefined) {
// We did remember something for this guy ...
var value = preset[matched_index][controller.property];
// And that's what it is.
controller.initialValue = value;
controller.setValue(value);
}
}
}
}
function getLocalStorageHash(gui, key) {
// TODO how does this deal with multiple GUI's?
return document.location.href + '.' + key;
}
function addSaveMenu(gui) {
var div = gui.__save_row = document.createElement('li');
dom.addClass(gui.domElement, 'has-save');
gui.__ul.insertBefore(div, gui.__ul.firstChild);
dom.addClass(div, 'save-row');
var gears = document.createElement('span');
gears.innerHTML = ' ';
dom.addClass(gears, 'button gears');
// TODO replace with FunctionController
var button = document.createElement('span');
button.innerHTML = 'Save';
dom.addClass(button, 'button');
dom.addClass(button, 'save');
var button2 = document.createElement('span');
button2.innerHTML = 'New';
dom.addClass(button2, 'button');
dom.addClass(button2, 'save-as');
var button3 = document.createElement('span');
button3.innerHTML = 'Revert';
dom.addClass(button3, 'button');
dom.addClass(button3, 'revert');
var select = gui.__preset_select = document.createElement('select');
if (gui.load && gui.load.remembered) {
common.each(gui.load.remembered, function(value, key) {
addPresetOption(gui, key, key == gui.preset);
});
} else {
addPresetOption(gui, DEFAULT_DEFAULT_PRESET_NAME, false);
}
dom.bind(select, 'change', function() {
for (var index = 0; index < gui.__preset_select.length; index++) {
gui.__preset_select[index].innerHTML = gui.__preset_select[index].value;
}
gui.preset = this.value;
});
div.appendChild(select);
div.appendChild(gears);
div.appendChild(button);
div.appendChild(button2);
div.appendChild(button3);
if (SUPPORTS_LOCAL_STORAGE) {
var saveLocally = document.getElementById('dg-save-locally');
var explain = document.getElementById('dg-local-explain');
saveLocally.style.display = 'block';
var localStorageCheckBox = document.getElementById('dg-local-storage');
if (localStorage.getItem(getLocalStorageHash(gui, 'isLocal')) === 'true') {
localStorageCheckBox.setAttribute('checked', 'checked');
}
function showHideExplain() {
explain.style.display = gui.useLocalStorage ? 'block' : 'none';
}
showHideExplain();
// TODO: Use a boolean controller, fool!
dom.bind(localStorageCheckBox, 'change', function() {
gui.useLocalStorage = !gui.useLocalStorage;
showHideExplain();
});
}
var newConstructorTextArea = document.getElementById('dg-new-constructor');
dom.bind(newConstructorTextArea, 'keydown', function(e) {
if (e.metaKey && (e.which === 67 || e.keyCode == 67)) {
SAVE_DIALOGUE.hide();
}
});
dom.bind(gears, 'click', function() {
newConstructorTextArea.innerHTML = JSON.stringify(gui.getSaveObject(), undefined, 2);
SAVE_DIALOGUE.show();
newConstructorTextArea.focus();
newConstructorTextArea.select();
});
dom.bind(button, 'click', function() {
gui.save();
});
dom.bind(button2, 'click', function() {
var presetName = prompt('Enter a new preset name.');
if (presetName) gui.saveAs(presetName);
});
dom.bind(button3, 'click', function() {
gui.revert();
});
// div.appendChild(button2);
}
function addResizeHandle(gui) {
gui.__resize_handle = document.createElement('div');
common.extend(gui.__resize_handle.style, {
width: '6px',
marginLeft: '-3px',
height: '200px',
cursor: 'ew-resize',
position: 'absolute'
// border: '1px solid blue'
});
var pmouseX;
dom.bind(gui.__resize_handle, 'mousedown', dragStart);
dom.bind(gui.__closeButton, 'mousedown', dragStart);
gui.domElement.insertBefore(gui.__resize_handle, gui.domElement.firstElementChild);
function dragStart(e) {
e.preventDefault();
pmouseX = e.clientX;
dom.addClass(gui.__closeButton, GUI.CLASS_DRAG);
dom.bind(window, 'mousemove', drag);
dom.bind(window, 'mouseup', dragStop);
return false;
}
function drag(e) {
e.preventDefault();
gui.width += pmouseX - e.clientX;
gui.onResize();
pmouseX = e.clientX;
return false;
}
function dragStop() {
dom.removeClass(gui.__closeButton, GUI.CLASS_DRAG);
dom.unbind(window, 'mousemove', drag);
dom.unbind(window, 'mouseup', dragStop);
}
}
function setWidth(gui, w) {
gui.domElement.style.width = w + 'px';
// Auto placed save-rows are position fixed, so we have to
// set the width manually if we want it to bleed to the edge
if (gui.__save_row && gui.autoPlace) {
gui.__save_row.style.width = w + 'px';
}if (gui.__closeButton) {
gui.__closeButton.style.width = w + 'px';
}
}
function getCurrentPreset(gui, useInitialValues) {
var toReturn = {};
// For each object I'm remembering
common.each(gui.__rememberedObjects, function(val, index) {
var saved_values = {};
// The controllers I've made for thcommon.isObject by property
var controller_map =
gui.__rememberedObjectIndecesToControllers[index];
// Remember each value for each property
common.each(controller_map, function(controller, property) {
saved_values[property] = useInitialValues ? controller.initialValue : controller.getValue();
});
// Save the values for thcommon.isObject
toReturn[index] = saved_values;
});
return toReturn;
}
function addPresetOption(gui, name, setSelected) {
var opt = document.createElement('option');
opt.innerHTML = name;
opt.value = name;
gui.__preset_select.appendChild(opt);
if (setSelected) {
gui.__preset_select.selectedIndex = gui.__preset_select.length - 1;
}
}
function setPresetSelectIndex(gui) {
for (var index = 0; index < gui.__preset_select.length; index++) {
if (gui.__preset_select[index].value == gui.preset) {
gui.__preset_select.selectedIndex = index;
}
}
}
function markPresetModified(gui, modified) {
var opt = gui.__preset_select[gui.__preset_select.selectedIndex];
// console.log('mark', modified, opt);
if (modified) {
opt.innerHTML = opt.value + "*";
} else {
opt.innerHTML = opt.value;
}
}
function updateDisplays(controllerArray) {
if (controllerArray.length != 0) {
requestAnimationFrame(function() {
updateDisplays(controllerArray);
});
}
common.each(controllerArray, function(c) {
c.updateDisplay();
});
}
return GUI;
})(dat.utils.css,
"<div id=\"dg-save\" class=\"dg dialogue\">\n\n Here's the new load parameter for your <code>GUI</code>'s constructor:\n\n <textarea id=\"dg-new-constructor\"></textarea>\n\n <div id=\"dg-save-locally\">\n\n <input id=\"dg-local-storage\" type=\"checkbox\"/> Automatically save\n values to <code>localStorage</code> on exit.\n\n <div id=\"dg-local-explain\">The values saved to <code>localStorage</code> will\n override those passed to <code>dat.GUI</code>'s constructor. This makes it\n easier to work incrementally, but <code>localStorage</code> is fragile,\n and your friends may not see the same values you do.\n \n </div>\n \n </div>\n\n</div>",
".dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.dg.ac{position:fixed;top:0;left:0;right:0;height:0;z-index:0}.dg:not(.ac) .main{overflow:hidden}.dg.main{-webkit-transition:opacity 0.1s linear;-o-transition:opacity 0.1s linear;-moz-transition:opacity 0.1s linear;transition:opacity 0.1s linear}.dg.main.taller-than-window{overflow-y:auto}.dg.main.taller-than-window .close-button{opacity:1;margin-top:-1px;border-top:1px solid #2c2c2c}.dg.main ul.closed .close-button{opacity:1 !important}.dg.main:hover .close-button,.dg.main .close-button.drag{opacity:1}.dg.main .close-button{-webkit-transition:opacity 0.1s linear;-o-transition:opacity 0.1s linear;-moz-transition:opacity 0.1s linear;transition:opacity 0.1s linear;border:0;position:absolute;line-height:19px;height:20px;cursor:pointer;text-align:center;background-color:#000}.dg.main .close-button:hover{background-color:#111}.dg.a{float:right;margin-right:15px;overflow-x:hidden}.dg.a.has-save ul{margin-top:27px}.dg.a.has-save ul.closed{margin-top:0}.dg.a .save-row{position:fixed;top:0;z-index:1002}.dg li{-webkit-transition:height 0.1s ease-out;-o-transition:height 0.1s ease-out;-moz-transition:height 0.1s ease-out;transition:height 0.1s ease-out}.dg li:not(.folder){cursor:auto;height:27px;line-height:27px;overflow:hidden;padding:0 4px 0 5px}.dg li.folder{padding:0;border-left:4px solid rgba(0,0,0,0)}.dg li.title{cursor:pointer;margin-left:-4px}.dg .closed li:not(.title),.dg .closed ul li,.dg .closed ul li > *{height:0;overflow:hidden;border:0}.dg .cr{clear:both;padding-left:3px;height:27px}.dg .property-name{cursor:default;float:left;clear:left;width:40%;overflow:hidden;text-overflow:ellipsis}.dg .c{float:left;width:60%}.dg .c input[type=text]{border:0;margin-top:4px;padding:3px;width:100%;float:right}.dg .has-slider input[type=text]{width:30%;margin-left:0}.dg .slider{float:left;width:66%;margin-left:-5px;margin-right:0;height:19px;margin-top:4px}.dg .slider-fg{height:100%}.dg .c input[type=checkbox]{margin-top:9px}.dg .c select{margin-top:5px}.dg .cr.function,.dg .cr.function .property-name,.dg .cr.function *,.dg .cr.boolean,.dg .cr.boolean *{cursor:pointer}.dg .selector{display:none;position:absolute;margin-left:-9px;margin-top:23px;z-index:10}.dg .c:hover .selector,.dg .selector.drag{display:block}.dg li.save-row{padding:0}.dg li.save-row .button{display:inline-block;padding:0px 6px}.dg.dialogue{background-color:#222;width:460px;padding:15px;font-size:13px;line-height:15px}#dg-new-constructor{padding:10px;color:#222;font-family:Monaco, monospace;font-size:10px;border:0;resize:none;box-shadow:inset 1px 1px 1px #888;word-wrap:break-word;margin:12px 0;display:block;width:440px;overflow-y:scroll;height:100px;position:relative}#dg-local-explain{display:none;font-size:11px;line-height:17px;border-radius:3px;background-color:#333;padding:8px;margin-top:10px}#dg-local-explain code{font-size:10px}#dat-gui-save-locally{display:none}.dg{color:#eee;font:11px 'Lucida Grande', sans-serif;text-shadow:0 -1px 0 #111}.dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.dg.main::-webkit-scrollbar-corner{height:0;display:none}.dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.dg li:not(.folder){background:#1a1a1a;border-bottom:1px solid #2c2c2c}.dg li.save-row{line-height:25px;background:#dad5cb;border:0}.dg li.save-row select{margin-left:5px;width:108px}.dg li.save-row .button{margin-left:5px;margin-top:1px;border-radius:2px;font-size:9px;line-height:7px;padding:4px 4px 5px 4px;background:#c5bdad;color:#fff;text-shadow:0 1px 0 #b0a58f;box-shadow:0 -1px 0 #b0a58f;cursor:pointer}.dg li.save-row .button.gears{background:#c5bdad url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQJJREFUeNpiYKAU/P//PwGIC/ApCABiBSAW+I8AClAcgKxQ4T9hoMAEUrxx2QSGN6+egDX+/vWT4e7N82AMYoPAx/evwWoYoSYbACX2s7KxCxzcsezDh3evFoDEBYTEEqycggWAzA9AuUSQQgeYPa9fPv6/YWm/Acx5IPb7ty/fw+QZblw67vDs8R0YHyQhgObx+yAJkBqmG5dPPDh1aPOGR/eugW0G4vlIoTIfyFcA+QekhhHJhPdQxbiAIguMBTQZrPD7108M6roWYDFQiIAAv6Aow/1bFwXgis+f2LUAynwoIaNcz8XNx3Dl7MEJUDGQpx9gtQ8YCueB+D26OECAAQDadt7e46D42QAAAABJRU5ErkJggg==) 2px 1px no-repeat;height:7px;width:8px}.dg li.save-row .button:hover{background-color:#bab19e;box-shadow:0 -1px 0 #b0a58f}.dg li.folder{border-bottom:0}.dg li.title{padding-left:16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 10px no-repeat;cursor:pointer;border-bottom:1px solid rgba(255,255,255,0.2)}.dg .closed li.title{background-image:url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==)}.dg .cr.boolean{border-left:3px solid #806787}.dg .cr.function{border-left:3px solid #e61d5f}.dg .cr.number{border-left:3px solid #2fa1d6}.dg .cr.number input[type=text]{color:#2fa1d6}.dg .cr.string{border-left:3px solid #1ed36f}.dg .cr.string input[type=text]{color:#1ed36f}.dg .cr.function:hover,.dg .cr.boolean:hover{background:#111}.dg .c input[type=text]{background:#303030;outline:none}.dg .c input[type=text]:hover{background:#3c3c3c}.dg .c input[type=text]:focus{background:#494949;color:#fff}.dg .c .slider{background:#303030;cursor:ew-resize}.dg .c .slider-fg{background:#2fa1d6}.dg .c .slider:hover{background:#3c3c3c}.dg .c .slider:hover .slider-fg{background:#44abda}\n",
dat.controllers.factory = (function (OptionController, NumberControllerBox, NumberControllerSlider, StringController, FunctionController, BooleanController, common) {
return function(object, property) {
var initialValue = object[property];
// Providing options?
if (common.isArray(arguments[2]) || common.isObject(arguments[2])) {
return new OptionController(object, property, arguments[2]);
}
// Providing a map?
if (common.isNumber(initialValue)) {
if (common.isNumber(arguments[2]) && common.isNumber(arguments[3])) {
// Has min and max.
return new NumberControllerSlider(object, property, arguments[2], arguments[3]);
} else {
return new NumberControllerBox(object, property, { min: arguments[2], max: arguments[3] });
}
}
if (common.isString(initialValue)) {
return new StringController(object, property);
}
if (common.isFunction(initialValue)) {
return new FunctionController(object, property, '');
}
if (common.isBoolean(initialValue)) {
return new BooleanController(object, property);
}
}
})(dat.controllers.OptionController,
dat.controllers.NumberControllerBox,
dat.controllers.NumberControllerSlider,
dat.controllers.StringController = (function (Controller, dom, common) {
/**
* @class Provides a text input to alter the string property of an object.
*
* @extends dat.controllers.Controller
*
* @param {Object} object The object to be manipulated
* @param {string} property The name of the property to be manipulated
*
* @member dat.controllers
*/
var StringController = function(object, property) {
StringController.superclass.call(this, object, property);
var _this = this;
this.__input = document.createElement('input');
this.__input.setAttribute('type', 'text');
dom.bind(this.__input, 'keyup', onChange);
dom.bind(this.__input, 'change', onChange);
dom.bind(this.__input, 'blur', onBlur);
dom.bind(this.__input, 'keydown', function(e) {
if (e.keyCode === 13) {
this.blur();
}
});
function onChange() {
_this.setValue(_this.__input.value);
}
function onBlur() {
if (_this.__onFinishChange) {
_this.__onFinishChange.call(_this, _this.getValue());
}
}
this.updateDisplay();
this.domElement.appendChild(this.__input);
};
StringController.superclass = Controller;
common.extend(
StringController.prototype,
Controller.prototype,
{
updateDisplay: function() {
// Stops the caret from moving on account of:
// keyup -> setValue -> updateDisplay
if (!dom.isActive(this.__input)) {
this.__input.value = this.getValue();
}
return StringController.superclass.prototype.updateDisplay.call(this);
}
}
);
return StringController;
})(dat.controllers.Controller,
dat.dom.dom,
dat.utils.common),
dat.controllers.FunctionController,
dat.controllers.BooleanController,
dat.utils.common),
dat.controllers.Controller,
dat.controllers.BooleanController,
dat.controllers.FunctionController,
dat.controllers.NumberControllerBox,
dat.controllers.NumberControllerSlider,
dat.controllers.OptionController,
dat.controllers.ColorController = (function (Controller, dom, Color, interpret, common) {
var ColorController = function(object, property) {
ColorController.superclass.call(this, object, property);
this.__color = new Color(this.getValue());
this.__temp = new Color(0);
var _this = this;
this.domElement = document.createElement('div');
dom.makeSelectable(this.domElement, false);
this.__selector = document.createElement('div');
this.__selector.className = 'selector';
this.__saturation_field = document.createElement('div');
this.__saturation_field.className = 'saturation-field';
this.__field_knob = document.createElement('div');
this.__field_knob.className = 'field-knob';
this.__field_knob_border = '2px solid ';
this.__hue_knob = document.createElement('div');
this.__hue_knob.className = 'hue-knob';
this.__hue_field = document.createElement('div');
this.__hue_field.className = 'hue-field';
this.__input = document.createElement('input');
this.__input.type = 'text';
this.__input_textShadow = '0 1px 1px ';
dom.bind(this.__input, 'keydown', function(e) {
if (e.keyCode === 13) { // on enter
onBlur.call(this);
}
});
dom.bind(this.__input, 'blur', onBlur);
dom.bind(this.__selector, 'mousedown', function(e) {
dom
.addClass(this, 'drag')
.bind(window, 'mouseup', function(e) {
dom.removeClass(_this.__selector, 'drag');
});
});
var value_field = document.createElement('div');
common.extend(this.__selector.style, {
width: '122px',
height: '102px',
padding: '3px',
backgroundColor: '#222',
boxShadow: '0px 1px 3px rgba(0,0,0,0.3)'
});
common.extend(this.__field_knob.style, {
position: 'absolute',
width: '12px',
height: '12px',
border: this.__field_knob_border + (this.__color.v < .5 ? '#fff' : '#000'),
boxShadow: '0px 1px 3px rgba(0,0,0,0.5)',
borderRadius: '12px',
zIndex: 1
});
common.extend(this.__hue_knob.style, {
position: 'absolute',
width: '15px',
height: '2px',
borderRight: '4px solid #fff',
zIndex: 1
});
common.extend(this.__saturation_field.style, {
width: '100px',
height: '100px',
border: '1px solid #555',
marginRight: '3px',
display: 'inline-block',
cursor: 'pointer'
});
common.extend(value_field.style, {
width: '100%',
height: '100%',
background: 'none'
});
linearGradient(value_field, 'top', 'rgba(0,0,0,0)', '#000');
common.extend(this.__hue_field.style, {
width: '15px',
height: '100px',
display: 'inline-block',
border: '1px solid #555',
cursor: 'ns-resize'
});
hueGradient(this.__hue_field);
common.extend(this.__input.style, {
outline: 'none',
// width: '120px',
textAlign: 'center',
// padding: '4px',
// marginBottom: '6px',
color: '#fff',
border: 0,
fontWeight: 'bold',
textShadow: this.__input_textShadow + 'rgba(0,0,0,0.7)'
});
dom.bind(this.__saturation_field, 'mousedown', fieldDown);
dom.bind(this.__field_knob, 'mousedown', fieldDown);
dom.bind(this.__hue_field, 'mousedown', function(e) {
setH(e);
dom.bind(window, 'mousemove', setH);
dom.bind(window, 'mouseup', unbindH);
});
function fieldDown(e) {
setSV(e);
// document.body.style.cursor = 'none';
dom.bind(window, 'mousemove', setSV);
dom.bind(window, 'mouseup', unbindSV);
}
function unbindSV() {
dom.unbind(window, 'mousemove', setSV);
dom.unbind(window, 'mouseup', unbindSV);
// document.body.style.cursor = 'default';
}
function onBlur() {
var i = interpret(this.value);
if (i !== false) {
_this.__color.__state = i;
_this.setValue(_this.__color.toOriginal());
} else {
this.value = _this.__color.toString();
}
}
function unbindH() {
dom.unbind(window, 'mousemove', setH);
dom.unbind(window, 'mouseup', unbindH);
}
this.__saturation_field.appendChild(value_field);
this.__selector.appendChild(this.__field_knob);
this.__selector.appendChild(this.__saturation_field);
this.__selector.appendChild(this.__hue_field);
this.__hue_field.appendChild(this.__hue_knob);
this.domElement.appendChild(this.__input);
this.domElement.appendChild(this.__selector);
this.updateDisplay();
function setSV(e) {
e.preventDefault();
var w = dom.getWidth(_this.__saturation_field);
var o = dom.getOffset(_this.__saturation_field);
var s = (e.clientX - o.left + document.body.scrollLeft) / w;
var v = 1 - (e.clientY - o.top + document.body.scrollTop) / w;
if (v > 1) v = 1;
else if (v < 0) v = 0;
if (s > 1) s = 1;
else if (s < 0) s = 0;
_this.__color.v = v;
_this.__color.s = s;
_this.setValue(_this.__color.toOriginal());
return false;
}
function setH(e) {
e.preventDefault();
var s = dom.getHeight(_this.__hue_field);
var o = dom.getOffset(_this.__hue_field);
var h = 1 - (e.clientY - o.top + document.body.scrollTop) / s;
if (h > 1) h = 1;
else if (h < 0) h = 0;
_this.__color.h = h * 360;
_this.setValue(_this.__color.toOriginal());
return false;
}
};
ColorController.superclass = Controller;
common.extend(
ColorController.prototype,
Controller.prototype,
{
updateDisplay: function() {
var i = interpret(this.getValue());
if (i !== false) {
var mismatch = false;
// Check for mismatch on the interpreted value.
common.each(Color.COMPONENTS, function(component) {
if (!common.isUndefined(i[component]) &&
!common.isUndefined(this.__color.__state[component]) &&
i[component] !== this.__color.__state[component]) {
mismatch = true;
return {}; // break
}
}, this);
// If nothing diverges, we keep our previous values
// for statefulness, otherwise we recalculate fresh
if (mismatch) {
common.extend(this.__color.__state, i);
}
}
common.extend(this.__temp.__state, this.__color.__state);
this.__temp.a = 1;
var flip = (this.__color.v < .5 || this.__color.s > .5) ? 255 : 0;
var _flip = 255 - flip;
common.extend(this.__field_knob.style, {
marginLeft: 100 * this.__color.s - 7 + 'px',
marginTop: 100 * (1 - this.__color.v) - 7 + 'px',
backgroundColor: this.__temp.toString(),
border: this.__field_knob_border + 'rgb(' + flip + ',' + flip + ',' + flip +')'
});
this.__hue_knob.style.marginTop = (1 - this.__color.h / 360) * 100 + 'px'
this.__temp.s = 1;
this.__temp.v = 1;
linearGradient(this.__saturation_field, 'left', '#fff', this.__temp.toString());
common.extend(this.__input.style, {
backgroundColor: this.__input.value = this.__color.toString(),
color: 'rgb(' + flip + ',' + flip + ',' + flip +')',
textShadow: this.__input_textShadow + 'rgba(' + _flip + ',' + _flip + ',' + _flip +',.7)'
});
}
}
);
var vendors = ['-moz-','-o-','-webkit-','-ms-',''];
function linearGradient(elem, x, a, b) {
elem.style.background = '';
common.each(vendors, function(vendor) {
elem.style.cssText += 'background: ' + vendor + 'linear-gradient('+x+', '+a+' 0%, ' + b + ' 100%); ';
});
}
function hueGradient(elem) {
elem.style.background = '';
elem.style.cssText += 'background: -moz-linear-gradient(top, #ff0000 0%, #ff00ff 17%, #0000ff 34%, #00ffff 50%, #00ff00 67%, #ffff00 84%, #ff0000 100%);'
elem.style.cssText += 'background: -webkit-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
elem.style.cssText += 'background: -o-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
elem.style.cssText += 'background: -ms-linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
elem.style.cssText += 'background: linear-gradient(top, #ff0000 0%,#ff00ff 17%,#0000ff 34%,#00ffff 50%,#00ff00 67%,#ffff00 84%,#ff0000 100%);'
}
return ColorController;
})(dat.controllers.Controller,
dat.dom.dom,
dat.color.Color = (function (interpret, math, toString, common) {
var Color = function() {
this.__state = interpret.apply(this, arguments);
if (this.__state === false) {
throw 'Failed to interpret color arguments';
}
this.__state.a = this.__state.a || 1;
};
Color.COMPONENTS = ['r','g','b','h','s','v','hex','a'];
common.extend(Color.prototype, {
toString: function() {
return toString(this);
},
toOriginal: function() {
return this.__state.conversion.write(this);
}
});
defineRGBComponent(Color.prototype, 'r', 2);
defineRGBComponent(Color.prototype, 'g', 1);
defineRGBComponent(Color.prototype, 'b', 0);
defineHSVComponent(Color.prototype, 'h');
defineHSVComponent(Color.prototype, 's');
defineHSVComponent(Color.prototype, 'v');
Object.defineProperty(Color.prototype, 'a', {
get: function() {
return this.__state.a;
},
set: function(v) {
this.__state.a = v;
}
});
Object.defineProperty(Color.prototype, 'hex', {
get: function() {
if (!this.__state.space !== 'HEX') {
this.__state.hex = math.rgb_to_hex(this.r, this.g, this.b);
}
return this.__state.hex;
},
set: function(v) {
this.__state.space = 'HEX';
this.__state.hex = v;
}
});
function defineRGBComponent(target, component, componentHexIndex) {
Object.defineProperty(target, component, {
get: function() {
if (this.__state.space === 'RGB') {
return this.__state[component];
}
recalculateRGB(this, component, componentHexIndex);
return this.__state[component];
},
set: function(v) {
if (this.__state.space !== 'RGB') {
recalculateRGB(this, component, componentHexIndex);
this.__state.space = 'RGB';
}
this.__state[component] = v;
}
});
}
function defineHSVComponent(target, component) {
Object.defineProperty(target, component, {
get: function() {
if (this.__state.space === 'HSV')
return this.__state[component];
recalculateHSV(this);
return this.__state[component];
},
set: function(v) {
if (this.__state.space !== 'HSV') {
recalculateHSV(this);
this.__state.space = 'HSV';
}
this.__state[component] = v;
}
});
}
function recalculateRGB(color, component, componentHexIndex) {
if (color.__state.space === 'HEX') {
color.__state[component] = math.component_from_hex(color.__state.hex, componentHexIndex);
} else if (color.__state.space === 'HSV') {
common.extend(color.__state, math.hsv_to_rgb(color.__state.h, color.__state.s, color.__state.v));
} else {
throw 'Corrupted color state';
}
}
function recalculateHSV(color) {
var result = math.rgb_to_hsv(color.r, color.g, color.b);
common.extend(color.__state,
{
s: result.s,
v: result.v
}
);
if (!common.isNaN(result.h)) {
color.__state.h = result.h;
} else if (common.isUndefined(color.__state.h)) {
color.__state.h = 0;
}
}
return Color;
})(dat.color.interpret,
dat.color.math = (function () {
var tmpComponent;
return {
hsv_to_rgb: function(h, s, v) {
var hi = Math.floor(h / 60) % 6;
var f = h / 60 - Math.floor(h / 60);
var p = v * (1.0 - s);
var q = v * (1.0 - (f * s));
var t = v * (1.0 - ((1.0 - f) * s));
var c = [
[v, t, p],
[q, v, p],
[p, v, t],
[p, q, v],
[t, p, v],
[v, p, q]
][hi];
return {
r: c[0] * 255,
g: c[1] * 255,
b: c[2] * 255
};
},
rgb_to_hsv: function(r, g, b) {
var min = Math.min(r, g, b),
max = Math.max(r, g, b),
delta = max - min,
h, s;
if (max != 0) {
s = delta / max;
} else {
return {
h: NaN,
s: 0,
v: 0
};
}
if (r == max) {
h = (g - b) / delta;
} else if (g == max) {
h = 2 + (b - r) / delta;
} else {
h = 4 + (r - g) / delta;
}
h /= 6;
if (h < 0) {
h += 1;
}
return {
h: h * 360,
s: s,
v: max / 255
};
},
rgb_to_hex: function(r, g, b) {
var hex = this.hex_with_component(0, 2, r);
hex = this.hex_with_component(hex, 1, g);
hex = this.hex_with_component(hex, 0, b);
return hex;
},
component_from_hex: function(hex, componentIndex) {
return (hex >> (componentIndex * 8)) & 0xFF;
},
hex_with_component: function(hex, componentIndex, value) {
return value << (tmpComponent = componentIndex * 8) | (hex & ~ (0xFF << tmpComponent));
}
}
})(),
dat.color.toString,
dat.utils.common),
dat.color.interpret,
dat.utils.common),
dat.utils.requestAnimationFrame = (function () {
/**
* requirejs version of Paul Irish's RequestAnimationFrame
* http://paulirish.com/2011/requestanimationframe-for-smart-animating/
*/
return window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(callback, element) {
window.setTimeout(callback, 1000 / 60);
};
})(),
dat.dom.CenteredDiv = (function (dom, common) {
var CenteredDiv = function() {
this.backgroundElement = document.createElement('div');
common.extend(this.backgroundElement.style, {
backgroundColor: 'rgba(0,0,0,0.8)',
top: 0,
left: 0,
display: 'none',
zIndex: '1000',
opacity: 0,
WebkitTransition: 'opacity 0.2s linear'
});
dom.makeFullscreen(this.backgroundElement);
this.backgroundElement.style.position = 'fixed';
this.domElement = document.createElement('div');
common.extend(this.domElement.style, {
position: 'fixed',
display: 'none',
zIndex: '1001',
opacity: 0,
WebkitTransition: '-webkit-transform 0.2s ease-out, opacity 0.2s linear'
});
document.body.appendChild(this.backgroundElement);
document.body.appendChild(this.domElement);
var _this = this;
dom.bind(this.backgroundElement, 'click', function() {
_this.hide();
});
};
CenteredDiv.prototype.show = function() {
var _this = this;
this.backgroundElement.style.display = 'block';
this.domElement.style.display = 'block';
this.domElement.style.opacity = 0;
// this.domElement.style.top = '52%';
this.domElement.style.webkitTransform = 'scale(1.1)';
this.layout();
common.defer(function() {
_this.backgroundElement.style.opacity = 1;
_this.domElement.style.opacity = 1;
_this.domElement.style.webkitTransform = 'scale(1)';
});
};
CenteredDiv.prototype.hide = function() {
var _this = this;
var hide = function() {
_this.domElement.style.display = 'none';
_this.backgroundElement.style.display = 'none';
dom.unbind(_this.domElement, 'webkitTransitionEnd', hide);
dom.unbind(_this.domElement, 'transitionend', hide);
dom.unbind(_this.domElement, 'oTransitionEnd', hide);
};
dom.bind(this.domElement, 'webkitTransitionEnd', hide);
dom.bind(this.domElement, 'transitionend', hide);
dom.bind(this.domElement, 'oTransitionEnd', hide);
this.backgroundElement.style.opacity = 0;
// this.domElement.style.top = '48%';
this.domElement.style.opacity = 0;
this.domElement.style.webkitTransform = 'scale(1.1)';
};
CenteredDiv.prototype.layout = function() {
this.domElement.style.left = window.innerWidth/2 - dom.getWidth(this.domElement) / 2 + 'px';
this.domElement.style.top = window.innerHeight/2 - dom.getHeight(this.domElement) / 2 + 'px';
};
function lockScroll(e) {
console.log(e);
}
return CenteredDiv;
})(dat.dom.dom,
dat.utils.common),
dat.dom.dom,
dat.utils.common); | JavaScript |
// Backbone.js 0.5.3
// (c) 2010 Jeremy Ashkenas, DocumentCloud Inc.
// Backbone may be freely distributed under the MIT license.
// For all details and documentation:
// http://documentcloud.github.com/backbone
(function(){
// Initial Setup
// -------------
// Save a reference to the global object.
var root = this;
// Save the previous value of the `Backbone` variable.
var previousBackbone = root.Backbone;
// The top-level namespace. All public Backbone classes and modules will
// be attached to this. Exported for both CommonJS and the browser.
var Backbone;
if (typeof exports !== 'undefined') {
Backbone = exports;
} else {
Backbone = root.Backbone = {};
}
// Current version of the library. Keep in sync with `package.json`.
Backbone.VERSION = '0.5.3';
// Require Underscore, if we're on the server, and it's not already present.
var _ = root._;
if (!_ && (typeof require !== 'undefined')) _ = require('underscore')._;
// For Backbone's purposes, jQuery or Zepto owns the `$` variable.
var $ = root.jQuery || root.Zepto;
// Runs Backbone.js in *noConflict* mode, returning the `Backbone` variable
// to its previous owner. Returns a reference to this Backbone object.
Backbone.noConflict = function() {
root.Backbone = previousBackbone;
return this;
};
// Turn on `emulateHTTP` to support legacy HTTP servers. Setting this option will
// fake `"PUT"` and `"DELETE"` requests via the `_method` parameter and set a
// `X-Http-Method-Override` header.
Backbone.emulateHTTP = false;
// Turn on `emulateJSON` to support legacy servers that can't deal with direct
// `application/json` requests ... will encode the body as
// `application/x-www-form-urlencoded` instead and will send the model in a
// form param named `model`.
Backbone.emulateJSON = false;
// Backbone.Events
// -----------------
// A module that can be mixed in to *any object* in order to provide it with
// custom events. You may `bind` or `unbind` a callback function to an event;
// `trigger`-ing an event fires all callbacks in succession.
//
// var object = {};
// _.extend(object, Backbone.Events);
// object.bind('expand', function(){ alert('expanded'); });
// object.trigger('expand');
//
Backbone.Events = {
// Bind an event, specified by a string name, `ev`, to a `callback` function.
// Passing `"all"` will bind the callback to all events fired.
bind : function(ev, callback, context) {
var calls = this._callbacks || (this._callbacks = {});
var list = calls[ev] || (calls[ev] = []);
list.push([callback, context]);
return this;
},
// Remove one or many callbacks. If `callback` is null, removes all
// callbacks for the event. If `ev` is null, removes all bound callbacks
// for all events.
unbind : function(ev, callback) {
var calls;
if (!ev) {
this._callbacks = {};
} else if (calls = this._callbacks) {
if (!callback) {
calls[ev] = [];
} else {
var list = calls[ev];
if (!list) return this;
for (var i = 0, l = list.length; i < l; i++) {
if (list[i] && callback === list[i][0]) {
list[i] = null;
break;
}
}
}
}
return this;
},
// Trigger an event, firing all bound callbacks. Callbacks are passed the
// same arguments as `trigger` is, apart from the event name.
// Listening for `"all"` passes the true event name as the first argument.
trigger : function(eventName) {
var list, calls, ev, callback, args;
var both = 2;
if (!(calls = this._callbacks)) return this;
while (both--) {
ev = both ? eventName : 'all';
if (list = calls[ev]) {
for (var i = 0, l = list.length; i < l; i++) {
if (!(callback = list[i])) {
list.splice(i, 1); i--; l--;
} else {
args = both ? Array.prototype.slice.call(arguments, 1) : arguments;
callback[0].apply(callback[1] || this, args);
}
}
}
}
return this;
}
};
// Backbone.Model
// --------------
// Create a new model, with defined attributes. A client id (`cid`)
// is automatically generated and assigned for you.
Backbone.Model = function(attributes, options) {
var defaults;
attributes || (attributes = {});
if (defaults = this.defaults) {
if (_.isFunction(defaults)) defaults = defaults.call(this);
attributes = _.extend({}, defaults, attributes);
}
this.attributes = {};
this._escapedAttributes = {};
this.cid = _.uniqueId('c');
this.set(attributes, {silent : true});
this._changed = false;
this._previousAttributes = _.clone(this.attributes);
if (options && options.collection) this.collection = options.collection;
this.initialize(attributes, options);
};
// Attach all inheritable methods to the Model prototype.
_.extend(Backbone.Model.prototype, Backbone.Events, {
// A snapshot of the model's previous attributes, taken immediately
// after the last `"change"` event was fired.
_previousAttributes : null,
// Has the item been changed since the last `"change"` event?
_changed : false,
// The default name for the JSON `id` attribute is `"id"`. MongoDB and
// CouchDB users may want to set this to `"_id"`.
idAttribute : 'id',
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize : function(){},
// Return a copy of the model's `attributes` object.
toJSON : function() {
return _.clone(this.attributes);
},
// Get the value of an attribute.
get : function(attr) {
return this.attributes[attr];
},
// Get the HTML-escaped value of an attribute.
escape : function(attr) {
var html;
if (html = this._escapedAttributes[attr]) return html;
var val = this.attributes[attr];
return this._escapedAttributes[attr] = escapeHTML(val == null ? '' : '' + val);
},
// Returns `true` if the attribute contains a value that is not null
// or undefined.
has : function(attr) {
return this.attributes[attr] != null;
},
// Set a hash of model attributes on the object, firing `"change"` unless you
// choose to silence it.
set : function(attrs, options) {
// Extract attributes and options.
options || (options = {});
if (!attrs) return this;
if (attrs.attributes) attrs = attrs.attributes;
var now = this.attributes, escaped = this._escapedAttributes;
// Run validation.
if (!options.silent && this.validate && !this._performValidation(attrs, options)) return false;
// Check for changes of `id`.
if (this.idAttribute in attrs) this.id = attrs[this.idAttribute];
// We're about to start triggering change events.
var alreadyChanging = this._changing;
this._changing = true;
// Update attributes.
for (var attr in attrs) {
var val = attrs[attr];
if (!_.isEqual(now[attr], val)) {
now[attr] = val;
delete escaped[attr];
this._changed = true;
if (!options.silent) this.trigger('change:' + attr, this, val, options);
}
}
// Fire the `"change"` event, if the model has been changed.
if (!alreadyChanging && !options.silent && this._changed) this.change(options);
this._changing = false;
return this;
},
// Remove an attribute from the model, firing `"change"` unless you choose
// to silence it. `unset` is a noop if the attribute doesn't exist.
unset : function(attr, options) {
if (!(attr in this.attributes)) return this;
options || (options = {});
var value = this.attributes[attr];
// Run validation.
var validObj = {};
validObj[attr] = void 0;
if (!options.silent && this.validate && !this._performValidation(validObj, options)) return false;
// Remove the attribute.
delete this.attributes[attr];
delete this._escapedAttributes[attr];
if (attr == this.idAttribute) delete this.id;
this._changed = true;
if (!options.silent) {
this.trigger('change:' + attr, this, void 0, options);
this.change(options);
}
return this;
},
// Clear all attributes on the model, firing `"change"` unless you choose
// to silence it.
clear : function(options) {
options || (options = {});
var attr;
var old = this.attributes;
// Run validation.
var validObj = {};
for (attr in old) validObj[attr] = void 0;
if (!options.silent && this.validate && !this._performValidation(validObj, options)) return false;
this.attributes = {};
this._escapedAttributes = {};
this._changed = true;
if (!options.silent) {
for (attr in old) {
this.trigger('change:' + attr, this, void 0, options);
}
this.change(options);
}
return this;
},
// Fetch the model from the server. If the server's representation of the
// model differs from its current attributes, they will be overriden,
// triggering a `"change"` event.
fetch : function(options) {
options || (options = {});
var model = this;
var success = options.success;
options.success = function(resp, status, xhr) {
if (!model.set(model.parse(resp, xhr), options)) return false;
if (success) success(model, resp);
};
options.error = wrapError(options.error, model, options);
return (this.sync || Backbone.sync).call(this, 'read', this, options);
},
// Set a hash of model attributes, and sync the model to the server.
// If the server returns an attributes hash that differs, the model's
// state will be `set` again.
save : function(attrs, options) {
options || (options = {});
if (attrs && !this.set(attrs, options)) return false;
var model = this;
var success = options.success;
options.success = function(resp, status, xhr) {
if (!model.set(model.parse(resp, xhr), options)) return false;
if (success) success(model, resp, xhr);
};
options.error = wrapError(options.error, model, options);
var method = this.isNew() ? 'create' : 'update';
return (this.sync || Backbone.sync).call(this, method, this, options);
},
// Destroy this model on the server if it was already persisted. Upon success, the model is removed
// from its collection, if it has one.
destroy : function(options) {
options || (options = {});
if (this.isNew()) return this.trigger('destroy', this, this.collection, options);
var model = this;
var success = options.success;
options.success = function(resp) {
model.trigger('destroy', model, model.collection, options);
if (success) success(model, resp);
};
options.error = wrapError(options.error, model, options);
return (this.sync || Backbone.sync).call(this, 'delete', this, options);
},
// Default URL for the model's representation on the server -- if you're
// using Backbone's restful methods, override this to change the endpoint
// that will be called.
url : function() {
var base = getUrl(this.collection) || this.urlRoot || urlError();
if (this.isNew()) return base;
return base + (base.charAt(base.length - 1) == '/' ? '' : '/') + encodeURIComponent(this.id);
},
// **parse** converts a response into the hash of attributes to be `set` on
// the model. The default implementation is just to pass the response along.
parse : function(resp, xhr) {
return resp;
},
// Create a new model with identical attributes to this one.
clone : function() {
return new this.constructor(this);
},
// A model is new if it has never been saved to the server, and lacks an id.
isNew : function() {
return this.id == null;
},
// Call this method to manually fire a `change` event for this model.
// Calling this will cause all objects observing the model to update.
change : function(options) {
this.trigger('change', this, options);
this._previousAttributes = _.clone(this.attributes);
this._changed = false;
},
// Determine if the model has changed since the last `"change"` event.
// If you specify an attribute name, determine if that attribute has changed.
hasChanged : function(attr) {
if (attr) return this._previousAttributes[attr] != this.attributes[attr];
return this._changed;
},
// Return an object containing all the attributes that have changed, or false
// if there are no changed attributes. Useful for determining what parts of a
// view need to be updated and/or what attributes need to be persisted to
// the server.
changedAttributes : function(now) {
now || (now = this.attributes);
var old = this._previousAttributes;
var changed = false;
for (var attr in now) {
if (!_.isEqual(old[attr], now[attr])) {
changed = changed || {};
changed[attr] = now[attr];
}
}
return changed;
},
// Get the previous value of an attribute, recorded at the time the last
// `"change"` event was fired.
previous : function(attr) {
if (!attr || !this._previousAttributes) return null;
return this._previousAttributes[attr];
},
// Get all of the attributes of the model at the time of the previous
// `"change"` event.
previousAttributes : function() {
return _.clone(this._previousAttributes);
},
// Run validation against a set of incoming attributes, returning `true`
// if all is well. If a specific `error` callback has been passed,
// call that instead of firing the general `"error"` event.
_performValidation : function(attrs, options) {
var error = this.validate(attrs);
if (error) {
if (options.error) {
options.error(this, error, options);
} else {
this.trigger('error', this, error, options);
}
return false;
}
return true;
}
});
// Backbone.Collection
// -------------------
// Provides a standard collection class for our sets of models, ordered
// or unordered. If a `comparator` is specified, the Collection will maintain
// its models in sort order, as they're added and removed.
Backbone.Collection = function(models, options) {
options || (options = {});
if (options.comparator) this.comparator = options.comparator;
_.bindAll(this, '_onModelEvent', '_removeReference');
this._reset();
if (models) this.reset(models, {silent: true});
this.initialize.apply(this, arguments);
};
// Define the Collection's inheritable methods.
_.extend(Backbone.Collection.prototype, Backbone.Events, {
// The default model for a collection is just a **Backbone.Model**.
// This should be overridden in most cases.
model : Backbone.Model,
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize : function(){},
// The JSON representation of a Collection is an array of the
// models' attributes.
toJSON : function() {
return this.map(function(model){ return model.toJSON(); });
},
// Add a model, or list of models to the set. Pass **silent** to avoid
// firing the `added` event for every new model.
add : function(models, options) {
if (_.isArray(models)) {
for (var i = 0, l = models.length; i < l; i++) {
this._add(models[i], options);
}
} else {
this._add(models, options);
}
return this;
},
// Remove a model, or a list of models from the set. Pass silent to avoid
// firing the `removed` event for every model removed.
remove : function(models, options) {
if (_.isArray(models)) {
for (var i = 0, l = models.length; i < l; i++) {
this._remove(models[i], options);
}
} else {
this._remove(models, options);
}
return this;
},
// Get a model from the set by id.
get : function(id) {
if (id == null) return null;
return this._byId[id.id != null ? id.id : id];
},
// Get a model from the set by client id.
getByCid : function(cid) {
return cid && this._byCid[cid.cid || cid];
},
// Get the model at the given index.
at: function(index) {
return this.models[index];
},
// Force the collection to re-sort itself. You don't need to call this under normal
// circumstances, as the set will maintain sort order as each item is added.
sort : function(options) {
options || (options = {});
if (!this.comparator) throw new Error('Cannot sort a set without a comparator');
this.models = this.sortBy(this.comparator);
if (!options.silent) this.trigger('reset', this, options);
return this;
},
// Pluck an attribute from each model in the collection.
pluck : function(attr) {
return _.map(this.models, function(model){ return model.get(attr); });
},
// When you have more items than you want to add or remove individually,
// you can reset the entire set with a new list of models, without firing
// any `added` or `removed` events. Fires `reset` when finished.
reset : function(models, options) {
models || (models = []);
options || (options = {});
this.each(this._removeReference);
this._reset();
this.add(models, {silent: true});
if (!options.silent) this.trigger('reset', this, options);
return this;
},
// Fetch the default set of models for this collection, resetting the
// collection when they arrive. If `add: true` is passed, appends the
// models to the collection instead of resetting.
fetch : function(options) {
options || (options = {});
var collection = this;
var success = options.success;
options.success = function(resp, status, xhr) {
collection[options.add ? 'add' : 'reset'](collection.parse(resp, xhr), options);
if (success) success(collection, resp);
};
options.error = wrapError(options.error, collection, options);
return (this.sync || Backbone.sync).call(this, 'read', this, options);
},
// Create a new instance of a model in this collection. After the model
// has been created on the server, it will be added to the collection.
// Returns the model, or 'false' if validation on a new model fails.
create : function(model, options) {
var coll = this;
options || (options = {});
model = this._prepareModel(model, options);
if (!model) return false;
var success = options.success;
options.success = function(nextModel, resp, xhr) {
coll.add(nextModel, options);
if (success) success(nextModel, resp, xhr);
};
model.save(null, options);
return model;
},
// **parse** converts a response into a list of models to be added to the
// collection. The default implementation is just to pass it through.
parse : function(resp, xhr) {
return resp;
},
// Proxy to _'s chain. Can't be proxied the same way the rest of the
// underscore methods are proxied because it relies on the underscore
// constructor.
chain: function () {
return _(this.models).chain();
},
// Reset all internal state. Called when the collection is reset.
_reset : function(options) {
this.length = 0;
this.models = [];
this._byId = {};
this._byCid = {};
},
// Prepare a model to be added to this collection
_prepareModel: function(model, options) {
if (!(model instanceof Backbone.Model)) {
var attrs = model;
model = new this.model(attrs, {collection: this});
if (model.validate && !model._performValidation(attrs, options)) model = false;
} else if (!model.collection) {
model.collection = this;
}
return model;
},
// Internal implementation of adding a single model to the set, updating
// hash indexes for `id` and `cid` lookups.
// Returns the model, or 'false' if validation on a new model fails.
_add : function(model, options) {
options || (options = {});
model = this._prepareModel(model, options);
if (!model) return false;
var already = this.getByCid(model);
if (already) throw new Error(["Can't add the same model to a set twice", already.id]);
this._byId[model.id] = model;
this._byCid[model.cid] = model;
var index = options.at != null ? options.at :
this.comparator ? this.sortedIndex(model, this.comparator) :
this.length;
this.models.splice(index, 0, model);
model.bind('all', this._onModelEvent);
this.length++;
if (!options.silent) model.trigger('add', model, this, options);
return model;
},
// Internal implementation of removing a single model from the set, updating
// hash indexes for `id` and `cid` lookups.
_remove : function(model, options) {
options || (options = {});
model = this.getByCid(model) || this.get(model);
if (!model) return null;
delete this._byId[model.id];
delete this._byCid[model.cid];
this.models.splice(this.indexOf(model), 1);
this.length--;
if (!options.silent) model.trigger('remove', model, this, options);
this._removeReference(model);
return model;
},
// Internal method to remove a model's ties to a collection.
_removeReference : function(model) {
if (this == model.collection) {
delete model.collection;
}
model.unbind('all', this._onModelEvent);
},
// Internal method called every time a model in the set fires an event.
// Sets need to update their indexes when models change ids. All other
// events simply proxy through. "add" and "remove" events that originate
// in other collections are ignored.
_onModelEvent : function(ev, model, collection, options) {
if ((ev == 'add' || ev == 'remove') && collection != this) return;
if (ev == 'destroy') {
this._remove(model, options);
}
if (model && ev === 'change:' + model.idAttribute) {
delete this._byId[model.previous(model.idAttribute)];
this._byId[model.id] = model;
}
this.trigger.apply(this, arguments);
}
});
// Underscore methods that we want to implement on the Collection.
var methods = ['forEach', 'each', 'map', 'reduce', 'reduceRight', 'find', 'detect',
'filter', 'select', 'reject', 'every', 'all', 'some', 'any', 'include',
'contains', 'invoke', 'max', 'min', 'sortBy', 'sortedIndex', 'toArray', 'size',
'first', 'rest', 'last', 'without', 'indexOf', 'lastIndexOf', 'isEmpty', 'groupBy'];
// Mix in each Underscore method as a proxy to `Collection#models`.
_.each(methods, function(method) {
Backbone.Collection.prototype[method] = function() {
return _[method].apply(_, [this.models].concat(_.toArray(arguments)));
};
});
// Backbone.Router
// -------------------
// Routers map faux-URLs to actions, and fire events when routes are
// matched. Creating a new one sets its `routes` hash, if not set statically.
Backbone.Router = function(options) {
options || (options = {});
if (options.routes) this.routes = options.routes;
this._bindRoutes();
this.initialize.apply(this, arguments);
};
// Cached regular expressions for matching named param parts and splatted
// parts of route strings.
var namedParam = /:([\w\d]+)/g;
var splatParam = /\*([\w\d]+)/g;
var escapeRegExp = /[-[\]{}()+?.,\\^$|#\s]/g;
// Set up all inheritable **Backbone.Router** properties and methods.
_.extend(Backbone.Router.prototype, Backbone.Events, {
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize : function(){},
// Manually bind a single named route to a callback. For example:
//
// this.route('search/:query/p:num', 'search', function(query, num) {
// ...
// });
//
route : function(route, name, callback) {
Backbone.history || (Backbone.history = new Backbone.History);
if (!_.isRegExp(route)) route = this._routeToRegExp(route);
Backbone.history.route(route, _.bind(function(fragment) {
var args = this._extractParameters(route, fragment);
callback.apply(this, args);
this.trigger.apply(this, ['route:' + name].concat(args));
}, this));
},
// Simple proxy to `Backbone.history` to save a fragment into the history.
navigate : function(fragment, triggerRoute) {
Backbone.history.navigate(fragment, triggerRoute);
},
// Bind all defined routes to `Backbone.history`. We have to reverse the
// order of the routes here to support behavior where the most general
// routes can be defined at the bottom of the route map.
_bindRoutes : function() {
if (!this.routes) return;
var routes = [];
for (var route in this.routes) {
routes.unshift([route, this.routes[route]]);
}
for (var i = 0, l = routes.length; i < l; i++) {
this.route(routes[i][0], routes[i][1], this[routes[i][1]]);
}
},
// Convert a route string into a regular expression, suitable for matching
// against the current location hash.
_routeToRegExp : function(route) {
route = route.replace(escapeRegExp, "\\$&")
.replace(namedParam, "([^\/]*)")
.replace(splatParam, "(.*?)");
return new RegExp('^' + route + '$');
},
// Given a route, and a URL fragment that it matches, return the array of
// extracted parameters.
_extractParameters : function(route, fragment) {
return route.exec(fragment).slice(1);
}
});
// Backbone.History
// ----------------
// Handles cross-browser history management, based on URL fragments. If the
// browser does not support `onhashchange`, falls back to polling.
Backbone.History = function() {
this.handlers = [];
_.bindAll(this, 'checkUrl');
};
// Cached regex for cleaning hashes.
var hashStrip = /^#*/;
// Cached regex for detecting MSIE.
var isExplorer = /msie [\w.]+/;
// Has the history handling already been started?
var historyStarted = false;
// Set up all inheritable **Backbone.History** properties and methods.
_.extend(Backbone.History.prototype, {
// The default interval to poll for hash changes, if necessary, is
// twenty times a second.
interval: 50,
// Get the cross-browser normalized URL fragment, either from the URL,
// the hash, or the override.
getFragment : function(fragment, forcePushState) {
if (fragment == null) {
if (this._hasPushState || forcePushState) {
fragment = window.location.pathname;
var search = window.location.search;
if (search) fragment += search;
if (fragment.indexOf(this.options.root) == 0) fragment = fragment.substr(this.options.root.length);
} else {
fragment = window.location.hash;
}
}
return decodeURIComponent(fragment.replace(hashStrip, ''));
},
// Start the hash change handling, returning `true` if the current URL matches
// an existing route, and `false` otherwise.
start : function(options) {
// Figure out the initial configuration. Do we need an iframe?
// Is pushState desired ... is it available?
if (historyStarted) throw new Error("Backbone.history has already been started");
this.options = _.extend({}, {root: '/'}, this.options, options);
this._wantsPushState = !!this.options.pushState;
this._hasPushState = !!(this.options.pushState && window.history && window.history.pushState);
var fragment = this.getFragment();
var docMode = document.documentMode;
var oldIE = (isExplorer.exec(navigator.userAgent.toLowerCase()) && (!docMode || docMode <= 7));
if (oldIE) {
this.iframe = $('<iframe src="javascript:0" tabindex="-1" />').hide().appendTo('body')[0].contentWindow;
this.navigate(fragment);
}
// Depending on whether we're using pushState or hashes, and whether
// 'onhashchange' is supported, determine how we check the URL state.
if (this._hasPushState) {
$(window).bind('popstate', this.checkUrl);
} else if ('onhashchange' in window && !oldIE) {
$(window).bind('hashchange', this.checkUrl);
} else {
setInterval(this.checkUrl, this.interval);
}
// Determine if we need to change the base url, for a pushState link
// opened by a non-pushState browser.
this.fragment = fragment;
historyStarted = true;
var loc = window.location;
var atRoot = loc.pathname == this.options.root;
if (this._wantsPushState && !this._hasPushState && !atRoot) {
this.fragment = this.getFragment(null, true);
window.location.replace(this.options.root + '#' + this.fragment);
// Return immediately as browser will do redirect to new url
return true;
} else if (this._wantsPushState && this._hasPushState && atRoot && loc.hash) {
this.fragment = loc.hash.replace(hashStrip, '');
window.history.replaceState({}, document.title, loc.protocol + '//' + loc.host + this.options.root + this.fragment);
}
if (!this.options.silent) {
return this.loadUrl();
}
},
// Add a route to be tested when the fragment changes. Routes added later may
// override previous routes.
route : function(route, callback) {
this.handlers.unshift({route : route, callback : callback});
},
// Checks the current URL to see if it has changed, and if it has,
// calls `loadUrl`, normalizing across the hidden iframe.
checkUrl : function(e) {
var current = this.getFragment();
if (current == this.fragment && this.iframe) current = this.getFragment(this.iframe.location.hash);
if (current == this.fragment || current == decodeURIComponent(this.fragment)) return false;
if (this.iframe) this.navigate(current);
this.loadUrl() || this.loadUrl(window.location.hash);
},
// Attempt to load the current URL fragment. If a route succeeds with a
// match, returns `true`. If no defined routes matches the fragment,
// returns `false`.
loadUrl : function(fragmentOverride) {
var fragment = this.fragment = this.getFragment(fragmentOverride);
var matched = _.any(this.handlers, function(handler) {
if (handler.route.test(fragment)) {
handler.callback(fragment);
return true;
}
});
return matched;
},
// Save a fragment into the hash history. You are responsible for properly
// URL-encoding the fragment in advance. This does not trigger
// a `hashchange` event.
navigate : function(fragment, triggerRoute) {
var frag = (fragment || '').replace(hashStrip, '');
if (this.fragment == frag || this.fragment == decodeURIComponent(frag)) return;
if (this._hasPushState) {
var loc = window.location;
if (frag.indexOf(this.options.root) != 0) frag = this.options.root + frag;
this.fragment = frag;
window.history.pushState({}, document.title, loc.protocol + '//' + loc.host + frag);
} else {
window.location.hash = this.fragment = frag;
if (this.iframe && (frag != this.getFragment(this.iframe.location.hash))) {
this.iframe.document.open().close();
this.iframe.location.hash = frag;
}
}
if (triggerRoute) this.loadUrl(fragment);
}
});
// Backbone.View
// -------------
// Creating a Backbone.View creates its initial element outside of the DOM,
// if an existing element is not provided...
Backbone.View = function(options) {
this.cid = _.uniqueId('view');
this._configure(options || {});
this._ensureElement();
this.delegateEvents();
this.initialize.apply(this, arguments);
};
// Element lookup, scoped to DOM elements within the current view.
// This should be prefered to global lookups, if you're dealing with
// a specific view.
var selectorDelegate = function(selector) {
return $(selector, this.el);
};
// Cached regex to split keys for `delegate`.
var eventSplitter = /^(\S+)\s*(.*)$/;
// List of view options to be merged as properties.
var viewOptions = ['model', 'collection', 'el', 'id', 'attributes', 'className', 'tagName'];
// Set up all inheritable **Backbone.View** properties and methods.
_.extend(Backbone.View.prototype, Backbone.Events, {
// The default `tagName` of a View's element is `"div"`.
tagName : 'div',
// Attach the `selectorDelegate` function as the `$` property.
$ : selectorDelegate,
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize : function(){},
// **render** is the core function that your view should override, in order
// to populate its element (`this.el`), with the appropriate HTML. The
// convention is for **render** to always return `this`.
render : function() {
return this;
},
// Remove this view from the DOM. Note that the view isn't present in the
// DOM by default, so calling this method may be a no-op.
remove : function() {
$(this.el).remove();
return this;
},
// For small amounts of DOM Elements, where a full-blown template isn't
// needed, use **make** to manufacture elements, one at a time.
//
// var el = this.make('li', {'class': 'row'}, this.model.escape('title'));
//
make : function(tagName, attributes, content) {
var el = document.createElement(tagName);
if (attributes) $(el).attr(attributes);
if (content) $(el).html(content);
return el;
},
// Set callbacks, where `this.callbacks` is a hash of
//
// *{"event selector": "callback"}*
//
// {
// 'mousedown .title': 'edit',
// 'click .button': 'save'
// }
//
// pairs. Callbacks will be bound to the view, with `this` set properly.
// Uses event delegation for efficiency.
// Omitting the selector binds the event to `this.el`.
// This only works for delegate-able events: not `focus`, `blur`, and
// not `change`, `submit`, and `reset` in Internet Explorer.
delegateEvents : function(events) {
if (!(events || (events = this.events))) return;
if (_.isFunction(events)) events = events.call(this);
$(this.el).unbind('.delegateEvents' + this.cid);
for (var key in events) {
var method = this[events[key]];
if (!method) throw new Error('Event "' + events[key] + '" does not exist');
var match = key.match(eventSplitter);
var eventName = match[1], selector = match[2];
method = _.bind(method, this);
eventName += '.delegateEvents' + this.cid;
if (selector === '') {
$(this.el).bind(eventName, method);
} else {
$(this.el).delegate(selector, eventName, method);
}
}
},
// Performs the initial configuration of a View with a set of options.
// Keys with special meaning *(model, collection, id, className)*, are
// attached directly to the view.
_configure : function(options) {
if (this.options) options = _.extend({}, this.options, options);
for (var i = 0, l = viewOptions.length; i < l; i++) {
var attr = viewOptions[i];
if (options[attr]) this[attr] = options[attr];
}
this.options = options;
},
// Ensure that the View has a DOM element to render into.
// If `this.el` is a string, pass it through `$()`, take the first
// matching element, and re-assign it to `el`. Otherwise, create
// an element from the `id`, `className` and `tagName` proeprties.
_ensureElement : function() {
if (!this.el) {
var attrs = this.attributes || {};
if (this.id) attrs.id = this.id;
if (this.className) attrs['class'] = this.className;
this.el = this.make(this.tagName, attrs);
} else if (_.isString(this.el)) {
this.el = $(this.el).get(0);
}
}
});
// The self-propagating extend function that Backbone classes use.
var extend = function (protoProps, classProps) {
var child = inherits(this, protoProps, classProps);
child.extend = this.extend;
return child;
};
// Set up inheritance for the model, collection, and view.
Backbone.Model.extend = Backbone.Collection.extend =
Backbone.Router.extend = Backbone.View.extend = extend;
// Map from CRUD to HTTP for our default `Backbone.sync` implementation.
var methodMap = {
'create': 'POST',
'update': 'PUT',
'delete': 'DELETE',
'read' : 'GET'
};
// Backbone.sync
// -------------
// Override this function to change the manner in which Backbone persists
// models to the server. You will be passed the type of request, and the
// model in question. By default, uses makes a RESTful Ajax request
// to the model's `url()`. Some possible customizations could be:
//
// * Use `setTimeout` to batch rapid-fire updates into a single request.
// * Send up the models as XML instead of JSON.
// * Persist models via WebSockets instead of Ajax.
//
// Turn on `Backbone.emulateHTTP` in order to send `PUT` and `DELETE` requests
// as `POST`, with a `_method` parameter containing the true HTTP method,
// as well as all requests with the body as `application/x-www-form-urlencoded` instead of
// `application/json` with the model in a param named `model`.
// Useful when interfacing with server-side languages like **PHP** that make
// it difficult to read the body of `PUT` requests.
Backbone.sync = function(method, model, options) {
var type = methodMap[method];
// Default JSON-request options.
var params = _.extend({
type: type,
dataType: 'json'
}, options);
// Ensure that we have a URL.
if (!params.url) {
params.url = getUrl(model) || urlError();
}
// Ensure that we have the appropriate request data.
if (!params.data && model && (method == 'create' || method == 'update')) {
params.contentType = 'application/json';
params.data = JSON.stringify(model.toJSON());
}
// For older servers, emulate JSON by encoding the request into an HTML-form.
if (Backbone.emulateJSON) {
params.contentType = 'application/x-www-form-urlencoded';
params.data = params.data ? {model : params.data} : {};
}
// For older servers, emulate HTTP by mimicking the HTTP method with `_method`
// And an `X-HTTP-Method-Override` header.
if (Backbone.emulateHTTP) {
if (type === 'PUT' || type === 'DELETE') {
if (Backbone.emulateJSON) params.data._method = type;
params.type = 'POST';
params.beforeSend = function(xhr) {
xhr.setRequestHeader('X-HTTP-Method-Override', type);
};
}
}
// Don't process data on a non-GET request.
if (params.type !== 'GET' && !Backbone.emulateJSON) {
params.processData = false;
}
// Make the request.
return $.ajax(params);
};
// Helpers
// -------
// Shared empty constructor function to aid in prototype-chain creation.
var ctor = function(){};
// Helper function to correctly set up the prototype chain, for subclasses.
// Similar to `goog.inherits`, but uses a hash of prototype properties and
// class properties to be extended.
var inherits = function(parent, protoProps, staticProps) {
var child;
// The constructor function for the new subclass is either defined by you
// (the "constructor" property in your `extend` definition), or defaulted
// by us to simply call `super()`.
if (protoProps && protoProps.hasOwnProperty('constructor')) {
child = protoProps.constructor;
} else {
child = function(){ return parent.apply(this, arguments); };
}
// Inherit class (static) properties from parent.
_.extend(child, parent);
// Set the prototype chain to inherit from `parent`, without calling
// `parent`'s constructor function.
ctor.prototype = parent.prototype;
child.prototype = new ctor();
// Add prototype properties (instance properties) to the subclass,
// if supplied.
if (protoProps) _.extend(child.prototype, protoProps);
// Add static properties to the constructor function, if supplied.
if (staticProps) _.extend(child, staticProps);
// Correctly set child's `prototype.constructor`.
child.prototype.constructor = child;
// Set a convenience property in case the parent's prototype is needed later.
child.__super__ = parent.prototype;
return child;
};
// Helper function to get a URL from a Model or Collection as a property
// or as a function.
var getUrl = function(object) {
if (!(object && object.url)) return null;
return _.isFunction(object.url) ? object.url() : object.url;
};
// Throw an error when a URL is needed, and none is supplied.
var urlError = function() {
throw new Error('A "url" property or function must be specified');
};
// Wrap an optional error callback with a fallback error event.
var wrapError = function(onError, model, options) {
return function(resp) {
if (onError) {
onError(model, resp, options);
} else {
model.trigger('error', model, resp, options);
}
};
};
// Helper function to escape a string for HTML rendering.
var escapeHTML = function(string) {
return string.replace(/&(?!\w+;|#\d+;|#x[\da-f]+;)/gi, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''').replace(/\//g,'/');
};
}).call(this); | JavaScript |
/*
* jQuery Tiny Pub/Sub - v0.6 - 1/10/2011
* http://benalman.com/
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/
(function($){var a=$("<b/>");$.subscribe=function(b,c){function d(){return c.apply(this,Array.prototype.slice.call(arguments,1))}d.guid=c.guid=c.guid||($.guid?$.guid++:$.event.guid++);a.bind(b,d)};$.unsubscribe=function(){a.unbind.apply(a,arguments)};$.publish=function(){a.trigger.apply(a,arguments)}})(jQuery);
/*
* jQuery Templates Plugin 1.0.0pre
* http://github.com/jquery/jquery-tmpl
* Requires jQuery 1.4.2
*
* Copyright Software Freedom Conservancy, Inc.
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*/
(function(a){var r=a.fn.domManip,d="_tmplitem",q=/^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /,b={},f={},e,p={key:0,data:{}},i=0,c=0,l=[];function g(g,d,h,e){var c={data:e||(e===0||e===false)?e:d?d.data:{},_wrap:d?d._wrap:null,tmpl:null,parent:d||null,nodes:[],calls:u,nest:w,wrap:x,html:v,update:t};g&&a.extend(c,g,{nodes:[],parent:d});if(h){c.tmpl=h;c._ctnt=c._ctnt||c.tmpl(a,c);c.key=++i;(l.length?f:b)[i]=c}return c}a.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(f,d){a.fn[f]=function(n){var g=[],i=a(n),k,h,m,l,j=this.length===1&&this[0].parentNode;e=b||{};if(j&&j.nodeType===11&&j.childNodes.length===1&&i.length===1){i[d](this[0]);g=this}else{for(h=0,m=i.length;h<m;h++){c=h;k=(h>0?this.clone(true):this).get();a(i[h])[d](k);g=g.concat(k)}c=0;g=this.pushStack(g,f,i.selector)}l=e;e=null;a.tmpl.complete(l);return g}});a.fn.extend({tmpl:function(d,c,b){return a.tmpl(this[0],d,c,b)},tmplItem:function(){return a.tmplItem(this[0])},template:function(b){return a.template(b,this[0])},domManip:function(d,m,k){if(d[0]&&a.isArray(d[0])){var g=a.makeArray(arguments),h=d[0],j=h.length,i=0,f;while(i<j&&!(f=a.data(h[i++],"tmplItem")));if(f&&c)g[2]=function(b){a.tmpl.afterManip(this,b,k)};r.apply(this,g)}else r.apply(this,arguments);c=0;!e&&a.tmpl.complete(b);return this}});a.extend({tmpl:function(d,h,e,c){var i,k=!c;if(k){c=p;d=a.template[d]||a.template(null,d);f={}}else if(!d){d=c.tmpl;b[c.key]=c;c.nodes=[];c.wrapped&&n(c,c.wrapped);return a(j(c,null,c.tmpl(a,c)))}if(!d)return[];if(typeof h==="function")h=h.call(c||{});e&&e.wrapped&&n(e,e.wrapped);i=a.isArray(h)?a.map(h,function(a){return a?g(e,c,d,a):null}):[g(e,c,d,h)];return k?a(j(c,null,i)):i},tmplItem:function(b){var c;if(b instanceof a)b=b[0];while(b&&b.nodeType===1&&!(c=a.data(b,"tmplItem"))&&(b=b.parentNode));return c||p},template:function(c,b){if(b){if(typeof b==="string")b=o(b);else if(b instanceof a)b=b[0]||{};if(b.nodeType)b=a.data(b,"tmpl")||a.data(b,"tmpl",o(b.innerHTML));return typeof c==="string"?(a.template[c]=b):b}return c?typeof c!=="string"?a.template(null,c):a.template[c]||a.template(null,q.test(c)?c:a(c)):null},encode:function(a){return(""+a).split("<").join("<").split(">").join(">").split('"').join(""").split("'").join("'")}});a.extend(a.tmpl,{tag:{tmpl:{_default:{$2:"null"},open:"if($notnull_1){__=__.concat($item.nest($1,$2));}"},wrap:{_default:{$2:"null"},open:"$item.calls(__,$1,$2);__=[];",close:"call=$item.calls();__=call._.concat($item.wrap(call,__));"},each:{_default:{$2:"$index, $value"},open:"if($notnull_1){$.each($1a,function($2){with(this){",close:"}});}"},"if":{open:"if(($notnull_1) && $1a){",close:"}"},"else":{_default:{$1:"true"},open:"}else if(($notnull_1) && $1a){"},html:{open:"if($notnull_1){__.push($1a);}"},"=":{_default:{$1:"$data"},open:"if($notnull_1){__.push($.encode($1a));}"},"!":{open:""}},complete:function(){b={}},afterManip:function(f,b,d){var e=b.nodeType===11?a.makeArray(b.childNodes):b.nodeType===1?[b]:[];d.call(f,b);m(e);c++}});function j(e,g,f){var b,c=f?a.map(f,function(a){return typeof a==="string"?e.key?a.replace(/(<\w+)(?=[\s>])(?![^>]*_tmplitem)([^>]*)/g,"$1 "+d+'="'+e.key+'" $2'):a:j(a,e,a._ctnt)}):e;if(g)return c;c=c.join("");c.replace(/^\s*([^<\s][^<]*)?(<[\w\W]+>)([^>]*[^>\s])?\s*$/,function(f,c,e,d){b=a(e).get();m(b);if(c)b=k(c).concat(b);if(d)b=b.concat(k(d))});return b?b:k(c)}function k(c){var b=document.createElement("div");b.innerHTML=c;return a.makeArray(b.childNodes)}function o(b){return new Function("jQuery","$item","var $=jQuery,call,__=[],$data=$item.data;with($data){__.push('"+a.trim(b).replace(/([\\'])/g,"\\$1").replace(/[\r\t\n]/g," ").replace(/\$\{([^\}]*)\}/g,"{{= $1}}").replace(/\{\{(\/?)(\w+|.)(?:\(((?:[^\}]|\}(?!\}))*?)?\))?(?:\s+(.*?)?)?(\(((?:[^\}]|\}(?!\}))*?)\))?\s*\}\}/g,function(m,l,k,g,b,c,d){var j=a.tmpl.tag[k],i,e,f;if(!j)throw"Unknown template tag: "+k;i=j._default||[];if(c&&!/\w$/.test(b)){b+=c;c=""}if(b){b=h(b);d=d?","+h(d)+")":c?")":"";e=c?b.indexOf(".")>-1?b+h(c):"("+b+").call($item"+d:b;f=c?e:"(typeof("+b+")==='function'?("+b+").call($item):("+b+"))"}else f=e=i.$1||"null";g=h(g);return"');"+j[l?"close":"open"].split("$notnull_1").join(b?"typeof("+b+")!=='undefined' && ("+b+")!=null":"true").split("$1a").join(f).split("$1").join(e).split("$2").join(g||i.$2||"")+"__.push('"})+"');}return __;")}function n(c,b){c._wrap=j(c,true,a.isArray(b)?b:[q.test(b)?b:a(b).html()]).join("")}function h(a){return a?a.replace(/\\'/g,"'").replace(/\\\\/g,"\\"):null}function s(b){var a=document.createElement("div");a.appendChild(b.cloneNode(true));return a.innerHTML}function m(o){var n="_"+c,k,j,l={},e,p,h;for(e=0,p=o.length;e<p;e++){if((k=o[e]).nodeType!==1)continue;j=k.getElementsByTagName("*");for(h=j.length-1;h>=0;h--)m(j[h]);m(k)}function m(j){var p,h=j,k,e,m;if(m=j.getAttribute(d)){while(h.parentNode&&(h=h.parentNode).nodeType===1&&!(p=h.getAttribute(d)));if(p!==m){h=h.parentNode?h.nodeType===11?0:h.getAttribute(d)||0:0;if(!(e=b[m])){e=f[m];e=g(e,b[h]||f[h]);e.key=++i;b[i]=e}c&&o(m)}j.removeAttribute(d)}else if(c&&(e=a.data(j,"tmplItem"))){o(e.key);b[e.key]=e;h=a.data(j.parentNode,"tmplItem");h=h?h.key:0}if(e){k=e;while(k&&k.key!=h){k.nodes.push(j);k=k.parent}delete e._ctnt;delete e._wrap;a.data(j,"tmplItem",e)}function o(a){a=a+n;e=l[a]=l[a]||g(e,b[e.parent.key+n]||e.parent)}}}function u(a,d,c,b){if(!a)return l.pop();l.push({_:a,tmpl:d,item:this,data:c,options:b})}function w(d,c,b){return a.tmpl(a.template(d),c,b,this)}function x(b,d){var c=b.options||{};c.wrapped=d;return a.tmpl(a.template(b.tmpl),b.data,c,b.item)}function v(d,c){var b=this._wrap;return a.map(a(a.isArray(b)?b.join(""):b).filter(d||"*"),function(a){return c?a.innerText||a.textContent:a.outerHTML||s(a)})}function t(){var b=this.nodes;a.tmpl(null,null,null,this).insertBefore(b[0]);a(b).remove()}})(jQuery);
/**
*
* Color picker
* Author: Stefan Petre www.eyecon.ro
*
* Dual licensed under the MIT and GPL licenses
*
*/
(function ($) {
var ColorPicker = function () {
var
ids = {},
inAction,
charMin = 65,
visible,
tpl = '<div class="colorpicker"><div class="colorpicker_color"><div><div></div></div></div><div class="colorpicker_hue"><div></div></div><div class="colorpicker_new_color"></div><div class="colorpicker_current_color"></div><div class="colorpicker_hex"><input type="text" maxlength="6" size="6" /></div><div class="colorpicker_rgb_r colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_rgb_g colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_rgb_b colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_h colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_s colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_b colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_submit"></div></div>',
defaults = {
eventName: 'click',
onShow: function () {},
onBeforeShow: function(){},
onHide: function () {},
onChange: function () {},
onSubmit: function () {},
color: 'ff0000',
livePreview: true,
flat: false
},
fillRGBFields = function (hsb, cal) {
var rgb = HSBToRGB(hsb);
$(cal).data('colorpicker').fields
.eq(1).val(rgb.r).end()
.eq(2).val(rgb.g).end()
.eq(3).val(rgb.b).end();
},
fillHSBFields = function (hsb, cal) {
$(cal).data('colorpicker').fields
.eq(4).val(hsb.h).end()
.eq(5).val(hsb.s).end()
.eq(6).val(hsb.b).end();
},
fillHexFields = function (hsb, cal) {
$(cal).data('colorpicker').fields
.eq(0).val(HSBToHex(hsb)).end();
},
setSelector = function (hsb, cal) {
$(cal).data('colorpicker').selector.css('backgroundColor', '#' + HSBToHex({h: hsb.h, s: 100, b: 100}));
$(cal).data('colorpicker').selectorIndic.css({
left: parseInt(150 * hsb.s/100, 10),
top: parseInt(150 * (100-hsb.b)/100, 10)
});
},
setHue = function (hsb, cal) {
$(cal).data('colorpicker').hue.css('top', parseInt(150 - 150 * hsb.h/360, 10));
},
setCurrentColor = function (hsb, cal) {
$(cal).data('colorpicker').currentColor.css('backgroundColor', '#' + HSBToHex(hsb));
},
setNewColor = function (hsb, cal) {
$(cal).data('colorpicker').newColor.css('backgroundColor', '#' + HSBToHex(hsb));
},
keyDown = function (ev) {
var pressedKey = ev.charCode || ev.keyCode || -1;
if ((pressedKey > charMin && pressedKey <= 90) || pressedKey == 32) {
return false;
}
var cal = $(this).parent().parent();
if (cal.data('colorpicker').livePreview === true) {
change.apply(this);
}
},
change = function (ev) {
var cal = $(this).parent().parent(), col;
if (this.parentNode.className.indexOf('_hex') > 0) {
cal.data('colorpicker').color = col = HexToHSB(fixHex(this.value));
} else if (this.parentNode.className.indexOf('_hsb') > 0) {
cal.data('colorpicker').color = col = fixHSB({
h: parseInt(cal.data('colorpicker').fields.eq(4).val(), 10),
s: parseInt(cal.data('colorpicker').fields.eq(5).val(), 10),
b: parseInt(cal.data('colorpicker').fields.eq(6).val(), 10)
});
} else {
cal.data('colorpicker').color = col = RGBToHSB(fixRGB({
r: parseInt(cal.data('colorpicker').fields.eq(1).val(), 10),
g: parseInt(cal.data('colorpicker').fields.eq(2).val(), 10),
b: parseInt(cal.data('colorpicker').fields.eq(3).val(), 10)
}));
}
if (ev) {
fillRGBFields(col, cal.get(0));
fillHexFields(col, cal.get(0));
fillHSBFields(col, cal.get(0));
}
setSelector(col, cal.get(0));
setHue(col, cal.get(0));
setNewColor(col, cal.get(0));
cal.data('colorpicker').onChange.apply(cal, [col, HSBToHex(col), HSBToRGB(col)]);
},
blur = function (ev) {
var cal = $(this).parent().parent();
cal.data('colorpicker').fields.parent().removeClass('colorpicker_focus');
},
focus = function () {
charMin = this.parentNode.className.indexOf('_hex') > 0 ? 70 : 65;
$(this).parent().parent().data('colorpicker').fields.parent().removeClass('colorpicker_focus');
$(this).parent().addClass('colorpicker_focus');
},
downIncrement = function (ev) {
var field = $(this).parent().find('input').focus();
var current = {
el: $(this).parent().addClass('colorpicker_slider'),
max: this.parentNode.className.indexOf('_hsb_h') > 0 ? 360 : (this.parentNode.className.indexOf('_hsb') > 0 ? 100 : 255),
y: ev.pageY,
field: field,
val: parseInt(field.val(), 10),
preview: $(this).parent().parent().data('colorpicker').livePreview
};
$(document).bind('mouseup', current, upIncrement);
$(document).bind('mousemove', current, moveIncrement);
},
moveIncrement = function (ev) {
ev.data.field.val(Math.max(0, Math.min(ev.data.max, parseInt(ev.data.val + ev.pageY - ev.data.y, 10))));
if (ev.data.preview) {
change.apply(ev.data.field.get(0), [true]);
}
return false;
},
upIncrement = function (ev) {
change.apply(ev.data.field.get(0), [true]);
ev.data.el.removeClass('colorpicker_slider').find('input').focus();
$(document).unbind('mouseup', upIncrement);
$(document).unbind('mousemove', moveIncrement);
return false;
},
downHue = function (ev) {
var current = {
cal: $(this).parent(),
y: $(this).offset().top
};
current.preview = current.cal.data('colorpicker').livePreview;
$(document).bind('mouseup', current, upHue);
$(document).bind('mousemove', current, moveHue);
},
moveHue = function (ev) {
change.apply(
ev.data.cal.data('colorpicker')
.fields
.eq(4)
.val(parseInt(360*(150 - Math.max(0,Math.min(150,(ev.pageY - ev.data.y))))/150, 10))
.get(0),
[ev.data.preview]
);
return false;
},
upHue = function (ev) {
fillRGBFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
fillHexFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
$(document).unbind('mouseup', upHue);
$(document).unbind('mousemove', moveHue);
return false;
},
downSelector = function (ev) {
var current = {
cal: $(this).parent(),
pos: $(this).offset()
};
current.preview = current.cal.data('colorpicker').livePreview;
$(document).bind('mouseup', current, upSelector);
$(document).bind('mousemove', current, moveSelector);
},
moveSelector = function (ev) {
change.apply(
ev.data.cal.data('colorpicker')
.fields
.eq(6)
.val(parseInt(100*(150 - Math.max(0,Math.min(150,(ev.pageY - ev.data.pos.top))))/150, 10))
.end()
.eq(5)
.val(parseInt(100*(Math.max(0,Math.min(150,(ev.pageX - ev.data.pos.left))))/150, 10))
.get(0),
[ev.data.preview]
);
return false;
},
upSelector = function (ev) {
fillRGBFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
fillHexFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
$(document).unbind('mouseup', upSelector);
$(document).unbind('mousemove', moveSelector);
return false;
},
enterSubmit = function (ev) {
$(this).addClass('colorpicker_focus');
},
leaveSubmit = function (ev) {
$(this).removeClass('colorpicker_focus');
},
clickSubmit = function (ev) {
var cal = $(this).parent();
var col = cal.data('colorpicker').color;
cal.data('colorpicker').origColor = col;
setCurrentColor(col, cal.get(0));
cal.data('colorpicker').onSubmit(col, HSBToHex(col), HSBToRGB(col), cal.data('colorpicker').el);
},
show = function (ev) {
var cal = $('#' + $(this).data('colorpickerId'));
cal.data('colorpicker').onBeforeShow.apply(this, [cal.get(0)]);
var pos = $(this).offset();
var viewPort = getViewport();
var top = pos.top + this.offsetHeight;
var left = pos.left;
if (top + 176 > viewPort.t + viewPort.h) {
top -= this.offsetHeight + 176;
}
if (left + 356 > viewPort.l + viewPort.w) {
left -= 356;
}
// JK: Hack to align perfect.
left += 40;
cal.css({left: left + 'px', top: top + 'px'});
if (cal.data('colorpicker').onShow.apply(this, [cal.get(0)]) != false) {
cal.show();
}
$(document).bind('mousedown', {cal: cal}, hide);
return false;
},
hide = function (ev) {
if (!isChildOf(ev.data.cal.get(0), ev.target, ev.data.cal.get(0))) {
if (ev.data.cal.data('colorpicker').onHide.apply(this, [ev.data.cal.get(0)]) != false) {
ev.data.cal.hide();
}
$(document).unbind('mousedown', hide);
}
},
isChildOf = function(parentEl, el, container) {
if (parentEl == el) {
return true;
}
if (parentEl.contains) {
return parentEl.contains(el);
}
if ( parentEl.compareDocumentPosition ) {
return !!(parentEl.compareDocumentPosition(el) & 16);
}
var prEl = el.parentNode;
while(prEl && prEl != container) {
if (prEl == parentEl)
return true;
prEl = prEl.parentNode;
}
return false;
},
getViewport = function () {
var m = document.compatMode == 'CSS1Compat';
return {
l : window.pageXOffset || (m ? document.documentElement.scrollLeft : document.body.scrollLeft),
t : window.pageYOffset || (m ? document.documentElement.scrollTop : document.body.scrollTop),
w : window.innerWidth || (m ? document.documentElement.clientWidth : document.body.clientWidth),
h : window.innerHeight || (m ? document.documentElement.clientHeight : document.body.clientHeight)
};
},
fixHSB = function (hsb) {
return {
h: Math.min(360, Math.max(0, hsb.h)),
s: Math.min(100, Math.max(0, hsb.s)),
b: Math.min(100, Math.max(0, hsb.b))
};
},
fixRGB = function (rgb) {
return {
r: Math.min(255, Math.max(0, rgb.r)),
g: Math.min(255, Math.max(0, rgb.g)),
b: Math.min(255, Math.max(0, rgb.b))
};
},
fixHex = function (hex) {
var len = 6 - hex.length;
if (len > 0) {
var o = [];
for (var i=0; i<len; i++) {
o.push('0');
}
o.push(hex);
hex = o.join('');
}
return hex;
},
HexToRGB = function (hex) {
var hex = parseInt(((hex.indexOf('#') > -1) ? hex.substring(1) : hex), 16);
return {r: hex >> 16, g: (hex & 0x00FF00) >> 8, b: (hex & 0x0000FF)};
},
HexToHSB = function (hex) {
return RGBToHSB(HexToRGB(hex));
},
RGBToHSB = function (rgb) {
var hsb = {
h: 0,
s: 0,
b: 0
};
var min = Math.min(rgb.r, rgb.g, rgb.b);
var max = Math.max(rgb.r, rgb.g, rgb.b);
var delta = max - min;
hsb.b = max;
if (max != 0) {
}
hsb.s = max != 0 ? 255 * delta / max : 0;
if (hsb.s != 0) {
if (rgb.r == max) {
hsb.h = (rgb.g - rgb.b) / delta;
} else if (rgb.g == max) {
hsb.h = 2 + (rgb.b - rgb.r) / delta;
} else {
hsb.h = 4 + (rgb.r - rgb.g) / delta;
}
} else {
hsb.h = -1;
}
hsb.h *= 60;
if (hsb.h < 0) {
hsb.h += 360;
}
hsb.s *= 100/255;
hsb.b *= 100/255;
return hsb;
},
HSBToRGB = function (hsb) {
var rgb = {};
var h = Math.round(hsb.h);
var s = Math.round(hsb.s*255/100);
var v = Math.round(hsb.b*255/100);
if(s == 0) {
rgb.r = rgb.g = rgb.b = v;
} else {
var t1 = v;
var t2 = (255-s)*v/255;
var t3 = (t1-t2)*(h%60)/60;
if(h==360) h = 0;
if(h<60) {rgb.r=t1; rgb.b=t2; rgb.g=t2+t3}
else if(h<120) {rgb.g=t1; rgb.b=t2; rgb.r=t1-t3}
else if(h<180) {rgb.g=t1; rgb.r=t2; rgb.b=t2+t3}
else if(h<240) {rgb.b=t1; rgb.r=t2; rgb.g=t1-t3}
else if(h<300) {rgb.b=t1; rgb.g=t2; rgb.r=t2+t3}
else if(h<360) {rgb.r=t1; rgb.g=t2; rgb.b=t1-t3}
else {rgb.r=0; rgb.g=0; rgb.b=0}
}
return {r:Math.round(rgb.r), g:Math.round(rgb.g), b:Math.round(rgb.b)};
},
RGBToHex = function (rgb) {
var hex = [
rgb.r.toString(16),
rgb.g.toString(16),
rgb.b.toString(16)
];
$.each(hex, function (nr, val) {
if (val.length == 1) {
hex[nr] = '0' + val;
}
});
return hex.join('');
},
HSBToHex = function (hsb) {
return RGBToHex(HSBToRGB(hsb));
},
restoreOriginal = function () {
var cal = $(this).parent();
var col = cal.data('colorpicker').origColor;
cal.data('colorpicker').color = col;
fillRGBFields(col, cal.get(0));
fillHexFields(col, cal.get(0));
fillHSBFields(col, cal.get(0));
setSelector(col, cal.get(0));
setHue(col, cal.get(0));
setNewColor(col, cal.get(0));
};
return {
init: function (opt) {
opt = $.extend({}, defaults, opt||{});
if (typeof opt.color == 'string') {
opt.color = HexToHSB(opt.color);
} else if (opt.color.r != undefined && opt.color.g != undefined && opt.color.b != undefined) {
opt.color = RGBToHSB(opt.color);
} else if (opt.color.h != undefined && opt.color.s != undefined && opt.color.b != undefined) {
opt.color = fixHSB(opt.color);
} else {
return this;
}
return this.each(function () {
if (!$(this).data('colorpickerId')) {
var options = $.extend({}, opt);
options.origColor = opt.color;
var id = 'collorpicker_' + parseInt(Math.random() * 1000);
$(this).data('colorpickerId', id);
var cal = $(tpl).attr('id', id);
if (options.flat) {
cal.appendTo(this).show();
} else {
cal.appendTo(document.body);
}
options.fields = cal
.find('input')
.bind('keyup', keyDown)
.bind('change', change)
.bind('blur', blur)
.bind('focus', focus);
cal
.find('span').bind('mousedown', downIncrement).end()
.find('>div.colorpicker_current_color').bind('click', restoreOriginal);
options.selector = cal.find('div.colorpicker_color').bind('mousedown', downSelector);
options.selectorIndic = options.selector.find('div div');
options.el = this;
options.hue = cal.find('div.colorpicker_hue div');
cal.find('div.colorpicker_hue').bind('mousedown', downHue);
options.newColor = cal.find('div.colorpicker_new_color');
options.currentColor = cal.find('div.colorpicker_current_color');
cal.data('colorpicker', options);
cal.find('div.colorpicker_submit')
.bind('mouseenter', enterSubmit)
.bind('mouseleave', leaveSubmit)
.bind('click', clickSubmit);
fillRGBFields(options.color, cal.get(0));
fillHSBFields(options.color, cal.get(0));
fillHexFields(options.color, cal.get(0));
setHue(options.color, cal.get(0));
setSelector(options.color, cal.get(0));
setCurrentColor(options.color, cal.get(0));
setNewColor(options.color, cal.get(0));
if (options.flat) {
cal.css({
position: 'relative',
display: 'block'
});
} else {
$(this).bind(options.eventName, show);
}
}
});
},
showPicker: function() {
return this.each( function () {
if ($(this).data('colorpickerId')) {
show.apply(this);
}
});
},
hidePicker: function() {
return this.each( function () {
if ($(this).data('colorpickerId')) {
$('#' + $(this).data('colorpickerId')).hide();
}
});
},
setColor: function(col) {
if (typeof col == 'string') {
col = HexToHSB(col);
} else if (col.r != undefined && col.g != undefined && col.b != undefined) {
col = RGBToHSB(col);
} else if (col.h != undefined && col.s != undefined && col.b != undefined) {
col = fixHSB(col);
} else {
return this;
}
return this.each(function(){
if ($(this).data('colorpickerId')) {
var cal = $('#' + $(this).data('colorpickerId'));
cal.data('colorpicker').color = col;
cal.data('colorpicker').origColor = col;
fillRGBFields(col, cal.get(0));
fillHSBFields(col, cal.get(0));
fillHexFields(col, cal.get(0));
setHue(col, cal.get(0));
setSelector(col, cal.get(0));
setCurrentColor(col, cal.get(0));
setNewColor(col, cal.get(0));
}
});
}
};
}();
$.fn.extend({
ColorPicker: ColorPicker.init,
ColorPickerHide: ColorPicker.hidePicker,
ColorPickerShow: ColorPicker.showPicker,
ColorPickerSetColor: ColorPicker.setColor
});
})(jQuery);
/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
* Licensed under the MIT License (LICENSE.txt).
*
* Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
* Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
* Thanks to: Seamus Leahy for adding deltaX and deltaY
*
* Version: 3.0.6
*
* Requires: 1.2.2+
*/
(function($) {
var types = ['DOMMouseScroll', 'mousewheel'];
if ($.event.fixHooks) {
for ( var i=types.length; i; ) {
$.event.fixHooks[ types[--i] ] = $.event.mouseHooks;
}
}
$.event.special.mousewheel = {
setup: function() {
if ( this.addEventListener ) {
for ( var i=types.length; i; ) {
this.addEventListener( types[--i], handler, false );
}
} else {
this.onmousewheel = handler;
}
},
teardown: function() {
if ( this.removeEventListener ) {
for ( var i=types.length; i; ) {
this.removeEventListener( types[--i], handler, false );
}
} else {
this.onmousewheel = null;
}
}
};
$.fn.extend({
mousewheel: function(fn) {
return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
},
unmousewheel: function(fn) {
return this.unbind("mousewheel", fn);
}
});
function handler(event) {
var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
event = $.event.fix(orgEvent);
event.type = "mousewheel";
// Old school scrollwheel delta
if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; }
if ( orgEvent.detail ) { delta = -orgEvent.detail/3; }
// New school multidimensional scroll (touchpads) deltas
deltaY = delta;
// Gecko
if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
deltaY = 0;
deltaX = -1*delta;
}
// Webkit
if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
// Add event and delta to the front of the arguments
args.unshift(event, delta, deltaX, deltaY);
return ($.event.dispatch || $.event.handle).apply(this, args);
}
})(jQuery); | JavaScript |
// usage: log('inside coolFunc', this, arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
log.history = log.history || []; // store logs to an array for reference
log.history.push(arguments);
if(this.console) {
arguments.callee = arguments.callee.caller;
var newarr = [].slice.call(arguments);
(typeof console.log === 'object' ? log.apply.call(console.log, console, newarr) : console.log.apply(console, newarr));
}
};
// make it safe to use console.log always
(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,timeStamp,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();){b[a]=b[a]||c}})((function(){try
{console.log();return window.console;}catch(err){return window.console={};}})());
// place any jQuery/helper plugins in here, instead of separate, slower script files.
| JavaScript |
/* Author:
*/
| JavaScript |
/**
* @author itooamaneatguy / http://kadrmasconcepts.com/blog/
*/
THREEFAB.Events = {
VIEWPORT_MESH_SELECTED: 'viewport/mesh/selected',
VIEWPORT_LIGHT_SELECTED: 'viewport/light/selected',
VIEWPORT_OBJECT_TEXTURE_ADDED: 'viewport/object/texture/added',
VIEWPORT_OBJECT_REMOVED: 'viewport/object/removed',
VIEWPORT_OBJECT_ADDED: 'viewport/object/added',
VIEWPORT_TARGET_CENTER: 'viewport/target/center',
VIEWPORT_KEYFRAME_CHANGED: 'viewport/keyframe/changed',
MATERIAL_COLOR_CHANGED: 'material/color/changed',
LIGHT_COLOR_CHANGED: 'light/color/changed',
OUTLINER_CHANGED: 'outliner/changed',
MODEL_LOADED: 'model/loaded',
TEXTURE_LOADED: 'texture/loaded',
TEXTURE_CLEAR: 'texture/clear',
PRIMITIVE_ADDED: 'primitive/add',
LIGHT_ADDED: 'light/add',
EXPORTER_GENERATE: 'exporter/generate',
TIMELINE_CHANGED: 'timeline/changed',
TIMELINE_PLAY: 'timeline/play',
TIMELINE_PAUSE: 'timeline/pause',
TIMELINE_RESET: 'timeline/reset',
TIMELINE_DURATION_CHANGED: 'timeline/duration/changed',
SPACEBAR_PRESSED: 'keyboard/spacebar/pressed',
DELETE_PRESSED: 'keyboard/delete/pressed'
}; | JavaScript |
/**
* @autor itooamaneatguy http://kadrmasconcepts.com/blog/
* @author mr.doob / http://mrdoob.com/
*/
THREEFAB.AmbientLightContainer = function ( scene, hex) {
var geometry = new THREE.SphereGeometry( 6, 6, 6 ),
material = new THREE.MeshBasicMaterial( { color: 0xfff1a6, wireframe: true }),
mesh = new THREE.Mesh(geometry, material);
var lineGeometry = new THREE.Geometry();
lineGeometry.vertices.push( new THREE.Vertex() );
lineGeometry.vertices.push( new THREE.Vertex( new THREE.Vector3( 0, 15, 1 ) ) );
var lineMat = new THREE.LineBasicMaterial( { color : 0xFFFFFF } );
for(var i=0; i < 10; i++) {
var line = new THREE.Line( lineGeometry, lineMat);
line.rotation.z = -Math.PI * (i/10) * 2;
mesh.add( line );
}
mesh.name = "THREE.AmbientLightContainer." + mesh.id;
var light = new THREE.AmbientLight(hex);
light.name = 'THREE.AmbientLight';
// Link light position and rotation to the fake holder object.
light.position = mesh.position;
light.rotation = mesh.rotation;
mesh.light = light;
scene.add(mesh);
scene.add(light);
this.mesh = mesh;
}; | JavaScript |
/**
* @autor itooamaneatguy http://kadrmasconcepts.com/blog/
* @author mr.doob / http://mrdoob.com/
*/
THREEFAB.PointLightContainer = function ( scene, hex, intensity, distance ) {
var geometry = new THREE.SphereGeometry( 6, 6, 6 ),
material = new THREE.MeshBasicMaterial( { color: 0xfff1a6, wireframe: true }),
mesh = new THREE.Mesh(geometry, material);
var lineGeometry = new THREE.Geometry();
lineGeometry.vertices.push( new THREE.Vertex() );
lineGeometry.vertices.push( new THREE.Vertex( new THREE.Vector3( 0, 30, 1 ) ) );
var line = new THREE.Line( lineGeometry, new THREE.LineBasicMaterial( { color : 0xFFFFFF } ) );
line.rotation.z = - Math.PI;
mesh.add( line );
mesh.name = "THREE.PointLightContainer." + mesh.id;
var light = new THREE.PointLight(hex, intensity, distance);
light.name = 'THREE.PointLight';
// Link light position and rotation to the fake holder object.
light.position = mesh.position;
light.rotation = mesh.rotation;
mesh.light = light;
scene.add(mesh);
scene.add(light);
this.mesh = mesh;
}; | JavaScript |
/**
* @autor itooamaneatguy http://kadrmasconcepts.com/blog/
* @author mr.doob / http://mrdoob.com/
*/
THREEFAB.SpotLightContainer = function ( scene, hex, intensity, distance ) {
var geometry = new THREE.CylinderGeometry( 0, 12.5, 25, 16, 1 ),
material = new THREE.MeshBasicMaterial( { color: 0xfff1a6, wireframe: true }),
mesh = new THREE.Mesh(geometry, material);
var lineGeometry = new THREE.Geometry();
lineGeometry.vertices.push( new THREE.Vertex() );
lineGeometry.vertices.push( new THREE.Vertex( new THREE.Vector3( 0, 50, 1 ) ) );
var line = new THREE.Line( lineGeometry, new THREE.LineBasicMaterial( { color : 0xFFFFFF } ) );
line.rotation.z = -Math.PI;
mesh.add( line );
mesh.name = "THREE.SpotLightContainer." + mesh.id;
var light = new THREE.SpotLight(hex, intensity, distance, true);
light.name = 'THREE.SpotLight';
// Link light position and rotation to the fake holder object.
light.position = mesh.position;
light.rotation = mesh.rotation;
mesh.light = light;
scene.add(mesh);
scene.add(light);
this.mesh = mesh;
}; | JavaScript |
/**
* @author Eberhard Graether / http://egraether.com/
* @itooamaneatguy http://kadrmasconcepts.com/blog/
*/
THREE.ViewportControls = function ( object, domElement ) {
var _this = this,
STATE = { NONE : -1, ROTATE : 0, ZOOM : 1, PAN : 2 };
this.object = object;
this.domElement = ( domElement !== undefined ) ? domElement : document;
// API
this.enabled = true;
this.screen = { width: window.innerWidth, height: window.innerHeight, offsetLeft: 0, offsetTop: 0 };
this.radius = ( this.screen.width + this.screen.height ) / 4;
this.rotateSpeed = 1.0;
this.zoomSpeed = 1.2;
this.panSpeed = 0.3;
this.mouseWheelSpeed = 0.01;
this.noRotate = false;
this.noZoom = false;
this.noPan = false;
this.staticMoving = false;
this.dynamicDampingFactor = 0.2;
this.minDistance = 0;
this.maxDistance = Infinity;
this.keys = [ 65 /*A*/, 83 /*S*/, 68 /*D*/ ];
// internals
this.target = new THREE.Vector3( 0, 0, 0 );
var _keyPressed = false,
_state = STATE.NONE,
_eye = new THREE.Vector3(),
_rotateStart = new THREE.Vector3(),
_rotateEnd = new THREE.Vector3(),
_zoomStart = new THREE.Vector2(),
_zoomEnd = new THREE.Vector2(),
_panStart = new THREE.Vector2(),
_panEnd = new THREE.Vector2();
// methods
this.handleEvent = function ( event ) {
if ( typeof this[ event.type ] == 'function' ) {
this[ event.type ]( event );
}
};
this.getMouseOnScreen = function( clientX, clientY ) {
return new THREE.Vector2(
( clientX - _this.screen.offsetLeft ) / _this.radius * 0.5,
( clientY - _this.screen.offsetTop ) / _this.radius * 0.5
);
};
this.getMouseProjectionOnBall = function( clientX, clientY ) {
var mouseOnBall = new THREE.Vector3(
( clientX - _this.screen.width * 0.5 - _this.screen.offsetLeft ) / _this.radius,
( _this.screen.height * 0.5 + _this.screen.offsetTop - clientY ) / _this.radius,
0.0
);
var length = mouseOnBall.length();
if ( length > 1.0 ) {
mouseOnBall.normalize();
} else {
mouseOnBall.z = Math.sqrt( 1.0 - length * length );
}
_eye.copy( _this.object.position ).subSelf( _this.target );
var projection = _this.object.up.clone().setLength( mouseOnBall.y );
projection.addSelf( _this.object.up.clone().crossSelf( _eye ).setLength( mouseOnBall.x ) );
projection.addSelf( _eye.setLength( mouseOnBall.z ) );
return projection;
};
this.rotateCamera = function() {
var angle = Math.acos( _rotateStart.dot( _rotateEnd ) / _rotateStart.length() / _rotateEnd.length() );
if ( angle ) {
var axis = ( new THREE.Vector3() ).cross( _rotateStart, _rotateEnd ).normalize(),
quaternion = new THREE.Quaternion();
angle *= _this.rotateSpeed;
quaternion.setFromAxisAngle( axis, -angle );
quaternion.multiplyVector3( _eye );
quaternion.multiplyVector3( _this.object.up );
quaternion.multiplyVector3( _rotateEnd );
if ( _this.staticMoving ) {
_rotateStart = _rotateEnd;
} else {
quaternion.setFromAxisAngle( axis, angle * ( _this.dynamicDampingFactor - 1.0 ) );
quaternion.multiplyVector3( _rotateStart );
}
}
};
this.zoomCamera = function() {
var factor = 1.0 + ( _zoomEnd.y - _zoomStart.y ) * _this.zoomSpeed;
if ( factor !== 1.0 && factor > 0.0 ) {
_eye.multiplyScalar( factor );
if ( _this.staticMoving ) {
_zoomStart = _zoomEnd;
} else {
_zoomStart.y += ( _zoomEnd.y - _zoomStart.y ) * _this.dynamicDampingFactor;
}
}
};
this.panCamera = function() {
var mouseChange = _panEnd.clone().subSelf( _panStart );
if ( mouseChange.lengthSq() ) {
mouseChange.multiplyScalar( _eye.length() * _this.panSpeed );
var pan = _eye.clone().crossSelf( _this.object.up ).setLength( mouseChange.x );
pan.addSelf( _this.object.up.clone().setLength( mouseChange.y ) );
_this.object.position.addSelf( pan );
_this.target.addSelf( pan );
if ( _this.staticMoving ) {
_panStart = _panEnd;
} else {
_panStart.addSelf( mouseChange.sub( _panEnd, _panStart ).multiplyScalar( _this.dynamicDampingFactor ) );
}
}
};
this.checkDistances = function() {
if ( !_this.noZoom || !_this.noPan ) {
if ( _this.object.position.lengthSq() > _this.maxDistance * _this.maxDistance ) {
_this.object.position.setLength( _this.maxDistance );
}
if ( _eye.lengthSq() < _this.minDistance * _this.minDistance ) {
_this.object.position.add( _this.target, _eye.setLength( _this.minDistance ) );
}
}
};
this.update = function() {
_eye.copy( _this.object.position ).subSelf( this.target );
if ( !_this.noRotate ) {
_this.rotateCamera();
}
if ( !_this.noZoom ) {
_this.zoomCamera();
}
if ( !_this.noPan ) {
_this.panCamera();
}
_this.object.position.add( _this.target, _eye );
_this.checkDistances();
_this.object.lookAt( _this.target );
};
// listeners
function keydown( event ) {
if ( ! _this.enabled ) return;
if ( _state !== STATE.NONE ) {
return;
} else if ( event.keyCode === _this.keys[ STATE.ROTATE ] && !_this.noRotate ) {
_state = STATE.ROTATE;
} else if ( event.keyCode === _this.keys[ STATE.ZOOM ] && !_this.noZoom ) {
_state = STATE.ZOOM;
} else if ( event.keyCode === _this.keys[ STATE.PAN ] && !_this.noPan ) {
_state = STATE.PAN;
}
if ( _state !== STATE.NONE ) {
_keyPressed = true;
}
}
function keyup( event ) {
if ( ! _this.enabled ) return;
if ( _state !== STATE.NONE ) {
_state = STATE.NONE;
}
}
function mousedown( event ) {
if ( ! _this.enabled ) return;
event.preventDefault();
event.stopPropagation();
if ( _state === STATE.NONE ) {
_state = event.button;
if ( _state === STATE.ROTATE && !_this.noRotate ) {
_rotateStart = _rotateEnd = _this.getMouseProjectionOnBall( event.clientX, event.clientY );
} else if ( _state === STATE.ZOOM && !_this.noZoom ) {
_zoomStart = _zoomEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
} else if ( !_this.noPan ) {
_panStart = _panEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
}
}
}
function mousemove( event ) {
if ( ! _this.enabled ) return;
if ( _keyPressed ) {
_rotateStart = _rotateEnd = _this.getMouseProjectionOnBall( event.clientX, event.clientY );
_zoomStart = _zoomEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
_panStart = _panEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
_keyPressed = false;
}
if ( _state === STATE.NONE ) {
return;
} else if ( _state === STATE.ROTATE && !_this.noRotate ) {
_rotateEnd = _this.getMouseProjectionOnBall( event.clientX, event.clientY );
} else if ( _state === STATE.ZOOM && !_this.noZoom ) {
_zoomEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
} else if ( _state === STATE.PAN && !_this.noPan ) {
_panEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
}
}
function mouseup( event ) {
if ( ! _this.enabled ) return;
event.preventDefault();
event.stopPropagation();
_state = STATE.NONE;
}
this.domElement.addEventListener( 'contextmenu', function ( event ) { event.preventDefault(); }, false );
this.domElement.addEventListener( 'mousemove', mousemove, false );
this.domElement.addEventListener( 'mousedown', mousedown, false );
this.domElement.addEventListener( 'mouseup', mouseup, false );
window.addEventListener( 'keydown', keydown, false );
window.addEventListener( 'keyup', keyup, false );
/* MouseWheel: JQuery plugin */
$('body').bind('mousewheel', function(event, delta, deltaX, deltaY) {
var speed = delta * 0.75;
_zoomStart = _zoomEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
_zoomEnd = _this.getMouseOnScreen( event.clientX, event.clientY );
_zoomStart.y += delta;
_zoomEnd.y = _zoomStart.y + (speed * _this.mouseWheelSpeed);
});
};
| JavaScript |
/**
* @author itooamaneatguy / http://kadrmasconcepts.com/blog/
* @author mr.doob / http://mrdoob.com/
*/
THREE.ManipulatorTool = function () {
THREE.Object3D.call( this );
// Init
this.selected = {};
// setup geometery
var lineGeometry = new THREE.Geometry();
lineGeometry.vertices.push( new THREE.Vertex() );
lineGeometry.vertices.push( new THREE.Vertex( new THREE.Vector3( 0, 100, 0 ) ) );
var coneGeometry = new THREE.CylinderGeometry( 0, 5, 25, 5, 1 );
// x
var line = new THREE.Line( lineGeometry, new THREE.LineBasicMaterial( { color : 0xff0000 } ) );
line.rotation.z = - Math.PI / 2;
this.add( line );
this.xCone = new THREE.Mesh( coneGeometry, new THREE.MeshBasicMaterial( { color : 0xff0000 } ) );
this.xCone.name = "x_manipulator";
this.xCone.position.x = 100;
this.xCone.rotation.z = - Math.PI / 2;
this.add( this.xCone );
// y
var line = new THREE.Line( lineGeometry, new THREE.LineBasicMaterial( { color : 0x00ff00 } ) );
this.add( line );
this.yCone = new THREE.Mesh( coneGeometry, new THREE.MeshBasicMaterial( { color : 0x00ff00 } ) );
this.yCone.position.y = 100;
this.yCone.name = "y_manipulator";
this.add( this.yCone );
// z
var line = new THREE.Line( lineGeometry, new THREE.LineBasicMaterial( { color : 0x0000ff } ) );
line.rotation.x = Math.PI / 2;
this.add( line );
this.zCone = new THREE.Mesh( coneGeometry, new THREE.MeshBasicMaterial( { color : 0x0000ff } ) );
this.zCone.position.z = 100;
this.zCone.name = "z_manipulator";
this.zCone.rotation.x = Math.PI / 2;
this.add( this.zCone );
};
THREE.ManipulatorTool.prototype = new THREE.Object3D();
THREE.ManipulatorTool.prototype.constructor = THREE.ManipulatorTool;
| JavaScript |
/**
* @author itooamaneatguy / http://kadrmasconcepts.com/blog/
* @author mr.doob / http://mrdoob.com/
*/
THREE.Grid = function () {
THREE.Object3D.call( this );
/*var geometry = new THREE.Geometry();
geometry.vertices.push( new THREE.Vertex( new THREE.Vector3( - 500, 0, 0 ) ) );
geometry.vertices.push( new THREE.Vertex( new THREE.Vector3( 500, 0, 0 ) ) );
for ( var i = 0; i <= 20; i ++ ) {
var line = new THREE.Line( geometry, new THREE.LineBasicMaterial( { color: 0x000000, opacity: 0.2 } ) );
line.position.z = ( i * 50 ) - 500;
this.add( line );
var line = new THREE.Line( geometry, new THREE.LineBasicMaterial( { color: 0x000000, opacity: 0.2 } ) );
line.position.x = ( i * 50 ) - 500;
line.rotation.y = 90 * Math.PI / 180;
this.add( line );
}*/
var _grid = new THREE.Mesh( new THREE.PlaneGeometry( 1000, 1000, 20, 20 ), new THREE.MeshBasicMaterial( { color: 0x606060, wireframe: true, transparent: true } ) );
_grid.rotation.x = Math.PI / 2;
this.add(_grid);
var lineGeometry = new THREE.Geometry();
lineGeometry.vertices.push( new THREE.Vertex() );
lineGeometry.vertices.push( new THREE.Vertex( new THREE.Vector3( 0, 1000, 1 ) ) );
// x
var line = new THREE.Line( lineGeometry, new THREE.LineBasicMaterial( { color : 0xff0000 } ) );
line.rotation.z = - Math.PI / 2;
line.position.x = -500;
this.add( line );
//z
var line = new THREE.Line( lineGeometry, new THREE.LineBasicMaterial( { color : 0x0000ff } ) );
line.rotation.x = Math.PI / 2;
line.position.z = -500;
this.add( line );
};
THREE.Grid.prototype = new THREE.Object3D();
THREE.Grid.prototype.constructor = THREE.Grid; | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.