Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1245190
catalog.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 21, 5:30 AM
Size
8 KB
Mime Type
text/plain
Expires
Sun, Nov 23, 5:30 AM (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
809788
Attached To
rINP In-Portal
catalog.js
View Options
var
$is_catalog
=
true
;
function
Catalog
(
$url_mask
,
$cookie_prefix
)
{
this
.
CookiePrefix
=
$cookie_prefix
?
$cookie_prefix
:
''
;
this
.
BusyRequest
=
new
Array
();
this
.
URLMask
=
$url_mask
;
this
.
Separator
=
'#separator#'
;
this
.
ParentCategoryID
=
0
;
this
.
TabRegistry
=
new
Array
();
this
.
ActivePrefix
=
getCookie
(
this
.
CookiePrefix
+
'active_prefix'
);
this
.
PreviousPrefix
=
this
.
ActivePrefix
;
$ViewMenus
=
new
Array
(
'c'
);
}
Catalog
.
prototype
.
Init
=
function
()
{
var
$prefix
=
this
.
queryTabRegistry
(
'prefix'
,
this
.
ActivePrefix
,
'prefix'
);
if
(
$prefix
!==
this
.
ActivePrefix
&&
this
.
TabRegistry
.
length
>
1
)
{
// ActivePrefix not set or has non-existing prefix value
this
.
ActivePrefix
=
this
.
TabRegistry
[
1
][
'prefix'
];
}
this
.
SetAlternativeTabs
();
this
.
go_to_cat
();
}
Catalog
.
prototype
.
SetAlternativeTabs
=
function
()
{
// set alternative grids between all items (catalog is set when tab is loaded via AJAX first time)
var
$i
=
1
;
while
(
$i
<
this
.
TabRegistry
.
length
)
{
// run through all prefixes
var
$j
=
1
;
while
(
$j
<
this
.
TabRegistry
.
length
)
{
if
(
this
.
TabRegistry
[
$i
][
'prefix'
]
==
this
.
TabRegistry
[
$j
][
'prefix'
])
{
$j
++
;
continue
;
}
// and set alternative to all other prefixes
$GridManager
.
AddAlternativeGrid
(
this
.
TabRegistry
[
$i
][
'prefix'
],
this
.
TabRegistry
[
$j
][
'prefix'
]);
$j
++
;
}
$i
++
;
}
}
Catalog
.
prototype
.
submit_kernel_form
=
function
(
$tab_id
)
{
var
$prefix
=
this
.
queryTabRegistry
(
'tab_id'
,
$tab_id
,
'prefix'
);
var
$kf
=
document
.
getElementById
(
$form_name
);
Request
.
params
=
Request
.
serializeForm
(
$kf
);
Request
.
method
=
$kf
.
method
.
toUpperCase
();
this
.
BusyRequest
[
$prefix
]
=
false
;
Request
.
makeRequest
(
$kf
.
action
,
this
.
BusyRequest
[
$prefix
],
$tab_id
+
'_div'
,
this
.
successCallback
,
this
.
errorCallback
,
$tab_id
+
'_div'
,
this
);
$form_name
=
'kernel_form'
;
// restore back to main form with current category id of catalog
};
Catalog
.
prototype
.
successCallback
=
function
(
$request
,
$params
,
$object
)
{
var
$text
=
$request
.
responseText
;
if
(
$text
.
match
(
/^#redirect#(.*)/
))
{
// redirect to external template requested
window
.
location
.
href
=
RegExp
.
$1
;
return
false
;
}
$params
=
$params
.
split
(
','
);
var
$js_end
=
$text
.
indexOf
(
$object
.
Separator
);
if
(
$js_end
!=
-
1
)
{
document
.
getElementById
(
$params
[
0
]).
innerHTML
=
$text
.
substring
(
$js_end
+
$object
.
Separator
.
length
);
eval
(
$text
.
substring
(
0
,
$js_end
));
}
else
{
document
.
getElementById
(
$params
[
0
]).
innerHTML
=
$text
;
}
if
(
typeof
(
$Debugger
)
!=
'undefined'
)
{
$Debugger
.
Clear
();
}
}
Catalog
.
prototype
.
errorCallback
=
function
(
$request
,
$params
,
$object
)
{
alert
(
'AJAX ERROR: '
+
Request
.
getErrorHtml
(
$request
));
}
Catalog
.
prototype
.
submit_event
=
function
(
$prefix_special
,
$event
,
$t
)
{
if
(
!
isset
(
$prefix_special
))
$prefix_special
=
this
.
getCurrentPrefix
();
var
$tab_id
=
this
.
queryTabRegistry
(
'prefix'
,
$prefix_special
,
'tab_id'
);
$form_name
=
$tab_id
+
'_form'
;
// set firstly, because set_hidden_field uses it
if
(
isset
(
$event
))
set_hidden_field
(
'events['
+
$prefix_special
+
']'
,
$event
);
if
(
isset
(
$t
))
set_hidden_field
(
't'
,
$t
);
this
.
submit_kernel_form
(
$tab_id
);
}
Catalog
.
prototype
.
go_to_cat
=
function
(
$cat_id
)
{
if
(
!
isset
(
$cat_id
))
{
// gets current category
$cat_id
=
get_hidden_field
(
'm_cat_id'
);
}
else
{
// sets new category to kernel_form in case if item tab
// loads faster and will check if it's category is same
// as parent category of categories list
if
(
get_hidden_field
(
'm_cat_id'
)
==
$cat_id
)
{
// it's the same category, then don't reload category list
return
true
;
}
set_hidden_field
(
'm_cat_id'
,
$cat_id
);
}
// set all item tabs counters to "?" before quering catagories
var
$i
=
1
;
while
(
$i
<
this
.
TabRegistry
.
length
)
{
this
.
setItemCount
(
this
.
TabRegistry
[
$i
][
'prefix'
],
'?'
);
$i
++
;
}
// query sub categories of $cat_id
var
$url
=
this
.
URLMask
.
replace
(
'#TEMPLATE_NAME#'
,
'xml/categories_list'
).
replace
(
'#CATEGORY_ID#'
,
$cat_id
);
var
$prefix
=
this
.
TabRegistry
[
0
][
'prefix'
];
var
$tab_id
=
this
.
TabRegistry
[
0
][
'tab_id'
];
this
.
BusyRequest
[
$prefix
]
=
false
;
Request
.
makeRequest
(
$url
,
this
.
BusyRequest
[
$prefix
],
$tab_id
+
'_div'
,
this
.
successCallback
,
this
.
errorCallback
,
$tab_id
+
'_div'
,
this
);
this
.
switchTab
();
// refresh current item tab
}
Catalog
.
prototype
.
switchTab
=
function
(
$prefix
)
{
if
(
this
.
queryTabRegistry
(
'prefix'
,
this
.
ActivePrefix
,
'prefix'
)
!=
this
.
ActivePrefix
)
{
// active prefix is not registred -> cookie left, but not modules installed/enabled at the moment
return
false
;
}
if
(
!
isset
(
$prefix
))
$prefix
=
this
.
ActivePrefix
;
if
(
this
.
BusyRequest
[
$prefix
])
{
alert
(
'prefix: ['
+
$prefix
+
']; request busy: ['
+
this
.
BusyRequest
[
$prefix
]
+
']'
);
}
if
(
this
.
ActivePrefix
!=
$prefix
)
{
// hide source tab
this
.
PreviousPrefix
=
this
.
ActivePrefix
;
document
.
getElementById
(
this
.
PreviousPrefix
+
'_tab'
).
className
=
'catalog-tab-unselected'
;
document
.
getElementById
(
this
.
queryTabRegistry
(
'prefix'
,
this
.
PreviousPrefix
,
'tab_id'
)
+
'_div'
).
style
.
display
=
'none'
;
this
.
HideDependentButtons
(
this
.
PreviousPrefix
);
}
// show destination tab
this
.
ActivePrefix
=
$prefix
;
document
.
getElementById
(
this
.
ActivePrefix
+
'_tab'
).
className
=
'catalog-tab-selected'
;
var
$div_id
=
this
.
queryTabRegistry
(
'prefix'
,
this
.
ActivePrefix
,
'tab_id'
)
+
'_div'
;
// destination tab
document
.
getElementById
(
$div_id
).
style
.
display
=
'block'
;
this
.
ShowDependentButtons
(
this
.
ActivePrefix
);
this
.
setViewMenu
(
this
.
ActivePrefix
);
setCookie
(
this
.
CookiePrefix
+
'active_prefix'
,
this
.
ActivePrefix
);
// this.TabRegistry.length == 1
var
$cat_id
=
get_hidden_field
(
'm_cat_id'
);
var
$tab_cat_id
=
document
.
getElementById
(
$div_id
).
getAttribute
(
'category_id'
);
if
(
$cat_id
!=
$tab_cat_id
)
{
// query tab content only in case if not queried or category don't match
var
$url
=
this
.
URLMask
.
replace
(
'#TEMPLATE_NAME#'
,
this
.
queryTabRegistry
(
'prefix'
,
$prefix
,
'module_path'
)
+
'/catalog_tab'
);
$url
=
$url
.
replace
(
'#CATEGORY_ID#'
,
$cat_id
);
this
.
BusyRequest
[
$prefix
]
=
false
;
Request
.
makeRequest
(
$url
,
this
.
BusyRequest
[
$prefix
],
$div_id
,
this
.
successCallback
,
this
.
errorCallback
,
$div_id
,
this
);
}
/*else {
alert('refresh disabled = {tab: '+this.ActivePrefix+'; cat_id: '+$cat_id+'}');
}*/
}
// adds information about tab to tab_registry
Catalog
.
prototype
.
registerTab
=
function
(
$tab_id
)
{
var
$tab
=
document
.
getElementById
(
$tab_id
+
'_div'
);
var
$index
=
this
.
TabRegistry
.
length
;
this
.
TabRegistry
[
$index
]
=
new
Array
();
this
.
TabRegistry
[
$index
][
'tab_id'
]
=
$tab_id
;
this
.
TabRegistry
[
$index
][
'prefix'
]
=
$tab
.
getAttribute
(
'prefix'
);
this
.
TabRegistry
[
$index
][
'module_path'
]
=
$tab
.
getAttribute
(
'edit_template'
).
substring
(
0
,
$tab
.
getAttribute
(
'edit_template'
).
indexOf
(
'/'
));
this
.
TabRegistry
[
$index
][
'view_template'
]
=
$tab
.
getAttribute
(
'view_template'
);
this
.
TabRegistry
[
$index
][
'edit_template'
]
=
$tab
.
getAttribute
(
'edit_template'
);
this
.
TabRegistry
[
$index
][
'dep_buttons'
]
=
$tab
.
getAttribute
(
'dep_buttons'
).
split
(
','
);
this
.
TabRegistry
[
$index
][
'index'
]
=
$index
;
}
// allows to get any information about tab
Catalog
.
prototype
.
queryTabRegistry
=
function
(
$search_key
,
$search_value
,
$return_key
)
{
var
$i
=
0
;
while
(
$i
<
this
.
TabRegistry
.
length
)
{
if
(
this
.
TabRegistry
[
$i
][
$search_key
]
==
$search_value
)
{
return
this
.
TabRegistry
[
$i
][
$return_key
];
break
;
}
$i
++
;
}
return
false
;
}
Catalog
.
prototype
.
ShowDependentButtons
=
function
(
$prefix
)
{
var
$dep_buttons
=
this
.
queryTabRegistry
(
'prefix'
,
$prefix
,
'dep_buttons'
);
var
$i
=
0
;
while
(
$i
<
$dep_buttons
.
length
)
{
a_toolbar
.
ShowButton
(
$dep_buttons
[
$i
]);
$i
++
;
}
}
Catalog
.
prototype
.
HideDependentButtons
=
function
(
$prefix
)
{
var
$dep_buttons
=
this
.
queryTabRegistry
(
'prefix'
,
$prefix
,
'dep_buttons'
);
var
$i
=
0
;
while
(
$i
<
$dep_buttons
.
length
)
{
a_toolbar
.
HideButton
(
$dep_buttons
[
$i
]);
$i
++
;
}
}
Catalog
.
prototype
.
setItemCount
=
function
(
$prefix
,
$count
)
{
setInnerHTML
(
$prefix
+
'_item_count'
,
$count
);
}
Catalog
.
prototype
.
getCurrentPrefix
=
function
()
{
if
(
isset
(
Grids
[
this
.
ActivePrefix
])
&&
(
Grids
[
this
.
ActivePrefix
].
SelectedCount
>
0
))
{
// item tab grid exists and some items are selected
return
this
.
ActivePrefix
;
}
else
{
// return prefix of first registred tab -> categories
return
this
.
TabRegistry
[
0
][
'prefix'
];
}
}
Catalog
.
prototype
.
setViewMenu
=
function
(
$item_prefix
)
{
$ViewMenus
=
isset
(
$item_prefix
)
?
new
Array
(
'c'
,
$item_prefix
)
:
new
Array
(
'c'
);
}
Event Timeline
Log In to Comment