Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
pleroma-fe
Merge requests
!443
Mobile side drawer
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Mobile side drawer
feature/replace-panel-switcher
into
develop
Overview
30
Commits
12
Pipelines
3
Changes
27
Merged
Shpuld Shpludson
requested to merge
feature/replace-panel-switcher
into
develop
6 years ago
Overview
28
Commits
12
Pipelines
3
Changes
27
Expand
Replaces panel switching altogether:
Adds a new menu button on nav bar on mobile, removes all the small icons
Adds a side drawer that opens from the menu button, side drawer contains all navigation links
Adds chat back to mobile (very unrefined when it comes to the styles
Adds search field to user search route, so the user search input box isn't necessary in nav bar
For now removes the nav bar back button too
5
0
Merge request reports
Compare
develop
version 2
16c7bd01
6 years ago
version 1
747e4090
6 years ago
develop (base)
and
latest version
latest version
ace04201
12 commits,
6 years ago
version 2
16c7bd01
11 commits,
6 years ago
version 1
747e4090
10 commits,
6 years ago
27 files
+
488
−
88
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
27
Search (e.g. *.vue) (Ctrl+P)
src/boot/routes.js
+
8
−
0
Options
@@ -12,6 +12,10 @@ import UserSettings from 'components/user_settings/user_settings.vue'
import
FollowRequests
from
'
components/follow_requests/follow_requests.vue
'
import
OAuthCallback
from
'
components/oauth_callback/oauth_callback.vue
'
import
UserSearch
from
'
components/user_search/user_search.vue
'
import
Notifications
from
'
components/notifications/notifications.vue
'
import
UserPanel
from
'
components/user_panel/user_panel.vue
'
import
LoginForm
from
'
components/login_form/login_form.vue
'
import
ChatPanel
from
'
components/chat_panel/chat_panel.vue
'
export
default
(
store
)
=>
{
return
[
@@ -36,6 +40,10 @@ export default (store) => {
{
name
:
'
registration
'
,
path
:
'
/registration/:token
'
,
component
:
Registration
},
{
name
:
'
friend-requests
'
,
path
:
'
/friend-requests
'
,
component
:
FollowRequests
},
{
name
:
'
user-settings
'
,
path
:
'
/user-settings
'
,
component
:
UserSettings
},
{
name
:
'
notifications
'
,
path
:
'
/:username/notifications
'
,
component
:
Notifications
},
{
name
:
'
new-status
'
,
path
:
'
/:username/new-status
'
,
component
:
UserPanel
},
{
name
:
'
login
'
,
path
:
'
/login
'
,
component
:
LoginForm
},
{
name
:
'
chat
'
,
path
:
'
/chat
'
,
component
:
ChatPanel
,
props
:
()
=>
({
floating
:
false
})
},
{
name
:
'
oauth-callback
'
,
path
:
'
/oauth-callback
'
,
component
:
OAuthCallback
,
props
:
(
route
)
=>
({
code
:
route
.
query
.
code
})
},
{
name
:
'
user-search
'
,
path
:
'
/user-search
'
,
component
:
UserSearch
,
props
:
(
route
)
=>
({
query
:
route
.
query
.
query
})
},
{
name
:
'
user-profile
'
,
path
:
'
/(users/)?:name
'
,
component
:
UserProfile
}
Loading