@oasisomniverse/react 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -0
- package/package.json +72 -0
- package/src/components/App.js +504 -0
- package/src/components/ForgetPassword.js +126 -0
- package/src/components/Login.js +222 -0
- package/src/components/ResetPassword.js +176 -0
- package/src/components/Signup.js +285 -0
- package/src/components/VerifyEmail.js +68 -0
- package/src/components/common/AvatarConnect.jsx +89 -0
- package/src/components/common/Contact.jsx +60 -0
- package/src/components/common/Eggs.jsx +50 -0
- package/src/components/common/Game.jsx +36 -0
- package/src/components/common/HyperDrive.jsx +50 -0
- package/src/components/common/KarmaToast.jsx +38 -0
- package/src/components/common/Map.jsx +42 -0
- package/src/components/common/MenuMessage.jsx +70 -0
- package/src/components/common/Messaging.jsx +74 -0
- package/src/components/common/Mission.jsx +40 -0
- package/src/components/common/NFT.jsx +42 -0
- package/src/components/common/NavBar.jsx +52 -0
- package/src/components/common/Navbar.js +137 -0
- package/src/components/common/OApp.jsx +41 -0
- package/src/components/common/ONET.jsx +50 -0
- package/src/components/common/ONODE.jsx +49 -0
- package/src/components/common/OasisModal.css +9 -0
- package/src/components/common/OasisModal.jsx +29 -0
- package/src/components/common/ProviderDropdown.js +25 -0
- package/src/components/common/ProviderDropdown.jsx +61 -0
- package/src/components/common/Providers.jsx +38 -0
- package/src/components/common/Quest.jsx +40 -0
- package/src/components/common/SearchAvatars.jsx +49 -0
- package/src/components/common/Seeds.jsx +39 -0
- package/src/components/common/Settings.jsx +70 -0
- package/src/components/common/StarField.jsx +56 -0
- package/src/components/common/Wallet.jsx +45 -0
- package/src/components/common/message/MessageContacts.jsx +66 -0
- package/src/components/common/message/Messages.jsx +75 -0
- package/src/components/common/sidebar/Sidebar.jsx +27 -0
- package/src/components/common/sidebar/SidebarData.js +615 -0
- package/src/components/common/sidebar/SidebarMenuItem.jsx +79 -0
- package/src/components/index.js +26 -0
- package/src/components/pages/forgotPassword.js +47 -0
- package/src/components/popups/avatar/components/AvatarWallet.jsx +169 -0
- package/src/components/popups/avatar/components/EditAvatar.jsx +34 -0
- package/src/components/popups/avatar/components/SearchAvatar.jsx +34 -0
- package/src/components/popups/avatar/components/ViewAvatar.jsx +148 -0
- package/src/components/popups/avatar/index.jsx +39 -0
- package/src/components/popups/comingsoon/ComingSoon.jsx +28 -0
- package/src/components/popups/confirmation/Confirmation.js +30 -0
- package/src/components/popups/contact/index.js +100 -0
- package/src/components/popups/data-screen/components/AddData.jsx +89 -0
- package/src/components/popups/data-screen/components/CrossChainManagement.jsx +87 -0
- package/src/components/popups/data-screen/components/LoadData.jsx +157 -0
- package/src/components/popups/data-screen/components/ManageData.jsx +34 -0
- package/src/components/popups/data-screen/components/OffChainManagement.jsx +177 -0
- package/src/components/popups/data-screen/components/SearchData.jsx +34 -0
- package/src/components/popups/data-screen/index.jsx +52 -0
- package/src/components/popups/eggs/components/ManageEggs.jsx +34 -0
- package/src/components/popups/eggs/components/SearchEggs.jsx +34 -0
- package/src/components/popups/eggs/components/ViewEggs.jsx +34 -0
- package/src/components/popups/eggs/index.jsx +31 -0
- package/src/components/popups/game/components/SearchProfiles.jsx +34 -0
- package/src/components/popups/game/components/ViewAchievements.jsx +34 -0
- package/src/components/popups/game/components/ViewLeagues.jsx +34 -0
- package/src/components/popups/game/components/ViewTournaments.jsx +34 -0
- package/src/components/popups/game/index.jsx +38 -0
- package/src/components/popups/karma/components/SearchKarma.jsx +34 -0
- package/src/components/popups/karma/components/ViewAvatarKarma.jsx +139 -0
- package/src/components/popups/karma/components/ViewKarma.jsx +103 -0
- package/src/components/popups/karma/components/VoteKarma.jsx +34 -0
- package/src/components/popups/karma/index.jsx +34 -0
- package/src/components/popups/map/components/Add2dObjectMap.jsx +34 -0
- package/src/components/popups/map/components/Add3dObjectMap.jsx +34 -0
- package/src/components/popups/map/components/AddQuestToMap.jsx +34 -0
- package/src/components/popups/map/components/DownloadOurWorld.jsx +34 -0
- package/src/components/popups/map/components/ManageMap.jsx +34 -0
- package/src/components/popups/map/components/PlotRouteOnMap.jsx +34 -0
- package/src/components/popups/map/components/SearchMap.jsx +34 -0
- package/src/components/popups/map/components/ViewGlobal3dMap.jsx +34 -0
- package/src/components/popups/map/components/ViewHalonsOnMap.jsx +34 -0
- package/src/components/popups/map/components/ViewOappOnMap.jsx +34 -0
- package/src/components/popups/map/components/ViewQuestOnMap.jsx +34 -0
- package/src/components/popups/map/index.jsx +79 -0
- package/src/components/popups/messages/Message.jsx +86 -0
- package/src/components/popups/mission/components/ManageMission.jsx +34 -0
- package/src/components/popups/mission/components/SearchMission.jsx +34 -0
- package/src/components/popups/mission/components/ViewMission.jsx +34 -0
- package/src/components/popups/mission/index.jsx +32 -0
- package/src/components/popups/nft/ContactPopup.jsx +146 -0
- package/src/components/popups/nft/Solana.jsx +70 -0
- package/src/components/popups/nft/components/ManageOasisNft.jsx +34 -0
- package/src/components/popups/nft/components/PurchaseOasisNft.jsx +34 -0
- package/src/components/popups/nft/components/PurchaseOasisVirtualLandNft.jsx +34 -0
- package/src/components/popups/nft/components/SearchOasisNft.jsx +34 -0
- package/src/components/popups/nft/components/ViewOasisNft.jsx +34 -0
- package/src/components/popups/nft/index.jsx +45 -0
- package/src/components/popups/oapp/components/CreateOAPP.jsx +34 -0
- package/src/components/popups/oapp/components/DeployOAPP.jsx +34 -0
- package/src/components/popups/oapp/components/DownloadOurWorld.jsx +34 -0
- package/src/components/popups/oapp/components/EditOAPP.jsx +34 -0
- package/src/components/popups/oapp/components/InstallOAPP.jsx +34 -0
- package/src/components/popups/oapp/components/LaunchOAPP.jsx +34 -0
- package/src/components/popups/oapp/components/ManageOAPP.jsx +68 -0
- package/src/components/popups/oapp/components/SearchOAPP.jsx +34 -0
- package/src/components/popups/oapp/index.jsx +62 -0
- package/src/components/popups/provider/components/ActivityPub.jsx +34 -0
- package/src/components/popups/provider/components/CompareProviderSpeeds.jsx +123 -0
- package/src/components/popups/provider/components/Eosio.jsx +34 -0
- package/src/components/popups/provider/components/Ethereum.jsx +34 -0
- package/src/components/popups/provider/components/Holochain.jsx +34 -0
- package/src/components/popups/provider/components/Ipfs.jsx +35 -0
- package/src/components/popups/provider/components/ManageAutoFailOver.jsx +34 -0
- package/src/components/popups/provider/components/ManageAutoReplicaton.jsx +34 -0
- package/src/components/popups/provider/components/ManageLoadBalancing.jsx +34 -0
- package/src/components/popups/provider/components/ManageProviders.jsx +34 -0
- package/src/components/popups/provider/components/MongoDb.jsx +34 -0
- package/src/components/popups/provider/components/Neo4j.jsx +34 -0
- package/src/components/popups/provider/components/SearchProviders.jsx +122 -0
- package/src/components/popups/provider/components/Seeds.jsx +34 -0
- package/src/components/popups/provider/components/Solid.jsx +34 -0
- package/src/components/popups/provider/components/SqlLite.jsx +34 -0
- package/src/components/popups/provider/components/ThreeFold.jsx +34 -0
- package/src/components/popups/provider/components/ViewProviderStats.jsx +123 -0
- package/src/components/popups/provider/components/ViewProviders.jsx +121 -0
- package/src/components/popups/provider/index.jsx +113 -0
- package/src/components/popups/quest/components/ManageQuest.jsx +34 -0
- package/src/components/popups/quest/components/SearchQuest.jsx +34 -0
- package/src/components/popups/quest/components/ViewQuest.jsx +34 -0
- package/src/components/popups/quest/index.jsx +32 -0
- package/src/components/popups/seeds/components/AcceptInvite.jsx +61 -0
- package/src/components/popups/seeds/components/DonateSeeds.jsx +178 -0
- package/src/components/popups/seeds/components/ManageSeeds.jsx +34 -0
- package/src/components/popups/seeds/components/PayWithSeeds.jsx +233 -0
- package/src/components/popups/seeds/components/RewardSeeds.jsx +178 -0
- package/src/components/popups/seeds/components/SearchSeeds.jsx +91 -0
- package/src/components/popups/seeds/components/SendInvite.jsx +178 -0
- package/src/components/popups/seeds/components/ViewOrganizations.jsx +178 -0
- package/src/components/popups/seeds/components/ViewSeeds.jsx +221 -0
- package/src/components/popups/seeds/index.jsx +70 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import React from "react"
|
|
2
|
+
|
|
3
|
+
class Messages extends React.Component {
|
|
4
|
+
constructor(props) {
|
|
5
|
+
super(props)
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
render(){
|
|
9
|
+
return (
|
|
10
|
+
<div class="mesgs">
|
|
11
|
+
<div class="msg_history">
|
|
12
|
+
{this.props.messageList.map((message)=>(<>
|
|
13
|
+
{message.from === 'me' ? (
|
|
14
|
+
<div class="outgoing_msg">
|
|
15
|
+
<div class="sent_msg">
|
|
16
|
+
<p>
|
|
17
|
+
{message.message}
|
|
18
|
+
</p>
|
|
19
|
+
<span class="time_date">
|
|
20
|
+
{" "}
|
|
21
|
+
{message.date}
|
|
22
|
+
</span>{" "}
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
) : (
|
|
26
|
+
<div class="incoming_msg">
|
|
27
|
+
<div class="incoming_msg_img">
|
|
28
|
+
{" "}
|
|
29
|
+
<img
|
|
30
|
+
src={message.img}
|
|
31
|
+
alt={message.name}
|
|
32
|
+
/>{" "}
|
|
33
|
+
</div>
|
|
34
|
+
<div class="received_msg">
|
|
35
|
+
<div class="received_withd_msg">
|
|
36
|
+
<p>
|
|
37
|
+
{message.message}
|
|
38
|
+
</p>
|
|
39
|
+
<span class="time_date">
|
|
40
|
+
{" "}
|
|
41
|
+
{message.date}
|
|
42
|
+
</span>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
)}</>
|
|
47
|
+
))}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
</div>
|
|
52
|
+
<div class="type_msg">
|
|
53
|
+
<div class="input_msg_write">
|
|
54
|
+
<input
|
|
55
|
+
type="text"
|
|
56
|
+
class="write_msg"
|
|
57
|
+
placeholder="Type a message"
|
|
58
|
+
/>
|
|
59
|
+
<button
|
|
60
|
+
class="msg_send_btn"
|
|
61
|
+
type="button"
|
|
62
|
+
>
|
|
63
|
+
<i
|
|
64
|
+
class="fa fa-paper-plane-o"
|
|
65
|
+
aria-hidden="true"
|
|
66
|
+
></i>
|
|
67
|
+
</button>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
)
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export default Messages
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import data from './SidebarData';
|
|
3
|
+
import SidebarMenuItem from './SidebarMenuItem';
|
|
4
|
+
|
|
5
|
+
class Sidebar extends React.Component {
|
|
6
|
+
|
|
7
|
+
render() {
|
|
8
|
+
return (
|
|
9
|
+
<div className={`sidebar ${this.props.showSidebar ? "sidebar-show" : ""}`}>
|
|
10
|
+
<ul className="sidebar-list">
|
|
11
|
+
{
|
|
12
|
+
data.map((item, index) =>
|
|
13
|
+
<SidebarMenuItem
|
|
14
|
+
key={index}
|
|
15
|
+
item={item}
|
|
16
|
+
hideSideNav={this.props.toggleSidebar}
|
|
17
|
+
toggleScreenPopup={this.props.toggleScreenPopup}
|
|
18
|
+
/>
|
|
19
|
+
)
|
|
20
|
+
}
|
|
21
|
+
</ul>
|
|
22
|
+
</div>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export default Sidebar;
|
|
@@ -0,0 +1,615 @@
|
|
|
1
|
+
const SidebarData = [
|
|
2
|
+
{
|
|
3
|
+
id: 1,
|
|
4
|
+
name: "the oasis",
|
|
5
|
+
show: false,
|
|
6
|
+
subMenu: [
|
|
7
|
+
{
|
|
8
|
+
id: 1,
|
|
9
|
+
name: "about",
|
|
10
|
+
path: 'https://drive.google.com/file/d/1nnhGpXcprr6kota1Y85HDDKsBfJHN6sn/view?usp=sharing',
|
|
11
|
+
externalLink: true
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
id: 2,
|
|
15
|
+
name: "documentation",
|
|
16
|
+
path: 'https://github.com/NextGenSoftwareUK/Our-World-OASIS-API-HoloNET-HoloUnity-And-.NET-HDK',
|
|
17
|
+
externalLink: true
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
id: 3,
|
|
21
|
+
name: "our world",
|
|
22
|
+
path: 'http://www.ourworldthegame.com/',
|
|
23
|
+
externalLink: true
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
id: 2,
|
|
29
|
+
name: "avatar",
|
|
30
|
+
show: false,
|
|
31
|
+
subMenu: [
|
|
32
|
+
{
|
|
33
|
+
id: 1,
|
|
34
|
+
name: "View Avatar",
|
|
35
|
+
popupName: "viewAvatar",
|
|
36
|
+
loginRequired: true
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
id: 2,
|
|
40
|
+
name: "Edit Avatar",
|
|
41
|
+
popupName: "editAvatar",
|
|
42
|
+
loginRequired: true
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
id: 3,
|
|
46
|
+
name: "Search Avatars",
|
|
47
|
+
popupName: "searchAvatar",
|
|
48
|
+
loginRequired: false
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
id: 4,
|
|
52
|
+
name: "Avatar Wallet",
|
|
53
|
+
popupName: "avatarWallet",
|
|
54
|
+
loginRequired: true
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
id: 3,
|
|
60
|
+
name: "karma",
|
|
61
|
+
subMenu: [
|
|
62
|
+
{
|
|
63
|
+
id: 1,
|
|
64
|
+
name: "View Curent Karma Weightings",
|
|
65
|
+
popupName: "viewKarmaWeightings",
|
|
66
|
+
loginRequired: false
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
id: 2,
|
|
70
|
+
name: "Vote For Karma Weightings",
|
|
71
|
+
popupName: 'voteKarma',
|
|
72
|
+
loginRequired: false
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
id: 3,
|
|
76
|
+
name: "View Avatar Karma",
|
|
77
|
+
popupName: 'viewAvatarKarma',
|
|
78
|
+
loginRequired: false
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
id: 4,
|
|
82
|
+
name: "View/Search Karma Akashic Records",
|
|
83
|
+
popupName: 'searchKarma',
|
|
84
|
+
loginRequired: false
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
id: 4,
|
|
90
|
+
name: "data",
|
|
91
|
+
subMenu: [
|
|
92
|
+
{
|
|
93
|
+
id: 1,
|
|
94
|
+
|
|
95
|
+
name: "Load Data",
|
|
96
|
+
popupName: "loadData",
|
|
97
|
+
loginRequired: true
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
id: 2,
|
|
101
|
+
name: "Send Data",
|
|
102
|
+
popupName: "sendData",
|
|
103
|
+
loginRequired: true
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
id: 3,
|
|
107
|
+
name: "Manage Data",
|
|
108
|
+
popupName: "manageData",
|
|
109
|
+
loginRequired: true
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
id: 4,
|
|
113
|
+
name: "Cross-Chain Management",
|
|
114
|
+
popupName: 'crossChainManagement',
|
|
115
|
+
loginRequired: true
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
id: 5,
|
|
119
|
+
name: "Off-Chain Management",
|
|
120
|
+
popupName: 'offChainManagement',
|
|
121
|
+
loginRequired: true
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
id: 6,
|
|
125
|
+
name: "Search Data",
|
|
126
|
+
popupName: 'searchData',
|
|
127
|
+
loginRequired: true
|
|
128
|
+
},
|
|
129
|
+
],
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
id: 5,
|
|
133
|
+
name: "seeds",
|
|
134
|
+
subMenu: [
|
|
135
|
+
{
|
|
136
|
+
id: 1,
|
|
137
|
+
name: "Pay With SEEDS",
|
|
138
|
+
popupName: "payWithSeeds",
|
|
139
|
+
loginRequired: true
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
id: 2,
|
|
143
|
+
name: "Donate SEEDS",
|
|
144
|
+
popupName: "donateSeeds",
|
|
145
|
+
loginRequired: true
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
id: 3,
|
|
149
|
+
name: "Reward SEEDS",
|
|
150
|
+
popupName: "rewardSeeds",
|
|
151
|
+
disabled: false
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
id: 4,
|
|
155
|
+
name: "Send Invite To Join SEEDS",
|
|
156
|
+
popupName: "sendInvite",
|
|
157
|
+
loginRequired: true
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
id: 5,
|
|
161
|
+
name: "View SEEDS",
|
|
162
|
+
popupName: "viewSeeds",
|
|
163
|
+
disabled: false
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
id: 6,
|
|
167
|
+
name: "View Organisations",
|
|
168
|
+
popupName: "viewOrganizations",
|
|
169
|
+
disabled: false
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
id: 7,
|
|
173
|
+
name: "Manage SEEDS",
|
|
174
|
+
popupName: "manageSeeds",
|
|
175
|
+
disabled: false
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
id: 8,
|
|
179
|
+
name: "Search Seeds",
|
|
180
|
+
popupName: "searchSeeds",
|
|
181
|
+
disabled: false
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
id: 6,
|
|
187
|
+
name: "providers",
|
|
188
|
+
subMenu: [
|
|
189
|
+
{
|
|
190
|
+
id: 1,
|
|
191
|
+
name: "View Providers",
|
|
192
|
+
popupName: "viewProviders",
|
|
193
|
+
disabled: false
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
id: 2,
|
|
197
|
+
name: "Manage Providers",
|
|
198
|
+
popupName: 'manageProviders',
|
|
199
|
+
disabled: false
|
|
200
|
+
},
|
|
201
|
+
|
|
202
|
+
{
|
|
203
|
+
id: 3,
|
|
204
|
+
name: "Manage Auto-Replication",
|
|
205
|
+
popupName: "manageAutoReplicaton",
|
|
206
|
+
disabled: false
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
id: 4,
|
|
210
|
+
name: "Manage Auto-Fail-Over",
|
|
211
|
+
popupName: "manageAutoFailOver",
|
|
212
|
+
disabled: false
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
id: 5,
|
|
216
|
+
name: "Manage Load Balancing",
|
|
217
|
+
popupName: "manageLoadBalancing",
|
|
218
|
+
disabled: false
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
id: 6,
|
|
222
|
+
name: "View Provider Stats",
|
|
223
|
+
popupName: "viewProviderStats",
|
|
224
|
+
disabled: false
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
id: 7,
|
|
228
|
+
name: "Compare Provider Speeds",
|
|
229
|
+
popupName: "compareProviderSpeeds",
|
|
230
|
+
disabled: false
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
id: 8,
|
|
234
|
+
name: "Search Providers",
|
|
235
|
+
popupName: "searchProviders",
|
|
236
|
+
disabled: false
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
id: 9,
|
|
240
|
+
name: "Holochain",
|
|
241
|
+
popupName: "holochain",
|
|
242
|
+
disabled: false
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
id: 10,
|
|
246
|
+
name: "SEEDS",
|
|
247
|
+
popupName: "seeds",
|
|
248
|
+
disabled: false
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
id: 11,
|
|
252
|
+
name: "EOSIO",
|
|
253
|
+
popupName: "eosio",
|
|
254
|
+
disabled: false
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
id: 12,
|
|
258
|
+
name: "Ethereum",
|
|
259
|
+
popupName: "ethereum",
|
|
260
|
+
disabled: false
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
id: 13,
|
|
264
|
+
name: "IPFS",
|
|
265
|
+
popupName: "ipfs",
|
|
266
|
+
disabled: false
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
id: 14,
|
|
270
|
+
name: "ThreeFold",
|
|
271
|
+
popupName: "threeFold",
|
|
272
|
+
disabled: false
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
id: 15,
|
|
276
|
+
name: "SOLID",
|
|
277
|
+
popupName: "solid",
|
|
278
|
+
disabled: false
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
id: 16,
|
|
282
|
+
name: "Activity Pub",
|
|
283
|
+
popupName: "activityPub",
|
|
284
|
+
disabled: false
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
id: 17,
|
|
288
|
+
name: "Mongo DB",
|
|
289
|
+
popupName: "mongoDb",
|
|
290
|
+
disabled: false
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
id: 18,
|
|
294
|
+
name: "SQLLite",
|
|
295
|
+
popupName: "sqlLite",
|
|
296
|
+
disabled: false
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
id: 19,
|
|
300
|
+
name: "Neo4j",
|
|
301
|
+
popupName: "neo4j",
|
|
302
|
+
disabled: false
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
id: 20,
|
|
306
|
+
name: "Solana",
|
|
307
|
+
popupName: 'solana',
|
|
308
|
+
disabled: false
|
|
309
|
+
},
|
|
310
|
+
],
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
id: 7,
|
|
314
|
+
name: "nft",
|
|
315
|
+
subMenu: [
|
|
316
|
+
{
|
|
317
|
+
id: 1,
|
|
318
|
+
name: "View OASIS NFTs",
|
|
319
|
+
popupName: 'viewOasisNft',
|
|
320
|
+
// disabled: false
|
|
321
|
+
path: 'https://opensea.io/collection/theoasisandourworld',
|
|
322
|
+
externalLink: true
|
|
323
|
+
},
|
|
324
|
+
// {
|
|
325
|
+
// id: 2,
|
|
326
|
+
// name: "Manage OASIS NFTs",
|
|
327
|
+
// popupName: 'manageOasisNft',
|
|
328
|
+
// disabled: false
|
|
329
|
+
// },
|
|
330
|
+
// {
|
|
331
|
+
// id: 3,
|
|
332
|
+
// name: "Search OASIS NFTs",
|
|
333
|
+
// popupName: 'searchOasisNft',
|
|
334
|
+
// disabled: false
|
|
335
|
+
// },
|
|
336
|
+
// {
|
|
337
|
+
// id: 4,
|
|
338
|
+
// name: "Purchase OASIS NFT",
|
|
339
|
+
// popupName: 'purchaseOasisNft',
|
|
340
|
+
// disabled: false
|
|
341
|
+
// },
|
|
342
|
+
// {
|
|
343
|
+
// id: 5,
|
|
344
|
+
// name: "Purchase OASIS Virtual Land NFT",
|
|
345
|
+
// popupName: 'PurchaseOasisVirtualLandNft',
|
|
346
|
+
// disabled: false
|
|
347
|
+
// },
|
|
348
|
+
// {
|
|
349
|
+
// id: 6,
|
|
350
|
+
// name: "Contact Popup",
|
|
351
|
+
// popupName: 'contactPopup',
|
|
352
|
+
// disabled: false
|
|
353
|
+
// },
|
|
354
|
+
],
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
id: 8,
|
|
358
|
+
name: "map",
|
|
359
|
+
subMenu: [
|
|
360
|
+
{
|
|
361
|
+
id: 1,
|
|
362
|
+
name: "View Global 3D Map",
|
|
363
|
+
popupName: 'viewGlobal3dMap'
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
id: 2,
|
|
367
|
+
name: "Mange Map",
|
|
368
|
+
popupName: 'manageMap'
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
id: 3,
|
|
372
|
+
name: "Add Quest To Map",
|
|
373
|
+
popupName: 'addQuestToMap'
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
id: 4,
|
|
377
|
+
name: "Add 2D Object To Map",
|
|
378
|
+
popupName: 'add2dObjectMap'
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
id: 5,
|
|
382
|
+
name: "Add 3D Object To Map",
|
|
383
|
+
popupName: 'add3dObjectMap'
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
id: 6,
|
|
387
|
+
name: "Plot Route On Map",
|
|
388
|
+
popupName: 'plotRouteOnMap'
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
id: 7,
|
|
392
|
+
name: "View OAPP's On Map",
|
|
393
|
+
popupName: 'viewOappOnMap'
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
id: 8,
|
|
397
|
+
name: "View Holons On Map",
|
|
398
|
+
popupName: 'viewHalonsOnMap'
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
id: 9,
|
|
402
|
+
name: "View Quests On Map",
|
|
403
|
+
popupName: 'viewQuestOnMap'
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
id: 10,
|
|
407
|
+
name: "Search Map",
|
|
408
|
+
popupName: 'searchMap'
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
id: 11,
|
|
412
|
+
name: "Download Our World",
|
|
413
|
+
popupName: 'downloadOurWorld'
|
|
414
|
+
},
|
|
415
|
+
],
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
id: 9,
|
|
419
|
+
name: "oapp",
|
|
420
|
+
subMenu: [
|
|
421
|
+
{
|
|
422
|
+
id: 1,
|
|
423
|
+
name: "Install OAPP's",
|
|
424
|
+
popupName: 'installOAPP'
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
id: 2,
|
|
428
|
+
name: "Manage OAPP's",
|
|
429
|
+
popupName: 'manageOAPP'
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
id: 3,
|
|
433
|
+
name: "Create OAPP",
|
|
434
|
+
popupName: 'createOAPP'
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
id: 4,
|
|
438
|
+
name: "Deploy OAPP",
|
|
439
|
+
popupName: 'deployOAPP'
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
id: 5,
|
|
443
|
+
name: "Edit OAPP",
|
|
444
|
+
popupName: 'editOAPP'
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
id: 6,
|
|
448
|
+
name: "Launch OAPP",
|
|
449
|
+
popupName: 'launchOAPP'
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
id: 7,
|
|
453
|
+
name: "Search OAPP",
|
|
454
|
+
popupName: 'searchOAPP'
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
id: 8,
|
|
458
|
+
name: "Download Our World",
|
|
459
|
+
popupName: 'downloadOurWorld'
|
|
460
|
+
},
|
|
461
|
+
],
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
id: 10,
|
|
465
|
+
name: "quest",
|
|
466
|
+
subMenu: [
|
|
467
|
+
{
|
|
468
|
+
id: 1,
|
|
469
|
+
name: "View Quest",
|
|
470
|
+
popupName: 'viewQuest'
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
id: 2,
|
|
474
|
+
name: "Manage Quest",
|
|
475
|
+
popupName: 'manageQuest'
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
id: 3,
|
|
479
|
+
name: "Search Quest",
|
|
480
|
+
popupName: 'searchQuest'
|
|
481
|
+
},
|
|
482
|
+
],
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
id: 11,
|
|
486
|
+
name: "mission",
|
|
487
|
+
subMenu: [
|
|
488
|
+
{
|
|
489
|
+
id: 1,
|
|
490
|
+
name: "View Mission",
|
|
491
|
+
popupName: 'viewMission'
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
id: 2,
|
|
495
|
+
name: "Manage Mission",
|
|
496
|
+
popupName: 'manageMission'
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
id: 3,
|
|
500
|
+
name: "Search Mission",
|
|
501
|
+
popupName: 'searchMission'
|
|
502
|
+
},
|
|
503
|
+
],
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
id: 12,
|
|
507
|
+
name: "eggs",
|
|
508
|
+
subMenu: [
|
|
509
|
+
{
|
|
510
|
+
id: 1,
|
|
511
|
+
name: "View Eggs",
|
|
512
|
+
popupName: 'viewEggs'
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
id: 2,
|
|
516
|
+
name: "Manage Eggs",
|
|
517
|
+
popupName: 'manageEggs'
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
id: 3,
|
|
521
|
+
name: "Search Eggs",
|
|
522
|
+
popupName: 'searchEggs'
|
|
523
|
+
},
|
|
524
|
+
],
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
id: 13,
|
|
528
|
+
name: "game",
|
|
529
|
+
subMenu: [
|
|
530
|
+
{
|
|
531
|
+
id: 1,
|
|
532
|
+
name: "View StarCraft 2 Leagues",
|
|
533
|
+
popupName: 'viewLeagues'
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
id: 2,
|
|
537
|
+
name: "View StarCraft 2 Tournaments",
|
|
538
|
+
popupName: 'viewTournaments'
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
id: 3,
|
|
542
|
+
name: "View StarCraft 2 Achievements",
|
|
543
|
+
popupName: 'viewAchievements'
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
id: 4,
|
|
547
|
+
name: "Search StarCraft 2 Profiles",
|
|
548
|
+
popupName: 'searchProfiles'
|
|
549
|
+
},
|
|
550
|
+
],
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
id: 14,
|
|
554
|
+
name: "developer",
|
|
555
|
+
subMenu: [
|
|
556
|
+
{
|
|
557
|
+
name: "OASIS API LIVE",
|
|
558
|
+
path: "https://api.oasisweb4.one/",
|
|
559
|
+
externalLink: true
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
name: "OASIS API STAGING",
|
|
563
|
+
path: "https://staging.api.oasisweb4.one/",
|
|
564
|
+
externalLink: true
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
name: "OASIS API UI LIVE",
|
|
568
|
+
path: "https://staging.api.oasisweb4.one/",
|
|
569
|
+
externalLink: true
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
name: "OASIS API UI STAGING",
|
|
573
|
+
path: "https://staging.api.oasisweb4.one/",
|
|
574
|
+
externalLink: true
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
name: "STAR ODK",
|
|
578
|
+
path: "https://oasisweb4.one/?#",
|
|
579
|
+
externalLink: true
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
name: "OASIS API Postman JSON File",
|
|
583
|
+
path: "https://oasisweb4.one/postman/OASIS_API.postman_collection.json",
|
|
584
|
+
externalLink: true
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
name: "OASIS API DEV ENVIROMENT POSTMAN JSON FILE",
|
|
588
|
+
path: "https://oasisweb4.one/postman/OASIS_API_DEV.postman_environment.json",
|
|
589
|
+
externalLink: true
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
name: "OASIS API STAGING ENVIROMENT POSTMAN JSON FILE",
|
|
593
|
+
path: "https://oasisweb4.one/postman/OASIS_API_STAGING.postman_environment.json",
|
|
594
|
+
externalLink: true
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
name: "OASIS API LIVE ENVIROMENT POSTMAN JSON FILE",
|
|
598
|
+
path: "https://oasisweb4.one/postman/OASIS_API_LIVE.postman_environment.json",
|
|
599
|
+
externalLink: true
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
name: "Code/Documentation",
|
|
603
|
+
path: "https://github.com/NextGenSoftwareUK/Our-World-OASIS-API-HoloNET-HoloUnity-And-.NET-HDK",
|
|
604
|
+
externalLink: true
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
name: "The Justice League Academy",
|
|
608
|
+
path: "https://www.thejusticeleagueaccademy.icu/",
|
|
609
|
+
externalLink: true
|
|
610
|
+
},
|
|
611
|
+
],
|
|
612
|
+
},
|
|
613
|
+
];
|
|
614
|
+
|
|
615
|
+
export default SidebarData;
|