Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Motion Bank
MB.js
Quasar Components Shared
Commits
3fefc736
Commit
3fefc736
authored
Apr 06, 2019
by
Anton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor shared components git module
parent
125782ea
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
42 additions
and
23 deletions
+42
-23
dialogs/BrowserWarning.vue
dialogs/BrowserWarning.vue
+0
-0
dialogs/ConfirmModal.vue
dialogs/ConfirmModal.vue
+0
-0
dialogs/Modal.vue
dialogs/Modal.vue
+0
-0
dialogs/ModalConfirm.vue
dialogs/ModalConfirm.vue
+0
-0
dialogs/index.js
dialogs/index.js
+7
-0
elements/ConditionalLink.vue
elements/ConditionalLink.vue
+0
-0
elements/CurrentUser.vue
elements/CurrentUser.vue
+0
-0
elements/MarkdownDisplay.vue
elements/MarkdownDisplay.vue
+0
-0
elements/PromiseSpan.vue
elements/PromiseSpan.vue
+0
-0
elements/StyleTag.vue
elements/StyleTag.vue
+0
-0
elements/Username.vue
elements/Username.vue
+0
-0
elements/VideoTitle.vue
elements/VideoTitle.vue
+0
-0
elements/index.js
elements/index.js
+17
-0
forms/AccessControl.vue
forms/AccessControl.vue
+1
-1
forms/UserRights.vue
forms/UserRights.vue
+0
-0
forms/UsersTable.vue
forms/UsersTable.vue
+2
-2
index.js
index.js
+6
-6
media/RandomGiphy.vue
media/RandomGiphy.vue
+0
-0
media/VideoPlayerNew.vue
media/VideoPlayerNew.vue
+0
-0
navigation/ContentBar.vue
navigation/ContentBar.vue
+0
-0
navigation/UserNav.vue
navigation/UserNav.vue
+0
-0
navigation/index.js
navigation/index.js
+7
-0
partials/DataTable.vue
partials/DataTable.vue
+1
-1
partials/index.js
partials/index.js
+1
-13
No files found.
part
ials/BrowserWarning.vue
→
d
ial
og
s/BrowserWarning.vue
View file @
3fefc736
File moved
part
ials/ConfirmModal.vue
→
d
ial
og
s/ConfirmModal.vue
View file @
3fefc736
File moved
part
ials/Modal.vue
→
d
ial
og
s/Modal.vue
View file @
3fefc736
File moved
part
ials/ModalConfirm.vue
→
d
ial
og
s/ModalConfirm.vue
View file @
3fefc736
File moved
dialogs/index.js
0 → 100644
View file @
3fefc736
import
BrowserWarning
from
'
./BrowserWarning
'
import
ConfirmModal
from
'
./ConfirmModal
'
export
{
BrowserWarning
,
ConfirmModal
}
partial
s/ConditionalLink.vue
→
element
s/ConditionalLink.vue
View file @
3fefc736
File moved
partial
s/CurrentUser.vue
→
element
s/CurrentUser.vue
View file @
3fefc736
File moved
partial
s/MarkdownDisplay.vue
→
element
s/MarkdownDisplay.vue
View file @
3fefc736
File moved
partial
s/PromiseSpan.vue
→
element
s/PromiseSpan.vue
View file @
3fefc736
File moved
partial
s/StyleTag.vue
→
element
s/StyleTag.vue
View file @
3fefc736
File moved
partial
s/Username.vue
→
element
s/Username.vue
View file @
3fefc736
File moved
partial
s/VideoTitle.vue
→
element
s/VideoTitle.vue
View file @
3fefc736
File moved
elements/index.js
0 → 100644
View file @
3fefc736
import
ConditionalLink
from
'
./ConditionalLink
'
import
CurrentUser
from
'
./CurrentUser
'
import
MarkdownDisplay
from
'
./MarkdownDisplay
'
import
PromiseSpan
from
'
./PromiseSpan
'
import
StyleTag
from
'
./StyleTag
'
import
Username
from
'
./Username
'
import
VideoTitle
from
'
./VideoTitle
'
export
{
ConditionalLink
,
CurrentUser
,
MarkdownDisplay
,
PromiseSpan
,
StyleTag
,
Username
,
VideoTitle
}
partial
s/AccessControl.vue
→
form
s/AccessControl.vue
View file @
3fefc736
...
...
@@ -29,7 +29,7 @@
</
template
>
<
script
>
import
FormMain
from
'
.
./../../components/shared/forms
/FormMain
'
import
FormMain
from
'
./FormMain
'
import
{
ObjectUtil
}
from
'
mbjs-utils
'
export
default
{
...
...
partial
s/UserRights.vue
→
form
s/UserRights.vue
View file @
3fefc736
File moved
partial
s/UsersTable.vue
→
form
s/UsersTable.vue
View file @
3fefc736
...
...
@@ -50,8 +50,8 @@
</
template
>
<
script
>
import
FormMain
from
'
.
./forms
/FormMain
'
import
Username
from
'
./Username
'
import
FormMain
from
'
./FormMain
'
import
Username
from
'
.
./elements
/Username
'
import
{
DateTime
}
from
'
luxon
'
import
constants
from
'
../../../lib/constants
'
import
{
required
}
from
'
vuelidate/lib/validators
'
...
...
index.js
View file @
3fefc736
import
{
BackButton
}
from
'
./buttons
'
import
FullScreen
from
'
./layouts/FullScreen
'
import
VideoPlayer
from
'
./media/VideoPlayer
'
import
BrowserWarning
from
'
./
part
ials/BrowserWarning
'
import
BrowserWarning
from
'
./
d
ial
og
s/BrowserWarning
'
import
DataTable
from
'
./partials/DataTable
'
import
ConfirmModal
from
'
./
part
ials/ConfirmModal
'
import
MarkdownDisplay
from
'
./
partial
s/MarkdownDisplay
'
import
PromiseSpan
from
'
./
partial
s/PromiseSpan
'
import
ConfirmModal
from
'
./
d
ial
og
s/ConfirmModal
'
import
MarkdownDisplay
from
'
./
element
s/MarkdownDisplay
'
import
PromiseSpan
from
'
./
element
s/PromiseSpan
'
import
SiteFooter
from
'
./partials/SiteFooter
'
import
Uploader
from
'
./partials/Uploader
'
import
Username
from
'
./
partial
s/Username
'
import
VideoTitle
from
'
./
partial
s/VideoTitle
'
import
Username
from
'
./
element
s/Username
'
import
VideoTitle
from
'
./
element
s/VideoTitle
'
export
{
BackButton
,
...
...
partials
/RandomGiphy.vue
→
media
/RandomGiphy.vue
View file @
3fefc736
File moved
partials
/VideoPlayerNew.vue
→
media
/VideoPlayerNew.vue
View file @
3fefc736
File moved
partials
/ContentBar.vue
→
navigation
/ContentBar.vue
View file @
3fefc736
File moved
partials
/UserNav.vue
→
navigation
/UserNav.vue
View file @
3fefc736
File moved
navigation/index.js
0 → 100644
View file @
3fefc736
import
ContentBar
from
'
./ContentBar
'
import
UserNav
from
'
./UserNav
'
export
{
ContentBar
,
UserNav
}
partials/DataTable.vue
View file @
3fefc736
...
...
@@ -31,7 +31,7 @@
</
template
>
<
script
>
import
PromiseSpan
from
'
./PromiseSpan
'
import
PromiseSpan
from
'
.
./elements
/PromiseSpan
'
import
{
mapGetters
}
from
'
vuex
'
import
{
userHasFeature
}
from
'
mbjs-quasar/src/lib
'
// import { DateTime } from 'luxon'
...
...
partials/index.js
View file @
3fefc736
import
BrowserWarning
from
'
./BrowserWarning
'
import
DataTable
from
'
./DataTable
'
import
ConfirmModal
from
'
./ConfirmModal
'
import
MarkdownDisplay
from
'
./MarkdownDisplay
'
import
PromiseSpan
from
'
./PromiseSpan
'
import
SiteFooter
from
'
./SiteFooter
'
import
Uploader
from
'
./Uploader
'
import
Username
from
'
./Username
'
import
VideoTitle
from
'
./VideoTitle
'
export
{
BrowserWarning
,
DataTable
,
ConfirmModal
,
MarkdownDisplay
,
PromiseSpan
,
SiteFooter
,
Uploader
,
Username
,
VideoTitle
Uploader
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment