Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLC-iOS
Commits
60aaf6b4
Commit
60aaf6b4
authored
Aug 14, 2018
by
Soomin Lee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PlaylistModel: Initial
parent
709f670e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
0 deletions
+43
-0
SharedSources/MediaLibraryModel/PlaylistModel.swift
SharedSources/MediaLibraryModel/PlaylistModel.swift
+39
-0
VLC.xcodeproj/project.pbxproj
VLC.xcodeproj/project.pbxproj
+4
-0
No files found.
SharedSources/MediaLibraryModel/PlaylistModel.swift
0 → 100644
View file @
60aaf6b4
/*****************************************************************************
* PlaylistModel.swift
*
* Copyright © 2018 VLC authors and VideoLAN
* Copyright © 2018 Videolabs
*
* Authors: Soomin Lee <bubu@mikan.io>
*
* Refer to the COPYING file of the official project for license.
*****************************************************************************/
class
PlaylistModel
:
MLBaseModel
{
typealias
MLType
=
VLCMLPlaylist
var
updateView
:
(()
->
Void
)?
var
files
=
[
VLCMLPlaylist
]()
var
medialibrary
:
VLCMediaLibraryManager
var
indicatorName
:
String
=
NSLocalizedString
(
"PLAYLISTS"
,
comment
:
""
)
required
init
(
medialibrary
:
VLCMediaLibraryManager
)
{
self
.
medialibrary
=
medialibrary
medialibrary
.
addObserver
(
self
)
files
=
medialibrary
.
getPlaylists
()
}
func
append
(
_
item
:
VLCMLPlaylist
)
{
files
.
append
(
item
)
}
}
extension
PlaylistModel
:
MediaLibraryObserver
{
func
medialibrary
(
_
medialibrary
:
VLCMediaLibraryManager
,
didAddPlaylists
playlists
:
[
VLCMLPlaylist
])
{
playlists
.
forEach
({
append
(
$0
)
})
updateView
?()
}
}
VLC.xcodeproj/project.pbxproj
View file @
60aaf6b4
...
...
@@ -265,6 +265,7 @@
8DE18898210F144B00A091D2
/* GenreModel.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
8DE18897210F144B00A091D2
/* GenreModel.swift */
;
};
8DF9669D2113317E00D0FCD6
/* VLCEditToolbar.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
8DF9669C2113317100D0FCD6
/* VLCEditToolbar.swift */
;
};
8DF966B121188BDB00D0FCD6
/* VLCEditController.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
8DF966B021188BDB00D0FCD6
/* VLCEditController.swift */
;
};
8DF966EF211C643D00D0FCD6
/* PlaylistModel.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
8DF966EE211C643D00D0FCD6
/* PlaylistModel.swift */
;
};
8F91EC79195CEC7900F5BCBA
/* VLCOpenInActivity.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
8F91EC78195CEC7900F5BCBA
/* VLCOpenInActivity.m */
;
};
8F91EC7F195E1DAB00F5BCBA
/* AssetsLibrary.framework in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
8F91EC7E195E1DAB00F5BCBA
/* AssetsLibrary.framework */
;
};
9B088308183D7BEC004B5C2A
/* VLCCloudStorageTableViewController.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
9B088307183D7BEC004B5C2A
/* VLCCloudStorageTableViewController.m */
;
};
...
...
@@ -961,6 +962,7 @@
8DE18897210F144B00A091D2
/* GenreModel.swift */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.swift
;
path
=
GenreModel.swift
;
sourceTree
=
"<group>"
;
};
8DF9669C2113317100D0FCD6
/* VLCEditToolbar.swift */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.swift
;
name
=
VLCEditToolbar.swift
;
path
=
Sources/VLCEditToolbar.swift
;
sourceTree
=
"<group>"
;
};
8DF966B021188BDB00D0FCD6
/* VLCEditController.swift */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.swift
;
name
=
VLCEditController.swift
;
path
=
Sources/VLCEditController.swift
;
sourceTree
=
"<group>"
;
};
8DF966EE211C643D00D0FCD6
/* PlaylistModel.swift */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.swift
;
path
=
PlaylistModel.swift
;
sourceTree
=
"<group>"
;
};
8F91EC77195CEC7900F5BCBA
/* VLCOpenInActivity.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCOpenInActivity.h
;
path
=
Sources/VLCOpenInActivity.h
;
sourceTree
=
SOURCE_ROOT
;
};
8F91EC78195CEC7900F5BCBA
/* VLCOpenInActivity.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
VLCOpenInActivity.m
;
path
=
Sources/VLCOpenInActivity.m
;
sourceTree
=
SOURCE_ROOT
;
};
8F91EC7E195E1DAB00F5BCBA
/* AssetsLibrary.framework */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
wrapper.framework
;
name
=
AssetsLibrary.framework
;
path
=
System/Library/Frameworks/AssetsLibrary.framework
;
sourceTree
=
SDKROOT
;
};
...
...
@@ -2154,6 +2156,7 @@
8DE18891210B5BAD00A091D2
/* ArtistModel.swift */
,
8DE18893210B5F8200A091D2
/* AlbumModel.swift */
,
8DE18897210F144B00A091D2
/* GenreModel.swift */
,
8DF966EE211C643D00D0FCD6
/* PlaylistModel.swift */
,
);
path
=
MediaLibraryModel
;
sourceTree
=
"<group>"
;
...
...
@@ -3229,6 +3232,7 @@
8DF966B121188BDB00D0FCD6
/* VLCEditController.swift in Sources */
,
7DC19B051868D1C400810BF7
/* VLCFirstStepsFifthPageViewController.m in Sources */
,
DD3EFF311BDEBCE500B68579
/* VLCNetworkServerBrowserFTP.m in Sources */
,
8DF966EF211C643D00D0FCD6
/* PlaylistModel.swift in Sources */
,
9BADAF45185FBD9D00108BD8
/* VLCFrostedGlasView.m in Sources */
,
DDC10BE41AEE8EA700890DC3
/* VLCTimeNavigationTitleView.m in Sources */
,
DD870E9A1CEF929A00BBD4FE
/* VLCNetworkLoginViewFieldCell.m in Sources */
,
...
...
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