-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mobile-first UI implementation with Semantic UI #20
Open
aelishRollo
wants to merge
11
commits into
main
Choose a base branch
from
mobile-first-refactor
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
c9ed140
Get basic template working so I can begin developing
aelishRollo 5351b3f
Prepare to integrate Semantic UI library
aelishRollo 2281033
Create static layout
aelishRollo 559a12f
fix ci linting
mickmister b351255
lint
mickmister ca710fe
undo file deletions
mickmister c21b959
remove unused css files
mickmister d2bdbf3
rename Foo to SectionView
mickmister 82cbee9
Implement <ProjectView/> as a modal
aelishRollo 76292da
Refactor <ProjectView> to be a drop down rather than a modal
aelishRollo f9636c6
Adjust hamburger menu positioning
aelishRollo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading status checks…
Create static layout
commit 228103346ffc676290608b8d17495e55187b1099
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,101 @@ | ||
import React from 'react'; | ||
import { Container, Header, Menu, Dropdown, Grid, Comment, Form, Button, Input, List } from 'semantic-ui-react'; | ||
|
||
const SectionView = () => ( | ||
<Container> | ||
{/* Menu */} | ||
<Menu> | ||
<Menu.Item> | ||
<Header as='h2'>My section</Header> | ||
</Menu.Item> | ||
<Menu.Menu position='right'> | ||
<Dropdown item icon='ellipsis vertical' simple> | ||
<Dropdown.Menu> | ||
<Dropdown.Item>Edit title</Dropdown.Item> | ||
<Dropdown.Item>Edit Progression</Dropdown.Item> | ||
<Dropdown.Item>Duplicate</Dropdown.Item> | ||
<Dropdown.Item>Delete</Dropdown.Item> | ||
</Dropdown.Menu> | ||
</Dropdown> | ||
</Menu.Menu> | ||
</Menu> | ||
|
||
{/* Chord Progression */} | ||
<Header as='h3'>Progression: C Dm Em F</Header> | ||
|
||
let ChordProgression = () => { | ||
return (<h1> Hello, Universe!</h1>); | ||
}; | ||
{/* Grid Layout */} | ||
<Grid columns={2} divided> | ||
<Grid.Row> | ||
<Grid.Column> | ||
<List> | ||
<List.Item> | ||
<List.Icon name='file audio' /> | ||
<List.Content> | ||
<List.Header>Bass.mp3</List.Header> | ||
<List.Description>2 comments</List.Description> | ||
</List.Content> | ||
</List.Item> | ||
<List.Item> | ||
<List.Icon name='file audio' /> | ||
<List.Content> | ||
<List.Header>Guitar.mp3</List.Header> | ||
<List.Description>23 comments</List.Description> | ||
</List.Content> | ||
</List.Item> | ||
<List.Item> | ||
<List.Icon name='file audio' /> | ||
<List.Content> | ||
<List.Header>Guitar.mp3</List.Header> | ||
<List.Description>23 comments</List.Description> | ||
</List.Content> | ||
</List.Item> | ||
</List> | ||
</Grid.Column> | ||
<Grid.Column> | ||
<List.Item> | ||
<List.Icon name='file audio' /> | ||
<List.Content> | ||
<List.Header>Guitar.mp3</List.Header> | ||
<List.Description>23 comments</List.Description> | ||
</List.Content> | ||
</List.Item> | ||
<List.Item> | ||
<List.Icon name='file audio' /> | ||
<List.Content> | ||
<List.Header>Guitar.mp3</List.Header> | ||
<List.Description>23 comments</List.Description> | ||
</List.Content> | ||
</List.Item> | ||
</Grid.Column> | ||
</Grid.Row> | ||
</Grid> | ||
|
||
export default ChordProgression | ||
{/* Comments Section */} | ||
<Header as='h3'>Comments for section</Header> | ||
<Comment.Group> | ||
<Comment> | ||
<Comment.Avatar src='/images/avatar/small/matt.jpg' /> | ||
<Comment.Content> | ||
<Comment.Author as='a'>Dave</Comment.Author> | ||
<Comment.Text>Great section!</Comment.Text> | ||
</Comment.Content> | ||
</Comment> | ||
<Comment> | ||
<Comment.Avatar src='/images/avatar/small/matt.jpg' /> | ||
<Comment.Content> | ||
<Comment.Author as='a'>Matthews</Comment.Author> | ||
<Comment.Text>Great section!</Comment.Text> | ||
</Comment.Content> | ||
</Comment> | ||
{/* Add more comments as needed */} | ||
</Comment.Group> | ||
|
||
{/* Comment Form */} | ||
<Form reply> | ||
<Form.TextArea /> | ||
<Button content='Submit' labelPosition='left' icon='edit' primary /> | ||
</Form> | ||
</Container> | ||
); | ||
|
||
export default SectionView; |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can borrow code from https://github.com/jamtools/section-view/blob/main/src/SectionPage.tsx to fill calls to existing hooks to get this data. Should be super straightforward
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other code will obviously be relocated into existing component files like
Files.tsx
andComments.tsx
etc.