-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
83 lines (66 loc) · 2.04 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
define([
'core/origin',
'./views/editJsonView',
'./views/editJsonSidebarView',
'./models/editJsonModel'
], function (
Origin,
EditJsonView,
EditJsonSidebarView,
EditJsonModel
) {
'use strict';
var supportedElms = ['article','block','component','page','menu'];
var parentView = null;
var eventName = '';
Origin.on('origin:dataReady login:changed', function() {
_.defer(addItems);
});
Origin.on('contextMenu:open', function(view, event) {
var type = view.model.get('_type');
if (supportedElms.indexOf(type) === -1) return;
if (parentView) {
removeEvent();
}
parentView = view;
eventName = 'contextMenu:'+type+':editJson';
setupEvent();
});
Origin.on('contextMenu:closed', function() {
removeEvent();
});
function addItems() {
supportedElms.forEach(function(item) {
Origin.contextMenu.addItem(item, {
title: 'Edit JSON',
className: 'context-menu-item',
callbackEvent: 'editJson'
});
});
}
function setupEvent() {
parentView.on(eventName, editJson);
}
function removeEvent() {
if (!parentView) return;
parentView.off(eventName, editJson);
parentView = null;
eventName = '';
}
function editJson() {
var type = parentView.model.get('_type');
var id = parentView.model.get('_id');
Origin.router.navigateTo('editjson/'+type+'/'+id);
}
Origin.on('router:editjson', function(location, subLocation, action) {
Origin.trigger('location:title:update', {title: 'Edit raw JSON content for: '+ location});
var editJsonModel = new EditJsonModel({
'_editType': location,
'_editId': subLocation
});
Origin.sidebar.addView(new EditJsonSidebarView().$el);
Origin.contentPane.setView(EditJsonView, {
model: editJsonModel
});
});
});