-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #349 from Duke-MatSci/develop
BREAKING CHANGE: Merge dev branch
- Loading branch information
Showing
47 changed files
with
1,401 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -530,3 +530,9 @@ | |
|
||
} | ||
} | ||
|
||
.spreadsheet_list_form { | ||
.md-chip.md-theme-default .md-icon.md-icon-image svg{ | ||
fill: $primary; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<template> | ||
<div :id="id"></div> | ||
</template> | ||
|
||
<script> | ||
import YASGUI from '@triply/yasgui' | ||
export default { | ||
name: 'yasgui', | ||
props: { | ||
id: { | ||
type: String, | ||
default: () => 'YASGUI' | ||
} | ||
}, | ||
mounted () { | ||
this.yasgui = new YASGUI(this.$el, { | ||
requestConfig: { | ||
endpoint: '/api/knowledge/sparql' | ||
}, | ||
copyEndpointOnNewTab: false | ||
}) | ||
} | ||
} | ||
</script> | ||
|
||
<style css src='@triply/yasgui/build/yasgui.min.css'></style> | ||
|
||
<style css> | ||
.yasgui .endpointText { | ||
display: none !important; | ||
} | ||
.yasgui .autocompleteWrapper, | ||
.yasgui .controlbar { | ||
visibility: hidden !important; | ||
display: none !important; | ||
} | ||
.yasqe .CodeMirror { | ||
border: 1px solid #afe3f1 !important; | ||
} | ||
.CodeMirror-gutters { | ||
border-right: 1px solid #afe3f1 !important; | ||
background-color: #f7f7f7; | ||
white-space: nowrap; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import gql from 'graphql-tag' | ||
|
||
export const CREATEMATERIAL_QUERY = gql` | ||
mutation CreateXlsxCurationList($input: materialsInput) { | ||
createXlsxCurationList(input: $input) { | ||
columns { | ||
field | ||
values | ||
user | ||
} | ||
} | ||
}` | ||
|
||
export const SEARCH_SPREADSHEETLIST_QUERY = gql` | ||
query GetXlsxCurationList($input: materialQueryInput) { | ||
getXlsxCurationList(input: $input) { | ||
totalItems | ||
pageSize | ||
pageNumber | ||
totalPages | ||
hasPreviousPage | ||
hasNextPage | ||
columns { | ||
field | ||
values | ||
user | ||
} | ||
} | ||
}` | ||
|
||
export const UPDATE_SPREADSHEETLIST = gql` | ||
mutation UpdateXlsxCurationList($input: columnsInput) { | ||
updateXlsxCurationList(input: $input) { | ||
field | ||
values | ||
user | ||
} | ||
}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.