Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1429840
ve.ui.CollabProcessDialog.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
6 KB
Referenced Files
None
Subscribers
None
ve.ui.CollabProcessDialog.js
View Options
/**
* CollabProcessDialog - Dialog for hosting or joining a collab session
*
* @param {Object} [config] Configuration options
*/
ve
.
ui
.
CollabProcessDialog
=
function
VeUiCollabProcessDialog
(
config
)
{
ve
.
ui
.
CollabProcessDialog
.
super
.
call
(
this
,
config
);
};
OO
.
inheritClass
(
ve
.
ui
.
CollabProcessDialog
,
OO
.
ui
.
ProcessDialog
);
ve
.
ui
.
CollabProcessDialog
.
static
.
name
=
null
;
ve
.
ui
.
CollabProcessDialog
.
static
.
title
=
OO
.
ui
.
deferMsg
(
'visualeditor-collab-dialog-title'
);
ve
.
ui
.
CollabProcessDialog
.
static
.
imageUri
=
'data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTAiIGhlaWdodD0iMTUwIiBzdHlsZT0ic3Ryb2tlOiNjY2NjY2M7c3Ryb2tlLXdpZHRoOjY7c3Ryb2tlLWxpbmVjYXA6cm91bmQiPg0KIDxyZWN0IHN0eWxlPSJmaWxsOndoaXRlO3N0cm9rZTp3aGl0ZSIgd2lkdGg9IjI1MCIgaGVpZ2h0PSIxNTAiIC8+DQogPHBhdGggZD0iTSAzMCwzMEggNzciIC8+DQogPHBhdGggZD0iTSA5MCwzMEggMTM0IiAvPg0KIDxwYXRoIGQ9Ik0gMTQ3LDMwSCAyMjAiIC8+DQogPHBhdGggZD0iTSAzMCw1MEggMTY4IiBzdHlsZT0ic3Ryb2tlOiNmZmNiMzMiIC8+DQogPHBhdGggZD0iTSAxODAsNTBIIDIyMCIgLz4NCiA8cGF0aCBkPSJNIDMwLDcwSCAxMTUiIHN0eWxlPSJzdHJva2U6I2U4NTdjOCIgLz4NCiA8cGF0aCBkPSJNIDEyOCw3MEggMjIwIiAvPg0KIDxwYXRoIGQ9Ik0gMzAsOTBIIDQ3IiAvPg0KIDxwYXRoIGQ9Ik0gNjAsOTBIIDEzOCIgLz4NCiA8cGF0aCBkPSJNIDE1MSw5MEggMjIwIiBzdHlsZT0ic3Ryb2tlOiMwMGFmODkiIC8+DQogPHBhdGggZD0iTSAzMCwxMTBIIDIyMCIgLz4NCiA8cGF0aCBkPSJNIDMwLDEzMEggOTgiIC8+DQogPHBhdGggZD0iTSAxMTEsMTMwSCAyMjAiIC8+DQo8L3N2Zz4='
;
ve
.
ui
.
CollabProcessDialog
.
static
.
actions
=
[
{
label
:
OO
.
ui
.
deferMsg
(
'visualeditor-dialog-action-done'
),
flags
:
[
'safe'
,
'close'
]
}
];
ve
.
ui
.
CollabProcessDialog
.
prototype
.
initialize
=
function
()
{
ve
.
ui
.
CollabProcessDialog
.
super
.
prototype
.
initialize
.
apply
(
this
,
arguments
);
this
.
stack
=
new
OO
.
ui
.
StackLayout
(
{
expanded
:
false
}
);
this
.
initPanel
=
new
OO
.
ui
.
PanelLayout
(
{
padded
:
true
,
expanded
:
false
}
);
this
.
userNameInput
=
new
OO
.
ui
.
TextInputWidget
(
{
value
:
ve
.
init
.
platform
.
getUserName
()
}
);
const
userNameField
=
new
OO
.
ui
.
FieldLayout
(
this
.
userNameInput
,
{
label
:
ve
.
msg
(
'visualeditor-rebase-client-author-name'
),
align
:
'left'
}
);
this
.
initButton
=
new
OO
.
ui
.
ButtonWidget
(
{
flags
:
[
'primary'
,
'progressive'
]
}
);
this
.
initButton
.
$element
[
0
].
style
.
display
=
'block'
;
this
.
initButton
.
$element
[
0
].
firstElementChild
.
style
.
minWidth
=
'100%'
;
const
initButtonField
=
new
OO
.
ui
.
FieldLayout
(
this
.
initButton
);
this
.
$summary
=
$
(
'<p>'
);
this
.
initPanel
.
$element
.
append
(
$
(
'<img>'
).
prop
(
'src'
,
ve
.
ui
.
CollabProcessDialog
.
static
.
imageUri
)
.
attr
(
{
width
:
250
,
height
:
150
}
)
.
css
(
{
display
:
'block'
,
margin
:
'2em auto'
}
),
this
.
$summary
.
css
(
{
'font-weight'
:
'bold'
}
),
$
(
'<p>'
).
text
(
ve
.
msg
(
'visualeditor-collab-dialog-sharing'
)
),
$
(
'<p>'
).
text
(
ve
.
msg
(
'visualeditor-collab-dialog-sessionend'
)
),
$
(
'<p>'
).
text
(
ve
.
msg
(
'visualeditor-collab-dialog-privacy'
)
),
userNameField
.
$element
,
initButtonField
.
$element
);
this
.
stack
.
addItems
(
[
this
.
initPanel
]
);
this
.
$body
.
append
(
this
.
stack
.
$element
);
this
.
initButton
.
connect
(
this
,
{
click
:
'onButtonClick'
}
);
};
ve
.
ui
.
CollabProcessDialog
.
prototype
.
getBodyHeight
=
function
()
{
return
this
.
stack
.
$element
.
outerHeight
(
true
);
};
ve
.
ui
.
CollabProcessDialog
.
prototype
.
onButtonClick
=
function
()
{
this
.
close
(
{
action
:
'accept'
,
userName
:
this
.
userNameInput
.
getValue
()
}
);
};
ve
.
ui
.
CollabProcessDialog
.
prototype
.
getReadyProcess
=
function
(
data
)
{
return
ve
.
ui
.
CollabProcessDialog
.
super
.
prototype
.
getReadyProcess
.
call
(
this
,
data
)
.
next
(
function
()
{
switch
(
this
.
stack
.
getCurrentItem
()
)
{
case
this
.
initPanel
:
if
(
!
this
.
userNameInput
.
getValue
()
)
{
this
.
userNameInput
.
focus
();
}
else
{
this
.
initButton
.
focus
();
}
break
;
case
this
.
copyPanel
:
this
.
copyTextLayout
.
button
.
focus
();
break
;
}
},
this
);
};
/**
* HostCollabProcessDialog - Dialog for hosting a new collab session
*
* @param {Object} [config] Configuration options
*/
ve
.
ui
.
HostCollabProcessDialog
=
function
VeUiHostCollabProcessDialog
(
config
)
{
ve
.
ui
.
HostCollabProcessDialog
.
super
.
call
(
this
,
config
);
};
OO
.
inheritClass
(
ve
.
ui
.
HostCollabProcessDialog
,
ve
.
ui
.
CollabProcessDialog
);
ve
.
ui
.
HostCollabProcessDialog
.
static
.
name
=
'hostCollabDialog'
;
ve
.
ui
.
HostCollabProcessDialog
.
prototype
.
initialize
=
function
()
{
ve
.
ui
.
HostCollabProcessDialog
.
super
.
prototype
.
initialize
.
apply
(
this
,
arguments
);
this
.
initButton
.
setLabel
(
ve
.
msg
(
'visualeditor-collab-hostbutton-label'
)
);
this
.
initButton
.
setIcon
(
'userAdd'
);
this
.
$summary
.
text
(
ve
.
msg
(
'visualeditor-collab-dialog-summary-host'
)
);
this
.
copyPanel
=
new
OO
.
ui
.
PanelLayout
(
{
padded
:
true
,
expanded
:
false
}
);
this
.
afterCopyButton
=
new
OO
.
ui
.
ButtonWidget
(
{
flags
:
[
'primary'
,
'progressive'
],
label
:
ve
.
msg
(
'visualeditor-dialog-action-done'
)
}
);
this
.
copyTextLayout
=
new
OO
.
ui
.
CopyTextLayout
();
this
.
copyPanel
.
$element
.
append
(
new
OO
.
ui
.
FieldsetLayout
(
{
label
:
ve
.
msg
(
'visualeditor-collab-copy-title'
),
items
:
[
this
.
copyTextLayout
,
new
OO
.
ui
.
FieldLayout
(
this
.
afterCopyButton
)
]
}
).
$element
);
this
.
stack
.
addItems
(
[
this
.
copyPanel
]
);
this
.
afterCopyButton
.
on
(
'click'
,
this
.
close
.
bind
(
this
)
);
};
ve
.
ui
.
HostCollabProcessDialog
.
prototype
.
onButtonClick
=
function
()
{
this
.
initButton
.
setDisabled
(
true
);
this
.
pushPending
();
ve
.
collab
.
initPeerServer
(
this
.
userNameInput
.
getValue
()
);
const
collabUrl
=
new
URL
(
location
.
href
);
collabUrl
.
searchParams
.
delete
(
'action'
);
collabUrl
.
searchParams
.
set
(
'veaction'
,
ve
.
init
.
target
.
getSurface
().
getMode
()
===
'source'
?
'editsource'
:
'edit'
);
ve
.
collab
.
peerServer
.
peer
.
on
(
'open'
,
(
newId
)
=>
{
collabUrl
.
searchParams
.
set
(
'collabSession'
,
newId
);
this
.
copyTextLayout
.
textInput
.
setValue
(
collabUrl
);
this
.
stack
.
setItem
(
this
.
copyPanel
);
this
.
updateSize
();
this
.
copyTextLayout
.
button
.
focus
();
this
.
popPending
();
}
);
};
ve
.
ui
.
windowFactory
.
register
(
ve
.
ui
.
HostCollabProcessDialog
);
/**
* JoinCollabProcessDialog - Dialog for joining an existing collab session
*
* @param {Object} [config] Configuration options
*/
ve
.
ui
.
JoinCollabProcessDialog
=
function
VeUiJoinCollabProcessDialog
(
config
)
{
ve
.
ui
.
JoinCollabProcessDialog
.
super
.
call
(
this
,
config
);
};
OO
.
inheritClass
(
ve
.
ui
.
JoinCollabProcessDialog
,
ve
.
ui
.
CollabProcessDialog
);
ve
.
ui
.
JoinCollabProcessDialog
.
static
.
name
=
'joinCollabDialog'
;
ve
.
ui
.
JoinCollabProcessDialog
.
prototype
.
initialize
=
function
()
{
ve
.
ui
.
JoinCollabProcessDialog
.
super
.
prototype
.
initialize
.
apply
(
this
,
arguments
);
this
.
initButton
.
setLabel
(
ve
.
msg
(
'visualeditor-collab-joinbutton-label'
)
);
this
.
initButton
.
setIcon
(
'userGroup'
);
this
.
$summary
.
text
(
ve
.
msg
(
'visualeditor-collab-dialog-summary-join'
)
);
};
ve
.
ui
.
windowFactory
.
register
(
ve
.
ui
.
JoinCollabProcessDialog
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, May 16, 18:05 (9 h, 7 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
40/4f/51718320f40ec2c2483fb8af297d
Default Alt Text
ve.ui.CollabProcessDialog.js (6 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment