Skip to content

Commit

Permalink
Merge pull request #35 from tomhazledine/itunes-refactor
Browse files Browse the repository at this point in the history
itunes css refactor
  • Loading branch information
tomhazledine authored Feb 1, 2024
2 parents de7d9ab + c5b72f2 commit c9d3b75
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 65 deletions.
2 changes: 1 addition & 1 deletion demo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import picobel from "../build/picobel.js";
// Picobel();
// Picobel({ theme: "bare" });
// Picobel({ theme: "default" });
const audio = picobel({ theme: "skeleton" });
const audio = picobel({ theme: "itunes" });
// Picobel({ theme: "bbc" });
// Picobel({ theme: "eatenbymonsters" });
// Picobel({ theme: "itunes" });
Expand Down
189 changes: 125 additions & 64 deletions src/css/picobel.itunes.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,34 +11,42 @@
--playhead: #000000;
--text_dark: #3c3c3c;
--text_light: #7a7a7a;
--progressHeight: 1rem;
}
--progress-height: 20px;
--progress-track-height: 10px;
--focus: #015ecc;

.itunes.picobel {
margin: 2em 0;
padding-left: 4em;
position: relative;
border: 1px solid var(--border);
box-shadow: inset var(--white) 0 1px 0 0, var(--black--opacity) 0 1px 2px 0;
overflow: hidden;
height: 4em;
min-height: 4em;
box-sizing: border-box;
background-image: linear-gradient(
var(background_grey_light),
var(--background_grey_light),
var(--background_grey_dark)
);

font-family: "Arial", sans-serif;
color: var(--text_light);
text-shadow: var(--white) 0 1px 0;
display: flex;
justify-content: stretch;
align-items: flex-end;
}

.itunes.picobel *,
.itunes.picobel *:before,
.itunes.picobel *:after {
box-sizing: inherit;
}

