Browse Source

WIP: Start off with attribution for shipped backgrounds

Signed-off-by: Julius Härtl <jus@bitgrid.net>
tags/v20.0.0beta1
Julius Härtl 3 years ago
parent
commit
d02a92e870
No account linked to committer's email address

+ 43
- 10
apps/dashboard/lib/Service/BackgroundService.php View File

@@ -36,17 +36,50 @@ use OCP\IConfig;

class BackgroundService {

const THEMING_MODE_LIGHT = 'light';
const THEMING_MODE_DARK = 'dark';

const SHIPPED_BACKGROUNDS = [
'anatoly-mikhaltsov-butterfly-wing-scale.jpg',
'bernie-cetonia-aurata-take-off-composition.jpg',
'dejan-krsmanovic-ribbed-red-metal.jpg',
'eduardo-neves-pedra-azul.jpg',
'european-space-agency-barents-bloom.jpg',
'european-space-agency-namib-desert.jpg',
'hannes-fritz-flippity-floppity.jpg',
'hannes-fritz-roulette.jpg',
'hannes-fritz-sea-spray.jpg',
'kamil-porembinski-clouds.jpg',
'anatoly-mikhaltsov-butterfly-wing-scale.jpg' => [
'attribution' => 'Butterfly',
'attribution_url' => 'https://',
],
'bernie-cetonia-aurata-take-off-composition.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'dejan-krsmanovic-ribbed-red-metal.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'eduardo-neves-pedra-azul.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'european-space-agency-barents-bloom.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'european-space-agency-namib-desert.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'hannes-fritz-flippity-floppity.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'hannes-fritz-roulette.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'hannes-fritz-sea-spray.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'kamil-porembinski-clouds.jpg' => [
'attribution' => '',
'attribution_url' => '',
]
];

public function __construct(IRootFolder $rootFolder, IAppData $appData, IConfig $config, $userId) {

+ 3
- 1
apps/dashboard/src/components/BackgroundSettings.vue View File

@@ -52,6 +52,7 @@
</a>
<a v-for="background in shippedBackgrounds"
:key="background.name"
v-tooltip="background.details.attribution"
tabindex="0"
class="background"
:class="{ 'icon-loading': loading === background.name }"
@@ -81,10 +82,11 @@ export default {
},
computed: {
shippedBackgrounds() {
return shippedBackgroundList.map((item) => {
return Object.keys(shippedBackgroundList).map((item) => {
return {
name: item,
url: prefixWithBaseUrl(item),
details: shippedBackgroundList[item],
}
})
},

Loading…
Cancel
Save