-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathstatic-scripts.ts
67 lines (62 loc) · 2.23 KB
/
static-scripts.ts
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
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
* This file is part of Neo4j.
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
import { connect } from 'react-redux'
import { withBus } from 'react-suber'
import semver from 'semver'
import * as favorites from '../../../shared/modules/favorites/favoritesDuck'
import { getFolders } from '../../../shared/modules/favorites/foldersDuck'
import MyScripts from 'browser/components/SavedScripts'
import {
commandSources,
executeCommand
} from 'shared/modules/commands/commandsDuck'
import { getRawVersion } from 'shared/modules/dbMeta/dbMetaDuck'
import * as editor from 'shared/modules/editor/editorDuck'
const mapFavoritesStateToProps = (state: any) => {
const version =
semver.coerce(semver.clean(getRawVersion(state) || '', true) ?? '0') ?? '0'
const folders = getFolders(state).filter(folder => folder.isStatic)
const scripts = favorites
.getFavorites(state)
.filter(
fav =>
fav.isStatic &&
fav.versionRange &&
version &&
semver.satisfies(version, fav.versionRange)
)
return {
title: 'Sample Scripts',
folders,
scripts
}
}
const mapFavoritesDispatchToProps = (dispatch: any, ownProps: any) => ({
selectScript: (favorite: favorites.Favorite) =>
ownProps.bus.send(
editor.EDIT_CONTENT,
editor.editContent(favorite.id, favorite.content, { isStatic: true })
),
execScript: (favorite: any) =>
dispatch(executeCommand(favorite.content), {
source: commandSources.sidebar
})
})
const Favorites = withBus(
connect(mapFavoritesStateToProps, mapFavoritesDispatchToProps)(MyScripts)
)
export default Favorites