.itunes.picobel .loader {
.itunes.error {
height: 4em;
}
.itunes .error {
width: 100%;
}

.itunes__loader {
position: absolute;
top: 50%;
left: 50%;
Expand All @@ -58,31 +66,35 @@
border-radius: 50%;
animation: itunes_spin linear infinite 1s;
}
.itunes.picobel.loading .loader {

.itunes.loading .itunes__loader {
opacity: 1;
}

.itunes.picobel .playerTrigger {
.itunes__play-pause {
border: none;
appearance: none;
position: relative;
width: 4em;
height: 4em;
font-size: 1em;
background: var(--white);
color: var(--icon_grey);
position: absolute;
top: 0;
left: 0;
border-right: 1px solid var(--border);
cursor: pointer;
flex-grow: 0;
flex-shrink: 0;
}
.itunes.picobel .playerTrigger .buttonText {

.itunes__play-pause__text {
display: none;
}
.itunes.picobel .playerTrigger:focus {
outline: none;

.itunes__play-pause:focus {
/* outline: none; */
}
.itunes.picobel .playerTrigger:before {

.itunes__play-pause:before {
content: "";
display: block;
position: absolute;
Expand All @@ -94,7 +106,8 @@
border-bottom: 0.8em solid transparent;
border-left: 1em solid var(--icon_grey);
}
.itunes.picobel .playerTrigger:after {

.itunes__play-pause:after {
content: "";
display: block;
position: absolute;
Expand All @@ -108,118 +121,166 @@
border-left: 0.6em solid var(--icon_grey);
display: none;
}
.itunes.picobel .playerTrigger.songPlaying:before {

.itunes__play-pause.playing:before {
height: 1.4em;
margin-top: -0.7em;
margin-left: -0.7em;
border-top: 0;
border-bottom: 0;
border-left: 0.6em solid var(--icon_grey);
}
.itunes.picobel .playerTrigger.songPlaying:after {
.itunes__play-pause.playing:after {
display: block;
}

.itunes.picobel .metaWrapper {
padding: 0.5em;
.itunes__wrapper--title-artist {
padding: 0.5em 0.5em 0.2em;
}

.itunes.picobel.loading .metaWrapper {
.itunes.loading .itunes__wrapper--title-artist {
display: none;
}

.itunes.picobel .titleDisplay {
.itunes__title {
display: block;
text-align: center;
color: var(--text_dark);
font-weight: 500;
}

.itunes.picobel .artistDisplay {
.itunes__artist {
font-size: 0.8em;
display: block;
text-align: center;
}

.itunes.picobel .songPlayTimer {
.itunes__wrapper--title-artist-timer-progress-duration {
width: 100%;
flex-shrink: 1;
}

.itunes__wrapper--timer-progress-duration {
position: relative;
}

.itunes__timer {
position: absolute;
bottom: 1em;
left: 5em;
top: 0;
left: 1em;
transform: translateY(-100%);
}
.itunes.picobel .songDuration {
.itunes__duration {
position: absolute;
bottom: 1em;
top: 0;
right: 1em;
transform: translateY(-100%);
}

.itunes.picobel .progress-slider__wrapper {
height: var(--progressHeight);
line-height: 1;
position: absolute;
bottom: 0;
left: 4rem;
right: 0;
.itunes__progress-label {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
}
.itunes.picobel .progress-slider__wrapper .progress-slider__range {
width: 100%;
padding: 0;
margin: 0;
position: absolute;
top: 0;
left: 0;
opacity: 0;
width: 1px;
}

/* --- */
/* The "fake" range slider */
.itunes__progress-slider__wrapper {
position: relative;
line-height: 1;
width: 100%;
}
.itunes__progress-slider__replacement {
height: var(--progress-height);
position: relative;
display: flex;
justify-content: stretch;
align-items: stretch;
overflow: hidden;
}

.itunes.picobel .progress-slider__wrapper .progress-slider__background {
height: 0.5em;
.itunes__progress-slider__replacement.focus {
outline: 2px solid var(--focus);
outline-offset: 1px;
border-radius: 2px;
}
.itunes__progress-slider__background {
height: var(--progress-track-height);
position: absolute;
bottom: 0;
left: 0;
background: var(--unplayed_grey);
width: 100%;
}
.itunes.picobel .progress-slider__wrapper .progress-slider__progress-indicator {
height: 0.5em;
.itunes__progress-slider__replacement.focus {
outline: 2px solid var(--focus);
outline-offset: 1px;
border-radius: 2px;
z-index: 3;
}
.itunes__progress-slider__indicator {
height: var(--progress-track-height);
position: absolute;
bottom: 0;
left: 0;
background: var(--played_grey);
width: 0%;
}
.itunes.picobel .progress-slider__wrapper .progress-slider__playhead {
.itunes__progress-slider__playhead {
width: 0.3em;
height: var(--progressHeight);
height: 15px;
position: absolute;
bottom: 0;
left: 0%;
border-top-left-radius: 0.2em;
border-top-right-radius: 0.2em;
margin-left: -0.15em;
background: var(--playhead);
transition: height 0.2s;
}
.itunes__progress-slider__wrapper:hover .itunes__progress-slider__playhead {
height: var(--progress-height);
}

/* Hide dynamic elements until loading has finished */
.itunes.loading .itunes__progress-slider__indicator,
.itunes.loading .itunes__progress-slider__playhead {
display: none;
}

/* Make sure the range Track is the right size and shape */
.itunes.picobel
input[type="range"].progress-slider__range::-webkit-slider-runnable-track {
/* Make sure the real range element is the same size as the fake one. Position it on-top of the fake and make it invisible (so we can still get the functionality) */
.itunes__progress-slider__range {
width: 100%;
font-size: var(--progressHeight);
height: 2.2em;
cursor: pointer;
height: var(--progress-height);
padding: 0;
margin: 0;
z-index: 4;
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.itunes.picobel input[type="range"].progress-slider__range::-moz-range-track {

/* Make sure the range Track is the right size and shape. Needs prefixed versions to ensure cross-browser consistency. */
.itunes__progress-slider__range::-webkit-slider-runnable-track {
width: 100%;
height: var(--progressHeight);
height: var(--progress-height);
cursor: pointer;
}
.itunes.picobel input[type="range"].progress-slider__range::-ms-track {
.itunes__progress-slider__range::-moz-range-track {
width: 100%;
height: var(--progressHeight);
height: var(--progress-height);
cursor: pointer;
}

.itunes.picobel .songVolume {
display: none;
.itunes__progress-slider__range::-ms-track {
width: 100%;
height: var(--progress-height);
cursor: pointer;
}

@keyframes itunes_spin {
Expand Down
8 changes: 8 additions & 0 deletions src/js/PicobelSetup.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
// Return a `components` object that matches the provided themename.
const setComponentsByTheme = (themename = "default") => {
switch (themename) {
case "itunes":
return [
"playPause",
[
["title", "artist"],
["timer", "progress", "duration"]
]
];
case "default":
default:
return [
Expand Down

0 comments on commit c9d3b75

Please sign in to comment.